Skip to content

Commit

Permalink
exec: provide function to test runtime availability of rwx maps
Browse files Browse the repository at this point in the history
SELinux or PaX/grsecurity based kernels may deny creating writable and
executable mappings, leading to errors when trying to allocate JIT
memory, even though JIT support is generally available.

Provide a function to probe for the runtime availability of rwx maps to
support users like libpcre2 which can use it to announce the lack of JIT
and fall back to the interpreter instead.

This function is only needed for Linux and only if we're using the
default JIT memory allocator, as all others implement workarounds via
double mappings.

Signed-off-by: Mathias Krause <[email protected]>
  • Loading branch information
minipli-oss committed Nov 8, 2022
1 parent 28b952b commit e316ab7
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sljit_src/sljitConfigInternal.h
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,17 @@ SLJIT_API_FUNC_ATTRIBUTE sljit_sw sljit_exec_offset(void* ptr);
#define SLJIT_EXEC_OFFSET(ptr) sljit_exec_offset(ptr)
#else
#define SLJIT_EXEC_OFFSET(ptr) 0

/* SELinux or grsecurity kernels may deny creating rwx mappings, so we need
to probe at runtime if JIT memory is supported. */
#if defined __linux__ && \
(!defined SLJIT_PROT_EXECUTABLE_ALLOCATOR || !SLJIT_PROT_EXECUTABLE_ALLOCATOR) && \
(!defined SLJIT_WX_EXECUTABLE_ALLOCATOR || !SLJIT_WX_EXECUTABLE_ALLOCATOR)
SLJIT_API_FUNC_ATTRIBUTE int sljit_get_runtime_support(void);
#else
#define sljit_get_runtime_support() 1
#endif

#endif

#endif /* SLJIT_EXECUTABLE_ALLOCATOR */
Expand Down
46 changes: 46 additions & 0 deletions sljit_src/sljitExecAllocator.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,52 @@ static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size)

#else /* POSIX */

#ifdef __linux__
SLJIT_API_FUNC_ATTRIBUTE int sljit_get_runtime_support(void)
{
int status = -1;
size_t size;
void *addr;
FILE *f;

/* Try to get the status from /proc/self/status, looking for PaX flags. */
f = fopen("/proc/self/status", "r");
if (f) {
char *buf = NULL;
size_t len;

while (getline(&buf, &len, f) != -1) {
if (strncmp(buf, "PaX:", 4))
continue;

/* Look for 'm', indicating PaX MPROTECT is disabled. */
status = !!strchr(buf+4, 'm');
break;
}

fclose(f);
free(buf);

if (status != -1)
return status;
}

/*
* Create a temporary mapping and try to make it writable to probe for rwx
* support without generating a log message.
*/
size = get_page_alignment() + 1;
addr = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
if (addr == MAP_FAILED)
return 0;

status = mprotect(addr, size, PROT_READ | PROT_WRITE | PROT_EXEC) == 0;
munmap(addr, size);

return status;
}
#endif

#if defined(__APPLE__) && defined(MAP_JIT)
/*
On macOS systems, returns MAP_JIT if it is defined _and_ we're running on a
Expand Down

0 comments on commit e316ab7

Please sign in to comment.