mirror of
https://github.com/SELinuxProject/selinux
synced 2025-04-04 23:49:19 +00:00
libselinux: make selinux_status_open(3) reentrant
Do not mmap the status page again if `selinux_status_open(3)` has already been called with success. `selinux_status_open(3)` might be called unintentionally multiple times, e.g. once to manually be able to call `selinux_status_getenforce(3)` and once indirectly through `selinux_check_access(3)` (since libselinux 3.2). Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
This commit is contained in:
parent
a2304cef57
commit
c5a699046f
@ -282,6 +282,10 @@ int selinux_status_open(int fallback)
|
||||
long pagesize;
|
||||
uint32_t seqno;
|
||||
|
||||
if (selinux_status != NULL) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (!selinux_mnt) {
|
||||
errno = ENOENT;
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user