Coverage Report

Created: 2026-03-01 06:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib/compress.c
Line
Count
Source
1
/* compress.c -- compress a memory buffer
2
 * Copyright (C) 1995-2026 Jean-loup Gailly, Mark Adler
3
 * For conditions of distribution and use, see copyright notice in zlib.h
4
 */
5
6
/* @(#) $Id$ */
7
8
#define ZLIB_INTERNAL
9
#include "zlib.h"
10
11
/* ===========================================================================
12
     Compresses the source buffer into the destination buffer. The level
13
   parameter has the same meaning as in deflateInit.  sourceLen is the byte
14
   length of the source buffer. Upon entry, destLen is the total size of the
15
   destination buffer, which must be at least 0.1% larger than sourceLen plus
16
   12 bytes. Upon exit, destLen is the actual size of the compressed buffer.
17
18
     compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
19
   memory, Z_BUF_ERROR if there was not enough room in the output buffer,
20
   Z_STREAM_ERROR if the level parameter is invalid.
21
22
     The _z versions of the functions take size_t length arguments.
23
*/
24
int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
25
3.65k
                        z_size_t sourceLen, int level) {
26
3.65k
    z_stream stream;
27
3.65k
    int err;
28
3.65k
    const uInt max = (uInt)-1;
29
3.65k
    z_size_t left;
30
31
3.65k
    if ((sourceLen > 0 && source == NULL) ||
32
3.65k
        destLen == NULL || (*destLen > 0 && dest == NULL))
33
0
        return Z_STREAM_ERROR;
34
35
3.65k
    left = *destLen;
36
3.65k
    *destLen = 0;
37
38
3.65k
    stream.zalloc = (alloc_func)0;
39
3.65k
    stream.zfree = (free_func)0;
40
3.65k
    stream.opaque = (voidpf)0;
41
42
3.65k
    err = deflateInit(&stream, level);
43
3.65k
    if (err != Z_OK) return err;
44
45
3.65k
    stream.next_out = dest;
46
3.65k
    stream.avail_out = 0;
47
3.65k
    stream.next_in = (z_const Bytef *)source;
48
3.65k
    stream.avail_in = 0;
49
50
3.65k
    do {
51
3.65k
        if (stream.avail_out == 0) {
52
3.65k
            stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
53
3.65k
            left -= stream.avail_out;
54
3.65k
        }
55
3.65k
        if (stream.avail_in == 0) {
56
3.65k
            stream.avail_in = sourceLen > (z_size_t)max ? max :
57
3.65k
                                                          (uInt)sourceLen;
58
3.65k
            sourceLen -= stream.avail_in;
59
3.65k
        }
60
3.65k
        err = deflate(&stream, sourceLen ? Z_NO_FLUSH : Z_FINISH);
61
3.65k
    } while (err == Z_OK);
62
63
3.65k
    *destLen = (z_size_t)(stream.next_out - dest);
64
3.65k
    deflateEnd(&stream);
65
3.65k
    return err == Z_STREAM_END ? Z_OK : err;
66
3.65k
}
67
int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
68
3.65k
                      uLong sourceLen, int level) {
69
3.65k
    int ret;
70
3.65k
    z_size_t got = *destLen;
71
3.65k
    ret = compress2_z(dest, &got, source, sourceLen, level);
72
3.65k
    *destLen = (uLong)got;
73
3.65k
    return ret;
74
3.65k
}
75
/* ===========================================================================
76
 */
77
int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
78
0
                       z_size_t sourceLen) {
79
0
    return compress2_z(dest, destLen, source, sourceLen,
80
0
                       Z_DEFAULT_COMPRESSION);
81
0
}
82
int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
83
0
                     uLong sourceLen) {
84
0
    return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
85
0
}
86
87
/* ===========================================================================
88
     If the default memLevel or windowBits for deflateInit() is changed, then
89
   this function needs to be updated.
90
 */
91
8.92k
z_size_t ZEXPORT compressBound_z(z_size_t sourceLen) {
92
8.92k
    z_size_t bound = sourceLen + (sourceLen >> 12) + (sourceLen >> 14) +
93
8.92k
                     (sourceLen >> 25) + 13;
94
8.92k
    return bound < sourceLen ? (z_size_t)-1 : bound;
95
8.92k
}
96
8.92k
uLong ZEXPORT compressBound(uLong sourceLen) {
97
8.92k
    z_size_t bound = compressBound_z(sourceLen);
98
8.92k
    return (uLong)bound != bound ? (uLong)-1 : (uLong)bound;
99
8.92k
}