-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 166411 b: refs/heads/master c: c44c9ec h: refs/heads/master i: 166409: 6d6e4c3 166407: aae6cd4 v: v3
- Loading branch information
Jeremy Fitzhardinge
committed
Sep 21, 2009
1 parent
d5a7e4f
commit e59ead8
Showing
5 changed files
with
73 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: b75fe4e5b869f8dbebd36df64a7fcda0c5b318ed | ||
refs/heads/master: c44c9ec0f38b939b3200436e3aa95c1aa83c41c7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#include <linux/spinlock.h> | ||
#include <linux/errno.h> | ||
#include <linux/init.h> | ||
|
||
#include <asm/pgtable.h> | ||
|
||
int nx_enabled; | ||
|
||
#if defined(CONFIG_X86_64) || defined(CONFIG_X86_PAE) | ||
static int disable_nx __cpuinitdata; | ||
|
||
/* | ||
* noexec = on|off | ||
* | ||
* Control non-executable mappings for processes. | ||
* | ||
* on Enable | ||
* off Disable | ||
*/ | ||
static int __init noexec_setup(char *str) | ||
{ | ||
if (!str) | ||
return -EINVAL; | ||
if (!strncmp(str, "on", 2)) { | ||
__supported_pte_mask |= _PAGE_NX; | ||
disable_nx = 0; | ||
} else if (!strncmp(str, "off", 3)) { | ||
disable_nx = 1; | ||
__supported_pte_mask &= ~_PAGE_NX; | ||
} | ||
return 0; | ||
} | ||
early_param("noexec", noexec_setup); | ||
#endif | ||
|
||
#ifdef CONFIG_X86_PAE | ||
void __init set_nx(void) | ||
{ | ||
unsigned int v[4], l, h; | ||
|
||
if (cpu_has_pae && (cpuid_eax(0x80000000) > 0x80000001)) { | ||
cpuid(0x80000001, &v[0], &v[1], &v[2], &v[3]); | ||
|
||
if ((v[3] & (1 << 20)) && !disable_nx) { | ||
rdmsr(MSR_EFER, l, h); | ||
l |= EFER_NX; | ||
wrmsr(MSR_EFER, l, h); | ||
nx_enabled = 1; | ||
__supported_pte_mask |= _PAGE_NX; | ||
} | ||
} | ||
} | ||
#else | ||
void set_nx(void) | ||
{ | ||
} | ||
#endif | ||
|
||
#ifdef CONFIG_X86_64 | ||
void __cpuinit check_efer(void) | ||
{ | ||
unsigned long efer; | ||
|
||
rdmsrl(MSR_EFER, efer); | ||
if (!(efer & EFER_NX) || disable_nx) | ||
__supported_pte_mask &= ~_PAGE_NX; | ||
} | ||
#endif | ||
|