27 static int zlib_stateful_init(
COMP_CTX *ctx);
28 static void zlib_stateful_finish(
COMP_CTX *ctx);
29 static int zlib_stateful_compress_block(
COMP_CTX *ctx,
unsigned char *out,
30 unsigned int olen,
unsigned char *in,
unsigned int ilen);
31 static int zlib_stateful_expand_block(
COMP_CTX *ctx,
unsigned char *out,
32 unsigned int olen,
unsigned char *in,
unsigned int ilen);
36 static void* zlib_zalloc(
void* opaque,
unsigned int no,
unsigned int size)
42 memset(p, 0, no*size);
47 static void zlib_zfree(
void* opaque,
void* address)
53 static int zlib_compress_block(
COMP_CTX *ctx,
unsigned char *out,
54 unsigned int olen,
unsigned char *in,
unsigned int ilen);
55 static int zlib_expand_block(
COMP_CTX *ctx,
unsigned char *out,
56 unsigned int olen,
unsigned char *in,
unsigned int ilen);
58 static int zz_uncompress(Bytef *dest, uLongf *destLen,
const Bytef *source,
78 zlib_stateful_compress_block,
79 zlib_stateful_expand_block,
90 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
98 typedef int (*compress_ft)(Bytef *dest,uLongf *destLen,
99 const Bytef *source, uLong sourceLen);
100 typedef int (*inflateEnd_ft)(z_streamp strm);
101 typedef int (*inflate_ft)(z_streamp strm,
int flush);
102 typedef int (*inflateInit__ft)(z_streamp strm,
103 const char * version,
int stream_size);
104 typedef int (*deflateEnd_ft)(z_streamp strm);
105 typedef int (*deflate_ft)(z_streamp strm,
int flush);
106 typedef int (*deflateInit__ft)(z_streamp strm,
int level,
107 const char * version,
int stream_size);
108 typedef const char * (*zError__ft)(
int err);
109 static compress_ft p_compress=NULL;
110 static inflateEnd_ft p_inflateEnd=NULL;
111 static inflate_ft p_inflate=NULL;
112 static inflateInit__ft p_inflateInit_=NULL;
113 static deflateEnd_ft p_deflateEnd=NULL;
114 static deflate_ft p_deflate=NULL;
115 static deflateInit__ft p_deflateInit_=NULL;
116 static zError__ft p_zError=NULL;
118 static int zlib_loaded = 0;
119 static DSO *zlib_dso = NULL;
121 #define compress p_compress
122 #define inflateEnd p_inflateEnd
123 #define inflate p_inflate
124 #define inflateInit_ p_inflateInit_
125 #define deflateEnd p_deflateEnd
126 #define deflate p_deflate
127 #define deflateInit_ p_deflateInit_
128 #define zError p_zError
137 static int zlib_stateful_ex_idx = -1;
139 static int zlib_stateful_init(
COMP_CTX *ctx)
142 struct zlib_state *state =
148 state->istream.zalloc = zlib_zalloc;
149 state->istream.zfree = zlib_zfree;
150 state->istream.opaque = Z_NULL;
151 state->istream.next_in = Z_NULL;
152 state->istream.next_out = Z_NULL;
153 state->istream.avail_in = 0;
154 state->istream.avail_out = 0;
155 err = inflateInit_(&state->istream,
156 ZLIB_VERSION,
sizeof(z_stream));
160 state->ostream.zalloc = zlib_zalloc;
161 state->ostream.zfree = zlib_zfree;
162 state->ostream.opaque = Z_NULL;
163 state->ostream.next_in = Z_NULL;
164 state->ostream.next_out = Z_NULL;
165 state->ostream.avail_in = 0;
166 state->ostream.avail_out = 0;
167 err = deflateInit_(&state->ostream,Z_DEFAULT_COMPRESSION,
168 ZLIB_VERSION,
sizeof(z_stream));
180 static void zlib_stateful_finish(
COMP_CTX *ctx)
182 struct zlib_state *state =
184 zlib_stateful_ex_idx);
185 inflateEnd(&state->istream);
186 deflateEnd(&state->ostream);
191 static int zlib_stateful_compress_block(
COMP_CTX *ctx,
unsigned char *out,
192 unsigned int olen,
unsigned char *in,
unsigned int ilen)
195 struct zlib_state *state =
197 zlib_stateful_ex_idx);
202 state->ostream.next_in = in;
203 state->ostream.avail_in = ilen;
204 state->ostream.next_out = out;
205 state->ostream.avail_out = olen;
207 err = deflate(&state->ostream, Z_SYNC_FLUSH);
211 fprintf(stderr,
"compress(%4d)->%4d %s\n",
212 ilen,olen - state->ostream.avail_out,
213 (ilen != olen - state->ostream.avail_out)?
"zlib":
"clear");
215 return olen - state->ostream.avail_out;
218 static int zlib_stateful_expand_block(
COMP_CTX *ctx,
unsigned char *out,
219 unsigned int olen,
unsigned char *in,
unsigned int ilen)
223 struct zlib_state *state =
225 zlib_stateful_ex_idx);
230 state->istream.next_in = in;
231 state->istream.avail_in = ilen;
232 state->istream.next_out = out;
233 state->istream.avail_out = olen;
235 err = inflate(&state->istream, Z_SYNC_FLUSH);
239 fprintf(stderr,
"expand(%4d)->%4d %s\n",
240 ilen,olen - state->istream.avail_out,
241 (ilen != olen - state->istream.avail_out)?
"zlib":
"clear");
243 return olen - state->istream.avail_out;
247 static int zlib_compress_block(
COMP_CTX *ctx,
unsigned char *out,
248 unsigned int olen,
unsigned char *in,
unsigned int ilen)
258 i=compress(&(out[1]),&l,in,(
unsigned long)ilen);
270 memcpy(&(out[1]),in,ilen);
274 fprintf(stderr,
"compress(%4d)->%4d %s\n",
275 ilen,(
int)l,(clear)?
"clear":
"zlib");
280 static int zlib_expand_block(
COMP_CTX *ctx,
unsigned char *out,
281 unsigned int olen,
unsigned char *in,
unsigned int ilen)
289 i=zz_uncompress(out,&l,&(in[1]),(
unsigned long)ilen-1);
295 memcpy(out,&(in[1]),ilen-1);
299 fprintf(stderr,
"expand (%4d)->%4d %s\n",
300 ilen,(
int)l,in[0]?
"zlib":
"clear");
305 static int zz_uncompress (Bytef *dest, uLongf *destLen,
const Bytef *source,
311 stream.next_in = (Bytef*)source;
312 stream.avail_in = (uInt)sourceLen;
314 if ((uLong)stream.avail_in != sourceLen)
return Z_BUF_ERROR;
316 stream.next_out = dest;
317 stream.avail_out = (uInt)*destLen;
318 if ((uLong)stream.avail_out != *destLen)
return Z_BUF_ERROR;
320 stream.zalloc = (alloc_func)0;
323 err = inflateInit_(&stream,
324 ZLIB_VERSION,
sizeof(z_stream));
325 if (err != Z_OK)
return err;
327 err = inflate(&stream, Z_FINISH);
328 if (err != Z_STREAM_END) {
332 *destLen = stream.total_out;
334 err = inflateEnd(&stream);
348 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32)
349 zlib_dso =
DSO_load(NULL,
"ZLIB1", NULL, 0);
351 zlib_dso =
DSO_load(NULL,
"z", NULL, 0);
353 if (zlib_dso != NULL)
380 if (p_compress && p_inflateEnd && p_inflate
381 && p_inflateInit_ && p_deflateEnd
382 && p_deflate && p_deflateInit_ && p_zError)
391 #if defined(ZLIB) || defined(ZLIB_SHARED)
396 if (zlib_stateful_ex_idx == -1)
399 if (zlib_stateful_ex_idx == -1)
400 zlib_stateful_ex_idx =
402 0,NULL,NULL,NULL,NULL);
404 if (zlib_stateful_ex_idx == -1)
408 meth = &zlib_stateful_method;
442 #define ZLIB_DEFAULT_BUFSIZE 1024
444 static int bio_zlib_new(
BIO *bi);
445 static int bio_zlib_free(
BIO *bi);
446 static int bio_zlib_read(
BIO *
b,
char *out,
int outl);
447 static int bio_zlib_write(
BIO *
b,
const char *in,
int inl);
448 static long bio_zlib_ctrl(
BIO *
b,
int cmd,
long num,
void *
ptr);
462 bio_zlib_callback_ctrl
467 return &bio_meth_zlib;
471 static int bio_zlib_new(
BIO *bi)
490 ctx->ibufsize = ZLIB_DEFAULT_BUFSIZE;
491 ctx->obufsize = ZLIB_DEFAULT_BUFSIZE;
492 ctx->zin.zalloc = Z_NULL;
493 ctx->zin.zfree = Z_NULL;
494 ctx->zin.next_in = NULL;
495 ctx->zin.avail_in = 0;
496 ctx->zin.next_out = NULL;
497 ctx->zin.avail_out = 0;
498 ctx->zout.zalloc = Z_NULL;
499 ctx->zout.zfree = Z_NULL;
500 ctx->zout.next_in = NULL;
501 ctx->zout.avail_in = 0;
502 ctx->zout.next_out = NULL;
503 ctx->zout.avail_out = 0;
505 ctx->comp_level = Z_DEFAULT_COMPRESSION;
507 bi->
ptr = (
char *)ctx;
512 static int bio_zlib_free(
BIO *bi)
516 ctx = (BIO_ZLIB_CTX *)bi->
ptr;
520 inflateEnd(&ctx->zin);
526 deflateEnd(&ctx->zout);
536 static int bio_zlib_read(
BIO *
b,
char *out,
int outl)
541 if(!out || !outl)
return 0;
542 ctx = (BIO_ZLIB_CTX *)b->
ptr;
554 zin->next_in = ctx->ibuf;
559 zin->next_out = (
unsigned char *)out;
560 zin->avail_out = (
unsigned int)outl;
566 ret = inflate(zin, 0);
567 if((ret != Z_OK) && (ret != Z_STREAM_END))
576 if((ret == Z_STREAM_END) || !zin->avail_out)
577 return outl - zin->avail_out;
587 int tot = outl - zin->avail_out;
589 if(ret < 0)
return (tot > 0) ? tot : ret;
593 zin->next_in = ctx->ibuf;
597 static int bio_zlib_write(
BIO *b,
const char *in,
int inl)
602 if(!in || !inl)
return 0;
603 ctx = (BIO_ZLIB_CTX *)b->
ptr;
604 if(ctx->odone)
return 0;
616 ctx->optr = ctx->obuf;
618 deflateInit(zout, ctx->comp_level);
619 zout->next_out = ctx->obuf;
620 zout->avail_out = ctx->obufsize;
623 zout->next_in = (
void *)in;
624 zout->avail_in = inl;
633 int tot = inl - zout->avail_in;
635 if(ret < 0)
return (tot > 0) ? tot : ret;
649 ctx->optr = ctx->obuf;
650 zout->next_out = ctx->obuf;
651 zout->avail_out = ctx->obufsize;
653 ret = deflate(zout, 0);
661 ctx->ocount = ctx->obufsize - zout->avail_out;
665 static int bio_zlib_flush(
BIO *b)
670 ctx = (BIO_ZLIB_CTX *)b->
ptr;
672 if(!ctx->obuf || (ctx->odone && !ctx->ocount))
return 1;
676 zout->next_in = NULL;
692 if(ctx->odone)
return 1;
697 ctx->optr = ctx->obuf;
698 zout->next_out = ctx->obuf;
699 zout->avail_out = ctx->obufsize;
701 ret = deflate(zout, Z_FINISH);
702 if(ret == Z_STREAM_END) ctx->odone = 1;
710 ctx->ocount = ctx->obufsize - zout->avail_out;
714 static long bio_zlib_ctrl(
BIO *b,
int cmd,
long num,
void *
ptr)
720 ctx = (BIO_ZLIB_CTX *)b->
ptr;
731 ret = bio_zlib_flush(b);