PaX Team wrote:what kind of patch are you looking for? is it related to grsec?
Yes, the "crash" utility is very tied to the kernel code.
So I am looking for a patch from grsecurity to patch it to work with grsecurity enabled kernel.
for example: grsecurity patched kernel module.h
/* Here is the actual code + data, vfree'd on unload. */
void *module_core_rx, *module_core_rw;
/* Here are the sizes of the init and core sections */
unsigned int init_size_rw, core_size_rw;
/* The size of the executable code in each section. */
unsigned int init_size_rx, core_size_rx;
when I first read here I even didn't realize it is patched by grsecurity as no macro around the change.
but crash is looking for like module_core, core_size not the new core_size_rx...
yao