Module Name: src Committed By: maxv Date: Sat Jul 9 07:25:00 UTC 2016
Modified Files: src/sys/kern: subr_kobj.c subr_kobj_vfs.c src/sys/sys: kobj_impl.h Log Message: When loading a module from VFS and from the bootloader, the kernel packs up the module segments into one big RWX chunk. Split this chunk into two different text and data+bss+rodata chunks. The latter is made non- executable. This also provides some kind of ASLR, since the chunks are not necessarily contiguous. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/sys/kern/subr_kobj.c cvs rdiff -u -r1.8 -r1.9 src/sys/kern/subr_kobj_vfs.c cvs rdiff -u -r1.3 -r1.4 src/sys/sys/kobj_impl.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.