Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[deliverable/linux.git] / arch / x86 / mm / setup_nx.c
CommitLineData
c44c9ec0
JF
1#include <linux/spinlock.h>
2#include <linux/errno.h>
3#include <linux/init.h>
4
5#include <asm/pgtable.h>
4763ed4d 6#include <asm/proto.h>
cd4d09ec 7#include <asm/cpufeature.h>
c44c9ec0 8
148f9bb8 9static int disable_nx;
c44c9ec0
JF
10
11/*
12 * noexec = on|off
13 *
14 * Control non-executable mappings for processes.
15 *
16 * on Enable
17 * off Disable
18 */
19static int __init noexec_setup(char *str)
20{
21 if (!str)
22 return -EINVAL;
23 if (!strncmp(str, "on", 2)) {
c44c9ec0
JF
24 disable_nx = 0;
25 } else if (!strncmp(str, "off", 3)) {
26 disable_nx = 1;
c44c9ec0 27 }
4763ed4d 28 x86_configure_nx();
c44c9ec0
JF
29 return 0;
30}
31early_param("noexec", noexec_setup);
c44c9ec0 32
148f9bb8 33void x86_configure_nx(void)
c44c9ec0 34{
e16d8a6c
AL
35 if (boot_cpu_has(X86_FEATURE_NX) && !disable_nx)
36 __supported_pte_mask |= _PAGE_NX;
37 else
c44c9ec0
JF
38 __supported_pte_mask &= ~_PAGE_NX;
39}
4b0f3b81
KC
40
41void __init x86_report_nx(void)
42{
362f924b 43 if (!boot_cpu_has(X86_FEATURE_NX)) {
4b0f3b81 44 printk(KERN_NOTICE "Notice: NX (Execute Disable) protection "
6036f373 45 "missing in CPU!\n");
4b0f3b81
KC
46 } else {
47#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE)
48 if (disable_nx) {
49 printk(KERN_INFO "NX (Execute Disable) protection: "
50 "disabled by kernel command line option\n");
51 } else {
52 printk(KERN_INFO "NX (Execute Disable) protection: "
53 "active\n");
54 }
55#else
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");
59#endif
60 }
61}
This page took 0.331965 seconds and 5 git commands to generate.