Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1252631 > unrolled thread
| Started by | Ingo Molnar <mingo@kernel.org> |
|---|---|
| First post | 2015-10-21 11:50 +0200 |
| Last post | 2015-10-21 22:40 +0200 |
| Articles | 10 — 5 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v2] x86/mm: warn on W+x mappings Ingo Molnar <mingo@kernel.org> - 2015-10-21 11:50 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Ingo Molnar <mingo@kernel.org> - 2015-10-21 14:50 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Ard Biesheuvel <ard.biesheuvel@linaro.org> - 2015-10-21 15:00 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Borislav Petkov <bp@alien8.de> - 2015-10-21 15:30 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Ard Biesheuvel <ard.biesheuvel@linaro.org> - 2015-10-21 15:30 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Borislav Petkov <bp@alien8.de> - 2015-10-21 16:40 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Andy Lutomirski <luto@amacapital.net> - 2015-10-21 20:50 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Andy Lutomirski <luto@amacapital.net> - 2015-10-21 22:50 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Matt Fleming <matt@codeblueprint.co.uk> - 2015-10-21 22:50 +0200
Re: [PATCH v2] x86/mm: warn on W+x mappings Matt Fleming <matt@codeblueprint.co.uk> - 2015-10-21 22:40 +0200
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2015-10-21 11:50 +0200 |
| Subject | Re: [PATCH v2] x86/mm: warn on W+x mappings |
| Message-ID | <qlYbU-7xO-7@gated-at.bofh.it> |
* Matt Fleming <matt@codeblueprint.co.uk> wrote: > > > Right, we could do that, but then we wouldn't be able to support > > > creation/updating variables at runtime, such as when you install a > > > distribution for the first time, or want to boot a new kernel filename > > > directly from the firmware without a boot loader (and need to modify the > > > BootXXXX variables). > > > > Do we know the precise position and address range of these variables? > > > > We could map them writable (but not executable), and the rest executable (but > > not writable). > > The variables are stored in NVRAM, which we don't map into the kernel virtual > address space. [...] Just curious: is there firmware that memory maps those variables privately? > [...] We have to initiate the transaction of writing to the variables by > executing EFI runtime services. > > We obviously have buffers that we pass to the BIOS that contain variable data, > but these should be NX anyway because they're regular kernel allocations. > > > That raises the question whether the same physical page ever mixes variables > > and actual code - but the hope would be that it's suffiently page granular for > > this to work. > > I don't think that would ever happen. Ok, that's promising, so how about this then to solve the security weakness the new warning unearthed: map the whole EFI range as 'r-x (NX)', but detect writes from the page fault handler and transparently allow them to flip over the range to 'rw-'. Note that for security reasons we don't allow a subsequent flipping back to NX if there's an NX fault on the same page, i.e. this new mechanism is a monotonic one-way process that should dynamically 'map out' data pages versus executable pages. It should also be pretty robust, assuming we can take page faults while EFI code is executing and is trying to modify EFI data: is that the case? Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2015-10-21 14:50 +0200 |
| Message-ID | <qm106-3fX-15@gated-at.bofh.it> |
| In reply to | #1252631 |
* Ingo Molnar <mingo@kernel.org> wrote: > > * Matt Fleming <matt@codeblueprint.co.uk> wrote: > > > > > Right, we could do that, but then we wouldn't be able to support > > > > creation/updating variables at runtime, such as when you install a > > > > distribution for the first time, or want to boot a new kernel filename > > > > directly from the firmware without a boot loader (and need to modify the > > > > BootXXXX variables). > > > > > > Do we know the precise position and address range of these variables? > > > > > > We could map them writable (but not executable), and the rest executable (but > > > not writable). > > > > The variables are stored in NVRAM, which we don't map into the kernel virtual > > address space. [...] > > Just curious: is there firmware that memory maps those variables privately? > > > [...] We have to initiate the transaction of writing to the variables by > > executing EFI runtime services. > > > > We obviously have buffers that we pass to the BIOS that contain variable data, > > but these should be NX anyway because they're regular kernel allocations. > > > > > That raises the question whether the same physical page ever mixes variables > > > and actual code - but the hope would be that it's suffiently page granular for > > > this to work. > > > > I don't think that would ever happen. > > Ok, that's promising, so how about this then to solve the security weakness the > new warning unearthed: map the whole EFI range as 'r-x (NX)', but detect writes > from the page fault handler and transparently allow them to flip over the range > to 'rw-'. So I meant to say 'page' instead of 'range'. I.e. this dynamic mechanism would flip pages over to 'rw-', as write faults occur from EFI code that writes to them. We don't need to know which regions are writable data, and which regions are executable-code/readonly-data. The following aspect would guarantee safety: > Note that for security reasons we don't allow a subsequent flipping back to NX > if there's an NX fault on the same page, i.e. this new mechanism is a monotonic > one-way process that should dynamically 'map out' data pages versus executable > pages. > > It should also be pretty robust, assuming we can take page faults while EFI code > is executing and is trying to modify EFI data: is that the case? and this is why I asked whether boundaries between 'Code' and 'Writable data' sections are page granular - which they do appear to be. (i.e. there are no singular pages that are both writable data and code at once.) Thanks, Ingo -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Ard Biesheuvel <ard.biesheuvel@linaro.org> |
|---|---|
| Date | 2015-10-21 15:00 +0200 |
| Message-ID | <qm19L-3rA-5@gated-at.bofh.it> |
| In reply to | #1252787 |
On 21 October 2015 at 14:49, Ingo Molnar <mingo@kernel.org> wrote: > > * Ingo Molnar <mingo@kernel.org> wrote: > >> >> * Matt Fleming <matt@codeblueprint.co.uk> wrote: >> >> > > > Right, we could do that, but then we wouldn't be able to support >> > > > creation/updating variables at runtime, such as when you install a >> > > > distribution for the first time, or want to boot a new kernel filename >> > > > directly from the firmware without a boot loader (and need to modify the >> > > > BootXXXX variables). >> > > >> > > Do we know the precise position and address range of these variables? >> > > >> > > We could map them writable (but not executable), and the rest executable (but >> > > not writable). >> > >> > The variables are stored in NVRAM, which we don't map into the kernel virtual >> > address space. [...] >> >> Just curious: is there firmware that memory maps those variables privately? >> >> > [...] We have to initiate the transaction of writing to the variables by >> > executing EFI runtime services. >> > >> > We obviously have buffers that we pass to the BIOS that contain variable data, >> > but these should be NX anyway because they're regular kernel allocations. >> > >> > > That raises the question whether the same physical page ever mixes variables >> > > and actual code - but the hope would be that it's suffiently page granular for >> > > this to work. >> > >> > I don't think that would ever happen. >> >> Ok, that's promising, so how about this then to solve the security weakness the >> new warning unearthed: map the whole EFI range as 'r-x (NX)', but detect writes >> from the page fault handler and transparently allow them to flip over the range >> to 'rw-'. > > So I meant to say 'page' instead of 'range'. > > I.e. this dynamic mechanism would flip pages over to 'rw-', as write faults occur > from EFI code that writes to them. > > We don't need to know which regions are writable data, and which regions are > executable-code/readonly-data. > > The following aspect would guarantee safety: > >> Note that for security reasons we don't allow a subsequent flipping back to NX >> if there's an NX fault on the same page, i.e. this new mechanism is a monotonic >> one-way process that should dynamically 'map out' data pages versus executable >> pages. >> >> It should also be pretty robust, assuming we can take page faults while EFI code >> is executing and is trying to modify EFI data: is that the case? > > and this is why I asked whether boundaries between 'Code' and 'Writable data' > sections are page granular - which they do appear to be. (i.e. there are no > singular pages that are both writable data and code at once.) > No, sadly they are not. Only in specific cases (which have to do with the new UEFIv2.5 memory protection feature that got this discussion started in the first place) can we assume that UEFI runtime pages are mappable either RW- or R-X but not RWX, and in those cases, we have the permissions bits that tell us unambiguously which pages are text and which are data. For the remaining cases, which is the vast majority, no such assumptions can be made, and since the UEFI runtime regions are typically populated with a bunch of PE/COFF images (each of which consists of text + data), inferring where the boundaries are between them does not seem tractable (for instance, to only map 'boundary' pages RWX) -- Ard. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Borislav Petkov <bp@alien8.de> |
|---|---|
| Date | 2015-10-21 15:30 +0200 |
| Message-ID | <qm1CP-4fn-41@gated-at.bofh.it> |
| In reply to | #1252790 |
On Wed, Oct 21, 2015 at 02:57:47PM +0200, Ard Biesheuvel wrote:
> ... For the remaining cases, which is the vast majority, no such
> assumptions can be made, and since the UEFI runtime regions are
> typically populated with a bunch of PE/COFF images (each of which
> consists of text + data), inferring where the boundaries are between
> them does not seem tractable (for instance, to only map 'boundary'
> pages RWX)
How much of a problem would it be if we still do the on-demand page
faulting and map a trailing piece of code together with the data in a
page RWX?
Still better than mapping the *whole* thing RWX, no?
--
Regards/Gruss,
Boris.
ECO tip #101: Trim your mails when you reply.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Ard Biesheuvel <ard.biesheuvel@linaro.org> |
|---|---|
| Date | 2015-10-21 15:30 +0200 |
| Message-ID | <qm1CQ-4fn-51@gated-at.bofh.it> |
| In reply to | #1252814 |
On 21 October 2015 at 15:24, Borislav Petkov <bp@alien8.de> wrote: > On Wed, Oct 21, 2015 at 02:57:47PM +0200, Ard Biesheuvel wrote: >> ... For the remaining cases, which is the vast majority, no such >> assumptions can be made, and since the UEFI runtime regions are >> typically populated with a bunch of PE/COFF images (each of which >> consists of text + data), inferring where the boundaries are between >> them does not seem tractable (for instance, to only map 'boundary' >> pages RWX) > > How much of a problem would it be if we still do the on-demand page > faulting and map a trailing piece of code together with the data in a > page RWX? > > Still better than mapping the *whole* thing RWX, no? > In theory, yes. In practice, since this is supposed to be a security enhancement, we need some kind of ground truth to tell us which pages can be legally modified *and* executed, so that we can detect the illegal cases. My point was that, since a multitude of PE/COFF images can be covered by a single EfiRuntimeServicesCode region, the UEFI memory map does not give us enough information to make the distinction between a page that sits on the text/data boundary of some PE/COFF image and a page that sits wholly in either. -- Ard. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Borislav Petkov <bp@alien8.de> |
|---|---|
| Date | 2015-10-21 16:40 +0200 |
| Message-ID | <qm2Iy-5OI-27@gated-at.bofh.it> |
| In reply to | #1252817 |
On Wed, Oct 21, 2015 at 03:28:56PM +0200, Ard Biesheuvel wrote:
> In theory, yes. In practice, since this is supposed to be a security
> enhancement, we need some kind of ground truth to tell us which pages
> can be legally modified *and* executed, so that we can detect the
> illegal cases. My point was that, since a multitude of PE/COFF images
> can be covered by a single EfiRuntimeServicesCode region, the UEFI
> memory map does not give us enough information to make the distinction
> between a page that sits on the text/data boundary of some PE/COFF
> image and a page that sits wholly in either.
Well, we're going to simply allow the accesses to in-kernel users which
fault on those ranges, assuming that in-kernel modifiers are legit and
DTRT. Which means, we don't really need to know which pages can be
legally modified - we simply trust the in-kernel users.
The moment you're able to load an evil kernel module, guarding against
those writes is the last thing you need to worry about...
--
Regards/Gruss,
Boris.
ECO tip #101: Trim your mails when you reply.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andy Lutomirski <luto@amacapital.net> |
|---|---|
| Date | 2015-10-21 20:50 +0200 |
| Message-ID | <qm6Ct-346-7@gated-at.bofh.it> |
| In reply to | #1252872 |
On Wed, Oct 21, 2015 at 7:36 AM, Borislav Petkov <bp@alien8.de> wrote: > On Wed, Oct 21, 2015 at 03:28:56PM +0200, Ard Biesheuvel wrote: >> In theory, yes. In practice, since this is supposed to be a security >> enhancement, we need some kind of ground truth to tell us which pages >> can be legally modified *and* executed, so that we can detect the >> illegal cases. My point was that, since a multitude of PE/COFF images >> can be covered by a single EfiRuntimeServicesCode region, the UEFI >> memory map does not give us enough information to make the distinction >> between a page that sits on the text/data boundary of some PE/COFF >> image and a page that sits wholly in either. > > Well, we're going to simply allow the accesses to in-kernel users which > fault on those ranges, assuming that in-kernel modifiers are legit and > DTRT. Which means, we don't really need to know which pages can be > legally modified - we simply trust the in-kernel users. > > The moment you're able to load an evil kernel module, guarding against > those writes is the last thing you need to worry about... I don't think we can do a whole lot to help against broken UEFI code, but having anything mapped RWX is a nice target for people trying to exploit kernel bugs. Hence my suggestion to clear W except when actually running UEFI code. If the UEFI stuff is mapped in its own PGD entry, we could just RO that entire PGD entry everywhere except the UEFI pgd (and make sure to clear G so that the TLB entries get zapped). --Andy -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andy Lutomirski <luto@amacapital.net> |
|---|---|
| Date | 2015-10-21 22:50 +0200 |
| Message-ID | <qm8uD-5O3-19@gated-at.bofh.it> |
| In reply to | #1253119 |
On Wed, Oct 21, 2015 at 1:45 PM, Matt Fleming <matt@codeblueprint.co.uk> wrote: > On Wed, 21 Oct, at 11:46:53AM, Andy Lutomirski wrote: >> >> If the UEFI stuff is mapped in its own PGD entry, we could just RO >> that entire PGD entry everywhere except the UEFI pgd (and make sure to >> clear G so that the TLB entries get zapped). > > What would be the benefit of making it RO as opposed to not having it > mapped at all? Nothing. > The mappings only exist in the trampoline_pgd right now > for x86 which minimizes the potentially vulnerable code paths to the > EFI runtime calls and the suspend/resume code. Oh, I didn't realize it. So what's the problem here? Honestly, while UEFI is full of questionable things, I don't really see how an unprivileged user program should be able to cause malicious input to be send to UEFI code, so it should be quite difficult to exploit a buffer overflow or other errant write in UEFI to escalate privileges from user to anything else. (Kernel -> SMM escalation is a whole different story, but preventing that is SMM's business, not the kernel's. I've actually been a wee bit tempted to write a /dev/smram driver to expose SMRAM using a portfolio of old known exploits.) --Andy -- Andy Lutomirski AMA Capital Management, LLC -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Matt Fleming <matt@codeblueprint.co.uk> |
|---|---|
| Date | 2015-10-21 22:50 +0200 |
| Message-ID | <qm8uD-5O3-17@gated-at.bofh.it> |
| In reply to | #1253119 |
On Wed, 21 Oct, at 11:46:53AM, Andy Lutomirski wrote: > > If the UEFI stuff is mapped in its own PGD entry, we could just RO > that entire PGD entry everywhere except the UEFI pgd (and make sure to > clear G so that the TLB entries get zapped). What would be the benefit of making it RO as opposed to not having it mapped at all? The mappings only exist in the trampoline_pgd right now for x86 which minimizes the potentially vulnerable code paths to the EFI runtime calls and the suspend/resume code. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Matt Fleming <matt@codeblueprint.co.uk> |
|---|---|
| Date | 2015-10-21 22:40 +0200 |
| Message-ID | <qm8kV-5Cw-3@gated-at.bofh.it> |
| In reply to | #1252631 |
On Wed, 21 Oct, at 11:42:42AM, Ingo Molnar wrote: > > * Matt Fleming <matt@codeblueprint.co.uk> wrote: > > > > > Right, we could do that, but then we wouldn't be able to support > > > > creation/updating variables at runtime, such as when you install a > > > > distribution for the first time, or want to boot a new kernel filename > > > > directly from the firmware without a boot loader (and need to modify the > > > > BootXXXX variables). > > > > > > Do we know the precise position and address range of these variables? > > > > > > We could map them writable (but not executable), and the rest executable (but > > > not writable). > > > > The variables are stored in NVRAM, which we don't map into the kernel virtual > > address space. [...] > > Just curious: is there firmware that memory maps those variables privately? Good question, not sure. I suspect not because it becomes much harder to protect those oh-so-precious variables from errant code wanting to write to them. Usually things get written on x86 from SMM code. > > [...] We have to initiate the transaction of writing to the variables by > > executing EFI runtime services. > > > > We obviously have buffers that we pass to the BIOS that contain variable data, > > but these should be NX anyway because they're regular kernel allocations. > > > > > That raises the question whether the same physical page ever mixes variables > > > and actual code - but the hope would be that it's suffiently page granular for > > > this to work. > > > > I don't think that would ever happen. > > Ok, that's promising, so how about this then to solve the security weakness the > new warning unearthed: map the whole EFI range as 'r-x (NX)', but detect writes > from the page fault handler and transparently allow them to flip over the range to > 'rw-'. > > Note that for security reasons we don't allow a subsequent flipping back to NX if > there's an NX fault on the same page, i.e. this new mechanism is a monotonic > one-way process that should dynamically 'map out' data pages versus executable > pages. > > It should also be pretty robust, assuming we can take page faults while EFI code > is executing and is trying to modify EFI data: is that the case? Yes, we can do that but I think I misunderstood what you were asking when you said, > That raises the question whether the same physical page ever mixes variables and > actual code - but the hope would be that it's suffiently page granular for this to > work. I was talking about EFI variables as defined in the UEFI spec, i.e. backed by some peristent storage mechanism. I wasn't talking about ".data" objects. It *is* possible for physical pages to contain both EFI code and data, as Ard mentioned, and we have no way of distinguishing when EFI code tried to write to a EfiRuntimeServicesCode page/region because there's also legitimate data there and when an exploit attempt is taking place. In which case, I think we'd essentially map everything with execute permission apart from the heap and other dynamically allocated objects stored in EfiRuntimeServicesData. But at that point, can't we just leave all these regions unmapped unless we're in the EFI code paths? And that includes not leaving the mappings around duing the suspend/resume code. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web