clamav/libclamav/bytecode_priv.h

142 lines
3.3 KiB
C
Raw Normal View History

2009-07-07 23:36:36 +03:00
/*
* Load, verify and execute ClamAV bytecode.
*
* Copyright (C) 2009 Sourcefire, Inc.
*
* Authors: Török Edvin
*
* 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 BYTECODE_PRIV_H
#define BYTECODE_PRIV_H
2009-07-31 15:28:36 +03:00
#include "type_desc.h"
2009-09-30 13:41:02 +03:00
#include "execs.h"
#include "bytecode_hooks.h"
2009-12-03 11:37:38 +02:00
#include "fmap.h"
2009-07-07 23:36:36 +03:00
typedef uint32_t operand_t;
typedef uint16_t bbid_t;
typedef uint16_t funcid_t;
struct cli_bc_callop {
operand_t* ops;
uint16_t* opsizes;
2009-07-07 23:36:36 +03:00
uint8_t numOps;
funcid_t funcid;
};
struct branch {
operand_t condition;
bbid_t br_true;
bbid_t br_false;
};
struct cli_bc_cast {
uint64_t mask;
operand_t source;
uint8_t size;/* 0: 1-bit, 1: 8b, 2: 16b, 3: 32b, 4: 64b */
2009-07-07 23:36:36 +03:00
};
typedef uint8_t interp_op_t;
2009-07-07 23:36:36 +03:00
struct cli_bc_inst {
enum bc_opcode opcode;
uint16_t type;
interp_op_t interp_op;/* opcode for interpreter */
2009-07-08 12:45:06 +03:00
operand_t dest;
2009-07-07 23:36:36 +03:00
union {
operand_t unaryop;
struct cli_bc_cast cast;
operand_t binop[2];
operand_t three[3];
struct cli_bc_callop ops;
struct branch branch;
bbid_t jump;
} u;
};
struct cli_bc_bb {
unsigned numInsts;
struct cli_bc_inst *insts;
};
struct cli_bc_func {
uint8_t numArgs;
uint16_t numLocals;
uint32_t numInsts;
uint32_t numValues;/* without constants */
2009-07-07 23:36:36 +03:00
uint32_t numConstants;
uint32_t numBytes;/* stack size */
2009-07-07 23:36:36 +03:00
uint16_t numBB;
2009-08-27 18:12:39 +03:00
uint16_t returnType;
2009-07-07 23:36:36 +03:00
uint16_t *types;
uint32_t insn_idx;
struct cli_bc_bb *BB;
struct cli_bc_inst *allinsts;
uint64_t *constants;
2009-11-30 15:22:20 +02:00
unsigned *dbgnodes;
2009-07-07 23:36:36 +03:00
};
2009-11-30 15:22:20 +02:00
struct cli_bc_dbgnode_element {
unsigned nodeid;
char *string;
unsigned len;
uint64_t constant;
};
struct cli_bc_dbgnode {
unsigned numelements;
struct cli_bc_dbgnode_element* elements;
};
#define MAX_OP ~0u
2009-07-07 23:36:36 +03:00
struct cli_bc_ctx {
/* id and params of toplevel function called */
2009-07-10 16:11:54 +03:00
const struct cli_bc *bc;
const struct cli_bc_func *func;
unsigned bytes;
uint16_t *opsizes;
char *values;
2009-07-07 23:36:36 +03:00
operand_t *operands;
uint16_t funcid;
unsigned numParams;
2009-09-04 17:29:13 +03:00
size_t file_size;
off_t off;
2009-12-03 11:37:38 +02:00
fmap_t *fmap;
2009-09-22 11:03:17 +03:00
const char *virname;
2009-09-30 13:41:02 +03:00
struct cli_bc_hooks hooks;
int outfd;
char *tempfile;
void *ctx;
unsigned written;
2009-07-07 23:36:36 +03:00
};
struct cli_all_bc;
int cli_vm_execute(const struct cli_bc *bc, struct cli_bc_ctx *ctx, const struct cli_bc_func *func, const struct cli_bc_inst *inst);
#ifdef __cplusplus
extern "C" {
#endif
2009-08-27 20:41:29 +03:00
int cli_vm_execute_jit(const struct cli_all_bc *bcs, struct cli_bc_ctx *ctx, const struct cli_bc_func *func);
int cli_bytecode_prepare_jit(struct cli_all_bc *bc);
int cli_bytecode_init_jit(struct cli_all_bc *bc);
int cli_bytecode_done_jit(struct cli_all_bc *bc);
#ifdef __cplusplus
}
#endif
2009-07-07 23:36:36 +03:00
#endif