summaryrefslogtreecommitdiff
path: root/lib/compress.c
blob: afaf86fe14ca3293189648e0b7d992e8c41ebb34 (plain)
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
/*
 * Copyright (C) 2017-2022 Red Hat, Inc.
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GnuTLS.
 *
 * The GnuTLS is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>
 *
 */

#include "compress.h"

#ifdef HAVE_LIBZ
# include <zlib.h>
#endif

#ifdef HAVE_LIBBROTLI
# include <brotli/decode.h>
# include <brotli/encode.h>
#endif

#ifdef HAVE_LIBZSTD
# include <zstd.h>
#endif

typedef struct {
	gnutls_compression_method_t id;
	const char *name;
} comp_entry;

static const comp_entry comp_algs[] = {
	{GNUTLS_COMP_NULL, "NULL"},
#ifdef HAVE_LIBZ
	{GNUTLS_COMP_ZLIB, "ZLIB"},
#endif
#ifdef HAVE_LIBBROTLI
	{GNUTLS_COMP_BROTLI, "BROTLI"},
#endif
#ifdef HAVE_LIBZSTD
	{GNUTLS_COMP_ZSTD, "ZSTD"},
#endif
	{GNUTLS_COMP_UNKNOWN, NULL}
};

static const gnutls_compression_method_t alg_list[] = {
	GNUTLS_COMP_NULL,
#ifdef HAVE_LIBZ
	GNUTLS_COMP_ZLIB,
#endif
#ifdef HAVE_LIBBROTLI
	GNUTLS_COMP_BROTLI,
#endif
#ifdef HAVE_LIBZSTD
	GNUTLS_COMP_ZSTD,
#endif
	0
};

/**
 * gnutls_compression_get_name:
 * @algorithm: is a Compression algorithm
 *
 * Convert a #gnutls_compression_method_t value to a string.
 *
 * Returns: a pointer to a string that contains the name of the
 *   specified compression algorithm, or %NULL.
 **/
const char *gnutls_compression_get_name(gnutls_compression_method_t algorithm)
{
	const comp_entry *p;

	for (p = comp_algs; p->name; ++p)
		if (p->id == algorithm)
			return p->name;

	return NULL;
}

/**
 * gnutls_compression_get_id:
 * @name: is a compression method name
 *
 * The names are compared in a case insensitive way.
 *
 * Returns: an id of the specified in a string compression method, or
 *   %GNUTLS_COMP_UNKNOWN on error.
 **/
gnutls_compression_method_t gnutls_compression_get_id(const char *name)
{
	const comp_entry *p;

	for (p = comp_algs; p->name; ++p)
		if (!strcasecmp(p->name, name))
			return p->id;

	return GNUTLS_COMP_UNKNOWN;
}

/**
 * gnutls_compression_list:
 *
 * Get a list of compression methods.
 *
 * Returns: a zero-terminated list of #gnutls_compression_method_t
 *   integers indicating the available compression methods.
 **/
const gnutls_compression_method_t *gnutls_compression_list(void)
{
	return alg_list;
}

/*************************/
/* Compression functions */
/*************************/

size_t _gnutls_compress_bound(gnutls_compression_method_t alg, size_t src_len)
{
	switch (alg) {
#ifdef HAVE_LIBZ
	case GNUTLS_COMP_ZLIB:
		return compressBound(src_len);
#endif
#ifdef HAVE_LIBBROTLI
	case GNUTLS_COMP_BROTLI:
		return BrotliEncoderMaxCompressedSize(src_len);
#endif
#ifdef HAVE_LIBZSTD
	case GNUTLS_COMP_ZSTD:
		return ZSTD_compressBound(src_len);
#endif
	default:
		return 0;
	}
	return 0;
}

int
_gnutls_compress(gnutls_compression_method_t alg,
		 uint8_t * dst, size_t dst_len,
		 const uint8_t * src, size_t src_len)
{
	int ret = GNUTLS_E_COMPRESSION_FAILED;

	switch (alg) {
#ifdef HAVE_LIBZ
	case GNUTLS_COMP_ZLIB:
		{
			int err;
			uLongf comp_len = dst_len;

			err = compress(dst, &comp_len, src, src_len);
			if (err != Z_OK)
				return
				    gnutls_assert_val
				    (GNUTLS_E_COMPRESSION_FAILED);
			ret = comp_len;
		}
		break;
#endif
#ifdef HAVE_LIBBROTLI
	case GNUTLS_COMP_BROTLI:
		{
			BROTLI_BOOL err;
			size_t comp_len = dst_len;

			err = BrotliEncoderCompress(BROTLI_DEFAULT_QUALITY,
						    BROTLI_DEFAULT_WINDOW,
						    BROTLI_DEFAULT_MODE,
						    src_len, src, &comp_len,
						    dst);
			if (!err)
				return
				    gnutls_assert_val
				    (GNUTLS_E_COMPRESSION_FAILED);
			ret = comp_len;
		}
		break;
#endif
#ifdef HAVE_LIBZSTD
	case GNUTLS_COMP_ZSTD:
		{
			size_t comp_len;

			comp_len =
			    ZSTD_compress(dst, dst_len, src, src_len,
					  ZSTD_CLEVEL_DEFAULT);
			if (ZSTD_isError(comp_len))
				return
				    gnutls_assert_val
				    (GNUTLS_E_COMPRESSION_FAILED);
			ret = comp_len;
		}
		break;
#endif
	default:
		return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
	}

#ifdef COMPRESSION_DEBUG
	_gnutls_debug_log("Compression ratio: %f\n",
			  (float)((float)ret / (float)src_len));
#endif

	return ret;
}

int
_gnutls_decompress(gnutls_compression_method_t alg,
		   uint8_t * dst, size_t dst_len,
		   const uint8_t * src, size_t src_len)
{
	int ret = GNUTLS_E_DECOMPRESSION_FAILED;

	switch (alg) {
#ifdef HAVE_LIBZ
	case GNUTLS_COMP_ZLIB:
		{
			int err;
			uLongf plain_len = dst_len;

			err = uncompress(dst, &plain_len, src, src_len);
			if (err != Z_OK)
				return
				    gnutls_assert_val
				    (GNUTLS_E_DECOMPRESSION_FAILED);
			ret = plain_len;
		}
		break;
#endif
#ifdef HAVE_LIBBROTLI
	case GNUTLS_COMP_BROTLI:
		{
			BrotliDecoderResult err;
			size_t plain_len = dst_len;

			err =
			    BrotliDecoderDecompress(src_len, src, &plain_len,
						    dst);
			if (err != BROTLI_DECODER_RESULT_SUCCESS)
				return
				    gnutls_assert_val
				    (GNUTLS_E_DECOMPRESSION_FAILED);
			ret = plain_len;
		}
		break;
#endif
#ifdef HAVE_LIBZSTD
	case GNUTLS_COMP_ZSTD:
		{
			size_t plain_len;

			plain_len = ZSTD_decompress(dst, dst_len, src, src_len);
			if (ZSTD_isError(plain_len))
				return
				    gnutls_assert_val
				    (GNUTLS_E_DECOMPRESSION_FAILED);
			ret = plain_len;
		}
		break;
#endif
	default:
		return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
	}

	return ret;
}