-
Notifications
You must be signed in to change notification settings - Fork 77
/
compress.c
320 lines (273 loc) · 8.22 KB
/
compress.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/*
* s3backer - FUSE-based single file backing store via Amazon S3
*
* Copyright 2008-2023 Archie L. Cobbs <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations including
* the two.
*
* You must obey the GNU General Public License in all respects for all
* of the code used other than OpenSSL. If you modify file(s) with this
* exception, you may extend this exception to your version of the
* file(s), but you are not obligated to do so. If you do not wish to do
* so, delete this exception statement from your version. If you delete
* this exception statement from all source files in the program, then
* also delete it here.
*/
#include "s3backer.h"
#include "compress.h"
#if ZSTD
#include <zstd.h>
#endif
// Internal helpers
static int *parse_integer_level(const char *string);
static void free_integer_level(void *levelp);
// Compression hooks - Deflate
static comp_cfunc_t deflate_compress;
static comp_dfunc_t deflate_decompress;
static comp_lparse_t deflate_lparse;
#if ZSTD
// Compression hooks - Zstd
static comp_cfunc_t zstd_compress;
static comp_dfunc_t zstd_decompress;
static comp_lparse_t zstd_lparse;
#endif
// Compression algorithms
const struct comp_alg comp_algs[] = {
#if COMP_ALG_ZLIB != 0
#error incorrect COMP_ALG_ZLIB
#endif
// Deflate
{
.name= "deflate",
.cfunc= deflate_compress,
.dfunc= deflate_decompress,
.lparse= deflate_lparse,
.lfree= free_integer_level
},
#if ZSTD
// Zstandard
{
.name= "zstd",
.cfunc= zstd_compress,
.dfunc= zstd_decompress,
.lparse= zstd_lparse,
.lfree= free_integer_level
},
#endif
};
const size_t num_comp_algs = sizeof(comp_algs) / sizeof(*comp_algs);
/****************************************************************************
* GENERAL PURPOSE *
****************************************************************************/
const struct comp_alg *
comp_find(const char *name)
{
int i;
for (i = 0; i < num_comp_algs; i++) {
const struct comp_alg *calg = &comp_algs[i];
if (strcasecmp(name, calg->name) == 0)
return calg;
}
return NULL;
}
/****************************************************************************
* DEFLATE *
****************************************************************************/
static int
deflate_compress(log_func_t *log, const void *input, size_t inlen, void **outputp, size_t *outlenp, void *levelp)
{
u_long clen;
void *cbuf;
int level;
int r;
// Allocate buffer
clen = compressBound(inlen);
if ((cbuf = malloc(clen)) == NULL) {
r = errno;
(*log)(LOG_ERR, "malloc: %s", strerror(r));
return r;
}
// Extract compression level
level = levelp != NULL ? *(int *)levelp : Z_DEFAULT_COMPRESSION;
// Compress data
r = compress2(cbuf, &clen, input, inlen, level);
switch (r) {
case Z_OK:
*outputp = cbuf;
*outlenp = clen;
return 0;
case Z_MEM_ERROR:
(*log)(LOG_ERR, "zlib compress: %s", strerror(ENOMEM));
r = ENOMEM;
break;
default:
(*log)(LOG_ERR, "zlib compress: error %d", r);
r = EIO;
break;
}
// Fail
free(cbuf);
return r;
}
static int
deflate_decompress(log_func_t *log, const void *input, size_t inlen, void *output, size_t *outlenp)
{
u_long uclen = *outlenp;
int r;
switch ((r = uncompress(output, &uclen, input, inlen))) {
case Z_OK:
*outlenp = uclen;
return 0;
case Z_MEM_ERROR:
(*log)(LOG_ERR, "zlib uncompress: %s", strerror(ENOMEM));
return ENOMEM;
case Z_BUF_ERROR:
(*log)(LOG_ERR, "zlib uncompress: %s", "decompressed block is oversize");
return EIO;
case Z_DATA_ERROR:
(*log)(LOG_ERR, "zlib uncompress: %s", "data is corrupted or truncated");
return EIO;
default:
(*log)(LOG_ERR, "zlib uncompress: error %d", r);
return EIO;
}
}
static void *
deflate_lparse(const char *string)
{
int *levelp;
// Parse level
if ((levelp = parse_integer_level(string)) == NULL)
goto invalid;
// Check level
switch (*levelp) {
case Z_DEFAULT_COMPRESSION:
case Z_NO_COMPRESSION:
break;
default:
if (*levelp < Z_BEST_SPEED || *levelp > Z_BEST_COMPRESSION) {
free(levelp);
goto invalid;
}
break;
}
// Done
return levelp;
invalid:
warnx("invalid deflate compression level `%s'", string);
return NULL;
}
#if ZSTD
/****************************************************************************
* ZSTD *
****************************************************************************/
static int
zstd_compress(log_func_t *log, const void *input, size_t inlen, void **outputp, size_t *outlenp, void *levelp)
{
u_long clen;
void *cbuf;
int level;
int r;
// Allocate buffer
clen = ZSTD_compressBound(inlen);
if ((cbuf = malloc(clen)) == NULL) {
r = errno;
(*log)(LOG_ERR, "malloc: %s", strerror(r));
return r;
}
// Extract compression level
level = levelp != NULL ? *(int *)levelp : ZSTD_CLEVEL_DEFAULT;
// Compress data
clen = ZSTD_compress(cbuf, clen, input, inlen, level);
if (ZSTD_isError(clen)) {
(*log)(LOG_ERR, "zstd compress: error, %s", ZSTD_getErrorName(clen));
free(cbuf);
return EIO;
}
// Done
*outputp = cbuf;
*outlenp = clen;
return 0;
}
static int
zstd_decompress(log_func_t *log, const void *input, size_t inlen, void *output, size_t *outlenp)
{
size_t code;
// Decompress
code = ZSTD_decompress(output, *outlenp, input, inlen);
if (ZSTD_isError(code)) {
(*log)(LOG_ERR, "zstd uncompress: %s", ZSTD_getErrorName(code));
return EIO;
}
// Done
*outlenp = code;
return 0;
}
static void *
zstd_lparse(const char *string)
{
int *levelp;
// Parse level
if ((levelp = parse_integer_level(string)) == NULL)
goto invalid;
// Check level
if (*levelp < ZSTD_minCLevel() || *levelp > ZSTD_maxCLevel()) {
free(levelp);
goto invalid;
}
// Done
return levelp;
invalid:
warnx("invalid zstd compression level `%s'", string);
return NULL;
}
#endif
/****************************************************************************
* INTERNAL HELPERS *
****************************************************************************/
static int *
parse_integer_level(const char *string)
{
char *endptr;
long level;
int *levelp;
// Parse level
errno = 0;
level = strtol(string, &endptr, 10);
if ((errno == ERANGE && (level == LONG_MIN || level == LONG_MAX))
|| (errno != 0 && level == 0)
|| *endptr != '\0'
|| (int)level != level)
return NULL;
// Store in buffer
if ((levelp = malloc(sizeof(*levelp))) == NULL) {
warn("malloc");
return NULL;
}
*levelp = (int)level;
return levelp;
}
static void
free_integer_level(void *levelp)
{
free(levelp);
}