blob: 82c05eedfdfd323e1a8c0163a4e2653d4967b6f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-third__party_wasm2c_wasm2c_wasm-rt-os-unix.c,v 1.2 2022/07/20 22:09:32 wiz Exp $
Work with PaX MPROTECT on NetBSD by stating that we will later make this memory
block executable.
--- third_party/wasm2c/wasm2c/wasm-rt-os-unix.c.orig 2022-07-05 12:21:22.000000000 +0000
+++ third_party/wasm2c/wasm2c/wasm-rt-os-unix.c
@@ -48,6 +48,12 @@ void* os_mmap(void* hint, size_t size, i
/* At most 16 G is allowed */
return NULL;
+#ifdef PROT_MPROTECT
+ map_prot |= PROT_MPROTECT(PROT_READ);
+ map_prot |= PROT_MPROTECT(PROT_WRITE);
+ map_prot |= PROT_MPROTECT(PROT_EXEC);
+#endif
+
if (prot & MMAP_PROT_READ)
map_prot |= PROT_READ;
|