-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x86-64: Check if mprotect works before rewriting PLT
Systemd execution environment configuration may prohibit changing a memory mapping to become executable: MemoryDenyWriteExecute= Takes a boolean argument. If set, attempts to create memory mappings that are writable and executable at the same time, or to change existing memory mappings to become executable, or mapping shared memory segments as executable, are prohibited. When it is set, systemd service stops working if PLT rewrite is enabled. Check if mprotect works before rewriting PLT. This fixes BZ #31230. This also works with SELinux when deny_execmem is on. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
- Loading branch information
Showing
3 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* PLT rewrite helper function. Linux/x86-64 version. | ||
Copyright (C) 2024 Free Software Foundation, Inc. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
The GNU C Library 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 | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with the GNU C Library; if not, see | ||
<https://www.gnu.org/licenses/>. */ | ||
|
||
#include <stdbool.h> | ||
#include <sys/mman.h> | ||
|
||
static __always_inline bool | ||
dl_plt_rewrite_supported (void) | ||
{ | ||
/* PLT rewrite is enabled. Check if mprotect works. */ | ||
void *plt = (void *) INTERNAL_SYSCALL_CALL (mmap, NULL, 4096, | ||
PROT_READ | PROT_WRITE, | ||
MAP_PRIVATE | MAP_ANONYMOUS, | ||
-1, 0); | ||
if (__glibc_unlikely (plt == MAP_FAILED)) | ||
return false; | ||
|
||
/* Touch the PROT_READ | PROT_WRITE page. */ | ||
*(int32_t *) plt = 1; | ||
|
||
/* If the updated PROT_READ | PROT_WRITE page can be changed to | ||
PROT_EXEC | PROT_READ, rewrite PLT. */ | ||
bool status = (INTERNAL_SYSCALL_CALL (mprotect, plt, 4096, | ||
PROT_EXEC | PROT_READ) == 0); | ||
|
||
INTERNAL_SYSCALL_CALL (munmap, plt, 4096); | ||
|
||
return status; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* PLT rewrite helper function. x86-64 version. | ||
Copyright (C) 2024 Free Software Foundation, Inc. | ||
The GNU C Library is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU Lesser General Public | ||
License as published by the Free Software Foundation; either | ||
version 2.1 of the License, or (at your option) any later version. | ||
The GNU C Library 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 | ||
Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public | ||
License along with the GNU C Library; if not, see | ||
<https://www.gnu.org/licenses/>. */ | ||
|
||
#include <stdbool.h> | ||
#include <sys/mman.h> | ||
|
||
static __always_inline bool | ||
dl_plt_rewrite_supported (void) | ||
{ | ||
return true; | ||
} |