Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1730269 > unrolled thread
| Started by | Yisheng Xie <xieyisheng1@huawei.com> |
|---|---|
| First post | 2017-09-11 12:40 +0200 |
| Last post | 2017-09-12 10:20 +0200 |
| Articles | 5 — 3 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 v6 00/11] Add support for eXclusive Page Frame Ownership Yisheng Xie <xieyisheng1@huawei.com> - 2017-09-11 12:40 +0200
Re: [PATCH v6 00/11] Add support for eXclusive Page Frame Ownership Tycho Andersen <tycho@docker.com> - 2017-09-11 17:10 +0200
Re: [PATCH v6 00/11] Add support for eXclusive Page Frame Ownership Yisheng Xie <xieyisheng1@huawei.com> - 2017-09-12 09:10 +0200
Re: [PATCH v6 00/11] Add support for eXclusive Page Frame Ownership Juerg Haefliger <juerg.haefliger@canonical.com> - 2017-09-12 09:50 +0200
Re: [PATCH v6 00/11] Add support for eXclusive Page Frame Ownership Yisheng Xie <xieyisheng1@huawei.com> - 2017-09-12 10:20 +0200
| From | Yisheng Xie <xieyisheng1@huawei.com> |
|---|---|
| Date | 2017-09-11 12:40 +0200 |
| Subject | Re: [PATCH v6 00/11] Add support for eXclusive Page Frame Ownership |
| Message-ID | <uouie-1La-17@gated-at.bofh.it> |
Hi Tycho , On 2017/9/8 1:35, Tycho Andersen wrote: > Hi all, > > Here is v6 of the XPFO set; see v5 discussion here: > https://lkml.org/lkml/2017/8/9/803 > > Changelogs are in the individual patch notes, but the highlights are: > * add primitives for ensuring memory areas are mapped (although these are quite > ugly, using stack allocation; I'm open to better suggestions) > * instead of not flushing caches, re-map pages using the above > * TLB flushing is much more correct (i.e. we're always flushing everything > everywhere). I suspect we may be able to back this off in some cases, but I'm > still trying to collect performance numbers to prove this is worth doing. > > I have no TODOs left for this set myself, other than fixing whatever review > feedback people have. Thoughts and testing welcome! According to the paper of Vasileios P. Kemerlis et al, the mainline kernel will not set the Pro. of physmap(direct map area) to RW(X), so do we really need XPFO to protect from ret2dir attack? Thanks Yisheng xie > > Cheers, > > Tycho > > Juerg Haefliger (6): > mm, x86: Add support for eXclusive Page Frame Ownership (XPFO) > swiotlb: Map the buffer if it was unmapped by XPFO > arm64/mm: Add support for XPFO > arm64/mm, xpfo: temporarily map dcache regions > arm64/mm: Add support for XPFO to swiotlb > lkdtm: Add test for XPFO > > Tycho Andersen (5): > mm: add MAP_HUGETLB support to vm_mmap > x86: always set IF before oopsing from page fault > xpfo: add primitives for mapping underlying memory > arm64/mm: disable section/contiguous mappings if XPFO is enabled > mm: add a user_virt_to_phys symbol > > Documentation/admin-guide/kernel-parameters.txt | 2 + > arch/arm64/Kconfig | 1 + > arch/arm64/include/asm/cacheflush.h | 11 + > arch/arm64/mm/Makefile | 2 + > arch/arm64/mm/dma-mapping.c | 32 +-- > arch/arm64/mm/flush.c | 7 + > arch/arm64/mm/mmu.c | 2 +- > arch/arm64/mm/xpfo.c | 127 +++++++++++ > arch/x86/Kconfig | 1 + > arch/x86/include/asm/pgtable.h | 25 +++ > arch/x86/mm/Makefile | 1 + > arch/x86/mm/fault.c | 6 + > arch/x86/mm/pageattr.c | 22 +- > arch/x86/mm/xpfo.c | 171 +++++++++++++++ > drivers/misc/Makefile | 1 + > drivers/misc/lkdtm.h | 5 + > drivers/misc/lkdtm_core.c | 3 + > drivers/misc/lkdtm_xpfo.c | 194 +++++++++++++++++ > include/linux/highmem.h | 15 +- > include/linux/mm.h | 2 + > include/linux/xpfo.h | 79 +++++++ > lib/swiotlb.c | 3 +- > mm/Makefile | 1 + > mm/mmap.c | 19 +- > mm/page_alloc.c | 2 + > mm/page_ext.c | 4 + > mm/util.c | 32 +++ > mm/xpfo.c | 273 ++++++++++++++++++++++++ > security/Kconfig | 19 ++ > 29 files changed, 1005 insertions(+), 57 deletions(-) > create mode 100644 arch/arm64/mm/xpfo.c > create mode 100644 arch/x86/mm/xpfo.c > create mode 100644 drivers/misc/lkdtm_xpfo.c > create mode 100644 include/linux/xpfo.h > create mode 100644 mm/xpfo.c >
[toc] | [next] | [standalone]
| From | Tycho Andersen <tycho@docker.com> |
|---|---|
| Date | 2017-09-11 17:10 +0200 |
| Message-ID | <uoyvw-531-11@gated-at.bofh.it> |
| In reply to | #1730269 |
Hi Yisheng, On Mon, Sep 11, 2017 at 06:34:45PM +0800, Yisheng Xie wrote: > Hi Tycho , > > On 2017/9/8 1:35, Tycho Andersen wrote: > > Hi all, > > > > Here is v6 of the XPFO set; see v5 discussion here: > > https://lkml.org/lkml/2017/8/9/803 > > > > Changelogs are in the individual patch notes, but the highlights are: > > * add primitives for ensuring memory areas are mapped (although these are quite > > ugly, using stack allocation; I'm open to better suggestions) > > * instead of not flushing caches, re-map pages using the above > > * TLB flushing is much more correct (i.e. we're always flushing everything > > everywhere). I suspect we may be able to back this off in some cases, but I'm > > still trying to collect performance numbers to prove this is worth doing. > > > > I have no TODOs left for this set myself, other than fixing whatever review > > feedback people have. Thoughts and testing welcome! > > According to the paper of Vasileios P. Kemerlis et al, the mainline kernel > will not set the Pro. of physmap(direct map area) to RW(X), so do we really > need XPFO to protect from ret2dir attack? I guess you're talking about section 4.3? They mention that that x86 only gets rw, but that aarch64 is rwx still. But in either case this still provides access protection, similar to SMAP. Also, if I understand things correctly the protections are unmanaged, so a page that had the +x bit set at some point, it could be used for ret2dir. Cheers, Tycho
[toc] | [prev] | [next] | [standalone]
| From | Yisheng Xie <xieyisheng1@huawei.com> |
|---|---|
| Date | 2017-09-12 09:10 +0200 |
| Message-ID | <uoNuz-6Cp-25@gated-at.bofh.it> |
| In reply to | #1730383 |
Hi Tycho, On 2017/9/11 23:02, Tycho Andersen wrote: > Hi Yisheng, > > On Mon, Sep 11, 2017 at 06:34:45PM +0800, Yisheng Xie wrote: >> Hi Tycho , >> >> On 2017/9/8 1:35, Tycho Andersen wrote: >>> Hi all, >>> >>> Here is v6 of the XPFO set; see v5 discussion here: >>> https://lkml.org/lkml/2017/8/9/803 >>> >>> Changelogs are in the individual patch notes, but the highlights are: >>> * add primitives for ensuring memory areas are mapped (although these are quite >>> ugly, using stack allocation; I'm open to better suggestions) >>> * instead of not flushing caches, re-map pages using the above >>> * TLB flushing is much more correct (i.e. we're always flushing everything >>> everywhere). I suspect we may be able to back this off in some cases, but I'm >>> still trying to collect performance numbers to prove this is worth doing. >>> >>> I have no TODOs left for this set myself, other than fixing whatever review >>> feedback people have. Thoughts and testing welcome! >> >> According to the paper of Vasileios P. Kemerlis et al, the mainline kernel >> will not set the Pro. of physmap(direct map area) to RW(X), so do we really >> need XPFO to protect from ret2dir attack? > > I guess you're talking about section 4.3? Yes > They mention that that x86 > only gets rw, but that aarch64 is rwx still. IIRC, the in kernel of v4.13 the aarch64 is not rwx, I will check it. > > But in either case this still provides access protection, similar to > SMAP. Also, if I understand things correctly the protections are > unmanaged, so a page that had the +x bit set at some point, it could > be used for ret2dir. So you means that the Pro. of direct map area maybe changed to +x, then ret2dir attack can use it? Thanks Yisheng Xie
[toc] | [prev] | [next] | [standalone]
| From | Juerg Haefliger <juerg.haefliger@canonical.com> |
|---|---|
| Date | 2017-09-12 09:50 +0200 |
| Message-ID | <uoO7f-6S1-9@gated-at.bofh.it> |
| In reply to | #1730694 |
On 09/12/2017 09:07 AM, Yisheng Xie wrote: > Hi Tycho, > > On 2017/9/11 23:02, Tycho Andersen wrote: >> Hi Yisheng, >> >> On Mon, Sep 11, 2017 at 06:34:45PM +0800, Yisheng Xie wrote: >>> Hi Tycho , >>> >>> On 2017/9/8 1:35, Tycho Andersen wrote: >>>> Hi all, >>>> >>>> Here is v6 of the XPFO set; see v5 discussion here: >>>> https://lkml.org/lkml/2017/8/9/803 >>>> >>>> Changelogs are in the individual patch notes, but the highlights are: >>>> * add primitives for ensuring memory areas are mapped (although these are quite >>>> ugly, using stack allocation; I'm open to better suggestions) >>>> * instead of not flushing caches, re-map pages using the above >>>> * TLB flushing is much more correct (i.e. we're always flushing everything >>>> everywhere). I suspect we may be able to back this off in some cases, but I'm >>>> still trying to collect performance numbers to prove this is worth doing. >>>> >>>> I have no TODOs left for this set myself, other than fixing whatever review >>>> feedback people have. Thoughts and testing welcome! >>> >>> According to the paper of Vasileios P. Kemerlis et al, the mainline kernel >>> will not set the Pro. of physmap(direct map area) to RW(X), so do we really >>> need XPFO to protect from ret2dir attack? >> >> I guess you're talking about section 4.3? > Yes > >> They mention that that x86 >> only gets rw, but that aarch64 is rwx still. > IIRC, the in kernel of v4.13 the aarch64 is not rwx, I will check it. > >> >> But in either case this still provides access protection, similar to >> SMAP. Also, if I understand things correctly the protections are >> unmanaged, so a page that had the +x bit set at some point, it could >> be used for ret2dir. > So you means that the Pro. of direct map area maybe changed to +x, then ret2dir attack can use it? XPFO protects against malicious reads from userspace (potentially accessing sensitive data). I've also been told by a security expert that ROP attacks are still possible even if user space memory is non-executable. XPFO is supposed to prevent that but I haven't been able to confirm this. It's way out of my comfort zone. ...Juerg > Thanks > Yisheng Xie > >
[toc] | [prev] | [next] | [standalone]
| From | Yisheng Xie <xieyisheng1@huawei.com> |
|---|---|
| Date | 2017-09-12 10:20 +0200 |
| Message-ID | <uoOAi-7gK-9@gated-at.bofh.it> |
| In reply to | #1730718 |
On 2017/9/12 15:40, Juerg Haefliger wrote: > > > On 09/12/2017 09:07 AM, Yisheng Xie wrote: >> Hi Tycho, >> >> On 2017/9/11 23:02, Tycho Andersen wrote: >>> Hi Yisheng, >>> >>> On Mon, Sep 11, 2017 at 06:34:45PM +0800, Yisheng Xie wrote: >>>> Hi Tycho , >>>> >>>> On 2017/9/8 1:35, Tycho Andersen wrote: >>>>> Hi all, >>>>> >>>>> Here is v6 of the XPFO set; see v5 discussion here: >>>>> https://lkml.org/lkml/2017/8/9/803 >>>>> >>>>> Changelogs are in the individual patch notes, but the highlights are: >>>>> * add primitives for ensuring memory areas are mapped (although these are quite >>>>> ugly, using stack allocation; I'm open to better suggestions) >>>>> * instead of not flushing caches, re-map pages using the above >>>>> * TLB flushing is much more correct (i.e. we're always flushing everything >>>>> everywhere). I suspect we may be able to back this off in some cases, but I'm >>>>> still trying to collect performance numbers to prove this is worth doing. >>>>> >>>>> I have no TODOs left for this set myself, other than fixing whatever review >>>>> feedback people have. Thoughts and testing welcome! >>>> >>>> According to the paper of Vasileios P. Kemerlis et al, the mainline kernel >>>> will not set the Pro. of physmap(direct map area) to RW(X), so do we really >>>> need XPFO to protect from ret2dir attack? >>> >>> I guess you're talking about section 4.3? >> Yes >> >>> They mention that that x86 >>> only gets rw, but that aarch64 is rwx still. >> IIRC, the in kernel of v4.13 the aarch64 is not rwx, I will check it. >> >>> >>> But in either case this still provides access protection, similar to >>> SMAP. Also, if I understand things correctly the protections are >>> unmanaged, so a page that had the +x bit set at some point, it could >>> be used for ret2dir. >> So you means that the Pro. of direct map area maybe changed to +x, then ret2dir attack can use it? > > XPFO protects against malicious reads from userspace (potentially > accessing sensitive data). This sounds reasonable to me. > I've also been told by a security expert that > ROP attacks are still possible even if user space memory is > non-executable. XPFO is supposed to prevent that but I haven't been able > to confirm this. It's way out of my comfort zone. It also quite out of knowledge, and I just try hard to understand it. Thanks so much for your kind explain. And hope some security expert can give some more detail explain? Thanks Yisheng Xie > > ...Juerg
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web