1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/* Implementation of the test verification functions for memory access
checks.
Copyright (C) 2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
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 <setjmp.h>
#include <signal.h>
#include <stddef.h>
#include <support/xsignal.h>
#include "check_mem_access.h"
static sigjmp_buf sigsegv_jmp_buf;
static void
__sigsegv_handler (int signum)
{
siglongjmp (sigsegv_jmp_buf, signum);
}
bool check_mem_access (const void *addr, bool write)
{
/* This is obviously not thread-safe. */
static bool handler_set_up;
if (!handler_set_up)
{
struct sigaction sa = {
.sa_handler = __sigsegv_handler,
.sa_flags = SA_NODEFER,
};
sigemptyset (&sa.sa_mask);
xsigaction (SIGSEGV, &sa, NULL);
/* Some system generates SIGBUS accessing the guard area when it is
setup with madvise. */
xsigaction (SIGBUS, &sa, NULL);
handler_set_up = true;
}
int r = sigsetjmp (sigsegv_jmp_buf, 0);
if (r == 0)
{
if (write)
*(volatile char *)addr = 'x';
else
*(volatile char *)addr;
return true;
}
if (r == SIGSEGV || r == SIGBUS)
return false;
return true;
}
|