mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
230 lines
4.7 KiB
230 lines
4.7 KiB
/*
|
|
* Byte code handling routines.
|
|
* Copyright (c) 1998 New Generation Software (NGS) Oy
|
|
*
|
|
* Author: Markku Rossi <mtr@ngs.fi>
|
|
*/
|
|
|
|
/*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
|
|
* MA 02111-1307, USA
|
|
*/
|
|
|
|
/*
|
|
* $Source: /tmp/cvsroot-15-2-2007/clamav-devel/libclamav/js/bc.c,v $
|
|
* $Id: bc.c,v 1.2 2006/10/28 11:27:44 njh Exp $
|
|
*/
|
|
#if HAVE_CONFIG_H
|
|
#include "clamav-config.h"
|
|
#endif
|
|
|
|
#ifdef CL_EXPERIMENTAL
|
|
|
|
#include "jsint.h"
|
|
|
|
/*
|
|
* Global functions.
|
|
*/
|
|
|
|
JSByteCode *
|
|
js_bc_read_file (FILE *fp)
|
|
{
|
|
unsigned char header[8];
|
|
JSUInt32 ui;
|
|
int i, got;
|
|
JSByteCode *bc = NULL;
|
|
|
|
if ((i = fgetc (fp)) == '#')
|
|
{
|
|
/* Skip the first line. */
|
|
while ((i = fgetc (fp)) != EOF && i != '\n')
|
|
;
|
|
if (i == EOF)
|
|
goto format_error;
|
|
}
|
|
else
|
|
ungetc (i, fp);
|
|
|
|
got = fread (header, 4, 2, fp);
|
|
if (got != 2)
|
|
goto format_error;
|
|
|
|
JS_BC_READ_INT32 (header, ui);
|
|
if (ui != JS_BC_FILE_MAGIC)
|
|
goto format_error;
|
|
|
|
bc = js_calloc (NULL, 1, sizeof (*bc));
|
|
if (bc == NULL)
|
|
return NULL;
|
|
|
|
|
|
JS_BC_READ_INT32 (header + 4, ui);
|
|
bc->num_sects = (unsigned int) ui;
|
|
|
|
bc->sects = js_calloc (NULL, bc->num_sects, sizeof (JSBCSect));
|
|
if (bc->sects == NULL)
|
|
{
|
|
js_free (bc);
|
|
return NULL;
|
|
}
|
|
|
|
/* Read sections. */
|
|
for (i = 0; i < bc->num_sects; i++)
|
|
{
|
|
got = fread (header, 4, 2, fp);
|
|
if (got != 2)
|
|
goto format_error;
|
|
|
|
/* Get type. */
|
|
JS_BC_READ_INT32 (header, ui);
|
|
bc->sects[i].type = (int) ui;
|
|
|
|
/* Get section length. */
|
|
JS_BC_READ_INT32 (header + 4, ui);
|
|
bc->sects[i].length = (unsigned int) ui;
|
|
bc->sects[i].data = js_malloc (NULL, bc->sects[i].length + 1
|
|
/* +1 to avoid zero allocations */);
|
|
if (bc->sects[i].data == NULL)
|
|
{
|
|
for (i--; i >= 0; i--)
|
|
js_free (bc->sects[i].data);
|
|
|
|
js_free (bc->sects);
|
|
js_free (bc);
|
|
return NULL;
|
|
}
|
|
|
|
|
|
/* Read section's data. */
|
|
got = fread (bc->sects[i].data, 1, bc->sects[i].length, fp);
|
|
if (got != bc->sects[i].length)
|
|
goto format_error;
|
|
}
|
|
|
|
return bc;
|
|
|
|
format_error:
|
|
|
|
if (bc)
|
|
js_bc_free (bc);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
JSByteCode *
|
|
js_bc_read_data (unsigned char *data, unsigned int datalen)
|
|
{
|
|
JSUInt32 ui;
|
|
unsigned int pos = 0;
|
|
int i;
|
|
JSByteCode *bc = NULL;
|
|
|
|
if (data[pos] == '#')
|
|
{
|
|
/* Skip the first line. */
|
|
for (; pos < datalen && data[pos] != '\n'; pos++)
|
|
;
|
|
if (pos >= datalen)
|
|
goto format_error;
|
|
}
|
|
|
|
if (datalen - pos < 8)
|
|
goto format_error;
|
|
|
|
JS_BC_READ_INT32 (data + pos, ui);
|
|
if (ui != JS_BC_FILE_MAGIC)
|
|
goto format_error;
|
|
pos += 4;
|
|
|
|
bc = js_calloc (NULL, 1, sizeof (*bc));
|
|
if (bc == NULL)
|
|
return NULL;
|
|
|
|
JS_BC_READ_INT32 (data + pos, ui);
|
|
bc->num_sects = (unsigned int) ui;
|
|
pos += 4;
|
|
|
|
bc->sects = js_calloc (NULL, bc->num_sects, sizeof (JSBCSect));
|
|
if (bc->sects == NULL)
|
|
{
|
|
js_free (bc);
|
|
return NULL;
|
|
}
|
|
|
|
/* Read sections. */
|
|
for (i = 0; i < bc->num_sects; i++)
|
|
{
|
|
if (datalen - pos < 8)
|
|
goto format_error;
|
|
|
|
/* Get type. */
|
|
JS_BC_READ_INT32 (data + pos, ui);
|
|
bc->sects[i].type = (int) ui;
|
|
pos += 4;
|
|
|
|
/* Get section length. */
|
|
JS_BC_READ_INT32 (data + pos, ui);
|
|
bc->sects[i].length = (unsigned int) ui;
|
|
pos += 4;
|
|
|
|
bc->sects[i].data = js_malloc (NULL, bc->sects[i].length + 1
|
|
/* +1 to avoid zero allocations */);
|
|
if (bc->sects[i].data == NULL)
|
|
{
|
|
for (i--; i >= 0; i--)
|
|
js_free (bc->sects[i].data);
|
|
|
|
js_free (bc->sects);
|
|
js_free (bc);
|
|
return NULL;
|
|
}
|
|
|
|
/* Read section's data. */
|
|
if (datalen - pos < bc->sects[i].length)
|
|
goto format_error;
|
|
|
|
memcpy (bc->sects[i].data, data + pos, bc->sects[i].length);
|
|
pos += bc->sects[i].length;
|
|
}
|
|
|
|
if (pos != datalen)
|
|
goto format_error;
|
|
|
|
return bc;
|
|
|
|
|
|
format_error:
|
|
|
|
if (bc)
|
|
js_bc_free (bc);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
|
|
void
|
|
js_bc_free (JSByteCode *bc)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < bc->num_sects; i++)
|
|
if (bc->sects[i].data)
|
|
js_free (bc->sects[i].data);
|
|
|
|
js_free (bc->sects);
|
|
js_free (bc);
|
|
}
|
|
#endif /*CL_EXPERIMENTAL*/
|
|
|