Linux 커널을 통해 NX CPU 비트 사용량을 확인하는 방법은 무엇입니까?

Linux 커널을 통해 NX CPU 비트 사용량을 확인하는 방법은 무엇입니까?

현재 시스템이 어떤 방식으로든 NX 비트 보호를 사용하는지 확인하고 싶습니다. dmesg출력의 첫 줄을 확인하면 이 작업을 수행할 수 있다는 것을 알고 있습니다 . 그러나 이것은 스크롤 버퍼이므로 장기 실행 시스템에서는 항상 이 작업을 수행할 수는 없습니다.

NX 사용량을 확인하는 다른 방법이 있습니까? 관련 문서를 볼 수 없습니다 /proc. 로드된 모듈(실행 파일의 데이터 부분)의 메모리 맵을 확인하려고 했지만 해당 모듈을 가져올 수 있는 곳을 찾을 수 없습니다.

나는 root이것을 확인하기 위해 권한을 사용하려고 노력하고 있지만 수동적으로(이를 사전에 확인하기 위해 모듈을 작성할 수 있다는 것을 알고 있지만 그렇게까지 가고 싶지는 않습니다).

답변1

긴 이야기 짧게

다음 코드 줄을 사용하여 CPU가 NX(Wikipedia에서 NX 비트에 대한 추가 정보 링크).

grep -m1 nx /proc/cpuinfo

출력 예:

flags        : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp md_clear flush_l1d

그리고 관리자가 커널에 NX 기능을 비활성화하도록 지시하지 않았는지 확인하세요.

grep noexec=off /proc/cmdline

보호가 켜져 있으면 출력이 없어야 합니다.


dmesg유일한 믿을만한 방법인 것 같습니다

그러나 이는 단지 CPU가 NX를 지원하는지 확인하는 것이므로 확인하는 것이 항상 더 안정적입니다 dmesg.

dmesg | grep 'Execute Disable'

다음과 같이 출력되어야 합니다.

[    0.000000] NX (Execute Disable) protection: active

활성화, 비활성화

그러나 noexec=offGRUB에 추가하면 커널의 NX 기능을 비활성화할 수 있습니다.

5.4 버전의 커널에서는 여전히 작동합니다.

  • /proc/cpuinfo여전히 nx문자열이 포함되어 있습니다

  • dmesg로 변경:

    [    0.000000] NX (Execute Disable) protection: disabled by kernel command line option
    
  • journalctl다음을 사용하도록 선택할 수 있습니다 .

    journalctl -b | grep 'Execute Disable'
    

스크립트 확인

Linux용 색상

#!/bin/sh

# Wiki: https://en.wikipedia.org/wiki/NX_bit

print_ok__continue () { tput setaf 2 2>/dev/null; tput bold 2>/dev/null; printf '%s: OK\n' "$@"; tput sgr0; }

print_error___exit () { tput setaf 1 2>/dev/null; tput bold 2>/dev/null; printf >&2 '%s\n' "$@"; tput sgr0; exit 1; }

if grep -m1 -q nx /proc/cpuinfo; then
    print_ok__continue '[1]: CPU NX bit is present in your CPU flags'
else
    print_error___exit '[1]: CPU NX bit is missing in your CPU flags'
fi

if ! grep -q noexec=off /proc/cmdline; then
    print_ok__continue '[2]: CPU NX bit is not disabled in GRUB line'
else
    print_error___exit '[2]: CPU NX bit is manually disabled by system administrator via GRUB'
fi

if dmesg | grep -q 'NX (Execute Disable) protection: active'; then
    print_ok__continue '[3]: CPU NX bit is used by your Linux kernel'
else
    print_error___exit '[3]: CPU NX bit is not used by your Linux kernel according to dmesg'
fi

printf '%s\n' 'All tests PASSED, congratulations, you have NX bit capable and enabled CPU + OS!'

관련 정보