1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
$Id: maps.h,v 1.2 2007-06-05 01:45:35+01 taviso Exp $
Copyright (C) 2006,2007 Tavis Ormandy <taviso@sdf.lonestar.org>
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 St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef _MAPS_INC
#define _MAPS_INC /* include guard */
/* a region obtained from /proc/pid/maps, these are searched for matches */
typedef struct {
unsigned start; /* start address */
unsigned size; /* size */
struct __attribute__((packed)) {
unsigned read:1;
unsigned write:1;
unsigned exec:1;
unsigned shared:1;
unsigned private:1;
} flags;
unsigned id; /* unique identifier */
char filename[1]; /* associated file, must be last */
} region_t;
bool readmaps(pid_t target, list_t * regions);
int compare_region_id(const region_t *a, const region_t *b);
#endif /* _MAPS_INC */
|