Coverage Report

Created: 2024-09-08 06:32

/src/zstd/lib/decompress/zstd_decompress.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright (c) Meta Platforms, Inc. and affiliates.
3
 * All rights reserved.
4
 *
5
 * This source code is licensed under both the BSD-style license (found in the
6
 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7
 * in the COPYING file in the root directory of this source tree).
8
 * You may select, at your option, one of the above-listed licenses.
9
 */
10
11
12
/* ***************************************************************
13
*  Tuning parameters
14
*****************************************************************/
15
/*!
16
 * HEAPMODE :
17
 * Select how default decompression function ZSTD_decompress() allocates its context,
18
 * on stack (0), or into heap (1, default; requires malloc()).
19
 * Note that functions with explicit context such as ZSTD_decompressDCtx() are unaffected.
20
 */
21
#ifndef ZSTD_HEAPMODE
22
#  define ZSTD_HEAPMODE 1
23
#endif
24
25
/*!
26
*  LEGACY_SUPPORT :
27
*  if set to 1+, ZSTD_decompress() can decode older formats (v0.1+)
28
*/
29
#ifndef ZSTD_LEGACY_SUPPORT
30
#  define ZSTD_LEGACY_SUPPORT 0
31
#endif
32
33
/*!
34
 *  MAXWINDOWSIZE_DEFAULT :
35
 *  maximum window size accepted by DStream __by default__.
36
 *  Frames requiring more memory will be rejected.
37
 *  It's possible to set a different limit using ZSTD_DCtx_setMaxWindowSize().
38
 */
39
#ifndef ZSTD_MAXWINDOWSIZE_DEFAULT
40
244k
#  define ZSTD_MAXWINDOWSIZE_DEFAULT (((U32)1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT) + 1)
41
#endif
42
43
/*!
44
 *  NO_FORWARD_PROGRESS_MAX :
45
 *  maximum allowed nb of calls to ZSTD_decompressStream()
46
 *  without any forward progress
47
 *  (defined as: no byte read from input, and no byte flushed to output)
48
 *  before triggering an error.
49
 */
50
#ifndef ZSTD_NO_FORWARD_PROGRESS_MAX
51
1.59k
#  define ZSTD_NO_FORWARD_PROGRESS_MAX 16
52
#endif
53
54
55
/*-*******************************************************
56
*  Dependencies
57
*********************************************************/
58
#include "../common/zstd_deps.h"   /* ZSTD_memcpy, ZSTD_memmove, ZSTD_memset */
59
#include "../common/allocations.h"  /* ZSTD_customMalloc, ZSTD_customCalloc, ZSTD_customFree */
60
#include "../common/error_private.h"
61
#include "../common/zstd_internal.h"  /* blockProperties_t */
62
#include "../common/mem.h"         /* low level memory routines */
63
#include "../common/bits.h"  /* ZSTD_highbit32 */
64
#define FSE_STATIC_LINKING_ONLY
65
#include "../common/fse.h"
66
#include "../common/huf.h"
67
#include "../common/xxhash.h" /* XXH64_reset, XXH64_update, XXH64_digest, XXH64 */
68
#include "zstd_decompress_internal.h"   /* ZSTD_DCtx */
69
#include "zstd_ddict.h"  /* ZSTD_DDictDictContent */
70
#include "zstd_decompress_block.h"   /* ZSTD_decompressBlock_internal */
71
72
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1)
73
#  include "../legacy/zstd_legacy.h"
74
#endif
75
76
77
78
/*************************************
79
 * Multiple DDicts Hashset internals *
80
 *************************************/
81
82
0
#define DDICT_HASHSET_MAX_LOAD_FACTOR_COUNT_MULT 4
83
0
#define DDICT_HASHSET_MAX_LOAD_FACTOR_SIZE_MULT 3  /* These two constants represent SIZE_MULT/COUNT_MULT load factor without using a float.
84
                                                    * Currently, that means a 0.75 load factor.
85
                                                    * So, if count * COUNT_MULT / size * SIZE_MULT != 0, then we've exceeded
86
                                                    * the load factor of the ddict hash set.
87
                                                    */
88
89
0
#define DDICT_HASHSET_TABLE_BASE_SIZE 64
90
0
#define DDICT_HASHSET_RESIZE_FACTOR 2
91
92
/* Hash function to determine starting position of dict insertion within the table
93
 * Returns an index between [0, hashSet->ddictPtrTableSize]
94
 */
95
0
static size_t ZSTD_DDictHashSet_getIndex(const ZSTD_DDictHashSet* hashSet, U32 dictID) {
96
0
    const U64 hash = XXH64(&dictID, sizeof(U32), 0);
97
    /* DDict ptr table size is a multiple of 2, use size - 1 as mask to get index within [0, hashSet->ddictPtrTableSize) */
98
0
    return hash & (hashSet->ddictPtrTableSize - 1);
99
0
}
100
101
/* Adds DDict to a hashset without resizing it.
102
 * If inserting a DDict with a dictID that already exists in the set, replaces the one in the set.
103
 * Returns 0 if successful, or a zstd error code if something went wrong.
104
 */
105
0
static size_t ZSTD_DDictHashSet_emplaceDDict(ZSTD_DDictHashSet* hashSet, const ZSTD_DDict* ddict) {
106
0
    const U32 dictID = ZSTD_getDictID_fromDDict(ddict);
107
0
    size_t idx = ZSTD_DDictHashSet_getIndex(hashSet, dictID);
108
0
    const size_t idxRangeMask = hashSet->ddictPtrTableSize - 1;
109
0
    RETURN_ERROR_IF(hashSet->ddictPtrCount == hashSet->ddictPtrTableSize, GENERIC, "Hash set is full!");
110
0
    DEBUGLOG(4, "Hashed index: for dictID: %u is %zu", dictID, idx);
111
0
    while (hashSet->ddictPtrTable[idx] != NULL) {
112
        /* Replace existing ddict if inserting ddict with same dictID */
113
0
        if (ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]) == dictID) {
114
0
            DEBUGLOG(4, "DictID already exists, replacing rather than adding");
115
0
            hashSet->ddictPtrTable[idx] = ddict;
116
0
            return 0;
117
0
        }
118
0
        idx &= idxRangeMask;
119
0
        idx++;
120
0
    }
121
0
    DEBUGLOG(4, "Final idx after probing for dictID %u is: %zu", dictID, idx);
122
0
    hashSet->ddictPtrTable[idx] = ddict;
123
0
    hashSet->ddictPtrCount++;
124
0
    return 0;
125
0
}
126
127
/* Expands hash table by factor of DDICT_HASHSET_RESIZE_FACTOR and
128
 * rehashes all values, allocates new table, frees old table.
129
 * Returns 0 on success, otherwise a zstd error code.
130
 */
131
0
static size_t ZSTD_DDictHashSet_expand(ZSTD_DDictHashSet* hashSet, ZSTD_customMem customMem) {
132
0
    size_t newTableSize = hashSet->ddictPtrTableSize * DDICT_HASHSET_RESIZE_FACTOR;
133
0
    const ZSTD_DDict** newTable = (const ZSTD_DDict**)ZSTD_customCalloc(sizeof(ZSTD_DDict*) * newTableSize, customMem);
134
0
    const ZSTD_DDict** oldTable = hashSet->ddictPtrTable;
135
0
    size_t oldTableSize = hashSet->ddictPtrTableSize;
136
0
    size_t i;
137
138
0
    DEBUGLOG(4, "Expanding DDict hash table! Old size: %zu new size: %zu", oldTableSize, newTableSize);
139
0
    RETURN_ERROR_IF(!newTable, memory_allocation, "Expanded hashset allocation failed!");
140
0
    hashSet->ddictPtrTable = newTable;
141
0
    hashSet->ddictPtrTableSize = newTableSize;
142
0
    hashSet->ddictPtrCount = 0;
143
0
    for (i = 0; i < oldTableSize; ++i) {
144
0
        if (oldTable[i] != NULL) {
145
0
            FORWARD_IF_ERROR(ZSTD_DDictHashSet_emplaceDDict(hashSet, oldTable[i]), "");
146
0
        }
147
0
    }
148
0
    ZSTD_customFree((void*)oldTable, customMem);
149
0
    DEBUGLOG(4, "Finished re-hash");
150
0
    return 0;
151
0
}
152
153
/* Fetches a DDict with the given dictID
154
 * Returns the ZSTD_DDict* with the requested dictID. If it doesn't exist, then returns NULL.
155
 */
156
0
static const ZSTD_DDict* ZSTD_DDictHashSet_getDDict(ZSTD_DDictHashSet* hashSet, U32 dictID) {
157
0
    size_t idx = ZSTD_DDictHashSet_getIndex(hashSet, dictID);
158
0
    const size_t idxRangeMask = hashSet->ddictPtrTableSize - 1;
159
0
    DEBUGLOG(4, "Hashed index: for dictID: %u is %zu", dictID, idx);
160
0
    for (;;) {
161
0
        size_t currDictID = ZSTD_getDictID_fromDDict(hashSet->ddictPtrTable[idx]);
162
0
        if (currDictID == dictID || currDictID == 0) {
163
            /* currDictID == 0 implies a NULL ddict entry */
164
0
            break;
165
0
        } else {
166
0
            idx &= idxRangeMask;    /* Goes to start of table when we reach the end */
167
0
            idx++;
168
0
        }
169
0
    }
170
0
    DEBUGLOG(4, "Final idx after probing for dictID %u is: %zu", dictID, idx);
171
0
    return hashSet->ddictPtrTable[idx];
172
0
}
173
174
/* Allocates space for and returns a ddict hash set
175
 * The hash set's ZSTD_DDict* table has all values automatically set to NULL to begin with.
176
 * Returns NULL if allocation failed.
177
 */
178
0
static ZSTD_DDictHashSet* ZSTD_createDDictHashSet(ZSTD_customMem customMem) {
179
0
    ZSTD_DDictHashSet* ret = (ZSTD_DDictHashSet*)ZSTD_customMalloc(sizeof(ZSTD_DDictHashSet), customMem);
180
0
    DEBUGLOG(4, "Allocating new hash set");
181
0
    if (!ret)
182
0
        return NULL;
183
0
    ret->ddictPtrTable = (const ZSTD_DDict**)ZSTD_customCalloc(DDICT_HASHSET_TABLE_BASE_SIZE * sizeof(ZSTD_DDict*), customMem);
184
0
    if (!ret->ddictPtrTable) {
185
0
        ZSTD_customFree(ret, customMem);
186
0
        return NULL;
187
0
    }
188
0
    ret->ddictPtrTableSize = DDICT_HASHSET_TABLE_BASE_SIZE;
189
0
    ret->ddictPtrCount = 0;
190
0
    return ret;
191
0
}
192
193
/* Frees the table of ZSTD_DDict* within a hashset, then frees the hashset itself.
194
 * Note: The ZSTD_DDict* within the table are NOT freed.
195
 */
196
0
static void ZSTD_freeDDictHashSet(ZSTD_DDictHashSet* hashSet, ZSTD_customMem customMem) {
197
0
    DEBUGLOG(4, "Freeing ddict hash set");
198
0
    if (hashSet && hashSet->ddictPtrTable) {
199
0
        ZSTD_customFree((void*)hashSet->ddictPtrTable, customMem);
200
0
    }
201
0
    if (hashSet) {
202
0
        ZSTD_customFree(hashSet, customMem);
203
0
    }
204
0
}
205
206
/* Public function: Adds a DDict into the ZSTD_DDictHashSet, possibly triggering a resize of the hash set.
207
 * Returns 0 on success, or a ZSTD error.
208
 */
209
0
static size_t ZSTD_DDictHashSet_addDDict(ZSTD_DDictHashSet* hashSet, const ZSTD_DDict* ddict, ZSTD_customMem customMem) {
210
0
    DEBUGLOG(4, "Adding dict ID: %u to hashset with - Count: %zu Tablesize: %zu", ZSTD_getDictID_fromDDict(ddict), hashSet->ddictPtrCount, hashSet->ddictPtrTableSize);
211
0
    if (hashSet->ddictPtrCount * DDICT_HASHSET_MAX_LOAD_FACTOR_COUNT_MULT / hashSet->ddictPtrTableSize * DDICT_HASHSET_MAX_LOAD_FACTOR_SIZE_MULT != 0) {
212
0
        FORWARD_IF_ERROR(ZSTD_DDictHashSet_expand(hashSet, customMem), "");
213
0
    }
214
0
    FORWARD_IF_ERROR(ZSTD_DDictHashSet_emplaceDDict(hashSet, ddict), "");
215
0
    return 0;
216
0
}
217
218
/*-*************************************************************
219
*   Context management
220
***************************************************************/
221
size_t ZSTD_sizeof_DCtx (const ZSTD_DCtx* dctx)
222
0
{
223
0
    if (dctx==NULL) return 0;   /* support sizeof NULL */
224
0
    return sizeof(*dctx)
225
0
           + ZSTD_sizeof_DDict(dctx->ddictLocal)
226
0
           + dctx->inBuffSize + dctx->outBuffSize;
227
0
}
228
229
0
size_t ZSTD_estimateDCtxSize(void) { return sizeof(ZSTD_DCtx); }
230
231
232
static size_t ZSTD_startingInputLength(ZSTD_format_e format)
233
4.37M
{
234
4.37M
    size_t const startingInputLength = ZSTD_FRAMEHEADERSIZE_PREFIX(format);
235
    /* only supports formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless */
236
4.37M
    assert( (format == ZSTD_f_zstd1) || (format == ZSTD_f_zstd1_magicless) );
237
4.37M
    return startingInputLength;
238
4.37M
}
239
240
static void ZSTD_DCtx_resetParameters(ZSTD_DCtx* dctx)
241
244k
{
242
244k
    assert(dctx->streamStage == zdss_init);
243
244k
    dctx->format = ZSTD_f_zstd1;
244
244k
    dctx->maxWindowSize = ZSTD_MAXWINDOWSIZE_DEFAULT;
245
244k
    dctx->outBufferMode = ZSTD_bm_buffered;
246
244k
    dctx->forceIgnoreChecksum = ZSTD_d_validateChecksum;
247
244k
    dctx->refMultipleDDicts = ZSTD_rmd_refSingleDDict;
248
244k
    dctx->disableHufAsm = 0;
249
244k
    dctx->maxBlockSizeParam = 0;
250
244k
}
251
252
static void ZSTD_initDCtx_internal(ZSTD_DCtx* dctx)
253
224k
{
254
224k
    dctx->staticSize  = 0;
255
224k
    dctx->ddict       = NULL;
256
224k
    dctx->ddictLocal  = NULL;
257
224k
    dctx->dictEnd     = NULL;
258
224k
    dctx->ddictIsCold = 0;
259
224k
    dctx->dictUses = ZSTD_dont_use;
260
224k
    dctx->inBuff      = NULL;
261
224k
    dctx->inBuffSize  = 0;
262
224k
    dctx->outBuffSize = 0;
263
224k
    dctx->streamStage = zdss_init;
264
224k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1)
265
224k
    dctx->legacyContext = NULL;
266
224k
    dctx->previousLegacyVersion = 0;
267
224k
#endif
268
224k
    dctx->noForwardProgress = 0;
269
224k
    dctx->oversizedDuration = 0;
270
224k
    dctx->isFrameDecompression = 1;
271
224k
#if DYNAMIC_BMI2
272
224k
    dctx->bmi2 = ZSTD_cpuSupportsBmi2();
273
224k
#endif
274
224k
    dctx->ddictSet = NULL;
275
224k
    ZSTD_DCtx_resetParameters(dctx);
276
224k
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
277
224k
    dctx->dictContentEndForFuzzing = NULL;
278
224k
#endif
279
224k
}
280
281
ZSTD_DCtx* ZSTD_initStaticDCtx(void *workspace, size_t workspaceSize)
282
0
{
283
0
    ZSTD_DCtx* const dctx = (ZSTD_DCtx*) workspace;
284
285
0
    if ((size_t)workspace & 7) return NULL;  /* 8-aligned */
286
0
    if (workspaceSize < sizeof(ZSTD_DCtx)) return NULL;  /* minimum size */
287
288
0
    ZSTD_initDCtx_internal(dctx);
289
0
    dctx->staticSize = workspaceSize;
290
0
    dctx->inBuff = (char*)(dctx+1);
291
0
    return dctx;
292
0
}
293
294
224k
static ZSTD_DCtx* ZSTD_createDCtx_internal(ZSTD_customMem customMem) {
295
224k
    if ((!customMem.customAlloc) ^ (!customMem.customFree)) return NULL;
296
297
224k
    {   ZSTD_DCtx* const dctx = (ZSTD_DCtx*)ZSTD_customMalloc(sizeof(*dctx), customMem);
298
224k
        if (!dctx) return NULL;
299
224k
        dctx->customMem = customMem;
300
224k
        ZSTD_initDCtx_internal(dctx);
301
224k
        return dctx;
302
224k
    }
303
224k
}
304
305
ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem)
306
0
{
307
0
    return ZSTD_createDCtx_internal(customMem);
308
0
}
309
310
ZSTD_DCtx* ZSTD_createDCtx(void)
311
157k
{
312
157k
    DEBUGLOG(3, "ZSTD_createDCtx");
313
157k
    return ZSTD_createDCtx_internal(ZSTD_defaultCMem);
314
157k
}
315
316
static void ZSTD_clearDict(ZSTD_DCtx* dctx)
317
585k
{
318
585k
    ZSTD_freeDDict(dctx->ddictLocal);
319
585k
    dctx->ddictLocal = NULL;
320
585k
    dctx->ddict = NULL;
321
585k
    dctx->dictUses = ZSTD_dont_use;
322
585k
}
323
324
size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx)
325
224k
{
326
224k
    if (dctx==NULL) return 0;   /* support free on NULL */
327
224k
    RETURN_ERROR_IF(dctx->staticSize, memory_allocation, "not compatible with static DCtx");
328
224k
    {   ZSTD_customMem const cMem = dctx->customMem;
329
224k
        ZSTD_clearDict(dctx);
330
224k
        ZSTD_customFree(dctx->inBuff, cMem);
331
224k
        dctx->inBuff = NULL;
332
224k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1)
333
224k
        if (dctx->legacyContext)
334
5.66k
            ZSTD_freeLegacyStreamContext(dctx->legacyContext, dctx->previousLegacyVersion);
335
224k
#endif
336
224k
        if (dctx->ddictSet) {
337
0
            ZSTD_freeDDictHashSet(dctx->ddictSet, cMem);
338
0
            dctx->ddictSet = NULL;
339
0
        }
340
224k
        ZSTD_customFree(dctx, cMem);
341
224k
        return 0;
342
224k
    }
343
224k
}
344
345
/* no longer useful */
346
void ZSTD_copyDCtx(ZSTD_DCtx* dstDCtx, const ZSTD_DCtx* srcDCtx)
347
0
{
348
0
    size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx);
349
0
    ZSTD_memcpy(dstDCtx, srcDCtx, toCopy);  /* no need to copy workspace */
350
0
}
351
352
/* Given a dctx with a digested frame params, re-selects the correct ZSTD_DDict based on
353
 * the requested dict ID from the frame. If there exists a reference to the correct ZSTD_DDict, then
354
 * accordingly sets the ddict to be used to decompress the frame.
355
 *
356
 * If no DDict is found, then no action is taken, and the ZSTD_DCtx::ddict remains as-is.
357
 *
358
 * ZSTD_d_refMultipleDDicts must be enabled for this function to be called.
359
 */
360
0
static void ZSTD_DCtx_selectFrameDDict(ZSTD_DCtx* dctx) {
361
0
    assert(dctx->refMultipleDDicts && dctx->ddictSet);
362
0
    DEBUGLOG(4, "Adjusting DDict based on requested dict ID from frame");
363
0
    if (dctx->ddict) {
364
0
        const ZSTD_DDict* frameDDict = ZSTD_DDictHashSet_getDDict(dctx->ddictSet, dctx->fParams.dictID);
365
0
        if (frameDDict) {
366
0
            DEBUGLOG(4, "DDict found!");
367
0
            ZSTD_clearDict(dctx);
368
0
            dctx->dictID = dctx->fParams.dictID;
369
0
            dctx->ddict = frameDDict;
370
0
            dctx->dictUses = ZSTD_use_indefinitely;
371
0
        }
372
0
    }
373
0
}
374
375
376
/*-*************************************************************
377
 *   Frame header decoding
378
 ***************************************************************/
379
380
/*! ZSTD_isFrame() :
381
 *  Tells if the content of `buffer` starts with a valid Frame Identifier.
382
 *  Note : Frame Identifier is 4 bytes. If `size < 4`, @return will always be 0.
383
 *  Note 2 : Legacy Frame Identifiers are considered valid only if Legacy Support is enabled.
384
 *  Note 3 : Skippable Frame Identifiers are considered valid. */
385
unsigned ZSTD_isFrame(const void* buffer, size_t size)
386
2.37k
{
387
2.37k
    if (size < ZSTD_FRAMEIDSIZE) return 0;
388
2.31k
    {   U32 const magic = MEM_readLE32(buffer);
389
2.31k
        if (magic == ZSTD_MAGICNUMBER) return 1;
390
1.85k
        if ((magic & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) return 1;
391
1.85k
    }
392
1.61k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1)
393
1.61k
    if (ZSTD_isLegacy(buffer, size)) return 1;
394
322
#endif
395
322
    return 0;
396
1.61k
}
397
398
/*! ZSTD_isSkippableFrame() :
399
 *  Tells if the content of `buffer` starts with a valid Frame Identifier for a skippable frame.
400
 *  Note : Frame Identifier is 4 bytes. If `size < 4`, @return will always be 0.
401
 */
402
unsigned ZSTD_isSkippableFrame(const void* buffer, size_t size)
403
0
{
404
0
    if (size < ZSTD_FRAMEIDSIZE) return 0;
405
0
    {   U32 const magic = MEM_readLE32(buffer);
406
0
        if ((magic & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) return 1;
407
0
    }
408
0
    return 0;
409
0
}
410
411
/** ZSTD_frameHeaderSize_internal() :
412
 *  srcSize must be large enough to reach header size fields.
413
 *  note : only works for formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless.
414
 * @return : size of the Frame Header
415
 *           or an error code, which can be tested with ZSTD_isError() */
416
static size_t ZSTD_frameHeaderSize_internal(const void* src, size_t srcSize, ZSTD_format_e format)
417
1.65M
{
418
1.65M
    size_t const minInputSize = ZSTD_startingInputLength(format);
419
1.65M
    RETURN_ERROR_IF(srcSize < minInputSize, srcSize_wrong, "");
420
421
1.65M
    {   BYTE const fhd = ((const BYTE*)src)[minInputSize-1];
422
1.65M
        U32 const dictID= fhd & 3;
423
1.65M
        U32 const singleSegment = (fhd >> 5) & 1;
424
1.65M
        U32 const fcsId = fhd >> 6;
425
1.65M
        return minInputSize + !singleSegment
426
1.65M
             + ZSTD_did_fieldSize[dictID] + ZSTD_fcs_fieldSize[fcsId]
427
1.65M
             + (singleSegment && !fcsId);
428
1.65M
    }
429
1.65M
}
430
431
/** ZSTD_frameHeaderSize() :
432
 *  srcSize must be >= ZSTD_frameHeaderSize_prefix.
433
 * @return : size of the Frame Header,
434
 *           or an error code (if srcSize is too small) */
435
size_t ZSTD_frameHeaderSize(const void* src, size_t srcSize)
436
2.37k
{
437
2.37k
    return ZSTD_frameHeaderSize_internal(src, srcSize, ZSTD_f_zstd1);
438
2.37k
}
439
440
441
/** ZSTD_getFrameHeader_advanced() :
442
 *  decode Frame Header, or require larger `srcSize`.
443
 *  note : only works for formats ZSTD_f_zstd1 and ZSTD_f_zstd1_magicless
444
 * @return : 0, `zfhPtr` is correctly filled,
445
 *          >0, `srcSize` is too small, value is wanted `srcSize` amount,
446
**           or an error code, which can be tested using ZSTD_isError() */
447
size_t ZSTD_getFrameHeader_advanced(ZSTD_frameHeader* zfhPtr, const void* src, size_t srcSize, ZSTD_format_e format)
448
1.31M
{
449
1.31M
    const BYTE* ip = (const BYTE*)src;
450
1.31M
    size_t const minInputSize = ZSTD_startingInputLength(format);
451
452
1.31M
    DEBUGLOG(5, "ZSTD_getFrameHeader_advanced: minInputSize = %zu, srcSize = %zu", minInputSize, srcSize);
453
454
1.31M
    if (srcSize > 0) {
455
        /* note : technically could be considered an assert(), since it's an invalid entry */
456
1.16M
        RETURN_ERROR_IF(src==NULL, GENERIC, "invalid parameter : src==NULL, but srcSize>0");
457
1.16M
    }
458
1.31M
    if (srcSize < minInputSize) {
459
155k
        if (srcSize > 0 && format != ZSTD_f_zstd1_magicless) {
460
            /* when receiving less than @minInputSize bytes,
461
             * control these bytes at least correspond to a supported magic number
462
             * in order to error out early if they don't.
463
            **/
464
5.72k
            size_t const toCopy = MIN(4, srcSize);
465
5.72k
            unsigned char hbuf[4]; MEM_writeLE32(hbuf, ZSTD_MAGICNUMBER);
466
5.72k
            assert(src != NULL);
467
5.72k
            ZSTD_memcpy(hbuf, src, toCopy);
468
5.72k
            if ( MEM_readLE32(hbuf) != ZSTD_MAGICNUMBER ) {
469
                /* not a zstd frame : let's check if it's a skippable frame */
470
2.35k
                MEM_writeLE32(hbuf, ZSTD_MAGIC_SKIPPABLE_START);
471
2.35k
                ZSTD_memcpy(hbuf, src, toCopy);
472
2.35k
                if ((MEM_readLE32(hbuf) & ZSTD_MAGIC_SKIPPABLE_MASK) != ZSTD_MAGIC_SKIPPABLE_START) {
473
2.08k
                    RETURN_ERROR(prefix_unknown,
474
2.08k
                                "first bytes don't correspond to any supported magic number");
475
2.08k
        }   }   }
476
153k
        return minInputSize;
477
155k
    }
478
479
1.15M
    ZSTD_memset(zfhPtr, 0, sizeof(*zfhPtr));   /* not strictly necessary, but static analyzers may not understand that zfhPtr will be read only if return value is zero, since they are 2 different signals */
480
1.15M
    if ( (format != ZSTD_f_zstd1_magicless)
481
1.15M
      && (MEM_readLE32(src) != ZSTD_MAGICNUMBER) ) {
482
20.7k
        if ((MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {
483
            /* skippable frame */
484
3.17k
            if (srcSize < ZSTD_SKIPPABLEHEADERSIZE)
485
1.17k
                return ZSTD_SKIPPABLEHEADERSIZE; /* magic number + frame length */
486
2.00k
            ZSTD_memset(zfhPtr, 0, sizeof(*zfhPtr));
487
2.00k
            zfhPtr->frameContentSize = MEM_readLE32((const char *)src + ZSTD_FRAMEIDSIZE);
488
2.00k
            zfhPtr->frameType = ZSTD_skippableFrame;
489
2.00k
            return 0;
490
3.17k
        }
491
17.5k
        RETURN_ERROR(prefix_unknown, "");
492
17.5k
    }
493
494
    /* ensure there is enough `srcSize` to fully read/decode frame header */
495
1.13M
    {   size_t const fhsize = ZSTD_frameHeaderSize_internal(src, srcSize, format);
496
1.13M
        if (srcSize < fhsize) return fhsize;
497
1.00M
        zfhPtr->headerSize = (U32)fhsize;
498
1.00M
    }
499
500
0
    {   BYTE const fhdByte = ip[minInputSize-1];
501
1.00M
        size_t pos = minInputSize;
502
1.00M
        U32 const dictIDSizeCode = fhdByte&3;
503
1.00M
        U32 const checksumFlag = (fhdByte>>2)&1;
504
1.00M
        U32 const singleSegment = (fhdByte>>5)&1;
505
1.00M
        U32 const fcsID = fhdByte>>6;
506
1.00M
        U64 windowSize = 0;
507
1.00M
        U32 dictID = 0;
508
1.00M
        U64 frameContentSize = ZSTD_CONTENTSIZE_UNKNOWN;
509
1.00M
        RETURN_ERROR_IF((fhdByte & 0x08) != 0, frameParameter_unsupported,
510
1.00M
                        "reserved bits, must be zero");
511
512
1.00M
        if (!singleSegment) {
513
664k
            BYTE const wlByte = ip[pos++];
514
664k
            U32 const windowLog = (wlByte >> 3) + ZSTD_WINDOWLOG_ABSOLUTEMIN;
515
664k
            RETURN_ERROR_IF(windowLog > ZSTD_WINDOWLOG_MAX, frameParameter_windowTooLarge, "");
516
664k
            windowSize = (1ULL << windowLog);
517
664k
            windowSize += (windowSize >> 3) * (wlByte&7);
518
664k
        }
519
1.00M
        switch(dictIDSizeCode)
520
1.00M
        {
521
0
            default:
522
0
                assert(0);  /* impossible */
523
0
                ZSTD_FALLTHROUGH;
524
927k
            case 0 : break;
525
5.13k
            case 1 : dictID = ip[pos]; pos++; break;
526
2.94k
            case 2 : dictID = MEM_readLE16(ip+pos); pos+=2; break;
527
74.1k
            case 3 : dictID = MEM_readLE32(ip+pos); pos+=4; break;
528
1.00M
        }
529
1.00M
        switch(fcsID)
530
1.00M
        {
531
0
            default:
532
0
                assert(0);  /* impossible */
533
0
                ZSTD_FALLTHROUGH;
534
915k
            case 0 : if (singleSegment) frameContentSize = ip[pos]; break;
535
62.9k
            case 1 : frameContentSize = MEM_readLE16(ip+pos)+256; break;
536
23.9k
            case 2 : frameContentSize = MEM_readLE32(ip+pos); break;
537
7.48k
            case 3 : frameContentSize = MEM_readLE64(ip+pos); break;
538
1.00M
        }
539
1.00M
        if (singleSegment) windowSize = frameContentSize;
540
541
1.00M
        zfhPtr->frameType = ZSTD_frame;
542
1.00M
        zfhPtr->frameContentSize = frameContentSize;
543
1.00M
        zfhPtr->windowSize = windowSize;
544
1.00M
        zfhPtr->blockSizeMax = (unsigned) MIN(windowSize, ZSTD_BLOCKSIZE_MAX);
545
1.00M
        zfhPtr->dictID = dictID;
546
1.00M
        zfhPtr->checksumFlag = checksumFlag;
547
1.00M
    }
548
0
    return 0;
549
1.00M
}
550
551
/** ZSTD_getFrameHeader() :
552
 *  decode Frame Header, or require larger `srcSize`.
553
 *  note : this function does not consume input, it only reads it.
554
 * @return : 0, `zfhPtr` is correctly filled,
555
 *          >0, `srcSize` is too small, value is wanted `srcSize` amount,
556
 *           or an error code, which can be tested using ZSTD_isError() */
557
size_t ZSTD_getFrameHeader(ZSTD_frameHeader* zfhPtr, const void* src, size_t srcSize)
558
129k
{
559
129k
    return ZSTD_getFrameHeader_advanced(zfhPtr, src, srcSize, ZSTD_f_zstd1);
560
129k
}
561
562
/** ZSTD_getFrameContentSize() :
563
 *  compatible with legacy mode
564
 * @return : decompressed size of the single frame pointed to be `src` if known, otherwise
565
 *         - ZSTD_CONTENTSIZE_UNKNOWN if the size cannot be determined
566
 *         - ZSTD_CONTENTSIZE_ERROR if an error occurred (e.g. invalid magic number, srcSize too small) */
567
unsigned long long ZSTD_getFrameContentSize(const void *src, size_t srcSize)
568
35.1k
{
569
35.1k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1)
570
35.1k
    if (ZSTD_isLegacy(src, srcSize)) {
571
30.2k
        unsigned long long const ret = ZSTD_getDecompressedSize_legacy(src, srcSize);
572
30.2k
        return ret == 0 ? ZSTD_CONTENTSIZE_UNKNOWN : ret;
573
30.2k
    }
574
4.91k
#endif
575
4.91k
    {   ZSTD_frameHeader zfh;
576
4.91k
        if (ZSTD_getFrameHeader(&zfh, src, srcSize) != 0)
577
1.05k
            return ZSTD_CONTENTSIZE_ERROR;
578
3.86k
        if (zfh.frameType == ZSTD_skippableFrame) {
579
466
            return 0;
580
3.39k
        } else {
581
3.39k
            return zfh.frameContentSize;
582
3.39k
    }   }
583
3.86k
}
584
585
static size_t readSkippableFrameSize(void const* src, size_t srcSize)
586
2.63k
{
587
2.63k
    size_t const skippableHeaderSize = ZSTD_SKIPPABLEHEADERSIZE;
588
2.63k
    U32 sizeU32;
589
590
2.63k
    RETURN_ERROR_IF(srcSize < ZSTD_SKIPPABLEHEADERSIZE, srcSize_wrong, "");
591
592
2.61k
    sizeU32 = MEM_readLE32((BYTE const*)src + ZSTD_FRAMEIDSIZE);
593
2.61k
    RETURN_ERROR_IF((U32)(sizeU32 + ZSTD_SKIPPABLEHEADERSIZE) < sizeU32,
594
2.61k
                    frameParameter_unsupported, "");
595
2.61k
    {   size_t const skippableSize = skippableHeaderSize + sizeU32;
596
2.61k
        RETURN_ERROR_IF(skippableSize > srcSize, srcSize_wrong, "");
597
2.17k
        return skippableSize;
598
2.61k
    }
599
2.61k
}
600
601
/*! ZSTD_readSkippableFrame() :
602
 * Retrieves content of a skippable frame, and writes it to dst buffer.
603
 *
604
 * The parameter magicVariant will receive the magicVariant that was supplied when the frame was written,
605
 * i.e. magicNumber - ZSTD_MAGIC_SKIPPABLE_START.  This can be NULL if the caller is not interested
606
 * in the magicVariant.
607
 *
608
 * Returns an error if destination buffer is not large enough, or if this is not a valid skippable frame.
609
 *
610
 * @return : number of bytes written or a ZSTD error.
611
 */
612
size_t ZSTD_readSkippableFrame(void* dst, size_t dstCapacity,
613
                               unsigned* magicVariant,  /* optional, can be NULL */
614
                         const void* src, size_t srcSize)
615
0
{
616
0
    RETURN_ERROR_IF(srcSize < ZSTD_SKIPPABLEHEADERSIZE, srcSize_wrong, "");
617
618
0
    {   U32 const magicNumber = MEM_readLE32(src);
619
0
        size_t skippableFrameSize = readSkippableFrameSize(src, srcSize);
620
0
        size_t skippableContentSize = skippableFrameSize - ZSTD_SKIPPABLEHEADERSIZE;
621
622
        /* check input validity */
623
0
        RETURN_ERROR_IF(!ZSTD_isSkippableFrame(src, srcSize), frameParameter_unsupported, "");
624
0
        RETURN_ERROR_IF(skippableFrameSize < ZSTD_SKIPPABLEHEADERSIZE || skippableFrameSize > srcSize, srcSize_wrong, "");
625
0
        RETURN_ERROR_IF(skippableContentSize > dstCapacity, dstSize_tooSmall, "");
626
627
        /* deliver payload */
628
0
        if (skippableContentSize > 0  && dst != NULL)
629
0
            ZSTD_memcpy(dst, (const BYTE *)src + ZSTD_SKIPPABLEHEADERSIZE, skippableContentSize);
630
0
        if (magicVariant != NULL)
631
0
            *magicVariant = magicNumber - ZSTD_MAGIC_SKIPPABLE_START;
632
0
        return skippableContentSize;
633
0
    }
634
0
}
635
636
/** ZSTD_findDecompressedSize() :
637
 *  `srcSize` must be the exact length of some number of ZSTD compressed and/or
638
 *      skippable frames
639
 *  note: compatible with legacy mode
640
 * @return : decompressed size of the frames contained */
641
unsigned long long ZSTD_findDecompressedSize(const void* src, size_t srcSize)
642
3.08k
{
643
3.08k
    unsigned long long totalDstSize = 0;
644
645
10.1k
    while (srcSize >= ZSTD_startingInputLength(ZSTD_f_zstd1)) {
646
9.60k
        U32 const magicNumber = MEM_readLE32(src);
647
648
9.60k
        if ((magicNumber & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {
649
926
            size_t const skippableSize = readSkippableFrameSize(src, srcSize);
650
926
            if (ZSTD_isError(skippableSize)) return ZSTD_CONTENTSIZE_ERROR;
651
834
            assert(skippableSize <= srcSize);
652
653
834
            src = (const BYTE *)src + skippableSize;
654
834
            srcSize -= skippableSize;
655
834
            continue;
656
834
        }
657
658
8.67k
        {   unsigned long long const fcs = ZSTD_getFrameContentSize(src, srcSize);
659
8.67k
            if (fcs >= ZSTD_CONTENTSIZE_ERROR) return fcs;
660
661
6.78k
            if (totalDstSize + fcs < totalDstSize)
662
10
                return ZSTD_CONTENTSIZE_ERROR; /* check for overflow */
663
6.77k
            totalDstSize += fcs;
664
6.77k
        }
665
        /* skip to next frame */
666
0
        {   size_t const frameSrcSize = ZSTD_findFrameCompressedSize(src, srcSize);
667
6.77k
            if (ZSTD_isError(frameSrcSize)) return ZSTD_CONTENTSIZE_ERROR;
668
6.25k
            assert(frameSrcSize <= srcSize);
669
670
6.25k
            src = (const BYTE *)src + frameSrcSize;
671
6.25k
            srcSize -= frameSrcSize;
672
6.25k
        }
673
6.25k
    }  /* while (srcSize >= ZSTD_frameHeaderSize_prefix) */
674
675
570
    if (srcSize) return ZSTD_CONTENTSIZE_ERROR;
676
677
252
    return totalDstSize;
678
570
}
679
680
/** ZSTD_getDecompressedSize() :
681
 *  compatible with legacy mode
682
 * @return : decompressed size if known, 0 otherwise
683
             note : 0 can mean any of the following :
684
                   - frame content is empty
685
                   - decompressed size field is not present in frame header
686
                   - frame header unknown / not supported
687
                   - frame header not complete (`srcSize` too small) */
688
unsigned long long ZSTD_getDecompressedSize(const void* src, size_t srcSize)
689
2.37k
{
690
2.37k
    unsigned long long const ret = ZSTD_getFrameContentSize(src, srcSize);
691
2.37k
    ZSTD_STATIC_ASSERT(ZSTD_CONTENTSIZE_ERROR < ZSTD_CONTENTSIZE_UNKNOWN);
692
2.37k
    return (ret >= ZSTD_CONTENTSIZE_ERROR) ? 0 : ret;
693
2.37k
}
694
695
696
/** ZSTD_decodeFrameHeader() :
697
 * `headerSize` must be the size provided by ZSTD_frameHeaderSize().
698
 * If multiple DDict references are enabled, also will choose the correct DDict to use.
699
 * @return : 0 if success, or an error code, which can be tested using ZSTD_isError() */
700
static size_t ZSTD_decodeFrameHeader(ZSTD_DCtx* dctx, const void* src, size_t headerSize)
701
614k
{
702
614k
    size_t const result = ZSTD_getFrameHeader_advanced(&(dctx->fParams), src, headerSize, dctx->format);
703
614k
    if (ZSTD_isError(result)) return result;    /* invalid header */
704
612k
    RETURN_ERROR_IF(result>0, srcSize_wrong, "headerSize too small");
705
706
    /* Reference DDict requested by frame if dctx references multiple ddicts */
707
612k
    if (dctx->refMultipleDDicts == ZSTD_rmd_refMultipleDDicts && dctx->ddictSet) {
708
0
        ZSTD_DCtx_selectFrameDDict(dctx);
709
0
    }
710
711
#ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
712
    /* Skip the dictID check in fuzzing mode, because it makes the search
713
     * harder.
714
     */
715
    RETURN_ERROR_IF(dctx->fParams.dictID && (dctx->dictID != dctx->fParams.dictID),
716
                    dictionary_wrong, "");
717
#endif
718
612k
    dctx->validateChecksum = (dctx->fParams.checksumFlag && !dctx->forceIgnoreChecksum) ? 1 : 0;
719
612k
    if (dctx->validateChecksum) XXH64_reset(&dctx->xxhState, 0);
720
612k
    dctx->processedCSize += headerSize;
721
612k
    return 0;
722
612k
}
723
724
static ZSTD_frameSizeInfo ZSTD_errorFrameSizeInfo(size_t ret)
725
2.92k
{
726
2.92k
    ZSTD_frameSizeInfo frameSizeInfo;
727
2.92k
    frameSizeInfo.compressedSize = ret;
728
2.92k
    frameSizeInfo.decompressedBound = ZSTD_CONTENTSIZE_ERROR;
729
2.92k
    return frameSizeInfo;
730
2.92k
}
731
732
static ZSTD_frameSizeInfo ZSTD_findFrameSizeInfo(const void* src, size_t srcSize, ZSTD_format_e format)
733
168k
{
734
168k
    ZSTD_frameSizeInfo frameSizeInfo;
735
168k
    ZSTD_memset(&frameSizeInfo, 0, sizeof(ZSTD_frameSizeInfo));
736
737
168k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1)
738
168k
    if (format == ZSTD_f_zstd1 && ZSTD_isLegacy(src, srcSize))
739
15.7k
        return ZSTD_findFrameSizeInfoLegacy(src, srcSize);
740
153k
#endif
741
742
153k
    if (format == ZSTD_f_zstd1 && (srcSize >= ZSTD_SKIPPABLEHEADERSIZE)
743
153k
        && (MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {
744
1.12k
        frameSizeInfo.compressedSize = readSkippableFrameSize(src, srcSize);
745
1.12k
        assert(ZSTD_isError(frameSizeInfo.compressedSize) ||
746
1.12k
               frameSizeInfo.compressedSize <= srcSize);
747
1.12k
        return frameSizeInfo;
748
151k
    } else {
749
151k
        const BYTE* ip = (const BYTE*)src;
750
151k
        const BYTE* const ipstart = ip;
751
151k
        size_t remainingSize = srcSize;
752
151k
        size_t nbBlocks = 0;
753
151k
        ZSTD_frameHeader zfh;
754
755
        /* Extract Frame Header */
756
151k
        {   size_t const ret = ZSTD_getFrameHeader_advanced(&zfh, src, srcSize, format);
757
151k
            if (ZSTD_isError(ret))
758
1.28k
                return ZSTD_errorFrameSizeInfo(ret);
759
150k
            if (ret > 0)
760
100
                return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong));
761
150k
        }
762
763
150k
        ip += zfh.headerSize;
764
150k
        remainingSize -= zfh.headerSize;
765
766
        /* Iterate over each block */
767
18.6M
        while (1) {
768
18.6M
            blockProperties_t blockProperties;
769
18.6M
            size_t const cBlockSize = ZSTD_getcBlockSize(ip, remainingSize, &blockProperties);
770
18.6M
            if (ZSTD_isError(cBlockSize))
771
1.03k
                return ZSTD_errorFrameSizeInfo(cBlockSize);
772
773
18.6M
            if (ZSTD_blockHeaderSize + cBlockSize > remainingSize)
774
420
                return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong));
775
776
18.6M
            ip += ZSTD_blockHeaderSize + cBlockSize;
777
18.6M
            remainingSize -= ZSTD_blockHeaderSize + cBlockSize;
778
18.6M
            nbBlocks++;
779
780
18.6M
            if (blockProperties.lastBlock) break;
781
18.6M
        }
782
783
        /* Final frame content checksum */
784
149k
        if (zfh.checksumFlag) {
785
83.4k
            if (remainingSize < 4)
786
79
                return ZSTD_errorFrameSizeInfo(ERROR(srcSize_wrong));
787
83.3k
            ip += 4;
788
83.3k
        }
789
790
148k
        frameSizeInfo.nbBlocks = nbBlocks;
791
148k
        frameSizeInfo.compressedSize = (size_t)(ip - ipstart);
792
148k
        frameSizeInfo.decompressedBound = (zfh.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN)
793
148k
                                        ? zfh.frameContentSize
794
148k
                                        : (unsigned long long)nbBlocks * zfh.blockSizeMax;
795
148k
        return frameSizeInfo;
796
149k
    }
797
153k
}
798
799
42.9k
static size_t ZSTD_findFrameCompressedSize_advanced(const void *src, size_t srcSize, ZSTD_format_e format) {
800
42.9k
    ZSTD_frameSizeInfo const frameSizeInfo = ZSTD_findFrameSizeInfo(src, srcSize, format);
801
42.9k
    return frameSizeInfo.compressedSize;
802
42.9k
}
803
804
/** ZSTD_findFrameCompressedSize() :
805
 * See docs in zstd.h
806
 * Note: compatible with legacy mode */
807
size_t ZSTD_findFrameCompressedSize(const void *src, size_t srcSize)
808
14.3k
{
809
14.3k
    return ZSTD_findFrameCompressedSize_advanced(src, srcSize, ZSTD_f_zstd1);
810
14.3k
}
811
812
/** ZSTD_decompressBound() :
813
 *  compatible with legacy mode
814
 *  `src` must point to the start of a ZSTD frame or a skippable frame
815
 *  `srcSize` must be at least as large as the frame contained
816
 *  @return : the maximum decompressed size of the compressed source
817
 */
818
unsigned long long ZSTD_decompressBound(const void* src, size_t srcSize)
819
2.37k
{
820
2.37k
    unsigned long long bound = 0;
821
    /* Iterate over each frame */
822
12.3k
    while (srcSize > 0) {
823
12.1k
        ZSTD_frameSizeInfo const frameSizeInfo = ZSTD_findFrameSizeInfo(src, srcSize, ZSTD_f_zstd1);
824
12.1k
        size_t const compressedSize = frameSizeInfo.compressedSize;
825
12.1k
        unsigned long long const decompressedBound = frameSizeInfo.decompressedBound;
826
12.1k
        if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR)
827
2.09k
            return ZSTD_CONTENTSIZE_ERROR;
828
10.0k
        assert(srcSize >= compressedSize);
829
10.0k
        src = (const BYTE*)src + compressedSize;
830
10.0k
        srcSize -= compressedSize;
831
10.0k
        bound += decompressedBound;
832
10.0k
    }
833
275
    return bound;
834
2.37k
}
835
836
size_t ZSTD_decompressionMargin(void const* src, size_t srcSize)
837
34.7k
{
838
34.7k
    size_t margin = 0;
839
34.7k
    unsigned maxBlockSize = 0;
840
841
    /* Iterate over each frame */
842
148k
    while (srcSize > 0) {
843
113k
        ZSTD_frameSizeInfo const frameSizeInfo = ZSTD_findFrameSizeInfo(src, srcSize, ZSTD_f_zstd1);
844
113k
        size_t const compressedSize = frameSizeInfo.compressedSize;
845
113k
        unsigned long long const decompressedBound = frameSizeInfo.decompressedBound;
846
113k
        ZSTD_frameHeader zfh;
847
848
113k
        FORWARD_IF_ERROR(ZSTD_getFrameHeader(&zfh, src, srcSize), "");
849
113k
        if (ZSTD_isError(compressedSize) || decompressedBound == ZSTD_CONTENTSIZE_ERROR)
850
0
            return ERROR(corruption_detected);
851
852
113k
        if (zfh.frameType == ZSTD_frame) {
853
            /* Add the frame header to our margin */
854
113k
            margin += zfh.headerSize;
855
            /* Add the checksum to our margin */
856
113k
            margin += zfh.checksumFlag ? 4 : 0;
857
            /* Add 3 bytes per block */
858
113k
            margin += 3 * frameSizeInfo.nbBlocks;
859
860
            /* Compute the max block size */
861
113k
            maxBlockSize = MAX(maxBlockSize, zfh.blockSizeMax);
862
113k
        } else {
863
0
            assert(zfh.frameType == ZSTD_skippableFrame);
864
            /* Add the entire skippable frame size to our margin. */
865
0
            margin += compressedSize;
866
0
        }
867
868
113k
        assert(srcSize >= compressedSize);
869
113k
        src = (const BYTE*)src + compressedSize;
870
113k
        srcSize -= compressedSize;
871
113k
    }
872
873
    /* Add the max block size back to the margin. */
874
34.7k
    margin += maxBlockSize;
875
876
34.7k
    return margin;
877
34.7k
}
878
879
/*-*************************************************************
880
 *   Frame decoding
881
 ***************************************************************/
882
883
/** ZSTD_insertBlock() :
884
 *  insert `src` block into `dctx` history. Useful to track uncompressed blocks. */
885
size_t ZSTD_insertBlock(ZSTD_DCtx* dctx, const void* blockStart, size_t blockSize)
886
0
{
887
0
    DEBUGLOG(5, "ZSTD_insertBlock: %u bytes", (unsigned)blockSize);
888
0
    ZSTD_checkContinuity(dctx, blockStart, blockSize);
889
0
    dctx->previousDstEnd = (const char*)blockStart + blockSize;
890
0
    return blockSize;
891
0
}
892
893
894
static size_t ZSTD_copyRawBlock(void* dst, size_t dstCapacity,
895
                          const void* src, size_t srcSize)
896
42.2M
{
897
42.2M
    DEBUGLOG(5, "ZSTD_copyRawBlock");
898
42.2M
    RETURN_ERROR_IF(srcSize > dstCapacity, dstSize_tooSmall, "");
899
42.2M
    if (dst == NULL) {
900
16.6k
        if (srcSize == 0) return 0;
901
0
        RETURN_ERROR(dstBuffer_null, "");
902
0
    }
903
42.2M
    ZSTD_memmove(dst, src, srcSize);
904
42.2M
    return srcSize;
905
42.2M
}
906
907
static size_t ZSTD_setRleBlock(void* dst, size_t dstCapacity,
908
                               BYTE b,
909
                               size_t regenSize)
910
888k
{
911
888k
    RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, "");
912
887k
    if (dst == NULL) {
913
1.19k
        if (regenSize == 0) return 0;
914
0
        RETURN_ERROR(dstBuffer_null, "");
915
0
    }
916
886k
    ZSTD_memset(dst, b, regenSize);
917
886k
    return regenSize;
918
887k
}
919
920
static void ZSTD_DCtx_trace_end(ZSTD_DCtx const* dctx, U64 uncompressedSize, U64 compressedSize, unsigned streaming)
921
568k
{
922
568k
#if ZSTD_TRACE
923
568k
    if (dctx->traceCtx && ZSTD_trace_decompress_end != NULL) {
924
0
        ZSTD_Trace trace;
925
0
        ZSTD_memset(&trace, 0, sizeof(trace));
926
0
        trace.version = ZSTD_VERSION_NUMBER;
927
0
        trace.streaming = streaming;
928
0
        if (dctx->ddict) {
929
0
            trace.dictionaryID = ZSTD_getDictID_fromDDict(dctx->ddict);
930
0
            trace.dictionarySize = ZSTD_DDict_dictSize(dctx->ddict);
931
0
            trace.dictionaryIsCold = dctx->ddictIsCold;
932
0
        }
933
0
        trace.uncompressedSize = (size_t)uncompressedSize;
934
0
        trace.compressedSize = (size_t)compressedSize;
935
0
        trace.dctx = dctx;
936
0
        ZSTD_trace_decompress_end(dctx->traceCtx, &trace);
937
0
    }
938
#else
939
    (void)dctx;
940
    (void)uncompressedSize;
941
    (void)compressedSize;
942
    (void)streaming;
943
#endif
944
568k
}
945
946
947
/*! ZSTD_decompressFrame() :
948
 * @dctx must be properly initialized
949
 *  will update *srcPtr and *srcSizePtr,
950
 *  to make *srcPtr progress by one frame. */
951
static size_t ZSTD_decompressFrame(ZSTD_DCtx* dctx,
952
                                   void* dst, size_t dstCapacity,
953
                             const void** srcPtr, size_t *srcSizePtr)
954
520k
{
955
520k
    const BYTE* const istart = (const BYTE*)(*srcPtr);
956
520k
    const BYTE* ip = istart;
957
520k
    BYTE* const ostart = (BYTE*)dst;
958
520k
    BYTE* const oend = dstCapacity != 0 ? ostart + dstCapacity : ostart;
959
520k
    BYTE* op = ostart;
960
520k
    size_t remainingSrcSize = *srcSizePtr;
961
962
520k
    DEBUGLOG(4, "ZSTD_decompressFrame (srcSize:%i)", (int)*srcSizePtr);
963
964
    /* check */
965
520k
    RETURN_ERROR_IF(
966
520k
        remainingSrcSize < ZSTD_FRAMEHEADERSIZE_MIN(dctx->format)+ZSTD_blockHeaderSize,
967
520k
        srcSize_wrong, "");
968
969
    /* Frame Header */
970
520k
    {   size_t const frameHeaderSize = ZSTD_frameHeaderSize_internal(
971
520k
                ip, ZSTD_FRAMEHEADERSIZE_PREFIX(dctx->format), dctx->format);
972
520k
        if (ZSTD_isError(frameHeaderSize)) return frameHeaderSize;
973
520k
        RETURN_ERROR_IF(remainingSrcSize < frameHeaderSize+ZSTD_blockHeaderSize,
974
520k
                        srcSize_wrong, "");
975
520k
        FORWARD_IF_ERROR( ZSTD_decodeFrameHeader(dctx, ip, frameHeaderSize) , "");
976
518k
        ip += frameHeaderSize; remainingSrcSize -= frameHeaderSize;
977
518k
    }
978
979
    /* Shrink the blockSizeMax if enabled */
980
518k
    if (dctx->maxBlockSizeParam != 0)
981
80.2k
        dctx->fParams.blockSizeMax = MIN(dctx->fParams.blockSizeMax, (unsigned)dctx->maxBlockSizeParam);
982
983
    /* Loop on each block */
984
29.2M
    while (1) {
985
29.2M
        BYTE* oBlockEnd = oend;
986
29.2M
        size_t decodedSize;
987
29.2M
        blockProperties_t blockProperties;
988
29.2M
        size_t const cBlockSize = ZSTD_getcBlockSize(ip, remainingSrcSize, &blockProperties);
989
29.2M
        if (ZSTD_isError(cBlockSize)) return cBlockSize;
990
991
29.2M
        ip += ZSTD_blockHeaderSize;
992
29.2M
        remainingSrcSize -= ZSTD_blockHeaderSize;
993
29.2M
        RETURN_ERROR_IF(cBlockSize > remainingSrcSize, srcSize_wrong, "");
994
995
29.2M
        if (ip >= op && ip < oBlockEnd) {
996
            /* We are decompressing in-place. Limit the output pointer so that we
997
             * don't overwrite the block that we are currently reading. This will
998
             * fail decompression if the input & output pointers aren't spaced
999
             * far enough apart.
1000
             *
1001
             * This is important to set, even when the pointers are far enough
1002
             * apart, because ZSTD_decompressBlock_internal() can decide to store
1003
             * literals in the output buffer, after the block it is decompressing.
1004
             * Since we don't want anything to overwrite our input, we have to tell
1005
             * ZSTD_decompressBlock_internal to never write past ip.
1006
             *
1007
             * See ZSTD_allocateLiteralsBuffer() for reference.
1008
             */
1009
17.2M
            oBlockEnd = op + (ip - op);
1010
17.2M
        }
1011
1012
29.2M
        switch(blockProperties.blockType)
1013
29.2M
        {
1014
3.17M
        case bt_compressed:
1015
3.17M
            assert(dctx->isFrameDecompression == 1);
1016
3.17M
            decodedSize = ZSTD_decompressBlock_internal(dctx, op, (size_t)(oBlockEnd-op), ip, cBlockSize, not_streaming);
1017
3.17M
            break;
1018
25.9M
        case bt_raw :
1019
            /* Use oend instead of oBlockEnd because this function is safe to overlap. It uses memmove. */
1020
25.9M
            decodedSize = ZSTD_copyRawBlock(op, (size_t)(oend-op), ip, cBlockSize);
1021
25.9M
            break;
1022
164k
        case bt_rle :
1023
164k
            decodedSize = ZSTD_setRleBlock(op, (size_t)(oBlockEnd-op), *ip, blockProperties.origSize);
1024
164k
            break;
1025
0
        case bt_reserved :
1026
0
        default:
1027
0
            RETURN_ERROR(corruption_detected, "invalid block type");
1028
29.2M
        }
1029
29.2M
        FORWARD_IF_ERROR(decodedSize, "Block decompression failure");
1030
29.2M
        DEBUGLOG(5, "Decompressed block of dSize = %u", (unsigned)decodedSize);
1031
29.2M
        if (dctx->validateChecksum) {
1032
4.81M
            XXH64_update(&dctx->xxhState, op, decodedSize);
1033
4.81M
        }
1034
29.2M
        if (decodedSize) /* support dst = NULL,0 */ {
1035
29.0M
            op += decodedSize;
1036
29.0M
        }
1037
29.2M
        assert(ip != NULL);
1038
29.2M
        ip += cBlockSize;
1039
29.2M
        remainingSrcSize -= cBlockSize;
1040
29.2M
        if (blockProperties.lastBlock) break;
1041
29.2M
    }
1042
1043
497k
    if (dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN) {
1044
227k
        RETURN_ERROR_IF((U64)(op-ostart) != dctx->fParams.frameContentSize,
1045
227k
                        corruption_detected, "");
1046
227k
    }
1047
496k
    if (dctx->fParams.checksumFlag) { /* Frame content checksum verification */
1048
183k
        RETURN_ERROR_IF(remainingSrcSize<4, checksum_wrong, "");
1049
183k
        if (!dctx->forceIgnoreChecksum) {
1050
183k
            U32 const checkCalc = (U32)XXH64_digest(&dctx->xxhState);
1051
183k
            U32 checkRead;
1052
183k
            checkRead = MEM_readLE32(ip);
1053
183k
            RETURN_ERROR_IF(checkRead != checkCalc, checksum_wrong, "");
1054
183k
        }
1055
182k
        ip += 4;
1056
182k
        remainingSrcSize -= 4;
1057
182k
    }
1058
495k
    ZSTD_DCtx_trace_end(dctx, (U64)(op-ostart), (U64)(ip-istart), /* streaming */ 0);
1059
    /* Allow caller to get size read */
1060
495k
    DEBUGLOG(4, "ZSTD_decompressFrame: decompressed frame of size %zi, consuming %zi bytes of input", op-ostart, ip - (const BYTE*)*srcPtr);
1061
495k
    *srcPtr = ip;
1062
495k
    *srcSizePtr = remainingSrcSize;
1063
495k
    return (size_t)(op-ostart);
1064
496k
}
1065
1066
static
1067
ZSTD_ALLOW_POINTER_OVERFLOW_ATTR
1068
size_t ZSTD_decompressMultiFrame(ZSTD_DCtx* dctx,
1069
                                        void* dst, size_t dstCapacity,
1070
                                  const void* src, size_t srcSize,
1071
                                  const void* dict, size_t dictSize,
1072
                                  const ZSTD_DDict* ddict)
1073
235k
{
1074
235k
    void* const dststart = dst;
1075
235k
    int moreThan1Frame = 0;
1076
1077
235k
    DEBUGLOG(5, "ZSTD_decompressMultiFrame");
1078
235k
    assert(dict==NULL || ddict==NULL);  /* either dict or ddict set, not both */
1079
1080
235k
    if (ddict) {
1081
78.2k
        dict = ZSTD_DDict_dictContent(ddict);
1082
78.2k
        dictSize = ZSTD_DDict_dictSize(ddict);
1083
78.2k
    }
1084
1085
752k
    while (srcSize >= ZSTD_startingInputLength(dctx->format)) {
1086
1087
560k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT >= 1)
1088
560k
        if (dctx->format == ZSTD_f_zstd1 && ZSTD_isLegacy(src, srcSize)) {
1089
38.8k
            size_t decodedSize;
1090
38.8k
            size_t const frameSize = ZSTD_findFrameCompressedSizeLegacy(src, srcSize);
1091
38.8k
            if (ZSTD_isError(frameSize)) return frameSize;
1092
37.8k
            RETURN_ERROR_IF(dctx->staticSize, memory_allocation,
1093
37.8k
                "legacy support is not compatible with static dctx");
1094
1095
37.8k
            decodedSize = ZSTD_decompressLegacy(dst, dstCapacity, src, frameSize, dict, dictSize);
1096
37.8k
            if (ZSTD_isError(decodedSize)) return decodedSize;
1097
1098
21.7k
            {
1099
21.7k
                unsigned long long const expectedSize = ZSTD_getFrameContentSize(src, srcSize);
1100
21.7k
                RETURN_ERROR_IF(expectedSize == ZSTD_CONTENTSIZE_ERROR, corruption_detected, "Corrupted frame header!");
1101
21.7k
                if (expectedSize != ZSTD_CONTENTSIZE_UNKNOWN) {
1102
626
                    RETURN_ERROR_IF(expectedSize != decodedSize, corruption_detected,
1103
626
                        "Frame header size does not match decoded size!");
1104
626
                }
1105
21.7k
            }
1106
1107
21.2k
            assert(decodedSize <= dstCapacity);
1108
21.2k
            dst = (BYTE*)dst + decodedSize;
1109
21.2k
            dstCapacity -= decodedSize;
1110
1111
21.2k
            src = (const BYTE*)src + frameSize;
1112
21.2k
            srcSize -= frameSize;
1113
1114
21.2k
            continue;
1115
21.2k
        }
1116
521k
#endif
1117
1118
521k
        if (dctx->format == ZSTD_f_zstd1 && srcSize >= 4) {
1119
515k
            U32 const magicNumber = MEM_readLE32(src);
1120
515k
            DEBUGLOG(5, "reading magic number %08X", (unsigned)magicNumber);
1121
515k
            if ((magicNumber & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {
1122
                /* skippable frame detected : skip it */
1123
584
                size_t const skippableSize = readSkippableFrameSize(src, srcSize);
1124
584
                FORWARD_IF_ERROR(skippableSize, "invalid skippable frame");
1125
417
                assert(skippableSize <= srcSize);
1126
1127
417
                src = (const BYTE *)src + skippableSize;
1128
417
                srcSize -= skippableSize;
1129
417
                continue; /* check next frame */
1130
417
        }   }
1131
1132
520k
        if (ddict) {
1133
            /* we were called from ZSTD_decompress_usingDDict */
1134
292k
            FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDDict(dctx, ddict), "");
1135
292k
        } else {
1136
            /* this will initialize correctly with no dict if dict == NULL, so
1137
             * use this in all cases but ddict */
1138
227k
            FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDict(dctx, dict, dictSize), "");
1139
227k
        }
1140
520k
        ZSTD_checkContinuity(dctx, dst, dstCapacity);
1141
1142
520k
        {   const size_t res = ZSTD_decompressFrame(dctx, dst, dstCapacity,
1143
520k
                                                    &src, &srcSize);
1144
520k
            RETURN_ERROR_IF(
1145
520k
                (ZSTD_getErrorCode(res) == ZSTD_error_prefix_unknown)
1146
520k
             && (moreThan1Frame==1),
1147
520k
                srcSize_wrong,
1148
520k
                "At least one frame successfully completed, "
1149
520k
                "but following bytes are garbage: "
1150
520k
                "it's more likely to be a srcSize error, "
1151
520k
                "specifying more input bytes than size of frame(s). "
1152
520k
                "Note: one could be unlucky, it might be a corruption error instead, "
1153
520k
                "happening right at the place where we expect zstd magic bytes. "
1154
520k
                "But this is _much_ less likely than a srcSize field error.");
1155
520k
            if (ZSTD_isError(res)) return res;
1156
495k
            assert(res <= dstCapacity);
1157
495k
            if (res != 0)
1158
485k
                dst = (BYTE*)dst + res;
1159
495k
            dstCapacity -= res;
1160
495k
        }
1161
0
        moreThan1Frame = 1;
1162
495k
    }  /* while (srcSize >= ZSTD_frameHeaderSize_prefix) */
1163
1164
192k
    RETURN_ERROR_IF(srcSize, srcSize_wrong, "input not entirely consumed");
1165
1166
192k
    return (size_t)((BYTE*)dst - (BYTE*)dststart);
1167
192k
}
1168
1169
size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx,
1170
                                 void* dst, size_t dstCapacity,
1171
                           const void* src, size_t srcSize,
1172
                           const void* dict, size_t dictSize)
1173
0
{
1174
0
    return ZSTD_decompressMultiFrame(dctx, dst, dstCapacity, src, srcSize, dict, dictSize, NULL);
1175
0
}
1176
1177
1178
static ZSTD_DDict const* ZSTD_getDDict(ZSTD_DCtx* dctx)
1179
330k
{
1180
330k
    switch (dctx->dictUses) {
1181
0
    default:
1182
0
        assert(0 /* Impossible */);
1183
0
        ZSTD_FALLTHROUGH;
1184
262k
    case ZSTD_dont_use:
1185
262k
        ZSTD_clearDict(dctx);
1186
262k
        return NULL;
1187
44.2k
    case ZSTD_use_indefinitely:
1188
44.2k
        return dctx->ddict;
1189
23.8k
    case ZSTD_use_once:
1190
23.8k
        dctx->dictUses = ZSTD_dont_use;
1191
23.8k
        return dctx->ddict;
1192
330k
    }
1193
330k
}
1194
1195
size_t ZSTD_decompressDCtx(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
1196
197k
{
1197
197k
    return ZSTD_decompress_usingDDict(dctx, dst, dstCapacity, src, srcSize, ZSTD_getDDict(dctx));
1198
197k
}
1199
1200
1201
size_t ZSTD_decompress(void* dst, size_t dstCapacity, const void* src, size_t srcSize)
1202
43.6k
{
1203
43.6k
#if defined(ZSTD_HEAPMODE) && (ZSTD_HEAPMODE>=1)
1204
43.6k
    size_t regenSize;
1205
43.6k
    ZSTD_DCtx* const dctx =  ZSTD_createDCtx_internal(ZSTD_defaultCMem);
1206
43.6k
    RETURN_ERROR_IF(dctx==NULL, memory_allocation, "NULL pointer!");
1207
43.6k
    regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize);
1208
43.6k
    ZSTD_freeDCtx(dctx);
1209
43.6k
    return regenSize;
1210
#else   /* stack mode */
1211
    ZSTD_DCtx dctx;
1212
    ZSTD_initDCtx_internal(&dctx);
1213
    return ZSTD_decompressDCtx(&dctx, dst, dstCapacity, src, srcSize);
1214
#endif
1215
43.6k
}
1216
1217
1218
/*-**************************************
1219
*   Advanced Streaming Decompression API
1220
*   Bufferless and synchronous
1221
****************************************/
1222
282k
size_t ZSTD_nextSrcSizeToDecompress(ZSTD_DCtx* dctx) { return dctx->expected; }
1223
1224
/**
1225
 * Similar to ZSTD_nextSrcSizeToDecompress(), but when a block input can be streamed, we
1226
 * allow taking a partial block as the input. Currently only raw uncompressed blocks can
1227
 * be streamed.
1228
 *
1229
 * For blocks that can be streamed, this allows us to reduce the latency until we produce
1230
 * output, and avoid copying the input.
1231
 *
1232
 * @param inputSize - The total amount of input that the caller currently has.
1233
 */
1234
71.1M
static size_t ZSTD_nextSrcSizeToDecompressWithInputSize(ZSTD_DCtx* dctx, size_t inputSize) {
1235
71.1M
    if (!(dctx->stage == ZSTDds_decompressBlock || dctx->stage == ZSTDds_decompressLastBlock))
1236
35.7M
        return dctx->expected;
1237
35.3M
    if (dctx->bType != bt_raw)
1238
2.74M
        return dctx->expected;
1239
32.6M
    return BOUNDED(1, inputSize, dctx->expected);
1240
35.3M
}
1241
1242
170k
ZSTD_nextInputType_e ZSTD_nextInputType(ZSTD_DCtx* dctx) {
1243
170k
    switch(dctx->stage)
1244
170k
    {
1245
0
    default:   /* should not happen */
1246
0
        assert(0);
1247
0
        ZSTD_FALLTHROUGH;
1248
0
    case ZSTDds_getFrameHeaderSize:
1249
0
        ZSTD_FALLTHROUGH;
1250
0
    case ZSTDds_decodeFrameHeader:
1251
0
        return ZSTDnit_frameHeader;
1252
147k
    case ZSTDds_decodeBlockHeader:
1253
147k
        return ZSTDnit_blockHeader;
1254
17.0k
    case ZSTDds_decompressBlock:
1255
17.0k
        return ZSTDnit_block;
1256
5.66k
    case ZSTDds_decompressLastBlock:
1257
5.66k
        return ZSTDnit_lastBlock;
1258
157
    case ZSTDds_checkChecksum:
1259
157
        return ZSTDnit_checksum;
1260
0
    case ZSTDds_decodeSkippableHeader:
1261
0
        ZSTD_FALLTHROUGH;
1262
362
    case ZSTDds_skipFrame:
1263
362
        return ZSTDnit_skippableFrame;
1264
170k
    }
1265
170k
}
1266
1267
35.5M
static int ZSTD_isSkipFrame(ZSTD_DCtx* dctx) { return dctx->stage == ZSTDds_skipFrame; }
1268
1269
/** ZSTD_decompressContinue() :
1270
 *  srcSize : must be the exact nb of bytes expected (see ZSTD_nextSrcSizeToDecompress())
1271
 *  @return : nb of bytes generated into `dst` (necessarily <= `dstCapacity)
1272
 *            or an error code, which can be tested using ZSTD_isError() */
1273
size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const void* src, size_t srcSize)
1274
35.5M
{
1275
35.5M
    DEBUGLOG(5, "ZSTD_decompressContinue (srcSize:%u)", (unsigned)srcSize);
1276
    /* Sanity check */
1277
35.5M
    RETURN_ERROR_IF(srcSize != ZSTD_nextSrcSizeToDecompressWithInputSize(dctx, srcSize), srcSize_wrong, "not allowed");
1278
35.5M
    ZSTD_checkContinuity(dctx, dst, dstCapacity);
1279
1280
35.5M
    dctx->processedCSize += srcSize;
1281
1282
35.5M
    switch (dctx->stage)
1283
35.5M
    {
1284
0
    case ZSTDds_getFrameHeaderSize :
1285
0
        assert(src != NULL);
1286
0
        if (dctx->format == ZSTD_f_zstd1) {  /* allows header */
1287
0
            assert(srcSize >= ZSTD_FRAMEIDSIZE);  /* to read skippable magic number */
1288
0
            if ((MEM_readLE32(src) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {        /* skippable frame */
1289
0
                ZSTD_memcpy(dctx->headerBuffer, src, srcSize);
1290
0
                dctx->expected = ZSTD_SKIPPABLEHEADERSIZE - srcSize;  /* remaining to load to get full skippable frame header */
1291
0
                dctx->stage = ZSTDds_decodeSkippableHeader;
1292
0
                return 0;
1293
0
        }   }
1294
0
        dctx->headerSize = ZSTD_frameHeaderSize_internal(src, srcSize, dctx->format);
1295
0
        if (ZSTD_isError(dctx->headerSize)) return dctx->headerSize;
1296
0
        ZSTD_memcpy(dctx->headerBuffer, src, srcSize);
1297
0
        dctx->expected = dctx->headerSize - srcSize;
1298
0
        dctx->stage = ZSTDds_decodeFrameHeader;
1299
0
        return 0;
1300
1301
0
    case ZSTDds_decodeFrameHeader:
1302
0
        assert(src != NULL);
1303
0
        ZSTD_memcpy(dctx->headerBuffer + (dctx->headerSize - srcSize), src, srcSize);
1304
0
        FORWARD_IF_ERROR(ZSTD_decodeFrameHeader(dctx, dctx->headerBuffer, dctx->headerSize), "");
1305
0
        dctx->expected = ZSTD_blockHeaderSize;
1306
0
        dctx->stage = ZSTDds_decodeBlockHeader;
1307
0
        return 0;
1308
1309
17.7M
    case ZSTDds_decodeBlockHeader:
1310
17.7M
        {   blockProperties_t bp;
1311
17.7M
            size_t const cBlockSize = ZSTD_getcBlockSize(src, ZSTD_blockHeaderSize, &bp);
1312
17.7M
            if (ZSTD_isError(cBlockSize)) return cBlockSize;
1313
17.7M
            RETURN_ERROR_IF(cBlockSize > dctx->fParams.blockSizeMax, corruption_detected, "Block Size Exceeds Maximum");
1314
17.7M
            dctx->expected = cBlockSize;
1315
17.7M
            dctx->bType = bp.blockType;
1316
17.7M
            dctx->rleSize = bp.origSize;
1317
17.7M
            if (cBlockSize) {
1318
17.6M
                dctx->stage = bp.lastBlock ? ZSTDds_decompressLastBlock : ZSTDds_decompressBlock;
1319
17.6M
                return 0;
1320
17.6M
            }
1321
            /* empty block */
1322
91.7k
            if (bp.lastBlock) {
1323
13.1k
                if (dctx->fParams.checksumFlag) {
1324
5.41k
                    dctx->expected = 4;
1325
5.41k
                    dctx->stage = ZSTDds_checkChecksum;
1326
7.76k
                } else {
1327
7.76k
                    dctx->expected = 0; /* end of frame */
1328
7.76k
                    dctx->stage = ZSTDds_getFrameHeaderSize;
1329
7.76k
                }
1330
78.6k
            } else {
1331
78.6k
                dctx->expected = ZSTD_blockHeaderSize;  /* jump to next header */
1332
78.6k
                dctx->stage = ZSTDds_decodeBlockHeader;
1333
78.6k
            }
1334
91.7k
            return 0;
1335
17.7M
        }
1336
1337
75.6k
    case ZSTDds_decompressLastBlock:
1338
17.6M
    case ZSTDds_decompressBlock:
1339
17.6M
        DEBUGLOG(5, "ZSTD_decompressContinue: case ZSTDds_decompressBlock");
1340
17.6M
        {   size_t rSize;
1341
17.6M
            switch(dctx->bType)
1342
17.6M
            {
1343
637k
            case bt_compressed:
1344
637k
                DEBUGLOG(5, "ZSTD_decompressContinue: case bt_compressed");
1345
637k
                assert(dctx->isFrameDecompression == 1);
1346
637k
                rSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize, is_streaming);
1347
637k
                dctx->expected = 0;  /* Streaming not supported */
1348
637k
                break;
1349
16.3M
            case bt_raw :
1350
16.3M
                assert(srcSize <= dctx->expected);
1351
16.3M
                rSize = ZSTD_copyRawBlock(dst, dstCapacity, src, srcSize);
1352
16.3M
                FORWARD_IF_ERROR(rSize, "ZSTD_copyRawBlock failed");
1353
16.3M
                assert(rSize == srcSize);
1354
16.3M
                dctx->expected -= rSize;
1355
16.3M
                break;
1356
723k
            case bt_rle :
1357
723k
                rSize = ZSTD_setRleBlock(dst, dstCapacity, *(const BYTE*)src, dctx->rleSize);
1358
723k
                dctx->expected = 0;  /* Streaming not supported */
1359
723k
                break;
1360
0
            case bt_reserved :   /* should never happen */
1361
0
            default:
1362
0
                RETURN_ERROR(corruption_detected, "invalid block type");
1363
17.6M
            }
1364
17.6M
            FORWARD_IF_ERROR(rSize, "");
1365
17.6M
            RETURN_ERROR_IF(rSize > dctx->fParams.blockSizeMax, corruption_detected, "Decompressed Block Size Exceeds Maximum");
1366
17.6M
            DEBUGLOG(5, "ZSTD_decompressContinue: decoded size from block : %u", (unsigned)rSize);
1367
17.6M
            dctx->decodedSize += rSize;
1368
17.6M
            if (dctx->validateChecksum) XXH64_update(&dctx->xxhState, dst, rSize);
1369
17.6M
            dctx->previousDstEnd = (char*)dst + rSize;
1370
1371
            /* Stay on the same stage until we are finished streaming the block. */
1372
17.6M
            if (dctx->expected > 0) {
1373
464
                return rSize;
1374
464
            }
1375
1376
17.6M
            if (dctx->stage == ZSTDds_decompressLastBlock) {   /* end of frame */
1377
67.9k
                DEBUGLOG(4, "ZSTD_decompressContinue: decoded size from frame : %u", (unsigned)dctx->decodedSize);
1378
67.9k
                RETURN_ERROR_IF(
1379
67.9k
                    dctx->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
1380
67.9k
                 && dctx->decodedSize != dctx->fParams.frameContentSize,
1381
67.9k
                    corruption_detected, "");
1382
67.4k
                if (dctx->fParams.checksumFlag) {  /* another round for frame checksum */
1383
36.3k
                    dctx->expected = 4;
1384
36.3k
                    dctx->stage = ZSTDds_checkChecksum;
1385
36.3k
                } else {
1386
31.0k
                    ZSTD_DCtx_trace_end(dctx, dctx->decodedSize, dctx->processedCSize, /* streaming */ 1);
1387
31.0k
                    dctx->expected = 0;   /* ends here */
1388
31.0k
                    dctx->stage = ZSTDds_getFrameHeaderSize;
1389
31.0k
                }
1390
17.6M
            } else {
1391
17.6M
                dctx->stage = ZSTDds_decodeBlockHeader;
1392
17.6M
                dctx->expected = ZSTD_blockHeaderSize;
1393
17.6M
            }
1394
17.6M
            return rSize;
1395
17.6M
        }
1396
1397
41.6k
    case ZSTDds_checkChecksum:
1398
41.6k
        assert(srcSize == 4);  /* guaranteed by dctx->expected */
1399
41.6k
        {
1400
41.6k
            if (dctx->validateChecksum) {
1401
41.6k
                U32 const h32 = (U32)XXH64_digest(&dctx->xxhState);
1402
41.6k
                U32 const check32 = MEM_readLE32(src);
1403
41.6k
                DEBUGLOG(4, "ZSTD_decompressContinue: checksum : calculated %08X :: %08X read", (unsigned)h32, (unsigned)check32);
1404
41.6k
                RETURN_ERROR_IF(check32 != h32, checksum_wrong, "");
1405
41.6k
            }
1406
41.5k
            ZSTD_DCtx_trace_end(dctx, dctx->decodedSize, dctx->processedCSize, /* streaming */ 1);
1407
41.5k
            dctx->expected = 0;
1408
41.5k
            dctx->stage = ZSTDds_getFrameHeaderSize;
1409
41.5k
            return 0;
1410
41.6k
        }
1411
1412
0
    case ZSTDds_decodeSkippableHeader:
1413
0
        assert(src != NULL);
1414
0
        assert(srcSize <= ZSTD_SKIPPABLEHEADERSIZE);
1415
0
        assert(dctx->format != ZSTD_f_zstd1_magicless);
1416
0
        ZSTD_memcpy(dctx->headerBuffer + (ZSTD_SKIPPABLEHEADERSIZE - srcSize), src, srcSize);   /* complete skippable header */
1417
0
        dctx->expected = MEM_readLE32(dctx->headerBuffer + ZSTD_FRAMEIDSIZE);   /* note : dctx->expected can grow seriously large, beyond local buffer size */
1418
0
        dctx->stage = ZSTDds_skipFrame;
1419
0
        return 0;
1420
1421
511
    case ZSTDds_skipFrame:
1422
511
        dctx->expected = 0;
1423
511
        dctx->stage = ZSTDds_getFrameHeaderSize;
1424
511
        return 0;
1425
1426
0
    default:
1427
0
        assert(0);   /* impossible */
1428
35.5M
        RETURN_ERROR(GENERIC, "impossible to reach");   /* some compilers require default to do something */
1429
35.5M
    }
1430
35.5M
}
1431
1432
1433
static size_t ZSTD_refDictContent(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1434
0
{
1435
0
    dctx->dictEnd = dctx->previousDstEnd;
1436
0
    dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx->prefixStart));
1437
0
    dctx->prefixStart = dict;
1438
0
    dctx->previousDstEnd = (const char*)dict + dictSize;
1439
0
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
1440
0
    dctx->dictContentBeginForFuzzing = dctx->prefixStart;
1441
0
    dctx->dictContentEndForFuzzing = dctx->previousDstEnd;
1442
0
#endif
1443
0
    return 0;
1444
0
}
1445
1446
/*! ZSTD_loadDEntropy() :
1447
 *  dict : must point at beginning of a valid zstd dictionary.
1448
 * @return : size of entropy tables read */
1449
size_t
1450
ZSTD_loadDEntropy(ZSTD_entropyDTables_t* entropy,
1451
                  const void* const dict, size_t const dictSize)
1452
42.3k
{
1453
42.3k
    const BYTE* dictPtr = (const BYTE*)dict;
1454
42.3k
    const BYTE* const dictEnd = dictPtr + dictSize;
1455
1456
42.3k
    RETURN_ERROR_IF(dictSize <= 8, dictionary_corrupted, "dict is too small");
1457
42.3k
    assert(MEM_readLE32(dict) == ZSTD_MAGIC_DICTIONARY);   /* dict must be valid */
1458
42.3k
    dictPtr += 8;   /* skip header = magic + dictID */
1459
1460
42.3k
    ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, OFTable) == offsetof(ZSTD_entropyDTables_t, LLTable) + sizeof(entropy->LLTable));
1461
42.3k
    ZSTD_STATIC_ASSERT(offsetof(ZSTD_entropyDTables_t, MLTable) == offsetof(ZSTD_entropyDTables_t, OFTable) + sizeof(entropy->OFTable));
1462
42.3k
    ZSTD_STATIC_ASSERT(sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable) >= HUF_DECOMPRESS_WORKSPACE_SIZE);
1463
42.3k
    {   void* const workspace = &entropy->LLTable;   /* use fse tables as temporary workspace; implies fse tables are grouped together */
1464
42.3k
        size_t const workspaceSize = sizeof(entropy->LLTable) + sizeof(entropy->OFTable) + sizeof(entropy->MLTable);
1465
#ifdef HUF_FORCE_DECOMPRESS_X1
1466
        /* in minimal huffman, we always use X1 variants */
1467
        size_t const hSize = HUF_readDTableX1_wksp(entropy->hufTable,
1468
                                                dictPtr, dictEnd - dictPtr,
1469
                                                workspace, workspaceSize, /* flags */ 0);
1470
#else
1471
42.3k
        size_t const hSize = HUF_readDTableX2_wksp(entropy->hufTable,
1472
42.3k
                                                dictPtr, (size_t)(dictEnd - dictPtr),
1473
42.3k
                                                workspace, workspaceSize, /* flags */ 0);
1474
42.3k
#endif
1475
42.3k
        RETURN_ERROR_IF(HUF_isError(hSize), dictionary_corrupted, "");
1476
42.3k
        dictPtr += hSize;
1477
42.3k
    }
1478
1479
0
    {   short offcodeNCount[MaxOff+1];
1480
42.3k
        unsigned offcodeMaxValue = MaxOff, offcodeLog;
1481
42.3k
        size_t const offcodeHeaderSize = FSE_readNCount(offcodeNCount, &offcodeMaxValue, &offcodeLog, dictPtr, (size_t)(dictEnd-dictPtr));
1482
42.3k
        RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, "");
1483
42.3k
        RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, "");
1484
42.3k
        RETURN_ERROR_IF(offcodeLog > OffFSELog, dictionary_corrupted, "");
1485
42.3k
        ZSTD_buildFSETable( entropy->OFTable,
1486
42.3k
                            offcodeNCount, offcodeMaxValue,
1487
42.3k
                            OF_base, OF_bits,
1488
42.3k
                            offcodeLog,
1489
42.3k
                            entropy->workspace, sizeof(entropy->workspace),
1490
42.3k
                            /* bmi2 */0);
1491
42.3k
        dictPtr += offcodeHeaderSize;
1492
42.3k
    }
1493
1494
0
    {   short matchlengthNCount[MaxML+1];
1495
42.3k
        unsigned matchlengthMaxValue = MaxML, matchlengthLog;
1496
42.3k
        size_t const matchlengthHeaderSize = FSE_readNCount(matchlengthNCount, &matchlengthMaxValue, &matchlengthLog, dictPtr, (size_t)(dictEnd-dictPtr));
1497
42.3k
        RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, "");
1498
42.3k
        RETURN_ERROR_IF(matchlengthMaxValue > MaxML, dictionary_corrupted, "");
1499
42.3k
        RETURN_ERROR_IF(matchlengthLog > MLFSELog, dictionary_corrupted, "");
1500
42.3k
        ZSTD_buildFSETable( entropy->MLTable,
1501
42.3k
                            matchlengthNCount, matchlengthMaxValue,
1502
42.3k
                            ML_base, ML_bits,
1503
42.3k
                            matchlengthLog,
1504
42.3k
                            entropy->workspace, sizeof(entropy->workspace),
1505
42.3k
                            /* bmi2 */ 0);
1506
42.3k
        dictPtr += matchlengthHeaderSize;
1507
42.3k
    }
1508
1509
0
    {   short litlengthNCount[MaxLL+1];
1510
42.3k
        unsigned litlengthMaxValue = MaxLL, litlengthLog;
1511
42.3k
        size_t const litlengthHeaderSize = FSE_readNCount(litlengthNCount, &litlengthMaxValue, &litlengthLog, dictPtr, (size_t)(dictEnd-dictPtr));
1512
42.3k
        RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, "");
1513
42.3k
        RETURN_ERROR_IF(litlengthMaxValue > MaxLL, dictionary_corrupted, "");
1514
42.3k
        RETURN_ERROR_IF(litlengthLog > LLFSELog, dictionary_corrupted, "");
1515
42.3k
        ZSTD_buildFSETable( entropy->LLTable,
1516
42.3k
                            litlengthNCount, litlengthMaxValue,
1517
42.3k
                            LL_base, LL_bits,
1518
42.3k
                            litlengthLog,
1519
42.3k
                            entropy->workspace, sizeof(entropy->workspace),
1520
42.3k
                            /* bmi2 */ 0);
1521
42.3k
        dictPtr += litlengthHeaderSize;
1522
42.3k
    }
1523
1524
42.3k
    RETURN_ERROR_IF(dictPtr+12 > dictEnd, dictionary_corrupted, "");
1525
42.3k
    {   int i;
1526
42.3k
        size_t const dictContentSize = (size_t)(dictEnd - (dictPtr+12));
1527
169k
        for (i=0; i<3; i++) {
1528
127k
            U32 const rep = MEM_readLE32(dictPtr); dictPtr += 4;
1529
127k
            RETURN_ERROR_IF(rep==0 || rep > dictContentSize,
1530
127k
                            dictionary_corrupted, "");
1531
127k
            entropy->rep[i] = rep;
1532
127k
    }   }
1533
1534
42.3k
    return (size_t)(dictPtr - (const BYTE*)dict);
1535
42.3k
}
1536
1537
static size_t ZSTD_decompress_insertDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1538
0
{
1539
0
    if (dictSize < 8) return ZSTD_refDictContent(dctx, dict, dictSize);
1540
0
    {   U32 const magic = MEM_readLE32(dict);
1541
0
        if (magic != ZSTD_MAGIC_DICTIONARY) {
1542
0
            return ZSTD_refDictContent(dctx, dict, dictSize);   /* pure content mode */
1543
0
    }   }
1544
0
    dctx->dictID = MEM_readLE32((const char*)dict + ZSTD_FRAMEIDSIZE);
1545
1546
    /* load entropy tables */
1547
0
    {   size_t const eSize = ZSTD_loadDEntropy(&dctx->entropy, dict, dictSize);
1548
0
        RETURN_ERROR_IF(ZSTD_isError(eSize), dictionary_corrupted, "");
1549
0
        dict = (const char*)dict + eSize;
1550
0
        dictSize -= eSize;
1551
0
    }
1552
0
    dctx->litEntropy = dctx->fseEntropy = 1;
1553
1554
    /* reference dictionary content */
1555
0
    return ZSTD_refDictContent(dctx, dict, dictSize);
1556
0
}
1557
1558
size_t ZSTD_decompressBegin(ZSTD_DCtx* dctx)
1559
628k
{
1560
628k
    assert(dctx != NULL);
1561
628k
#if ZSTD_TRACE
1562
628k
    dctx->traceCtx = (ZSTD_trace_decompress_begin != NULL) ? ZSTD_trace_decompress_begin(dctx) : 0;
1563
628k
#endif
1564
628k
    dctx->expected = ZSTD_startingInputLength(dctx->format);  /* dctx->format must be properly set */
1565
628k
    dctx->stage = ZSTDds_getFrameHeaderSize;
1566
628k
    dctx->processedCSize = 0;
1567
628k
    dctx->decodedSize = 0;
1568
628k
    dctx->previousDstEnd = NULL;
1569
628k
    dctx->prefixStart = NULL;
1570
628k
    dctx->virtualStart = NULL;
1571
628k
    dctx->dictEnd = NULL;
1572
628k
    dctx->entropy.hufTable[0] = (HUF_DTable)((ZSTD_HUFFDTABLE_CAPACITY_LOG)*0x1000001);  /* cover both little and big endian */
1573
628k
    dctx->litEntropy = dctx->fseEntropy = 0;
1574
628k
    dctx->dictID = 0;
1575
628k
    dctx->bType = bt_reserved;
1576
628k
    dctx->isFrameDecompression = 1;
1577
628k
    ZSTD_STATIC_ASSERT(sizeof(dctx->entropy.rep) == sizeof(repStartValue));
1578
628k
    ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue));  /* initial repcodes */
1579
628k
    dctx->LLTptr = dctx->entropy.LLTable;
1580
628k
    dctx->MLTptr = dctx->entropy.MLTable;
1581
628k
    dctx->OFTptr = dctx->entropy.OFTable;
1582
628k
    dctx->HUFptr = dctx->entropy.hufTable;
1583
628k
    return 0;
1584
628k
}
1585
1586
size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1587
227k
{
1588
227k
    FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , "");
1589
227k
    if (dict && dictSize)
1590
0
        RETURN_ERROR_IF(
1591
227k
            ZSTD_isError(ZSTD_decompress_insertDictionary(dctx, dict, dictSize)),
1592
227k
            dictionary_corrupted, "");
1593
227k
    return 0;
1594
227k
}
1595
1596
1597
/* ======   ZSTD_DDict   ====== */
1598
1599
size_t ZSTD_decompressBegin_usingDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict)
1600
387k
{
1601
387k
    DEBUGLOG(4, "ZSTD_decompressBegin_usingDDict");
1602
387k
    assert(dctx != NULL);
1603
387k
    if (ddict) {
1604
292k
        const char* const dictStart = (const char*)ZSTD_DDict_dictContent(ddict);
1605
292k
        size_t const dictSize = ZSTD_DDict_dictSize(ddict);
1606
292k
        const void* const dictEnd = dictStart + dictSize;
1607
292k
        dctx->ddictIsCold = (dctx->dictEnd != dictEnd);
1608
292k
        DEBUGLOG(4, "DDict is %s",
1609
292k
                    dctx->ddictIsCold ? "~cold~" : "hot!");
1610
292k
    }
1611
387k
    FORWARD_IF_ERROR( ZSTD_decompressBegin(dctx) , "");
1612
387k
    if (ddict) {   /* NULL ddict is equivalent to no dictionary */
1613
292k
        ZSTD_copyDDictParameters(dctx, ddict);
1614
292k
    }
1615
387k
    return 0;
1616
387k
}
1617
1618
/*! ZSTD_getDictID_fromDict() :
1619
 *  Provides the dictID stored within dictionary.
1620
 *  if @return == 0, the dictionary is not conformant with Zstandard specification.
1621
 *  It can still be loaded, but as a content-only dictionary. */
1622
unsigned ZSTD_getDictID_fromDict(const void* dict, size_t dictSize)
1623
0
{
1624
0
    if (dictSize < 8) return 0;
1625
0
    if (MEM_readLE32(dict) != ZSTD_MAGIC_DICTIONARY) return 0;
1626
0
    return MEM_readLE32((const char*)dict + ZSTD_FRAMEIDSIZE);
1627
0
}
1628
1629
/*! ZSTD_getDictID_fromFrame() :
1630
 *  Provides the dictID required to decompress frame stored within `src`.
1631
 *  If @return == 0, the dictID could not be decoded.
1632
 *  This could for one of the following reasons :
1633
 *  - The frame does not require a dictionary (most common case).
1634
 *  - The frame was built with dictID intentionally removed.
1635
 *    Needed dictionary is a hidden piece of information.
1636
 *    Note : this use case also happens when using a non-conformant dictionary.
1637
 *  - `srcSize` is too small, and as a result, frame header could not be decoded.
1638
 *    Note : possible if `srcSize < ZSTD_FRAMEHEADERSIZE_MAX`.
1639
 *  - This is not a Zstandard frame.
1640
 *  When identifying the exact failure cause, it's possible to use
1641
 *  ZSTD_getFrameHeader(), which will provide a more precise error code. */
1642
unsigned ZSTD_getDictID_fromFrame(const void* src, size_t srcSize)
1643
2.37k
{
1644
2.37k
    ZSTD_frameHeader zfp = { 0, 0, 0, ZSTD_frame, 0, 0, 0, 0, 0 };
1645
2.37k
    size_t const hError = ZSTD_getFrameHeader(&zfp, src, srcSize);
1646
2.37k
    if (ZSTD_isError(hError)) return 0;
1647
689
    return zfp.dictID;
1648
2.37k
}
1649
1650
1651
/*! ZSTD_decompress_usingDDict() :
1652
*   Decompression using a pre-digested Dictionary
1653
*   Use dictionary without significant overhead. */
1654
size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx,
1655
                                  void* dst, size_t dstCapacity,
1656
                            const void* src, size_t srcSize,
1657
                            const ZSTD_DDict* ddict)
1658
235k
{
1659
    /* pass content and size in case legacy frames are encountered */
1660
235k
    return ZSTD_decompressMultiFrame(dctx, dst, dstCapacity, src, srcSize,
1661
235k
                                     NULL, 0,
1662
235k
                                     ddict);
1663
235k
}
1664
1665
1666
/*=====================================
1667
*   Streaming decompression
1668
*====================================*/
1669
1670
ZSTD_DStream* ZSTD_createDStream(void)
1671
22.6k
{
1672
22.6k
    DEBUGLOG(3, "ZSTD_createDStream");
1673
22.6k
    return ZSTD_createDCtx_internal(ZSTD_defaultCMem);
1674
22.6k
}
1675
1676
ZSTD_DStream* ZSTD_initStaticDStream(void *workspace, size_t workspaceSize)
1677
0
{
1678
0
    return ZSTD_initStaticDCtx(workspace, workspaceSize);
1679
0
}
1680
1681
ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem)
1682
0
{
1683
0
    return ZSTD_createDCtx_internal(customMem);
1684
0
}
1685
1686
size_t ZSTD_freeDStream(ZSTD_DStream* zds)
1687
22.6k
{
1688
22.6k
    return ZSTD_freeDCtx(zds);
1689
22.6k
}
1690
1691
1692
/* ***  Initialization  *** */
1693
1694
0
size_t ZSTD_DStreamInSize(void)  { return ZSTD_BLOCKSIZE_MAX + ZSTD_blockHeaderSize; }
1695
0
size_t ZSTD_DStreamOutSize(void) { return ZSTD_BLOCKSIZE_MAX; }
1696
1697
size_t ZSTD_DCtx_loadDictionary_advanced(ZSTD_DCtx* dctx,
1698
                                   const void* dict, size_t dictSize,
1699
                                         ZSTD_dictLoadMethod_e dictLoadMethod,
1700
                                         ZSTD_dictContentType_e dictContentType)
1701
65.8k
{
1702
65.8k
    RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, "");
1703
65.8k
    ZSTD_clearDict(dctx);
1704
65.8k
    if (dict && dictSize != 0) {
1705
65.3k
        dctx->ddictLocal = ZSTD_createDDict_advanced(dict, dictSize, dictLoadMethod, dictContentType, dctx->customMem);
1706
65.3k
        RETURN_ERROR_IF(dctx->ddictLocal == NULL, memory_allocation, "NULL pointer!");
1707
65.3k
        dctx->ddict = dctx->ddictLocal;
1708
65.3k
        dctx->dictUses = ZSTD_use_indefinitely;
1709
65.3k
    }
1710
65.8k
    return 0;
1711
65.8k
}
1712
1713
size_t ZSTD_DCtx_loadDictionary_byReference(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1714
0
{
1715
0
    return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto);
1716
0
}
1717
1718
size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, const void* dict, size_t dictSize)
1719
0
{
1720
0
    return ZSTD_DCtx_loadDictionary_advanced(dctx, dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto);
1721
0
}
1722
1723
size_t ZSTD_DCtx_refPrefix_advanced(ZSTD_DCtx* dctx, const void* prefix, size_t prefixSize, ZSTD_dictContentType_e dictContentType)
1724
23.8k
{
1725
23.8k
    FORWARD_IF_ERROR(ZSTD_DCtx_loadDictionary_advanced(dctx, prefix, prefixSize, ZSTD_dlm_byRef, dictContentType), "");
1726
23.8k
    dctx->dictUses = ZSTD_use_once;
1727
23.8k
    return 0;
1728
23.8k
}
1729
1730
size_t ZSTD_DCtx_refPrefix(ZSTD_DCtx* dctx, const void* prefix, size_t prefixSize)
1731
0
{
1732
0
    return ZSTD_DCtx_refPrefix_advanced(dctx, prefix, prefixSize, ZSTD_dct_rawContent);
1733
0
}
1734
1735
1736
/* ZSTD_initDStream_usingDict() :
1737
 * return : expected size, aka ZSTD_startingInputLength().
1738
 * this function cannot fail */
1739
size_t ZSTD_initDStream_usingDict(ZSTD_DStream* zds, const void* dict, size_t dictSize)
1740
0
{
1741
0
    DEBUGLOG(4, "ZSTD_initDStream_usingDict");
1742
0
    FORWARD_IF_ERROR( ZSTD_DCtx_reset(zds, ZSTD_reset_session_only) , "");
1743
0
    FORWARD_IF_ERROR( ZSTD_DCtx_loadDictionary(zds, dict, dictSize) , "");
1744
0
    return ZSTD_startingInputLength(zds->format);
1745
0
}
1746
1747
/* note : this variant can't fail */
1748
size_t ZSTD_initDStream(ZSTD_DStream* zds)
1749
10.5k
{
1750
10.5k
    DEBUGLOG(4, "ZSTD_initDStream");
1751
10.5k
    FORWARD_IF_ERROR(ZSTD_DCtx_reset(zds, ZSTD_reset_session_only), "");
1752
10.5k
    FORWARD_IF_ERROR(ZSTD_DCtx_refDDict(zds, NULL), "");
1753
10.5k
    return ZSTD_startingInputLength(zds->format);
1754
10.5k
}
1755
1756
/* ZSTD_initDStream_usingDDict() :
1757
 * ddict will just be referenced, and must outlive decompression session
1758
 * this function cannot fail */
1759
size_t ZSTD_initDStream_usingDDict(ZSTD_DStream* dctx, const ZSTD_DDict* ddict)
1760
0
{
1761
0
    DEBUGLOG(4, "ZSTD_initDStream_usingDDict");
1762
0
    FORWARD_IF_ERROR( ZSTD_DCtx_reset(dctx, ZSTD_reset_session_only) , "");
1763
0
    FORWARD_IF_ERROR( ZSTD_DCtx_refDDict(dctx, ddict) , "");
1764
0
    return ZSTD_startingInputLength(dctx->format);
1765
0
}
1766
1767
/* ZSTD_resetDStream() :
1768
 * return : expected size, aka ZSTD_startingInputLength().
1769
 * this function cannot fail */
1770
size_t ZSTD_resetDStream(ZSTD_DStream* dctx)
1771
0
{
1772
0
    DEBUGLOG(4, "ZSTD_resetDStream");
1773
0
    FORWARD_IF_ERROR(ZSTD_DCtx_reset(dctx, ZSTD_reset_session_only), "");
1774
0
    return ZSTD_startingInputLength(dctx->format);
1775
0
}
1776
1777
1778
size_t ZSTD_DCtx_refDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict)
1779
13.0k
{
1780
13.0k
    RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, "");
1781
13.0k
    ZSTD_clearDict(dctx);
1782
13.0k
    if (ddict) {
1783
2.51k
        dctx->ddict = ddict;
1784
2.51k
        dctx->dictUses = ZSTD_use_indefinitely;
1785
2.51k
        if (dctx->refMultipleDDicts == ZSTD_rmd_refMultipleDDicts) {
1786
0
            if (dctx->ddictSet == NULL) {
1787
0
                dctx->ddictSet = ZSTD_createDDictHashSet(dctx->customMem);
1788
0
                if (!dctx->ddictSet) {
1789
0
                    RETURN_ERROR(memory_allocation, "Failed to allocate memory for hash set!");
1790
0
                }
1791
0
            }
1792
0
            assert(!dctx->staticSize);  /* Impossible: ddictSet cannot have been allocated if static dctx */
1793
0
            FORWARD_IF_ERROR(ZSTD_DDictHashSet_addDDict(dctx->ddictSet, ddict, dctx->customMem), "");
1794
0
        }
1795
2.51k
    }
1796
13.0k
    return 0;
1797
13.0k
}
1798
1799
/* ZSTD_DCtx_setMaxWindowSize() :
1800
 * note : no direct equivalence in ZSTD_DCtx_setParameter,
1801
 * since this version sets windowSize, and the other sets windowLog */
1802
size_t ZSTD_DCtx_setMaxWindowSize(ZSTD_DCtx* dctx, size_t maxWindowSize)
1803
0
{
1804
0
    ZSTD_bounds const bounds = ZSTD_dParam_getBounds(ZSTD_d_windowLogMax);
1805
0
    size_t const min = (size_t)1 << bounds.lowerBound;
1806
0
    size_t const max = (size_t)1 << bounds.upperBound;
1807
0
    RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, "");
1808
0
    RETURN_ERROR_IF(maxWindowSize < min, parameter_outOfBound, "");
1809
0
    RETURN_ERROR_IF(maxWindowSize > max, parameter_outOfBound, "");
1810
0
    dctx->maxWindowSize = maxWindowSize;
1811
0
    return 0;
1812
0
}
1813
1814
size_t ZSTD_DCtx_setFormat(ZSTD_DCtx* dctx, ZSTD_format_e format)
1815
0
{
1816
0
    return ZSTD_DCtx_setParameter(dctx, ZSTD_d_format, (int)format);
1817
0
}
1818
1819
ZSTD_bounds ZSTD_dParam_getBounds(ZSTD_dParameter dParam)
1820
30.2k
{
1821
30.2k
    ZSTD_bounds bounds = { 0, 0, 0 };
1822
30.2k
    switch(dParam) {
1823
0
        case ZSTD_d_windowLogMax:
1824
0
            bounds.lowerBound = ZSTD_WINDOWLOG_ABSOLUTEMIN;
1825
0
            bounds.upperBound = ZSTD_WINDOWLOG_MAX;
1826
0
            return bounds;
1827
19.9k
        case ZSTD_d_format:
1828
19.9k
            bounds.lowerBound = (int)ZSTD_f_zstd1;
1829
19.9k
            bounds.upperBound = (int)ZSTD_f_zstd1_magicless;
1830
19.9k
            ZSTD_STATIC_ASSERT(ZSTD_f_zstd1 < ZSTD_f_zstd1_magicless);
1831
19.9k
            return bounds;
1832
2.86k
        case ZSTD_d_stableOutBuffer:
1833
2.86k
            bounds.lowerBound = (int)ZSTD_bm_buffered;
1834
2.86k
            bounds.upperBound = (int)ZSTD_bm_stable;
1835
2.86k
            return bounds;
1836
0
        case ZSTD_d_forceIgnoreChecksum:
1837
0
            bounds.lowerBound = (int)ZSTD_d_validateChecksum;
1838
0
            bounds.upperBound = (int)ZSTD_d_ignoreChecksum;
1839
0
            return bounds;
1840
0
        case ZSTD_d_refMultipleDDicts:
1841
0
            bounds.lowerBound = (int)ZSTD_rmd_refSingleDDict;
1842
0
            bounds.upperBound = (int)ZSTD_rmd_refMultipleDDicts;
1843
0
            return bounds;
1844
0
        case ZSTD_d_disableHuffmanAssembly:
1845
0
            bounds.lowerBound = 0;
1846
0
            bounds.upperBound = 1;
1847
0
            return bounds;
1848
7.40k
        case ZSTD_d_maxBlockSize:
1849
7.40k
            bounds.lowerBound = ZSTD_BLOCKSIZE_MAX_MIN;
1850
7.40k
            bounds.upperBound = ZSTD_BLOCKSIZE_MAX;
1851
7.40k
            return bounds;
1852
1853
0
        default:;
1854
30.2k
    }
1855
0
    bounds.error = ERROR(parameter_unsupported);
1856
0
    return bounds;
1857
30.2k
}
1858
1859
/* ZSTD_dParam_withinBounds:
1860
 * @return 1 if value is within dParam bounds,
1861
 * 0 otherwise */
1862
static int ZSTD_dParam_withinBounds(ZSTD_dParameter dParam, int value)
1863
30.2k
{
1864
30.2k
    ZSTD_bounds const bounds = ZSTD_dParam_getBounds(dParam);
1865
30.2k
    if (ZSTD_isError(bounds.error)) return 0;
1866
30.2k
    if (value < bounds.lowerBound) return 0;
1867
30.2k
    if (value > bounds.upperBound) return 0;
1868
30.2k
    return 1;
1869
30.2k
}
1870
1871
30.2k
#define CHECK_DBOUNDS(p,v) {                \
1872
30.2k
    RETURN_ERROR_IF(!ZSTD_dParam_withinBounds(p, v), parameter_outOfBound, ""); \
1873
30.2k
}
1874
1875
size_t ZSTD_DCtx_getParameter(ZSTD_DCtx* dctx, ZSTD_dParameter param, int* value)
1876
0
{
1877
0
    switch (param) {
1878
0
        case ZSTD_d_windowLogMax:
1879
0
            *value = (int)ZSTD_highbit32((U32)dctx->maxWindowSize);
1880
0
            return 0;
1881
0
        case ZSTD_d_format:
1882
0
            *value = (int)dctx->format;
1883
0
            return 0;
1884
0
        case ZSTD_d_stableOutBuffer:
1885
0
            *value = (int)dctx->outBufferMode;
1886
0
            return 0;
1887
0
        case ZSTD_d_forceIgnoreChecksum:
1888
0
            *value = (int)dctx->forceIgnoreChecksum;
1889
0
            return 0;
1890
0
        case ZSTD_d_refMultipleDDicts:
1891
0
            *value = (int)dctx->refMultipleDDicts;
1892
0
            return 0;
1893
0
        case ZSTD_d_disableHuffmanAssembly:
1894
0
            *value = (int)dctx->disableHufAsm;
1895
0
            return 0;
1896
0
        case ZSTD_d_maxBlockSize:
1897
0
            *value = dctx->maxBlockSizeParam;
1898
0
            return 0;
1899
0
        default:;
1900
0
    }
1901
0
    RETURN_ERROR(parameter_unsupported, "");
1902
0
}
1903
1904
size_t ZSTD_DCtx_setParameter(ZSTD_DCtx* dctx, ZSTD_dParameter dParam, int value)
1905
31.1k
{
1906
31.1k
    RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, "");
1907
31.1k
    switch(dParam) {
1908
0
        case ZSTD_d_windowLogMax:
1909
0
            if (value == 0) value = ZSTD_WINDOWLOG_LIMIT_DEFAULT;
1910
0
            CHECK_DBOUNDS(ZSTD_d_windowLogMax, value);
1911
0
            dctx->maxWindowSize = ((size_t)1) << value;
1912
0
            return 0;
1913
19.9k
        case ZSTD_d_format:
1914
19.9k
            CHECK_DBOUNDS(ZSTD_d_format, value);
1915
19.9k
            dctx->format = (ZSTD_format_e)value;
1916
19.9k
            return 0;
1917
2.86k
        case ZSTD_d_stableOutBuffer:
1918
2.86k
            CHECK_DBOUNDS(ZSTD_d_stableOutBuffer, value);
1919
2.86k
            dctx->outBufferMode = (ZSTD_bufferMode_e)value;
1920
2.86k
            return 0;
1921
0
        case ZSTD_d_forceIgnoreChecksum:
1922
0
            CHECK_DBOUNDS(ZSTD_d_forceIgnoreChecksum, value);
1923
0
            dctx->forceIgnoreChecksum = (ZSTD_forceIgnoreChecksum_e)value;
1924
0
            return 0;
1925
0
        case ZSTD_d_refMultipleDDicts:
1926
0
            CHECK_DBOUNDS(ZSTD_d_refMultipleDDicts, value);
1927
0
            if (dctx->staticSize != 0) {
1928
0
                RETURN_ERROR(parameter_unsupported, "Static dctx does not support multiple DDicts!");
1929
0
            }
1930
0
            dctx->refMultipleDDicts = (ZSTD_refMultipleDDicts_e)value;
1931
0
            return 0;
1932
0
        case ZSTD_d_disableHuffmanAssembly:
1933
0
            CHECK_DBOUNDS(ZSTD_d_disableHuffmanAssembly, value);
1934
0
            dctx->disableHufAsm = value != 0;
1935
0
            return 0;
1936
8.37k
        case ZSTD_d_maxBlockSize:
1937
8.37k
            if (value != 0) CHECK_DBOUNDS(ZSTD_d_maxBlockSize, value);
1938
8.37k
            dctx->maxBlockSizeParam = value;
1939
8.37k
            return 0;
1940
0
        default:;
1941
31.1k
    }
1942
0
    RETURN_ERROR(parameter_unsupported, "");
1943
0
}
1944
1945
size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset)
1946
41.0k
{
1947
41.0k
    if ( (reset == ZSTD_reset_session_only)
1948
41.0k
      || (reset == ZSTD_reset_session_and_parameters) ) {
1949
41.0k
        dctx->streamStage = zdss_init;
1950
41.0k
        dctx->noForwardProgress = 0;
1951
41.0k
        dctx->isFrameDecompression = 1;
1952
41.0k
    }
1953
41.0k
    if ( (reset == ZSTD_reset_parameters)
1954
41.0k
      || (reset == ZSTD_reset_session_and_parameters) ) {
1955
19.9k
        RETURN_ERROR_IF(dctx->streamStage != zdss_init, stage_wrong, "");
1956
19.9k
        ZSTD_clearDict(dctx);
1957
19.9k
        ZSTD_DCtx_resetParameters(dctx);
1958
19.9k
    }
1959
41.0k
    return 0;
1960
41.0k
}
1961
1962
1963
size_t ZSTD_sizeof_DStream(const ZSTD_DStream* dctx)
1964
0
{
1965
0
    return ZSTD_sizeof_DCtx(dctx);
1966
0
}
1967
1968
static size_t ZSTD_decodingBufferSize_internal(unsigned long long windowSize, unsigned long long frameContentSize, size_t blockSizeMax)
1969
93.7k
{
1970
93.7k
    size_t const blockSize = MIN((size_t)MIN(windowSize, ZSTD_BLOCKSIZE_MAX), blockSizeMax);
1971
    /* We need blockSize + WILDCOPY_OVERLENGTH worth of buffer so that if a block
1972
     * ends at windowSize + WILDCOPY_OVERLENGTH + 1 bytes, we can start writing
1973
     * the block at the beginning of the output buffer, and maintain a full window.
1974
     *
1975
     * We need another blockSize worth of buffer so that we can store split
1976
     * literals at the end of the block without overwriting the extDict window.
1977
     */
1978
93.7k
    unsigned long long const neededRBSize = windowSize + (blockSize * 2) + (WILDCOPY_OVERLENGTH * 2);
1979
93.7k
    unsigned long long const neededSize = MIN(frameContentSize, neededRBSize);
1980
93.7k
    size_t const minRBSize = (size_t) neededSize;
1981
93.7k
    RETURN_ERROR_IF((unsigned long long)minRBSize != neededSize,
1982
93.7k
                    frameParameter_windowTooLarge, "");
1983
93.7k
    return minRBSize;
1984
93.7k
}
1985
1986
size_t ZSTD_decodingBufferSize_min(unsigned long long windowSize, unsigned long long frameContentSize)
1987
0
{
1988
0
    return ZSTD_decodingBufferSize_internal(windowSize, frameContentSize, ZSTD_BLOCKSIZE_MAX);
1989
0
}
1990
1991
size_t ZSTD_estimateDStreamSize(size_t windowSize)
1992
0
{
1993
0
    size_t const blockSize = MIN(windowSize, ZSTD_BLOCKSIZE_MAX);
1994
0
    size_t const inBuffSize = blockSize;  /* no block can be larger */
1995
0
    size_t const outBuffSize = ZSTD_decodingBufferSize_min(windowSize, ZSTD_CONTENTSIZE_UNKNOWN);
1996
0
    return ZSTD_estimateDCtxSize() + inBuffSize + outBuffSize;
1997
0
}
1998
1999
size_t ZSTD_estimateDStreamSize_fromFrame(const void* src, size_t srcSize)
2000
0
{
2001
0
    U32 const windowSizeMax = 1U << ZSTD_WINDOWLOG_MAX;   /* note : should be user-selectable, but requires an additional parameter (or a dctx) */
2002
0
    ZSTD_frameHeader zfh;
2003
0
    size_t const err = ZSTD_getFrameHeader(&zfh, src, srcSize);
2004
0
    if (ZSTD_isError(err)) return err;
2005
0
    RETURN_ERROR_IF(err>0, srcSize_wrong, "");
2006
0
    RETURN_ERROR_IF(zfh.windowSize > windowSizeMax,
2007
0
                    frameParameter_windowTooLarge, "");
2008
0
    return ZSTD_estimateDStreamSize((size_t)zfh.windowSize);
2009
0
}
2010
2011
2012
/* *****   Decompression   ***** */
2013
2014
static int ZSTD_DCtx_isOverflow(ZSTD_DStream* zds, size_t const neededInBuffSize, size_t const neededOutBuffSize)
2015
94.2k
{
2016
94.2k
    return (zds->inBuffSize + zds->outBuffSize) >= (neededInBuffSize + neededOutBuffSize) * ZSTD_WORKSPACETOOLARGE_FACTOR;
2017
94.2k
}
2018
2019
static void ZSTD_DCtx_updateOversizedDuration(ZSTD_DStream* zds, size_t const neededInBuffSize, size_t const neededOutBuffSize)
2020
94.2k
{
2021
94.2k
    if (ZSTD_DCtx_isOverflow(zds, neededInBuffSize, neededOutBuffSize))
2022
7.20k
        zds->oversizedDuration++;
2023
87.0k
    else
2024
87.0k
        zds->oversizedDuration = 0;
2025
94.2k
}
2026
2027
static int ZSTD_DCtx_isOversizedTooLong(ZSTD_DStream* zds)
2028
94.2k
{
2029
94.2k
    return zds->oversizedDuration >= ZSTD_WORKSPACETOOLARGE_MAXDURATION;
2030
94.2k
}
2031
2032
/* Checks that the output buffer hasn't changed if ZSTD_obm_stable is used. */
2033
static size_t ZSTD_checkOutBuffer(ZSTD_DStream const* zds, ZSTD_outBuffer const* output)
2034
343k
{
2035
343k
    ZSTD_outBuffer const expect = zds->expectedOutBuffer;
2036
    /* No requirement when ZSTD_obm_stable is not enabled. */
2037
343k
    if (zds->outBufferMode != ZSTD_bm_stable)
2038
336k
        return 0;
2039
    /* Any buffer is allowed in zdss_init, this must be the same for every other call until
2040
     * the context is reset.
2041
     */
2042
7.79k
    if (zds->streamStage == zdss_init)
2043
3.70k
        return 0;
2044
    /* The buffer must match our expectation exactly. */
2045
4.08k
    if (expect.dst == output->dst && expect.pos == output->pos && expect.size == output->size)
2046
4.08k
        return 0;
2047
5
    RETURN_ERROR(dstBuffer_wrong, "ZSTD_d_stableOutBuffer enabled but output differs!");
2048
5
}
2049
2050
/* Calls ZSTD_decompressContinue() with the right parameters for ZSTD_decompressStream()
2051
 * and updates the stage and the output buffer state. This call is extracted so it can be
2052
 * used both when reading directly from the ZSTD_inBuffer, and in buffered input mode.
2053
 * NOTE: You must break after calling this function since the streamStage is modified.
2054
 */
2055
static size_t ZSTD_decompressContinueStream(
2056
            ZSTD_DStream* zds, char** op, char* oend,
2057
35.5M
            void const* src, size_t srcSize) {
2058
35.5M
    int const isSkipFrame = ZSTD_isSkipFrame(zds);
2059
35.5M
    if (zds->outBufferMode == ZSTD_bm_buffered) {
2060
35.5M
        size_t const dstSize = isSkipFrame ? 0 : zds->outBuffSize - zds->outStart;
2061
35.5M
        size_t const decodedSize = ZSTD_decompressContinue(zds,
2062
35.5M
                zds->outBuff + zds->outStart, dstSize, src, srcSize);
2063
35.5M
        FORWARD_IF_ERROR(decodedSize, "");
2064
35.4M
        if (!decodedSize && !isSkipFrame) {
2065
17.8M
            zds->streamStage = zdss_read;
2066
17.8M
        } else {
2067
17.6M
            zds->outEnd = zds->outStart + decodedSize;
2068
17.6M
            zds->streamStage = zdss_flush;
2069
17.6M
        }
2070
35.4M
    } else {
2071
        /* Write directly into the output buffer */
2072
1.67k
        size_t const dstSize = isSkipFrame ? 0 : (size_t)(oend - *op);
2073
1.67k
        size_t const decodedSize = ZSTD_decompressContinue(zds, *op, dstSize, src, srcSize);
2074
1.67k
        FORWARD_IF_ERROR(decodedSize, "");
2075
1.44k
        *op += decodedSize;
2076
        /* Flushing is not needed. */
2077
1.44k
        zds->streamStage = zdss_read;
2078
1.44k
        assert(*op <= oend);
2079
1.44k
        assert(zds->outBufferMode == ZSTD_bm_stable);
2080
1.44k
    }
2081
35.4M
    return 0;
2082
35.5M
}
2083
2084
size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input)
2085
343k
{
2086
343k
    const char* const src = (const char*)input->src;
2087
343k
    const char* const istart = input->pos != 0 ? src + input->pos : src;
2088
343k
    const char* const iend = input->size != 0 ? src + input->size : src;
2089
343k
    const char* ip = istart;
2090
343k
    char* const dst = (char*)output->dst;
2091
343k
    char* const ostart = output->pos != 0 ? dst + output->pos : dst;
2092
343k
    char* const oend = output->size != 0 ? dst + output->size : dst;
2093
343k
    char* op = ostart;
2094
343k
    U32 someMoreWork = 1;
2095
2096
343k
    DEBUGLOG(5, "ZSTD_decompressStream");
2097
343k
    RETURN_ERROR_IF(
2098
343k
        input->pos > input->size,
2099
343k
        srcSize_wrong,
2100
343k
        "forbidden. in: pos: %u   vs size: %u",
2101
343k
        (U32)input->pos, (U32)input->size);
2102
343k
    RETURN_ERROR_IF(
2103
343k
        output->pos > output->size,
2104
343k
        dstSize_tooSmall,
2105
343k
        "forbidden. out: pos: %u   vs size: %u",
2106
343k
        (U32)output->pos, (U32)output->size);
2107
343k
    DEBUGLOG(5, "input size : %u", (U32)(input->size - input->pos));
2108
343k
    FORWARD_IF_ERROR(ZSTD_checkOutBuffer(zds, output), "");
2109
2110
54.0M
    while (someMoreWork) {
2111
53.7M
        switch(zds->streamStage)
2112
53.7M
        {
2113
133k
        case zdss_init :
2114
133k
            DEBUGLOG(5, "stage zdss_init => transparent reset ");
2115
133k
            zds->streamStage = zdss_loadHeader;
2116
133k
            zds->lhSize = zds->inPos = zds->outStart = zds->outEnd = 0;
2117
133k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1)
2118
133k
            zds->legacyVersion = 0;
2119
133k
#endif
2120
133k
            zds->hostageByte = 0;
2121
133k
            zds->expectedOutBuffer = *output;
2122
133k
            ZSTD_FALLTHROUGH;
2123
2124
428k
        case zdss_loadHeader :
2125
428k
            DEBUGLOG(5, "stage zdss_loadHeader (srcSize : %u)", (U32)(iend - ip));
2126
428k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1)
2127
428k
            if (zds->legacyVersion) {
2128
27.3k
                RETURN_ERROR_IF(zds->staticSize, memory_allocation,
2129
27.3k
                    "legacy support is incompatible with static dctx");
2130
27.3k
                {   size_t const hint = ZSTD_decompressLegacyStream(zds->legacyContext, zds->legacyVersion, output, input);
2131
27.3k
                    if (hint==0) zds->streamStage = zdss_init;
2132
27.3k
                    return hint;
2133
27.3k
            }   }
2134
401k
#endif
2135
401k
            {   size_t const hSize = ZSTD_getFrameHeader_advanced(&zds->fParams, zds->headerBuffer, zds->lhSize, zds->format);
2136
401k
                if (zds->refMultipleDDicts && zds->ddictSet) {
2137
0
                    ZSTD_DCtx_selectFrameDDict(zds);
2138
0
                }
2139
401k
                if (ZSTD_isError(hSize)) {
2140
10.4k
#if defined(ZSTD_LEGACY_SUPPORT) && (ZSTD_LEGACY_SUPPORT>=1)
2141
10.4k
                    U32 const legacyVersion = ZSTD_isLegacy(istart, iend-istart);
2142
10.4k
                    if (legacyVersion) {
2143
10.0k
                        ZSTD_DDict const* const ddict = ZSTD_getDDict(zds);
2144
10.0k
                        const void* const dict = ddict ? ZSTD_DDict_dictContent(ddict) : NULL;
2145
10.0k
                        size_t const dictSize = ddict ? ZSTD_DDict_dictSize(ddict) : 0;
2146
10.0k
                        DEBUGLOG(5, "ZSTD_decompressStream: detected legacy version v0.%u", legacyVersion);
2147
10.0k
                        RETURN_ERROR_IF(zds->staticSize, memory_allocation,
2148
10.0k
                            "legacy support is incompatible with static dctx");
2149
10.0k
                        FORWARD_IF_ERROR(ZSTD_initLegacyStream(&zds->legacyContext,
2150
10.0k
                                    zds->previousLegacyVersion, legacyVersion,
2151
10.0k
                                    dict, dictSize), "");
2152
10.0k
                        zds->legacyVersion = zds->previousLegacyVersion = legacyVersion;
2153
10.0k
                        {   size_t const hint = ZSTD_decompressLegacyStream(zds->legacyContext, legacyVersion, output, input);
2154
10.0k
                            if (hint==0) zds->streamStage = zdss_init;   /* or stay in stage zdss_loadHeader */
2155
10.0k
                            return hint;
2156
10.0k
                    }   }
2157
408
#endif
2158
408
                    return hSize;   /* error */
2159
10.4k
                }
2160
390k
                if (hSize != 0) {   /* need more input */
2161
268k
                    size_t const toLoad = hSize - zds->lhSize;   /* if hSize!=0, hSize > zds->lhSize */
2162
268k
                    size_t const remainingInput = (size_t)(iend-ip);
2163
268k
                    assert(iend >= ip);
2164
268k
                    if (toLoad > remainingInput) {   /* not enough input to load full header */
2165
12.3k
                        if (remainingInput > 0) {
2166
1.66k
                            ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput);
2167
1.66k
                            zds->lhSize += remainingInput;
2168
1.66k
                        }
2169
12.3k
                        input->pos = input->size;
2170
                        /* check first few bytes */
2171
12.3k
                        FORWARD_IF_ERROR(
2172
12.3k
                            ZSTD_getFrameHeader_advanced(&zds->fParams, zds->headerBuffer, zds->lhSize, zds->format),
2173
12.3k
                            "First few bytes detected incorrect" );
2174
                        /* return hint input size */
2175
12.1k
                        return (MAX((size_t)ZSTD_FRAMEHEADERSIZE_MIN(zds->format), hSize) - zds->lhSize) + ZSTD_blockHeaderSize;   /* remaining header bytes + next block header */
2176
12.3k
                    }
2177
255k
                    assert(ip != NULL);
2178
255k
                    ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, toLoad); zds->lhSize = hSize; ip += toLoad;
2179
255k
                    break;
2180
255k
            }   }
2181
2182
            /* check for single-pass mode opportunity */
2183
122k
            if (zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
2184
122k
                && zds->fParams.frameType != ZSTD_skippableFrame
2185
122k
                && (U64)(size_t)(oend-op) >= zds->fParams.frameContentSize) {
2186
28.5k
                size_t const cSize = ZSTD_findFrameCompressedSize_advanced(istart, (size_t)(iend-istart), zds->format);
2187
28.5k
                if (cSize <= (size_t)(iend-istart)) {
2188
                    /* shortcut : using single-pass mode */
2189
27.5k
                    size_t const decompressedSize = ZSTD_decompress_usingDDict(zds, op, (size_t)(oend-op), istart, cSize, ZSTD_getDDict(zds));
2190
27.5k
                    if (ZSTD_isError(decompressedSize)) return decompressedSize;
2191
24.9k
                    DEBUGLOG(4, "shortcut to single-pass ZSTD_decompress_usingDDict()");
2192
24.9k
                    assert(istart != NULL);
2193
24.9k
                    ip = istart + cSize;
2194
24.9k
                    op = op ? op + decompressedSize : op; /* can occur if frameContentSize = 0 (empty frame) */
2195
24.9k
                    zds->expected = 0;
2196
24.9k
                    zds->streamStage = zdss_init;
2197
24.9k
                    someMoreWork = 0;
2198
24.9k
                    break;
2199
24.9k
            }   }
2200
2201
            /* Check output buffer is large enough for ZSTD_odm_stable. */
2202
95.0k
            if (zds->outBufferMode == ZSTD_bm_stable
2203
95.0k
                && zds->fParams.frameType != ZSTD_skippableFrame
2204
95.0k
                && zds->fParams.frameContentSize != ZSTD_CONTENTSIZE_UNKNOWN
2205
95.0k
                && (U64)(size_t)(oend-op) < zds->fParams.frameContentSize) {
2206
76
                RETURN_ERROR(dstSize_tooSmall, "ZSTD_obm_stable passed but ZSTD_outBuffer is too small");
2207
76
            }
2208
2209
            /* Consume header (see ZSTDds_decodeFrameHeader) */
2210
94.9k
            DEBUGLOG(4, "Consume header");
2211
94.9k
            FORWARD_IF_ERROR(ZSTD_decompressBegin_usingDDict(zds, ZSTD_getDDict(zds)), "");
2212
2213
94.9k
            if (zds->format == ZSTD_f_zstd1
2214
94.9k
                && (MEM_readLE32(zds->headerBuffer) & ZSTD_MAGIC_SKIPPABLE_MASK) == ZSTD_MAGIC_SKIPPABLE_START) {  /* skippable frame */
2215
837
                zds->expected = MEM_readLE32(zds->headerBuffer + ZSTD_FRAMEIDSIZE);
2216
837
                zds->stage = ZSTDds_skipFrame;
2217
94.1k
            } else {
2218
94.1k
                FORWARD_IF_ERROR(ZSTD_decodeFrameHeader(zds, zds->headerBuffer, zds->lhSize), "");
2219
94.1k
                zds->expected = ZSTD_blockHeaderSize;
2220
94.1k
                zds->stage = ZSTDds_decodeBlockHeader;
2221
94.1k
            }
2222
2223
            /* control buffer memory usage */
2224
94.9k
            DEBUGLOG(4, "Control max memory usage (%u KB <= max %u KB)",
2225
94.9k
                        (U32)(zds->fParams.windowSize >>10),
2226
94.9k
                        (U32)(zds->maxWindowSize >> 10) );
2227
94.9k
            zds->fParams.windowSize = MAX(zds->fParams.windowSize, 1U << ZSTD_WINDOWLOG_ABSOLUTEMIN);
2228
94.9k
            RETURN_ERROR_IF(zds->fParams.windowSize > zds->maxWindowSize,
2229
94.9k
                            frameParameter_windowTooLarge, "");
2230
94.2k
            if (zds->maxBlockSizeParam != 0)
2231
43.0k
                zds->fParams.blockSizeMax = MIN(zds->fParams.blockSizeMax, (unsigned)zds->maxBlockSizeParam);
2232
2233
            /* Adapt buffer sizes to frame header instructions */
2234
94.2k
            {   size_t const neededInBuffSize = MAX(zds->fParams.blockSizeMax, 4 /* frame checksum */);
2235
94.2k
                size_t const neededOutBuffSize = zds->outBufferMode == ZSTD_bm_buffered
2236
94.2k
                        ? ZSTD_decodingBufferSize_internal(zds->fParams.windowSize, zds->fParams.frameContentSize, zds->fParams.blockSizeMax)
2237
94.2k
                        : 0;
2238
2239
94.2k
                ZSTD_DCtx_updateOversizedDuration(zds, neededInBuffSize, neededOutBuffSize);
2240
2241
94.2k
                {   int const tooSmall = (zds->inBuffSize < neededInBuffSize) || (zds->outBuffSize < neededOutBuffSize);
2242
94.2k
                    int const tooLarge = ZSTD_DCtx_isOversizedTooLong(zds);
2243
2244
94.2k
                    if (tooSmall || tooLarge) {
2245
32.9k
                        size_t const bufferSize = neededInBuffSize + neededOutBuffSize;
2246
32.9k
                        DEBUGLOG(4, "inBuff  : from %u to %u",
2247
32.9k
                                    (U32)zds->inBuffSize, (U32)neededInBuffSize);
2248
32.9k
                        DEBUGLOG(4, "outBuff : from %u to %u",
2249
32.9k
                                    (U32)zds->outBuffSize, (U32)neededOutBuffSize);
2250
32.9k
                        if (zds->staticSize) {  /* static DCtx */
2251
0
                            DEBUGLOG(4, "staticSize : %u", (U32)zds->staticSize);
2252
0
                            assert(zds->staticSize >= sizeof(ZSTD_DCtx));  /* controlled at init */
2253
0
                            RETURN_ERROR_IF(
2254
0
                                bufferSize > zds->staticSize - sizeof(ZSTD_DCtx),
2255
0
                                memory_allocation, "");
2256
32.9k
                        } else {
2257
32.9k
                            ZSTD_customFree(zds->inBuff, zds->customMem);
2258
32.9k
                            zds->inBuffSize = 0;
2259
32.9k
                            zds->outBuffSize = 0;
2260
32.9k
                            zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem);
2261
32.9k
                            RETURN_ERROR_IF(zds->inBuff == NULL, memory_allocation, "");
2262
32.9k
                        }
2263
32.9k
                        zds->inBuffSize = neededInBuffSize;
2264
32.9k
                        zds->outBuff = zds->inBuff + zds->inBuffSize;
2265
32.9k
                        zds->outBuffSize = neededOutBuffSize;
2266
32.9k
            }   }   }
2267
94.2k
            zds->streamStage = zdss_read;
2268
94.2k
            ZSTD_FALLTHROUGH;
2269
2270
35.6M
        case zdss_read:
2271
35.6M
            DEBUGLOG(5, "stage zdss_read");
2272
35.6M
            {   size_t const neededInSize = ZSTD_nextSrcSizeToDecompressWithInputSize(zds, (size_t)(iend - ip));
2273
35.6M
                DEBUGLOG(5, "neededInSize = %u", (U32)neededInSize);
2274
35.6M
                if (neededInSize==0) {  /* end of frame */
2275
76.0k
                    zds->streamStage = zdss_init;
2276
76.0k
                    someMoreWork = 0;
2277
76.0k
                    break;
2278
76.0k
                }
2279
35.5M
                if ((size_t)(iend-ip) >= neededInSize) {  /* decode directly from src */
2280
35.5M
                    FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, ip, neededInSize), "");
2281
35.4M
                    assert(ip != NULL);
2282
35.4M
                    ip += neededInSize;
2283
                    /* Function modifies the stage so we must break */
2284
35.4M
                    break;
2285
35.4M
            }   }
2286
23.0k
            if (ip==iend) { someMoreWork = 0; break; }   /* no more input */
2287
870
            zds->streamStage = zdss_load;
2288
870
            ZSTD_FALLTHROUGH;
2289
2290
2.73k
        case zdss_load:
2291
2.73k
            {   size_t const neededInSize = ZSTD_nextSrcSizeToDecompress(zds);
2292
2.73k
                size_t const toLoad = neededInSize - zds->inPos;
2293
2.73k
                int const isSkipFrame = ZSTD_isSkipFrame(zds);
2294
2.73k
                size_t loadedSize;
2295
                /* At this point we shouldn't be decompressing a block that we can stream. */
2296
2.73k
                assert(neededInSize == ZSTD_nextSrcSizeToDecompressWithInputSize(zds, (size_t)(iend - ip)));
2297
2.73k
                if (isSkipFrame) {
2298
329
                    loadedSize = MIN(toLoad, (size_t)(iend-ip));
2299
2.40k
                } else {
2300
2.40k
                    RETURN_ERROR_IF(toLoad > zds->inBuffSize - zds->inPos,
2301
2.40k
                                    corruption_detected,
2302
2.40k
                                    "should never happen");
2303
2.40k
                    loadedSize = ZSTD_limitCopy(zds->inBuff + zds->inPos, toLoad, ip, (size_t)(iend-ip));
2304
2.40k
                }
2305
2.73k
                if (loadedSize != 0) {
2306
                    /* ip may be NULL */
2307
2.27k
                    ip += loadedSize;
2308
2.27k
                    zds->inPos += loadedSize;
2309
2.27k
                }
2310
2.73k
                if (loadedSize < toLoad) { someMoreWork = 0; break; }   /* not enough input, wait for more */
2311
2312
                /* decode loaded input */
2313
608
                zds->inPos = 0;   /* input is consumed */
2314
608
                FORWARD_IF_ERROR(ZSTD_decompressContinueStream(zds, &op, oend, zds->inBuff, neededInSize), "");
2315
                /* Function modifies the stage so we must break */
2316
468
                break;
2317
608
            }
2318
17.8M
        case zdss_flush:
2319
17.8M
            {
2320
17.8M
                size_t const toFlushSize = zds->outEnd - zds->outStart;
2321
17.8M
                size_t const flushedSize = ZSTD_limitCopy(op, (size_t)(oend-op), zds->outBuff + zds->outStart, toFlushSize);
2322
2323
17.8M
                op = op ? op + flushedSize : op;
2324
2325
17.8M
                zds->outStart += flushedSize;
2326
17.8M
                if (flushedSize == toFlushSize) {  /* flush completed */
2327
17.6M
                    zds->streamStage = zdss_read;
2328
17.6M
                    if ( (zds->outBuffSize < zds->fParams.frameContentSize)
2329
17.6M
                        && (zds->outStart + zds->fParams.blockSizeMax > zds->outBuffSize) ) {
2330
138k
                        DEBUGLOG(5, "restart filling outBuff from beginning (left:%i, needed:%u)",
2331
138k
                                (int)(zds->outBuffSize - zds->outStart),
2332
138k
                                (U32)zds->fParams.blockSizeMax);
2333
138k
                        zds->outStart = zds->outEnd = 0;
2334
138k
                    }
2335
17.6M
                    break;
2336
17.6M
            }   }
2337
            /* cannot complete flush */
2338
154k
            someMoreWork = 0;
2339
154k
            break;
2340
2341
0
        default:
2342
0
            assert(0);    /* impossible */
2343
53.7M
            RETURN_ERROR(GENERIC, "impossible to reach");   /* some compilers require default to do something */
2344
53.7M
    }   }
2345
2346
    /* result */
2347
279k
    input->pos = (size_t)(ip - (const char*)(input->src));
2348
279k
    output->pos = (size_t)(op - (char*)(output->dst));
2349
2350
    /* Update the expected output buffer for ZSTD_obm_stable. */
2351
279k
    zds->expectedOutBuffer = *output;
2352
2353
279k
    if ((ip==istart) && (op==ostart)) {  /* no forward progress */
2354
1.59k
        zds->noForwardProgress ++;
2355
1.59k
        if (zds->noForwardProgress >= ZSTD_NO_FORWARD_PROGRESS_MAX) {
2356
11
            RETURN_ERROR_IF(op==oend, noForwardProgress_destFull, "");
2357
9
            RETURN_ERROR_IF(ip==iend, noForwardProgress_inputEmpty, "");
2358
0
            assert(0);
2359
0
        }
2360
278k
    } else {
2361
278k
        zds->noForwardProgress = 0;
2362
278k
    }
2363
279k
    {   size_t nextSrcSizeHint = ZSTD_nextSrcSizeToDecompress(zds);
2364
279k
        if (!nextSrcSizeHint) {   /* frame fully decoded */
2365
109k
            if (zds->outEnd == zds->outStart) {  /* output fully flushed */
2366
100k
                if (zds->hostageByte) {
2367
120
                    if (input->pos >= input->size) {
2368
                        /* can't release hostage (not present) */
2369
0
                        zds->streamStage = zdss_read;
2370
0
                        return 1;
2371
0
                    }
2372
120
                    input->pos++;  /* release hostage */
2373
120
                }   /* zds->hostageByte */
2374
100k
                return 0;
2375
100k
            }  /* zds->outEnd == zds->outStart */
2376
8.21k
            if (!zds->hostageByte) { /* output not fully flushed; keep last byte as hostage; will be released when all output is flushed */
2377
5.14k
                input->pos--;   /* note : pos > 0, otherwise, impossible to finish reading last block */
2378
5.14k
                zds->hostageByte=1;
2379
5.14k
            }
2380
8.21k
            return 1;
2381
109k
        }  /* nextSrcSizeHint==0 */
2382
170k
        nextSrcSizeHint += ZSTD_blockHeaderSize * (ZSTD_nextInputType(zds) == ZSTDnit_block);   /* preload header of next block */
2383
170k
        assert(zds->inPos <= nextSrcSizeHint);
2384
170k
        nextSrcSizeHint -= zds->inPos;   /* part already loaded*/
2385
170k
        return nextSrcSizeHint;
2386
170k
    }
2387
170k
}
2388
2389
size_t ZSTD_decompressStream_simpleArgs (
2390
                            ZSTD_DCtx* dctx,
2391
                            void* dst, size_t dstCapacity, size_t* dstPos,
2392
                      const void* src, size_t srcSize, size_t* srcPos)
2393
0
{
2394
0
    ZSTD_outBuffer output;
2395
0
    ZSTD_inBuffer  input;
2396
0
    output.dst = dst;
2397
0
    output.size = dstCapacity;
2398
0
    output.pos = *dstPos;
2399
0
    input.src = src;
2400
0
    input.size = srcSize;
2401
0
    input.pos = *srcPos;
2402
0
    {   size_t const cErr = ZSTD_decompressStream(dctx, &output, &input);
2403
0
        *dstPos = output.pos;
2404
0
        *srcPos = input.pos;
2405
0
        return cErr;
2406
0
    }
2407
0
}