diff options
author | John Baldwin <jhb@FreeBSD.org> | 2021-06-14 14:28:26 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2021-06-14 14:55:48 -0700 |
commit | 09db4332c6017ab57cd136788c48e5a81e3b9399 (patch) | |
tree | d0c6e194cab1c0161bd3c4b94f8980a6b5eb5614 /gdb/ChangeLog | |
parent | c9923e71ff57ce6e824833560aae59057c6f5783 (diff) | |
download | gdb-09db4332c6017ab57cd136788c48e5a81e3b9399.zip gdb-09db4332c6017ab57cd136788c48e5a81e3b9399.tar.gz gdb-09db4332c6017ab57cd136788c48e5a81e3b9399.tar.bz2 |
fbsd nat: Disable address space randomization when requested.
Use procctl(2) with PROC_ASLR_CTL to disable address space
randomization in the current gdb process before forking a child
process for a new inferior when address space randomization is
disabled.
gdb/ChangeLog:
* configure.ac: Check for <sys/procctl.h>.
* config.in, configure: Regenerate.
* fbsd-nat.c: Include <sys/procctl.h> if present.
[PROC_ASLR_CTL] (maybe_disable_address_space_randomization): New.
(fbsd_nat_target::create_inferior)
(fbsd_nat_target::supports_disable_randomization): New.
* fbsd-nat.h (fbsd_nat_target::create_inferior)
(fbsd_nat_target::supports_disable_randomization): New.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2db5abc..7f46c4a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,14 @@ +2021-06-14 John Baldwin <jhb@FreeBSD.org> + + * configure.ac: Check for <sys/procctl.h>. + * config.in, configure: Regenerate. + * fbsd-nat.c: Include <sys/procctl.h> if present. + [PROC_ASLR_CTL] (maybe_disable_address_space_randomization): New. + (fbsd_nat_target::create_inferior) + (fbsd_nat_target::supports_disable_randomization): New. + * fbsd-nat.h (fbsd_nat_target::create_inferior) + (fbsd_nat_target::supports_disable_randomization): New. + 2021-06-14 Bernd Edlinger <bernd.edlinger@hotmail.de> * compile/compile.c: Include missing header signal.h. |