mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-07 13:31:36 -05:00
TODO: - check consistency in elf parser - remove hardcoded header size - fix check for 1st sect rva - ... - regression git-svn-id: file:///var/lib/svn/clamav-devel/branches/temp_branch_pe_cleanup@2943 77e5149b-7576-45b1-b177-96237e5ba77b
46 lines
1.3 KiB
C
46 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2005 Tomasz Kojm <tkojm@clamav.net>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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 __EXECS_H
|
|
#define __EXECS_H
|
|
|
|
#include "cltypes.h"
|
|
#include <sys/types.h>
|
|
|
|
struct cli_exe_section {
|
|
uint32_t rva;
|
|
uint32_t vsz;
|
|
uint32_t raw;
|
|
uint32_t rsz;
|
|
uint32_t chr;
|
|
uint32_t urva; /* PE - unaligned VirtualAddress */
|
|
uint32_t uvsz; /* PE - unaligned VirtualSize */
|
|
uint32_t uraw; /* PE - unaligned PointerToRawData */
|
|
uint32_t ursz; /* PE - unaligned SizeOfRawData */
|
|
};
|
|
|
|
struct cli_exe_info {
|
|
uint32_t ep;
|
|
uint16_t nsections;
|
|
off_t offset;
|
|
struct cli_exe_section *section;
|
|
};
|
|
|
|
#endif
|