2000-08-24 21:03:12 +02:00
|
|
|
/* dumper.h
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
Copyright 1999, 2001, 2013 Red Hat Inc.
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
Written by Egor Duda <deo@logos-m.ru>
|
|
|
|
|
2007-07-24 21:08:23 +02:00
|
|
|
This file is part of Cygwin.
|
2000-08-24 21:03:12 +02:00
|
|
|
|
2007-07-24 21:08:23 +02:00
|
|
|
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 (file COPYING.dumper) 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. */
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
#ifndef _DUMPER_H_
|
|
|
|
#define _DUMPER_H_
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
LPBYTE base;
|
2013-04-23 11:44:36 +02:00
|
|
|
SIZE_T size;
|
2000-08-24 21:03:12 +02:00
|
|
|
} process_mem_region;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD tid;
|
|
|
|
HANDLE hThread;
|
|
|
|
CONTEXT context;
|
|
|
|
} process_thread;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
LPVOID base_address;
|
|
|
|
char* name;
|
|
|
|
} process_module;
|
|
|
|
|
|
|
|
enum process_entity_type
|
|
|
|
{
|
|
|
|
pr_ent_memory,
|
|
|
|
pr_ent_thread,
|
|
|
|
pr_ent_module
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _process_entity
|
|
|
|
{
|
|
|
|
process_entity_type type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
process_thread thread;
|
|
|
|
process_mem_region memory;
|
|
|
|
process_module module;
|
|
|
|
} u;
|
|
|
|
asection* section;
|
|
|
|
struct _process_entity* next;
|
|
|
|
} process_entity;
|
|
|
|
|
|
|
|
class exclusion
|
|
|
|
{
|
|
|
|
public:
|
2013-04-23 11:44:36 +02:00
|
|
|
size_t last;
|
|
|
|
size_t size;
|
|
|
|
size_t step;
|
2000-08-24 21:03:12 +02:00
|
|
|
process_mem_region* region;
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
exclusion ( size_t step ) { last = size = 0;
|
|
|
|
this->step = step;
|
|
|
|
region = NULL; }
|
2000-08-24 21:03:12 +02:00
|
|
|
~exclusion () { free ( region ); }
|
2013-04-23 11:44:36 +02:00
|
|
|
int add ( LPBYTE mem_base, SIZE_T mem_size );
|
2000-08-24 21:03:12 +02:00
|
|
|
int sort_and_check ();
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PAGE_BUFFER_SIZE 4096
|
|
|
|
|
|
|
|
class dumper
|
|
|
|
{
|
|
|
|
DWORD pid;
|
|
|
|
DWORD tid; /* thread id of active thread */
|
|
|
|
HANDLE hProcess;
|
|
|
|
process_entity* list;
|
|
|
|
process_entity* last;
|
|
|
|
exclusion* excl_list;
|
|
|
|
|
|
|
|
char* file_name;
|
|
|
|
bfd* core_bfd;
|
|
|
|
|
|
|
|
asection* status_section;
|
|
|
|
|
|
|
|
int memory_num;
|
|
|
|
int module_num;
|
|
|
|
int thread_num;
|
|
|
|
|
|
|
|
void close ();
|
|
|
|
void dumper_abort ();
|
|
|
|
|
|
|
|
process_entity* add_process_entity_to_list ( process_entity_type type );
|
|
|
|
int add_thread ( DWORD tid, HANDLE hThread );
|
2013-04-23 11:44:36 +02:00
|
|
|
int add_mem_region ( LPBYTE base, SIZE_T size );
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
/* break mem_region by excl_list and add add all subregions */
|
2013-04-23 11:44:36 +02:00
|
|
|
int split_add_mem_region ( LPBYTE base, SIZE_T size );
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
int add_module ( LPVOID base_address );
|
|
|
|
|
|
|
|
int collect_memory_sections ();
|
|
|
|
int dump_memory_region ( asection* to, process_mem_region* memory );
|
|
|
|
int dump_thread ( asection* to, process_thread* thread );
|
|
|
|
int dump_module ( asection* to, process_module* module );
|
|
|
|
|
|
|
|
public:
|
|
|
|
int sane ();
|
|
|
|
|
|
|
|
int collect_process_information ();
|
2001-08-30 18:47:51 +02:00
|
|
|
void print_core_section_list ();
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
dumper ( DWORD pid, DWORD tid, const char* name );
|
|
|
|
~dumper ();
|
|
|
|
|
|
|
|
int init_core_dump ();
|
|
|
|
int prepare_core_dump ();
|
|
|
|
int write_core_dump ();
|
|
|
|
};
|
|
|
|
|
|
|
|
extern int deb_printf ( const char* format, ... );
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
extern char* psapi_get_module_name ( HANDLE hProcess, LPVOID BaseAddress );
|
2000-08-24 21:03:12 +02:00
|
|
|
|
|
|
|
extern int parse_pe ( const char* file_name, exclusion* excl_list );
|
|
|
|
|
|
|
|
extern BOOL verbose;
|
|
|
|
|
|
|
|
#endif
|