Coverage Report

Created: 2026-08-25 06:40

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/libzip/lib/zip_buffer.c
Line
Count
Source
1
/*
2
 zip_buffer.c -- bounds checked access to memory buffer
3
 Copyright (C) 2014-2025 Dieter Baron and Thomas Klausner
4
5
 This file is part of libzip, a library to manipulate ZIP archives.
6
 The authors can be contacted at <info@libzip.org>
7
8
 Redistribution and use in source and binary forms, with or without
9
 modification, are permitted provided that the following conditions
10
 are met:
11
 1. Redistributions of source code must retain the above copyright
12
 notice, this list of conditions and the following disclaimer.
13
 2. Redistributions in binary form must reproduce the above copyright
14
 notice, this list of conditions and the following disclaimer in
15
 the documentation and/or other materials provided with the
16
 distribution.
17
 3. The names of the authors may not be used to endorse or promote
18
 products derived from this software without specific prior
19
 written permission.
20
21
 THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
22
 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
25
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27
 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
29
 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
30
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
31
 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
 */
33
34
#include "zipint.h"
35
36
#include <stdlib.h>
37
#include <string.h>
38
39
312k
zip_uint8_t *_zip_buffer_data(zip_buffer_t *buffer) {
40
312k
    return buffer->data;
41
312k
}
42
43
44
32.7k
void _zip_buffer_free(zip_buffer_t *buffer) {
45
32.7k
    if (buffer == NULL) {
46
583
        return;
47
583
    }
48
49
32.1k
    if (buffer->free_data) {
50
11.1k
        free(buffer->data);
51
11.1k
    }
52
53
32.1k
    free(buffer);
54
32.1k
}
55
56
57
1.92k
bool _zip_buffer_eof(zip_buffer_t *buffer) {
58
1.92k
    return buffer->ok && buffer->offset == buffer->size;
59
1.92k
}
60
61
62
1.12M
zip_uint8_t *_zip_buffer_get(zip_buffer_t *buffer, zip_uint64_t length) {
63
1.12M
    zip_uint8_t *data;
64
65
1.12M
    data = _zip_buffer_peek(buffer, length);
66
67
1.12M
    if (data != NULL) {
68
1.12M
        buffer->offset += length;
69
1.12M
    }
70
71
1.12M
    return data;
72
1.12M
}
73
74
75
696k
zip_uint16_t _zip_buffer_get_16(zip_buffer_t *buffer) {
76
696k
    zip_uint8_t *data = _zip_buffer_get(buffer, 2);
77
78
696k
    if (data == NULL) {
79
0
        return 0;
80
0
    }
81
82
696k
    return (zip_uint16_t)(data[0] + (data[1] << 8));
83
696k
}
84
85
86
321k
zip_uint32_t _zip_buffer_get_32(zip_buffer_t *buffer) {
87
321k
    zip_uint8_t *data = _zip_buffer_get(buffer, 4);
88
89
321k
    if (data == NULL) {
90
23
        return 0;
91
23
    }
92
93
321k
    return ((((((zip_uint32_t)data[3] << 8) + data[2]) << 8) + data[1]) << 8) + data[0];
94
321k
}
95
96
97
7.84k
zip_uint64_t _zip_buffer_get_64(zip_buffer_t *buffer) {
98
7.84k
    zip_uint8_t *data = _zip_buffer_get(buffer, 8);
99
100
7.84k
    if (data == NULL) {
101
155
        return 0;
102
155
    }
103
104
7.69k
    return ((zip_uint64_t)data[7] << 56) + ((zip_uint64_t)data[6] << 48) + ((zip_uint64_t)data[5] << 40) + ((zip_uint64_t)data[4] << 32) + ((zip_uint64_t)data[3] << 24) + ((zip_uint64_t)data[2] << 16) + ((zip_uint64_t)data[1] << 8) + (zip_uint64_t)data[0];
105
7.84k
}
106
107
108
13
zip_uint8_t _zip_buffer_get_8(zip_buffer_t *buffer) {
109
13
    zip_uint8_t *data = _zip_buffer_get(buffer, 1);
110
111
13
    if (data == NULL) {
112
0
        return 0;
113
0
    }
114
115
13
    return data[0];
116
13
}
117
118
119
157k
zip_uint64_t _zip_buffer_left(zip_buffer_t *buffer) {
120
157k
    return buffer->ok ? buffer->size - buffer->offset : 0;
121
157k
}
122
123
124
0
zip_uint64_t _zip_buffer_read(zip_buffer_t *buffer, zip_uint8_t *data, zip_uint64_t length) {
125
0
    zip_uint64_t copied;
126
127
0
    if (_zip_buffer_left(buffer) < length) {
128
0
        length = _zip_buffer_left(buffer);
129
0
    }
130
131
0
    copied = 0;
132
0
    while (copied < length) {
133
0
        size_t n = ZIP_MIN(length - copied, SIZE_MAX);
134
0
        (void)memcpy_s(data + copied, n, _zip_buffer_get(buffer, n), n);
135
0
        copied += n;
136
0
    }
137
138
0
    return copied;
139
0
}
140
141
142
32.1k
zip_buffer_t *_zip_buffer_new(zip_uint8_t *data, zip_uint64_t size) {
143
32.1k
    bool free_data = (data == NULL);
144
32.1k
    zip_buffer_t *buffer;
145
146
#if ZIP_UINT64_MAX > SIZE_MAX
147
    if (size > SIZE_MAX) {
148
        return NULL;
149
    }
150
#endif
151
152
32.1k
    if (data == NULL) {
153
11.1k
        if ((data = (zip_uint8_t *)malloc((size_t)size)) == NULL) {
154
0
            return NULL;
155
0
        }
156
11.1k
    }
157
158
32.1k
    if ((buffer = (zip_buffer_t *)malloc(sizeof(*buffer))) == NULL) {
159
0
        if (free_data) {
160
0
            free(data);
161
0
        }
162
0
        return NULL;
163
0
    }
164
165
32.1k
    buffer->ok = true;
166
32.1k
    buffer->data = data;
167
32.1k
    buffer->size = size;
168
32.1k
    buffer->offset = 0;
169
32.1k
    buffer->free_data = free_data;
170
171
32.1k
    return buffer;
172
32.1k
}
173
174
175
24.3k
zip_buffer_t *_zip_buffer_new_from_source(zip_source_t *src, zip_uint64_t size, zip_uint8_t *buf, zip_error_t *error) {
176
24.3k
    zip_buffer_t *buffer;
177
178
24.3k
    if ((buffer = _zip_buffer_new(buf, size)) == NULL) {
179
0
        zip_error_set(error, ZIP_ER_MEMORY, 0);
180
0
        return NULL;
181
0
    }
182
183
24.3k
    if (_zip_read(src, buffer->data, size, error) < 0) {
184
41
        _zip_buffer_free(buffer);
185
41
        return NULL;
186
41
    }
187
188
24.2k
    return buffer;
189
24.3k
}
190
191
192
162k
zip_uint64_t _zip_buffer_offset(zip_buffer_t *buffer) {
193
162k
    return buffer->ok ? buffer->offset : 0;
194
162k
}
195
196
197
69.1k
bool _zip_buffer_ok(zip_buffer_t *buffer) {
198
69.1k
    return buffer->ok;
199
69.1k
}
200
201
202
1.13M
zip_uint8_t *_zip_buffer_peek(zip_buffer_t *buffer, zip_uint64_t length) {
203
1.13M
    zip_uint8_t *data;
204
205
1.13M
    if (!buffer->ok || buffer->offset + length < length || buffer->offset + length > buffer->size) {
206
394
        buffer->ok = false;
207
394
        return NULL;
208
394
    }
209
210
1.13M
    data = buffer->data + buffer->offset;
211
1.13M
    return data;
212
1.13M
}
213
214
0
int _zip_buffer_put(zip_buffer_t *buffer, const void *src, size_t length) {
215
0
    zip_uint8_t *dst = _zip_buffer_get(buffer, length);
216
217
0
    if (dst == NULL) {
218
0
        return -1;
219
0
    }
220
221
0
    (void)memcpy_s(dst, length, src, length);
222
0
    return 0;
223
0
}
224
225
226
0
int _zip_buffer_put_16(zip_buffer_t *buffer, zip_uint16_t i) {
227
0
    zip_uint8_t *data = _zip_buffer_get(buffer, 2);
228
229
0
    if (data == NULL) {
230
0
        return -1;
231
0
    }
232
233
0
    data[0] = (zip_uint8_t)(i & 0xff);
234
0
    data[1] = (zip_uint8_t)((i >> 8) & 0xff);
235
236
0
    return 0;
237
0
}
238
239
240
0
int _zip_buffer_put_32(zip_buffer_t *buffer, zip_uint32_t i) {
241
0
    zip_uint8_t *data = _zip_buffer_get(buffer, 4);
242
243
0
    if (data == NULL) {
244
0
        return -1;
245
0
    }
246
247
0
    data[0] = (zip_uint8_t)(i & 0xff);
248
0
    data[1] = (zip_uint8_t)((i >> 8) & 0xff);
249
0
    data[2] = (zip_uint8_t)((i >> 16) & 0xff);
250
0
    data[3] = (zip_uint8_t)((i >> 24) & 0xff);
251
252
0
    return 0;
253
0
}
254
255
256
0
int _zip_buffer_put_64(zip_buffer_t *buffer, zip_uint64_t i) {
257
0
    zip_uint8_t *data = _zip_buffer_get(buffer, 8);
258
259
0
    if (data == NULL) {
260
0
        return -1;
261
0
    }
262
263
0
    data[0] = (zip_uint8_t)(i & 0xff);
264
0
    data[1] = (zip_uint8_t)((i >> 8) & 0xff);
265
0
    data[2] = (zip_uint8_t)((i >> 16) & 0xff);
266
0
    data[3] = (zip_uint8_t)((i >> 24) & 0xff);
267
0
    data[4] = (zip_uint8_t)((i >> 32) & 0xff);
268
0
    data[5] = (zip_uint8_t)((i >> 40) & 0xff);
269
0
    data[6] = (zip_uint8_t)((i >> 48) & 0xff);
270
0
    data[7] = (zip_uint8_t)((i >> 56) & 0xff);
271
272
0
    return 0;
273
0
}
274
275
276
0
int _zip_buffer_put_8(zip_buffer_t *buffer, zip_uint8_t i) {
277
0
    zip_uint8_t *data = _zip_buffer_get(buffer, 1);
278
279
0
    if (data == NULL) {
280
0
        return -1;
281
0
    }
282
283
0
    data[0] = i;
284
285
0
    return 0;
286
0
}
287
288
289
255k
int _zip_buffer_set_offset(zip_buffer_t *buffer, zip_uint64_t offset) {
290
255k
    if (offset > buffer->size) {
291
56.3k
        buffer->ok = false;
292
56.3k
        return -1;
293
56.3k
    }
294
295
199k
    buffer->ok = true;
296
199k
    buffer->offset = offset;
297
298
199k
    return 0;
299
255k
}
300
301
302
89.5k
int _zip_buffer_skip(zip_buffer_t *buffer, zip_uint64_t length) {
303
89.5k
    zip_uint64_t offset = buffer->offset + length;
304
305
89.5k
    if (offset < buffer->offset) {
306
0
        buffer->ok = false;
307
0
        return -1;
308
0
    }
309
89.5k
    return _zip_buffer_set_offset(buffer, offset);
310
89.5k
}
311
312
18.6k
zip_uint64_t _zip_buffer_size(zip_buffer_t *buffer) {
313
18.6k
    return buffer->size;
314
18.6k
}