]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/comp/c_zlib.c
X509_PUBKEY docs
[thirdparty/openssl.git] / crypto / comp / c_zlib.c
CommitLineData
9a555706
RS
1/* ====================================================================
2 * Copyright (c) 1999-2015 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 *
16 * 3. All advertising materials mentioning features or use of this
17 * software must display the following acknowledgment:
18 * "This product includes software developed by the OpenSSL Project
19 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
20 *
21 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22 * endorse or promote products derived from this software without
23 * prior written permission. For written permission, please contact
24 * openssl-core@OpenSSL.org.
25 *
26 * 5. Products derived from this software may not be called "OpenSSL"
27 * nor may "OpenSSL" appear in their names without prior written
28 * permission of the OpenSSL Project.
29 *
30 * 6. Redistributions of any form whatsoever must retain the following
31 * acknowledgment:
32 * "This product includes software developed by the OpenSSL Project
33 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46 * OF THE POSSIBILITY OF SUCH DAMAGE.
47 * ====================================================================
48 *
49 * This product includes cryptographic software written by Eric Young
50 * (eay@cryptsoft.com). This product includes software written by Tim
51 * Hudson (tjh@cryptsoft.com).
52 *
53 */
54
dfeab068
RE
55#include <stdio.h>
56#include <stdlib.h>
57#include <string.h>
ec577822
BM
58#include <openssl/objects.h>
59#include <openssl/comp.h>
bdbc9b4d 60#include <openssl/err.h>
222e620b
MC
61#include "internal/cryptlib_int.h"
62#include "internal/bio.h"
9a555706 63#include "comp_lcl.h"
dfeab068 64
0f113f3e
MC
65COMP_METHOD *COMP_zlib(void);
66
67static COMP_METHOD zlib_method_nozlib = {
68 NID_undef,
69 "(undef)",
70 NULL,
71 NULL,
72 NULL,
73 NULL,
0f113f3e 74};
dfeab068 75
c4438dc0 76#ifndef ZLIB
0f113f3e 77# undef ZLIB_SHARED
c4438dc0 78#else
dfeab068 79
0f113f3e 80# include <zlib.h>
dfeab068 81
86a62cf1
RL
82static int zlib_stateful_init(COMP_CTX *ctx);
83static void zlib_stateful_finish(COMP_CTX *ctx);
84static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
0f113f3e
MC
85 unsigned int olen, unsigned char *in,
86 unsigned int ilen);
86a62cf1 87static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
0f113f3e
MC
88 unsigned int olen, unsigned char *in,
89 unsigned int ilen);
30e5e8ac 90
0d4fb843 91/* memory allocations functions for zlib initialisation */
0f113f3e 92static void *zlib_zalloc(void *opaque, unsigned int no, unsigned int size)
30e5e8ac 93{
0f113f3e 94 void *p;
30e5e8ac 95
b51bce94 96 p = OPENSSL_zalloc(no * size);
0f113f3e
MC
97 return p;
98}
30e5e8ac 99
0f113f3e 100static void zlib_zfree(void *opaque, void *address)
30e5e8ac 101{
0f113f3e 102 OPENSSL_free(address);
30e5e8ac
NL
103}
104
0f113f3e
MC
105
106static COMP_METHOD zlib_stateful_method = {
107 NID_zlib_compression,
108 LN_zlib_compression,
109 zlib_stateful_init,
110 zlib_stateful_finish,
111 zlib_stateful_compress_block,
121ee399 112 zlib_stateful_expand_block
0f113f3e
MC
113};
114
115/*
20f88b9b
RL
116 * When OpenSSL is built on Windows, we do not want to require that
117 * the ZLIB.DLL be available in order for the OpenSSL DLLs to
118 * work. Therefore, all ZLIB routines are loaded at run time
ad2695b1 119 * and we do not link to a .LIB file when ZLIB_SHARED is set.
20f88b9b 120 */
0f113f3e
MC
121# if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
122# include <windows.h>
123# endif /* !(OPENSSL_SYS_WINDOWS ||
124 * OPENSSL_SYS_WIN32) */
c4438dc0 125
0f113f3e 126# ifdef ZLIB_SHARED
921de151 127# include "internal/dso.h"
20f88b9b 128
20f88b9b 129/* Function pointers */
0f113f3e
MC
130typedef int (*compress_ft) (Bytef *dest, uLongf * destLen,
131 const Bytef *source, uLong sourceLen);
132typedef int (*inflateEnd_ft) (z_streamp strm);
133typedef int (*inflate_ft) (z_streamp strm, int flush);
134typedef int (*inflateInit__ft) (z_streamp strm,
135 const char *version, int stream_size);
136typedef int (*deflateEnd_ft) (z_streamp strm);
137typedef int (*deflate_ft) (z_streamp strm, int flush);
138typedef int (*deflateInit__ft) (z_streamp strm, int level,
139 const char *version, int stream_size);
140typedef const char *(*zError__ft) (int err);
141static compress_ft p_compress = NULL;
142static inflateEnd_ft p_inflateEnd = NULL;
143static inflate_ft p_inflate = NULL;
144static inflateInit__ft p_inflateInit_ = NULL;
145static deflateEnd_ft p_deflateEnd = NULL;
146static deflate_ft p_deflate = NULL;
147static deflateInit__ft p_deflateInit_ = NULL;
148static zError__ft p_zError = NULL;
20f88b9b
RL
149
150static int zlib_loaded = 0; /* only attempt to init func pts once */
c4438dc0 151static DSO *zlib_dso = NULL;
20f88b9b 152
0f113f3e
MC
153# define compress p_compress
154# define inflateEnd p_inflateEnd
155# define inflate p_inflate
156# define inflateInit_ p_inflateInit_
157# define deflateEnd p_deflateEnd
158# define deflate p_deflate
159# define deflateInit_ p_deflateInit_
160# define zError p_zError
161# endif /* ZLIB_SHARED */
162
163struct zlib_state {
164 z_stream istream;
165 z_stream ostream;
166};
86a62cf1 167
86a62cf1 168static int zlib_stateful_init(COMP_CTX *ctx)
0f113f3e
MC
169{
170 int err;
64b25758 171 struct zlib_state *state = OPENSSL_zalloc(sizeof(*state));
0f113f3e
MC
172
173 if (state == NULL)
174 goto err;
175
176 state->istream.zalloc = zlib_zalloc;
177 state->istream.zfree = zlib_zfree;
178 state->istream.opaque = Z_NULL;
179 state->istream.next_in = Z_NULL;
180 state->istream.next_out = Z_NULL;
0f113f3e
MC
181 err = inflateInit_(&state->istream, ZLIB_VERSION, sizeof(z_stream));
182 if (err != Z_OK)
183 goto err;
184
185 state->ostream.zalloc = zlib_zalloc;
186 state->ostream.zfree = zlib_zfree;
187 state->ostream.opaque = Z_NULL;
188 state->ostream.next_in = Z_NULL;
189 state->ostream.next_out = Z_NULL;
0f113f3e
MC
190 err = deflateInit_(&state->ostream, Z_DEFAULT_COMPRESSION,
191 ZLIB_VERSION, sizeof(z_stream));
192 if (err != Z_OK)
193 goto err;
194
121ee399 195 ctx->data = state;
0f113f3e 196 return 1;
86a62cf1 197 err:
b548a1f1 198 OPENSSL_free(state);
0f113f3e
MC
199 return 0;
200}
86a62cf1
RL
201
202static void zlib_stateful_finish(COMP_CTX *ctx)
0f113f3e 203{
121ee399 204 struct zlib_state *state = ctx->data;
0f113f3e
MC
205 inflateEnd(&state->istream);
206 deflateEnd(&state->ostream);
207 OPENSSL_free(state);
0f113f3e 208}
86a62cf1
RL
209
210static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out,
0f113f3e
MC
211 unsigned int olen, unsigned char *in,
212 unsigned int ilen)
213{
214 int err = Z_OK;
121ee399 215 struct zlib_state *state = ctx->data;
0f113f3e
MC
216
217 if (state == NULL)
218 return -1;
219
220 state->ostream.next_in = in;
221 state->ostream.avail_in = ilen;
222 state->ostream.next_out = out;
223 state->ostream.avail_out = olen;
224 if (ilen > 0)
225 err = deflate(&state->ostream, Z_SYNC_FLUSH);
226 if (err != Z_OK)
227 return -1;
0f113f3e
MC
228 return olen - state->ostream.avail_out;
229}
86a62cf1
RL
230
231static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out,
0f113f3e
MC
232 unsigned int olen, unsigned char *in,
233 unsigned int ilen)
234{
235 int err = Z_OK;
121ee399 236 struct zlib_state *state = ctx->data;
0f113f3e
MC
237
238 if (state == NULL)
239 return 0;
240
241 state->istream.next_in = in;
242 state->istream.avail_in = ilen;
243 state->istream.next_out = out;
244 state->istream.avail_out = olen;
245 if (ilen > 0)
246 err = inflate(&state->istream, Z_SYNC_FLUSH);
247 if (err != Z_OK)
248 return -1;
0f113f3e
MC
249 return olen - state->istream.avail_out;
250}
86a62cf1 251
dfeab068
RE
252#endif
253
6b691a5c 254COMP_METHOD *COMP_zlib(void)
0f113f3e
MC
255{
256 COMP_METHOD *meth = &zlib_method_nozlib;
20f88b9b 257
c4438dc0 258#ifdef ZLIB_SHARED
0f113f3e
MC
259 if (!zlib_loaded) {
260# if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
261 zlib_dso = DSO_load(NULL, "ZLIB1", NULL, 0);
262# else
263 zlib_dso = DSO_load(NULL, "z", NULL, 0);
264# endif
265 if (zlib_dso != NULL) {
266 p_compress = (compress_ft) DSO_bind_func(zlib_dso, "compress");
267 p_inflateEnd
268 = (inflateEnd_ft) DSO_bind_func(zlib_dso, "inflateEnd");
269 p_inflate = (inflate_ft) DSO_bind_func(zlib_dso, "inflate");
270 p_inflateInit_
271 = (inflateInit__ft) DSO_bind_func(zlib_dso, "inflateInit_");
272 p_deflateEnd
273 = (deflateEnd_ft) DSO_bind_func(zlib_dso, "deflateEnd");
274 p_deflate = (deflate_ft) DSO_bind_func(zlib_dso, "deflate");
275 p_deflateInit_
276 = (deflateInit__ft) DSO_bind_func(zlib_dso, "deflateInit_");
277 p_zError = (zError__ft) DSO_bind_func(zlib_dso, "zError");
278
279 if (p_compress && p_inflateEnd && p_inflate
280 && p_inflateInit_ && p_deflateEnd
281 && p_deflate && p_deflateInit_ && p_zError)
282 zlib_loaded++;
0fc32b07
MC
283
284 if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
285 COMP_zlib_cleanup();
286 return meth;
287 }
121ee399
RS
288 if (zlib_loaded)
289 meth = &zlib_stateful_method;
0f113f3e
MC
290 }
291 }
e984b2af 292#endif
121ee399
RS
293#if defined(ZLIB)
294 meth = &zlib_stateful_method;
20f88b9b
RL
295#endif
296
0f113f3e
MC
297 return (meth);
298}
20f88b9b 299
8931b30d 300void COMP_zlib_cleanup(void)
0f113f3e 301{
8931b30d 302#ifdef ZLIB_SHARED
8cbb1533
DB
303 if (zlib_dso != NULL)
304 DSO_free(zlib_dso);
305 zlib_dso = NULL;
8931b30d 306#endif
0f113f3e 307}
8931b30d
DSH
308
309#ifdef ZLIB
310
311/* Zlib based compression/decompression filter BIO */
312
0f113f3e
MC
313typedef struct {
314 unsigned char *ibuf; /* Input buffer */
315 int ibufsize; /* Buffer size */
316 z_stream zin; /* Input decompress context */
317 unsigned char *obuf; /* Output buffer */
318 int obufsize; /* Output buffer size */
319 unsigned char *optr; /* Position in output buffer */
320 int ocount; /* Amount of data in output buffer */
321 int odone; /* deflate EOF */
322 int comp_level; /* Compression level to use */
323 z_stream zout; /* Output compression context */
324} BIO_ZLIB_CTX;
325
326# define ZLIB_DEFAULT_BUFSIZE 1024
8931b30d
DSH
327
328static int bio_zlib_new(BIO *bi);
329static int bio_zlib_free(BIO *bi);
330static int bio_zlib_read(BIO *b, char *out, int outl);
331static int bio_zlib_write(BIO *b, const char *in, int inl);
332static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr);
333static long bio_zlib_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp);
334
04f6b0fd 335static const BIO_METHOD bio_meth_zlib = {
0f113f3e
MC
336 BIO_TYPE_COMP,
337 "zlib",
338 bio_zlib_write,
339 bio_zlib_read,
340 NULL,
341 NULL,
342 bio_zlib_ctrl,
343 bio_zlib_new,
344 bio_zlib_free,
345 bio_zlib_callback_ctrl
346};
8931b30d 347
04f6b0fd 348const BIO_METHOD *BIO_f_zlib(void)
0f113f3e
MC
349{
350 return &bio_meth_zlib;
351}
8931b30d
DSH
352
353static int bio_zlib_new(BIO *bi)
0f113f3e
MC
354{
355 BIO_ZLIB_CTX *ctx;
356# ifdef ZLIB_SHARED
357 (void)COMP_zlib();
358 if (!zlib_loaded) {
359 COMPerr(COMP_F_BIO_ZLIB_NEW, COMP_R_ZLIB_NOT_SUPPORTED);
360 return 0;
361 }
362# endif
64b25758 363 ctx = OPENSSL_zalloc(sizeof(*ctx));
90945fa3 364 if (ctx == NULL) {
0f113f3e
MC
365 COMPerr(COMP_F_BIO_ZLIB_NEW, ERR_R_MALLOC_FAILURE);
366 return 0;
367 }
0f113f3e
MC
368 ctx->ibufsize = ZLIB_DEFAULT_BUFSIZE;
369 ctx->obufsize = ZLIB_DEFAULT_BUFSIZE;
370 ctx->zin.zalloc = Z_NULL;
371 ctx->zin.zfree = Z_NULL;
0f113f3e
MC
372 ctx->zout.zalloc = Z_NULL;
373 ctx->zout.zfree = Z_NULL;
0f113f3e 374 ctx->comp_level = Z_DEFAULT_COMPRESSION;
222e620b
MC
375 BIO_set_init(bi, 1);
376 BIO_set_data(bi, ctx);
377
0f113f3e
MC
378 return 1;
379}
8931b30d
DSH
380
381static int bio_zlib_free(BIO *bi)
0f113f3e
MC
382{
383 BIO_ZLIB_CTX *ctx;
384 if (!bi)
385 return 0;
222e620b 386 ctx = BIO_get_data(bi);
0f113f3e
MC
387 if (ctx->ibuf) {
388 /* Destroy decompress context */
389 inflateEnd(&ctx->zin);
390 OPENSSL_free(ctx->ibuf);
391 }
392 if (ctx->obuf) {
393 /* Destroy compress context */
394 deflateEnd(&ctx->zout);
395 OPENSSL_free(ctx->obuf);
396 }
397 OPENSSL_free(ctx);
222e620b
MC
398 BIO_set_data(bi, NULL);
399 BIO_set_init(bi, 0);
400
0f113f3e
MC
401 return 1;
402}
8931b30d
DSH
403
404static int bio_zlib_read(BIO *b, char *out, int outl)
0f113f3e
MC
405{
406 BIO_ZLIB_CTX *ctx;
407 int ret;
408 z_stream *zin;
222e620b
MC
409 BIO *next = BIO_next(b);
410
0f113f3e
MC
411 if (!out || !outl)
412 return 0;
222e620b 413 ctx = BIO_get_data(b);
0f113f3e
MC
414 zin = &ctx->zin;
415 BIO_clear_retry_flags(b);
416 if (!ctx->ibuf) {
417 ctx->ibuf = OPENSSL_malloc(ctx->ibufsize);
90945fa3 418 if (ctx->ibuf == NULL) {
0f113f3e
MC
419 COMPerr(COMP_F_BIO_ZLIB_READ, ERR_R_MALLOC_FAILURE);
420 return 0;
421 }
422 inflateInit(zin);
423 zin->next_in = ctx->ibuf;
424 zin->avail_in = 0;
425 }
426
427 /* Copy output data directly to supplied buffer */
428 zin->next_out = (unsigned char *)out;
429 zin->avail_out = (unsigned int)outl;
430 for (;;) {
431 /* Decompress while data available */
432 while (zin->avail_in) {
433 ret = inflate(zin, 0);
434 if ((ret != Z_OK) && (ret != Z_STREAM_END)) {
435 COMPerr(COMP_F_BIO_ZLIB_READ, COMP_R_ZLIB_INFLATE_ERROR);
436 ERR_add_error_data(2, "zlib error:", zError(ret));
437 return 0;
438 }
439 /* If EOF or we've read everything then return */
440 if ((ret == Z_STREAM_END) || !zin->avail_out)
441 return outl - zin->avail_out;
442 }
443
444 /*
445 * No data in input buffer try to read some in, if an error then
446 * return the total data read.
447 */
222e620b 448 ret = BIO_read(next, ctx->ibuf, ctx->ibufsize);
0f113f3e
MC
449 if (ret <= 0) {
450 /* Total data read */
451 int tot = outl - zin->avail_out;
452 BIO_copy_next_retry(b);
453 if (ret < 0)
454 return (tot > 0) ? tot : ret;
455 return tot;
456 }
457 zin->avail_in = ret;
458 zin->next_in = ctx->ibuf;
459 }
460}
8931b30d
DSH
461
462static int bio_zlib_write(BIO *b, const char *in, int inl)
0f113f3e
MC
463{
464 BIO_ZLIB_CTX *ctx;
465 int ret;
466 z_stream *zout;
222e620b
MC
467 BIO *next = BIO_next(b);
468
0f113f3e
MC
469 if (!in || !inl)
470 return 0;
222e620b 471 ctx = BIO_get_data(b);
0f113f3e
MC
472 if (ctx->odone)
473 return 0;
474 zout = &ctx->zout;
475 BIO_clear_retry_flags(b);
476 if (!ctx->obuf) {
477 ctx->obuf = OPENSSL_malloc(ctx->obufsize);
478 /* Need error here */
90945fa3 479 if (ctx->obuf == NULL) {
0f113f3e
MC
480 COMPerr(COMP_F_BIO_ZLIB_WRITE, ERR_R_MALLOC_FAILURE);
481 return 0;
482 }
483 ctx->optr = ctx->obuf;
484 ctx->ocount = 0;
485 deflateInit(zout, ctx->comp_level);
486 zout->next_out = ctx->obuf;
487 zout->avail_out = ctx->obufsize;
488 }
489 /* Obtain input data directly from supplied buffer */
490 zout->next_in = (void *)in;
491 zout->avail_in = inl;
492 for (;;) {
493 /* If data in output buffer write it first */
494 while (ctx->ocount) {
222e620b 495 ret = BIO_write(next, ctx->optr, ctx->ocount);
0f113f3e
MC
496 if (ret <= 0) {
497 /* Total data written */
498 int tot = inl - zout->avail_in;
499 BIO_copy_next_retry(b);
500 if (ret < 0)
501 return (tot > 0) ? tot : ret;
502 return tot;
503 }
504 ctx->optr += ret;
505 ctx->ocount -= ret;
506 }
507
508 /* Have we consumed all supplied data? */
509 if (!zout->avail_in)
510 return inl;
511
512 /* Compress some more */
513
514 /* Reset buffer */
515 ctx->optr = ctx->obuf;
516 zout->next_out = ctx->obuf;
517 zout->avail_out = ctx->obufsize;
518 /* Compress some more */
519 ret = deflate(zout, 0);
520 if (ret != Z_OK) {
521 COMPerr(COMP_F_BIO_ZLIB_WRITE, COMP_R_ZLIB_DEFLATE_ERROR);
522 ERR_add_error_data(2, "zlib error:", zError(ret));
523 return 0;
524 }
525 ctx->ocount = ctx->obufsize - zout->avail_out;
526 }
527}
8931b30d
DSH
528
529static int bio_zlib_flush(BIO *b)
0f113f3e
MC
530{
531 BIO_ZLIB_CTX *ctx;
532 int ret;
533 z_stream *zout;
222e620b
MC
534 BIO *next = BIO_next(b);
535
536 ctx = BIO_get_data(b);
0f113f3e
MC
537 /* If no data written or already flush show success */
538 if (!ctx->obuf || (ctx->odone && !ctx->ocount))
539 return 1;
540 zout = &ctx->zout;
541 BIO_clear_retry_flags(b);
542 /* No more input data */
543 zout->next_in = NULL;
544 zout->avail_in = 0;
545 for (;;) {
546 /* If data in output buffer write it first */
547 while (ctx->ocount) {
222e620b 548 ret = BIO_write(next, ctx->optr, ctx->ocount);
0f113f3e
MC
549 if (ret <= 0) {
550 BIO_copy_next_retry(b);
551 return ret;
552 }
553 ctx->optr += ret;
554 ctx->ocount -= ret;
555 }
556 if (ctx->odone)
557 return 1;
558
559 /* Compress some more */
560
561 /* Reset buffer */
562 ctx->optr = ctx->obuf;
563 zout->next_out = ctx->obuf;
564 zout->avail_out = ctx->obufsize;
565 /* Compress some more */
566 ret = deflate(zout, Z_FINISH);
567 if (ret == Z_STREAM_END)
568 ctx->odone = 1;
569 else if (ret != Z_OK) {
570 COMPerr(COMP_F_BIO_ZLIB_FLUSH, COMP_R_ZLIB_DEFLATE_ERROR);
571 ERR_add_error_data(2, "zlib error:", zError(ret));
572 return 0;
573 }
574 ctx->ocount = ctx->obufsize - zout->avail_out;
575 }
576}
8931b30d
DSH
577
578static long bio_zlib_ctrl(BIO *b, int cmd, long num, void *ptr)
0f113f3e
MC
579{
580 BIO_ZLIB_CTX *ctx;
581 int ret, *ip;
582 int ibs, obs;
222e620b
MC
583 BIO *next = BIO_next(b);
584
585 if (next == NULL)
0f113f3e 586 return 0;
222e620b 587 ctx = BIO_get_data(b);
0f113f3e
MC
588 switch (cmd) {
589
590 case BIO_CTRL_RESET:
591 ctx->ocount = 0;
592 ctx->odone = 0;
593 ret = 1;
594 break;
595
596 case BIO_CTRL_FLUSH:
597 ret = bio_zlib_flush(b);
598 if (ret > 0)
222e620b 599 ret = BIO_flush(next);
0f113f3e
MC
600 break;
601
602 case BIO_C_SET_BUFF_SIZE:
603 ibs = -1;
604 obs = -1;
605 if (ptr != NULL) {
606 ip = ptr;
607 if (*ip == 0)
608 ibs = (int)num;
609 else
610 obs = (int)num;
611 } else {
612 ibs = (int)num;
613 obs = ibs;
614 }
615
616 if (ibs != -1) {
b548a1f1
RS
617 OPENSSL_free(ctx->ibuf);
618 ctx->ibuf = NULL;
0f113f3e
MC
619 ctx->ibufsize = ibs;
620 }
621
622 if (obs != -1) {
b548a1f1
RS
623 OPENSSL_free(ctx->obuf);
624 ctx->obuf = NULL;
0f113f3e
MC
625 ctx->obufsize = obs;
626 }
627 ret = 1;
628 break;
629
630 case BIO_C_DO_STATE_MACHINE:
631 BIO_clear_retry_flags(b);
222e620b 632 ret = BIO_ctrl(next, cmd, num, ptr);
0f113f3e
MC
633 BIO_copy_next_retry(b);
634 break;
635
636 default:
222e620b 637 ret = BIO_ctrl(next, cmd, num, ptr);
0f113f3e
MC
638 break;
639
640 }
8931b30d 641
0f113f3e
MC
642 return ret;
643}
8931b30d
DSH
644
645static long bio_zlib_callback_ctrl(BIO *b, int cmd, bio_info_cb *fp)
0f113f3e 646{
222e620b
MC
647 BIO *next = BIO_next(b);
648 if (next == NULL)
0f113f3e 649 return 0;
222e620b 650 return BIO_callback_ctrl(next, cmd, fp);
0f113f3e 651}
8931b30d
DSH
652
653#endif