| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2018-04-03 20:57:12 +08:00
										 |  |  |  * Copyright 1998-2018 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2015-05-09 00:05:36 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:33:32 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  |  * 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-09 00:05:36 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							|  |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/objects.h>
 | 
					
						
							|  |  |  | #include <openssl/comp.h>
 | 
					
						
							| 
									
										
										
										
											2018-04-27 02:02:24 +08:00
										 |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "comp_local.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     COMP_CTX *ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 02:02:24 +08:00
										 |  |  |     if ((ret = OPENSSL_zalloc(sizeof(*ret))) == NULL) { | 
					
						
							| 
									
										
										
										
											2020-11-04 19:23:19 +08:00
										 |  |  |         ERR_raise(ERR_LIB_COMP, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2018-04-27 02:02:24 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ret->meth = meth; | 
					
						
							|  |  |  |     if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { | 
					
						
							|  |  |  |         OPENSSL_free(ret); | 
					
						
							|  |  |  |         ret = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-09 00:05:36 +08: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-20 05:31:43 +08:00
										 |  |  | void COMP_CTX_free(COMP_CTX *ctx) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-03-28 04:25:08 +08:00
										 |  |  |     if (ctx == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ctx->meth->finish != NULL) | 
					
						
							|  |  |  |         ctx->meth->finish(ctx); | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     OPENSSL_free(ctx); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                         unsigned char *in, int ilen) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							|  |  |  |     if (ctx->meth->compress == NULL) { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = ctx->meth->compress(ctx, out, olen, in, ilen); | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							|  |  |  |         ctx->compress_in += ilen; | 
					
						
							|  |  |  |         ctx->compress_out += ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                       unsigned char *in, int ilen) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret; | 
					
						
							| 
									
										
										
										
											1998-12-21 19:00:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (ctx->meth->expand == NULL) { | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     ret = ctx->meth->expand(ctx, out, olen, in, ilen); | 
					
						
							|  |  |  |     if (ret > 0) { | 
					
						
							|  |  |  |         ctx->expand_in += ilen; | 
					
						
							|  |  |  |         ctx->expand_out += ret; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-09 00:05:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | int COMP_CTX_get_type(const COMP_CTX* comp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return comp->meth ? comp->meth->type : NID_undef; | 
					
						
							|  |  |  | } |