1 #include <linux/spinlock.h>
2 #include <linux/errno.h>
3 #include <linux/init.h>
5 #include <asm/pgtable.h>
7 #include <asm/cpufeature.h>
14 * Control non-executable mappings for processes.
19 static int __init
noexec_setup(char *str
)
23 if (!strncmp(str
, "on", 2)) {
25 } else if (!strncmp(str
, "off", 3)) {
31 early_param("noexec", noexec_setup
);
33 void x86_configure_nx(void)
35 if (boot_cpu_has(X86_FEATURE_NX
) && !disable_nx
)
36 __supported_pte_mask
|= _PAGE_NX
;
38 __supported_pte_mask
&= ~_PAGE_NX
;
41 void __init
x86_report_nx(void)
43 if (!boot_cpu_has(X86_FEATURE_NX
)) {
44 printk(KERN_NOTICE
"Notice: NX (Execute Disable) protection "
47 #if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
49 printk(KERN_INFO
"NX (Execute Disable) protection: "
50 "disabled by kernel command line option\n");
52 printk(KERN_INFO
"NX (Execute Disable) protection: "
56 /* 32bit non-PAE kernel, NX cannot be used */
57 printk(KERN_NOTICE
"Notice: NX (Execute Disable) protection "
58 "cannot be enabled: non-PAE kernel!\n");