如何使用 paxd 在 grsec-hardend Arch Linux 核心上執行 Java?

如何使用 paxd 在 grsec-hardend Arch Linux 核心上執行 Java?

我的 Arch Linux 附帶最新的 grsec-hardened 4.9.x Linux 內核,並安裝了 paxd。但正因為如此,當我嘗試執行 Java 時,出現以下錯誤:

Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x0000035ea1000000, 2555904, 1) failed; error='Operation not permitted' (errno=1)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 2555904 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /home/[username]/hs_err_pid2813.log

現在,我過去遇到過這個錯誤,我設法告訴它允許 Java 執行此操作,但我不記得也找不到如何執行此操作的資源。我看過這個答案paxctl,但是可惜,我的系統告訴我,即使我安裝了 Arch wiki 上提到的所有與 grsec 相關的實用程序,也找不到該命令。

那麼要如何讓它允許 Java 呢?

答案1

paxctl應該為你工作,

root #paxctl -h
PaX control v0.7
Copyright 2004,2005,2006,2007,2009,2010,2011,2012 PaX Team <[email protected]>

usage: paxctl <options> <files>

options:
    -p: disable PAGEEXEC        -P: enable PAGEEXEC
    -e: disable EMUTRAMP        -E: enable EMUTRAMP
    -m: disable MPROTECT        -M: enable MPROTECT
    -r: disable RANDMMAP        -R: enable RANDMMAP
    -x: disable RANDEXEC        -X: enable RANDEXEC
    -s: disable SEGMEXEC        -S: enable SEGMEXEC

    -v: view flags          -z: restore default flags
    -q: suppress error messages -Q: report flags in short format
    -c: convert PT_GNU_STACK into PT_PAX_FLAGS (see manpage!)
    -C: create PT_PAX_FLAGS (see manpage!)

通常我會禁用所有這樣的限制,

paxctl -pemrxs `which java`

儘管您也可以更直接地設置標誌,而無需paxctl.例如,如果你想禁用那些mr你會做的:

sudo setfattr -n user.pax.flags -v "mr" `which java`

相關內容