2008-01-01 23:09:15 +00:00
|
|
|
/*
|
2024-01-12 17:03:59 -05:00
|
|
|
* Copyright (C) 2013-2024 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
2019-01-25 10:15:50 -05:00
|
|
|
* Copyright (C) 2008-2013 Sourcefire, Inc.
|
2008-04-02 15:24:51 +00:00
|
|
|
*
|
|
|
|
* Authors: Alberto Wu
|
2020-01-03 15:44:07 -05:00
|
|
|
*
|
2018-03-05 16:34:35 -05:00
|
|
|
* Acknowledgements: Written from scratch based on specs from PKWARE:
|
|
|
|
* http://www.pkware.com/documents/casestudies/APPNOTE.TXT
|
2008-01-01 23:09:15 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __EXPLODE_H
|
|
|
|
#define __EXPLODE_H
|
|
|
|
|
2018-12-05 20:46:20 -05:00
|
|
|
#include "clamav-types.h"
|
2008-01-01 23:09:15 +00:00
|
|
|
|
|
|
|
enum {
|
2018-12-03 12:40:13 -05:00
|
|
|
EXPLODE_EBUFF,
|
|
|
|
EXPLODE_ESTREAM
|
2008-01-01 23:09:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define EXPLODE_OK EXPLODE_EBUFF
|
|
|
|
|
|
|
|
enum XPL_STATE {
|
2018-12-03 12:40:13 -05:00
|
|
|
GRABLITS,
|
|
|
|
GRABLENS,
|
|
|
|
GRABDISTS,
|
|
|
|
EXPLODE,
|
|
|
|
EXPLODE_LITCODES,
|
|
|
|
EXPLODE_LITS,
|
|
|
|
EXPLODE_BASEDIST,
|
|
|
|
EXPLODE_DECODEDISTS,
|
|
|
|
EXPLODE_DECODELENS,
|
|
|
|
EXPLODE_DECODEEXTRA,
|
|
|
|
EXPLODE_WBYTE,
|
|
|
|
EXPLODE_BACKCOPY
|
2008-01-01 23:09:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct xplstate {
|
2018-12-03 12:40:13 -05:00
|
|
|
uint8_t *next_in;
|
|
|
|
uint8_t *next_out;
|
|
|
|
unsigned int got;
|
|
|
|
unsigned int minlen;
|
|
|
|
unsigned int mask;
|
|
|
|
unsigned int cur;
|
|
|
|
uint32_t lit_tree[256];
|
|
|
|
uint32_t len_tree[64];
|
|
|
|
uint32_t dist_tree[64];
|
|
|
|
uint32_t bitmap;
|
|
|
|
uint32_t avail_in;
|
|
|
|
uint32_t avail_out;
|
|
|
|
uint16_t backbytes;
|
|
|
|
uint16_t backsize;
|
|
|
|
uint8_t window[8192];
|
|
|
|
enum XPL_STATE state;
|
|
|
|
uint8_t bits;
|
|
|
|
uint8_t largewin;
|
|
|
|
uint8_t litcodes;
|
2008-01-01 23:09:15 +00:00
|
|
|
};
|
|
|
|
|
2008-01-05 02:43:07 +00:00
|
|
|
int explode_init(struct xplstate *, uint16_t);
|
2008-01-01 23:09:15 +00:00
|
|
|
int explode(struct xplstate *);
|
2008-02-04 17:39:00 +00:00
|
|
|
void explode_shutdown(void);
|
2008-01-01 23:09:15 +00:00
|
|
|
|
|
|
|
#endif /* __EXPLODE_H */
|