2016-05-17 18:24:46 +00:00
|
|
|
/*
|
2018-04-03 12:57:12 +00:00
|
|
|
* Copyright 1998-2018 The OpenSSL Project Authors. All Rights Reserved.
|
2015-05-08 16:05:36 +00:00
|
|
|
*
|
2016-05-17 18:24:46 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2015-05-08 16:05:36 +00:00
|
|
|
*/
|
|
|
|
|
1998-12-21 11:00:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/comp.h>
|
2015-05-08 16:05:36 +00:00
|
|
|
#include "comp_lcl.h"
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
COMP_CTX *ret;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-08-25 17:25:58 +00:00
|
|
|
if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL)
|
2017-10-17 14:04:09 +00:00
|
|
|
return NULL;
|
2015-01-22 03:40:55 +00:00
|
|
|
ret->meth = meth;
|
|
|
|
if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
|
|
|
|
OPENSSL_free(ret);
|
|
|
|
ret = NULL;
|
|
|
|
}
|
2017-10-17 14:04:09 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-05-08 16:05:36 +00:00
|
|
|
const COMP_METHOD *COMP_CTX_get_method(const COMP_CTX *ctx)
|
|
|
|
{
|
|
|
|
return ctx->meth;
|
|
|
|
}
|
|
|
|
|
|
|
|
int COMP_get_type(const COMP_METHOD *meth)
|
|
|
|
{
|
|
|
|
return meth->type;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *COMP_get_name(const COMP_METHOD *meth)
|
|
|
|
{
|
|
|
|
return meth->name;
|
|
|
|
}
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void COMP_CTX_free(COMP_CTX *ctx)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2018-03-27 20:25:08 +00:00
|
|
|
if (ctx == NULL)
|
|
|
|
return;
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ctx->meth->finish != NULL)
|
|
|
|
ctx->meth->finish(ctx);
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
2015-01-22 03:40:55 +00:00
|
|
|
unsigned char *in, int ilen)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
if (ctx->meth->compress == NULL) {
|
2017-10-17 14:04:09 +00:00
|
|
|
return -1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
ret = ctx->meth->compress(ctx, out, olen, in, ilen);
|
|
|
|
if (ret > 0) {
|
|
|
|
ctx->compress_in += ilen;
|
|
|
|
ctx->compress_out += ret;
|
|
|
|
}
|
2017-10-17 14:04:09 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
1998-12-21 11:00:56 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
|
2015-01-22 03:40:55 +00:00
|
|
|
unsigned char *in, int ilen)
|
|
|
|
{
|
|
|
|
int ret;
|
1998-12-21 11:00:56 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (ctx->meth->expand == NULL) {
|
2017-10-17 14:04:09 +00:00
|
|
|
return -1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
|
|
|
ret = ctx->meth->expand(ctx, out, olen, in, ilen);
|
|
|
|
if (ret > 0) {
|
|
|
|
ctx->expand_in += ilen;
|
|
|
|
ctx->expand_out += ret;
|
|
|
|
}
|
2017-10-17 14:04:09 +00:00
|
|
|
return ret;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-05-08 16:05:36 +00:00
|
|
|
|
|
|
|
int COMP_CTX_get_type(const COMP_CTX* comp)
|
|
|
|
{
|
|
|
|
return comp->meth ? comp->meth->type : NID_undef;
|
|
|
|
}
|