|
Message-Id: <20181023213504.28905-14-igor.stoppa@huawei.com> Date: Wed, 24 Oct 2018 00:35:00 +0300 From: Igor Stoppa <igor.stoppa@...il.com> To: Mimi Zohar <zohar@...ux.vnet.ibm.com>, Kees Cook <keescook@...omium.org>, Matthew Wilcox <willy@...radead.org>, Dave Chinner <david@...morbit.com>, James Morris <jmorris@...ei.org>, Michal Hocko <mhocko@...nel.org>, kernel-hardening@...ts.openwall.com, linux-integrity@...r.kernel.org, linux-security-module@...r.kernel.org Cc: igor.stoppa@...wei.com, Dave Hansen <dave.hansen@...ux.intel.com>, Jonathan Corbet <corbet@....net>, Laura Abbott <labbott@...hat.com>, Greg Kroah-Hartman <gregkh@...uxfoundation.org>, Andrew Morton <akpm@...ux-foundation.org>, Masahiro Yamada <yamada.masahiro@...ionext.com>, Alexey Dobriyan <adobriyan@...il.com>, Pekka Enberg <penberg@...nel.org>, "Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>, Lihao Liang <lianglihao@...wei.com>, linux-kernel@...r.kernel.org Subject: [PATCH 13/17] prmem: linked list: disable layout randomization Some of the data structures used in list management are composed by two pointers. Since the kernel is now configured by default to randomize the layout of data structures soleley composed by pointers, this might prevent correct type punning between these structures and their write rare counterpart. It shouldn't be anyway a big loss, in terms of security: with only two fields, there is a 50% chance of guessing correctly the layout. The randomization is disabled only when write rare is enabled. Signed-off-by: Igor Stoppa <igor.stoppa@...wei.com> CC: Kees Cook <keescook@...omium.org> CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org> CC: Andrew Morton <akpm@...ux-foundation.org> CC: Masahiro Yamada <yamada.masahiro@...ionext.com> CC: Alexey Dobriyan <adobriyan@...il.com> CC: Pekka Enberg <penberg@...nel.org> CC: "Paul E. McKenney" <paulmck@...ux.vnet.ibm.com> CC: Lihao Liang <lianglihao@...wei.com> CC: linux-kernel@...r.kernel.org --- include/linux/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/types.h b/include/linux/types.h index 53609bbdcf0f..a9f6f6515fdc 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -187,12 +187,12 @@ typedef struct { struct list_head { struct list_head *next __aligned(sizeof(void *)); struct list_head *prev __aligned(sizeof(void *)); -} __aligned(sizeof(void *)); +} __no_randomize_layout __aligned(sizeof(void *)); struct hlist_node { struct hlist_node *next __aligned(sizeof(void *)); struct hlist_node **pprev __aligned(sizeof(void *)); -} __aligned(sizeof(void *)); +} __no_randomize_layout __aligned(sizeof(void *)); #else struct list_head { struct list_head *next, *prev; -- 2.17.1
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.