/usr/share/systemtap/runtime/linux/autoconf-grsecurity.c is in systemtap-common 2.9-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | /* PR10551: pax/grsecurity changes linux/module.h */
#include <linux/module.h>
struct module *t;
unsigned size;
void foo (void)
{
size += t->init_size_rw + t->init_size_rx + t->core_size_rw + t->core_size_rx;
}
|