forked from archiecobbs/s3backer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compress.c
185 lines (163 loc) · 5.29 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
/*
* s3backer - FUSE-based single file backing store via Amazon S3
*
* Copyright 2008-2020 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"
/* Deflate */
static comp_cfunc_t deflate_compress;
static comp_dfunc_t deflate_decompress;
static comp_lparse_t deflate_lparse;
/* Compression algorithms */
const struct comp_alg comp_algs[] = {
#if COMP_ALG_ZLIB != 0
#error incorrect COMP_ALG_ZLIB
#endif
{
.name= "deflate",
.cfunc= deflate_compress,
.dfunc= deflate_decompress,
.lparse= deflate_lparse
}
};
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)
{
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)
goto invalid;
/* Check level */
switch ((int)level) {
case Z_DEFAULT_COMPRESSION:
case Z_NO_COMPRESSION:
break;
default:
if (level < Z_BEST_SPEED || level > Z_BEST_COMPRESSION)
goto invalid;
break;
}
/* Store in buffer */
if ((levelp = malloc(sizeof(*levelp))) == NULL)
warn("malloc");
else
*levelp = (int)level;
return levelp;
invalid:
warnx("invalid deflate compression level `%s'", string);
return NULL;
}