-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LibOS] Add aux vectors
AT_UID
, AT_EUID
, AT_GID
, AT_EGID
, `AT…
…_SECURE` These aux vectors are required by glibc and musl to determine whether the loaded executable should be treated securely (e.g., secure treatment ignores `LD_LIBRARY_PATH` and `LD_PRELOAD` envvars). Glibc expects this info in `AT_SECURE` whereas musl decides based on both `AT_SECURE` and UID/EUID/GID/EGID. Signed-off-by: Dmitrii Kuvaiskii <[email protected]>
- Loading branch information
Dmitrii Kuvaiskii
committed
Jun 19, 2023
1 parent
cd1b7c5
commit fdd3417
Showing
2 changed files
with
19 additions
and
4 deletions.
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
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