All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kees Cook <keescook@chromium.org>
To: Matt Redfearn <matt.redfearn@mips.com>
Cc: "Dmitry V . Levin" <ldv@altlinux.org>,
	Al Viro <viro@zeniv.linux.org.uk>,
	Kernel Hardening <kernel-hardening@lists.openwall.com>,
	Linux MIPS Mailing List <linux-mips@linux-mips.org>
Subject: Re: [PATCH] signals: Move put_compat_sigset to compat.h to silence hardened usercopy
Date: Mon, 19 Feb 2018 15:55:27 -0800	[thread overview]
Message-ID: <CAGXu5jKtrJ6Nmses_pM-qkXAkOPXAxwT+V3B+omqu0tx4xEh8w@mail.gmail.com> (raw)
In-Reply-To: <1519059306-30135-1-git-send-email-matt.redfearn@mips.com>

On Mon, Feb 19, 2018 at 8:55 AM, Matt Redfearn <matt.redfearn@mips.com> wrote:
> Since commit afcc90f8621e ("usercopy: WARN() on slab cache usercopy
> region violations"), MIPS systems booting with a compat root filesystem
> emit a warning when copying compat siginfo to userspace:
>
> WARNING: CPU: 0 PID: 953 at mm/usercopy.c:81 usercopy_warn+0x98/0xe8
> Bad or missing usercopy whitelist? Kernel memory exposure attempt
> detected from SLAB object 'task_struct' (offset 1432, size 16)!
> Modules linked in:
> CPU: 0 PID: 953 Comm: S01logging Not tainted 4.16.0-rc2 #10
> Stack : ffffffff808c0000 0000000000000000 0000000000000001 65ac85163f3bdc4a
>         65ac85163f3bdc4a 0000000000000000 90000000ff667ab8 ffffffff808c0000
>         00000000000003f8 ffffffff808d0000 00000000000000d1 0000000000000000
>         000000000000003c 0000000000000000 ffffffff808c8ca8 ffffffff808d0000
>         ffffffff808d0000 ffffffff80810000 fffffc0000000000 ffffffff80785c30
>         0000000000000009 0000000000000051 90000000ff667eb0 90000000ff667db0
>         000000007fe0d938 0000000000000018 ffffffff80449958 0000000020052798
>         ffffffff808c0000 90000000ff664000 90000000ff667ab0 00000000100c0000
>         ffffffff80698810 0000000000000000 0000000000000000 0000000000000000
>         0000000000000000 0000000000000000 ffffffff8010d02c 65ac85163f3bdc4a
>         ...
> Call Trace:
> [<ffffffff8010d02c>] show_stack+0x9c/0x130
> [<ffffffff80698810>] dump_stack+0x90/0xd0
> [<ffffffff80137b78>] __warn+0x100/0x118
> [<ffffffff80137bdc>] warn_slowpath_fmt+0x4c/0x70
> [<ffffffff8021e4a8>] usercopy_warn+0x98/0xe8
> [<ffffffff8021e68c>] __check_object_size+0xfc/0x250
> [<ffffffff801bbfb8>] put_compat_sigset+0x30/0x88
> [<ffffffff8011af24>] setup_rt_frame_n32+0xc4/0x160
> [<ffffffff8010b8b4>] do_signal+0x19c/0x230
> [<ffffffff8010c408>] do_notify_resume+0x60/0x78
> [<ffffffff80106f50>] work_notifysig+0x10/0x18
> ---[ end trace 88fffbf69147f48a ]---
>
> Commit 5905429ad856 ("fork: Provide usercopy whitelisting for
> task_struct") noted that:
>
> "While the blocked and saved_sigmask fields of task_struct are copied to
> userspace (via sigmask_to_save() and setup_rt_frame()), it is always
> copied with a static length (i.e. sizeof(sigset_t))."
>
> However, this is not true in the case of compat signals, whose sigset
> is copied by put_compat_sigset and receives size as an argument.
>
> At most call sites, put_compat_sigset is copying a sigset from the
> current task_struct. This triggers a warning when
> CONFIG_HARDENED_USERCOPY is active. However, by marking this function as
> static inline, the warning can be avoided because in all of these cases
> the size is constant at compile time, which is allowed. The only site
> where this is not the case is handling the rt_sigpending syscall, but
> there the copy is being made from a stack local variable so does not
> trigger the warning.
>
> Move put_compat_sigset to compat.h, and mark it static inline. This
> fixes the WARN on MIPS.
>
> Fixes: afcc90f8621e ("usercopy: WARN() on slab cache usercopy region violations")
> Signed-off-by: Matt Redfearn <matt.redfearn@mips.com>

Thanks for the catch and fix!

Acked-by: Kees Cook <keescook@chromium.org>

-Kees

> ---
>
>  include/linux/compat.h | 26 ++++++++++++++++++++++++--
>  kernel/compat.c        | 19 -------------------
>  2 files changed, 24 insertions(+), 21 deletions(-)
>
> diff --git a/include/linux/compat.h b/include/linux/compat.h
> index 8a9643857c4a..c4139c7a0de0 100644
> --- a/include/linux/compat.h
> +++ b/include/linux/compat.h
> @@ -17,6 +17,7 @@
>  #include <linux/if.h>
>  #include <linux/fs.h>
>  #include <linux/aio_abi.h>     /* for aio_context_t */
> +#include <linux/uaccess.h>
>  #include <linux/unistd.h>
>
>  #include <asm/compat.h>
> @@ -550,8 +551,29 @@ asmlinkage long compat_sys_settimeofday(struct compat_timeval __user *tv,
>  asmlinkage long compat_sys_adjtimex(struct compat_timex __user *utp);
>
>  extern int get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat);
> -extern int put_compat_sigset(compat_sigset_t __user *compat,
> -                            const sigset_t *set, unsigned int size);
> +
> +/*
> + * Defined inline such that size can be compile time constant, which avoids
> + * CONFIG_HARDENED_USERCOPY complaining about copies from task_struct
> + */
> +static inline int
> +put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set,
> +                 unsigned int size)
> +{
> +       /* size <= sizeof(compat_sigset_t) <= sizeof(sigset_t) */
> +#ifdef __BIG_ENDIAN
> +       compat_sigset_t v;
> +       switch (_NSIG_WORDS) {
> +       case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> +       case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> +       case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1];
> +       case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0];
> +       }
> +       return copy_to_user(compat, &v, size) ? -EFAULT : 0;
> +#else
> +       return copy_to_user(compat, set, size) ? -EFAULT : 0;
> +#endif
> +}
>
>  asmlinkage long compat_sys_migrate_pages(compat_pid_t pid,
>                 compat_ulong_t maxnode, const compat_ulong_t __user *old_nodes,
> diff --git a/kernel/compat.c b/kernel/compat.c
> index 3247fe761f60..3f5fa8902e7d 100644
> --- a/kernel/compat.c
> +++ b/kernel/compat.c
> @@ -488,25 +488,6 @@ get_compat_sigset(sigset_t *set, const compat_sigset_t __user *compat)
>  }
>  EXPORT_SYMBOL_GPL(get_compat_sigset);
>
> -int
> -put_compat_sigset(compat_sigset_t __user *compat, const sigset_t *set,
> -                 unsigned int size)
> -{
> -       /* size <= sizeof(compat_sigset_t) <= sizeof(sigset_t) */
> -#ifdef __BIG_ENDIAN
> -       compat_sigset_t v;
> -       switch (_NSIG_WORDS) {
> -       case 4: v.sig[7] = (set->sig[3] >> 32); v.sig[6] = set->sig[3];
> -       case 3: v.sig[5] = (set->sig[2] >> 32); v.sig[4] = set->sig[2];
> -       case 2: v.sig[3] = (set->sig[1] >> 32); v.sig[2] = set->sig[1];
> -       case 1: v.sig[1] = (set->sig[0] >> 32); v.sig[0] = set->sig[0];
> -       }
> -       return copy_to_user(compat, &v, size) ? -EFAULT : 0;
> -#else
> -       return copy_to_user(compat, set, size) ? -EFAULT : 0;
> -#endif
> -}
> -
>  #ifdef CONFIG_NUMA
>  COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
>                        compat_uptr_t __user *, pages32,
> --
> 2.7.4
>



-- 
Kees Cook
Pixel Security

  reply	other threads:[~2018-02-19 23:55 UTC|newest]

Thread overview: 320+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-11  2:02 [PATCH v5 00/38] Hardened usercopy whitelisting Kees Cook
2018-01-11  2:02 ` [kernel-hardening] " Kees Cook
2018-01-11  2:02 ` Kees Cook
2018-01-11  2:02 ` Kees Cook
2018-01-11  2:02 ` [PATCH 01/38] usercopy: Remove pointer from overflow report Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 02/38] usercopy: Enhance and rename report_usercopy() Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11 17:06   ` Christopher Lameter
2018-01-11 17:06     ` [kernel-hardening] " Christopher Lameter
2018-01-11 17:06     ` Christopher Lameter
2018-01-11 17:06     ` Christopher Lameter
2018-01-11 17:06     ` Christopher Lameter
2018-01-14 20:57     ` Kees Cook
2018-01-14 20:57       ` [kernel-hardening] " Kees Cook
2018-01-14 20:57       ` Kees Cook
2018-01-14 20:57       ` Kees Cook
2018-01-14 20:57       ` Kees Cook
2018-01-11  2:02 ` [PATCH 03/38] usercopy: Include offset in hardened usercopy report Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 04/38] lkdtm/usercopy: Adjust test to include an offset to check reporting Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 05/38] stddef.h: Introduce sizeof_field() Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 06/38] usercopy: Prepare for usercopy whitelisting Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 07/38] usercopy: WARN() on slab cache usercopy region violations Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 08/38] usercopy: Allow strict enforcement of whitelists Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 09/38] usercopy: Mark kmalloc caches as usercopy caches Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2019-11-12  7:17   ` [kernel-hardening] " Jiri Slaby
2019-11-12  7:17     ` Jiri Slaby
2019-11-12 21:21     ` Kees Cook
2019-11-12 21:21       ` Kees Cook
2019-11-14 21:27       ` Kees Cook
2019-11-14 21:27         ` Kees Cook
2020-01-23  8:14         ` Jiri Slaby
2020-01-23  8:14           ` Jiri Slaby
2020-01-27 23:19           ` Kees Cook
2020-01-27 23:19             ` Kees Cook
2020-01-28  7:58             ` Christian Borntraeger
2020-01-28  7:58               ` Christian Borntraeger
2020-01-28 23:01               ` Kees Cook
2020-01-28 23:01                 ` Kees Cook
2020-01-29  9:26                 ` Ursula Braun
2020-01-29  9:26                   ` Ursula Braun
2020-01-29 16:43                 ` Christopher Lameter
2020-01-29 16:43                   ` Christopher Lameter
2020-01-29 16:43                   ` Christopher Lameter
2020-01-29 17:07                   ` Christian Borntraeger
2020-01-29 17:07                     ` Christian Borntraeger
2020-01-29 17:09                     ` Christoph Hellwig
2020-01-29 17:09                       ` Christoph Hellwig
2020-01-29 17:19                       ` Christian Borntraeger
2020-01-29 17:19                         ` Christian Borntraeger
2020-01-30 19:23                         ` Kees Cook
2020-01-30 19:23                           ` Kees Cook
2020-01-31 12:03                           ` Jann Horn
2020-01-31 12:03                             ` Jann Horn
2020-01-31 12:03                             ` Jann Horn
2020-02-01 17:56                             ` Kees Cook
2020-02-01 17:56                               ` Kees Cook
2020-02-01 19:27                               ` Jann Horn
2020-02-01 19:27                                 ` Jann Horn
2020-02-01 19:27                                 ` Jann Horn
2020-02-03  7:46                                 ` Matthew Wilcox
2020-02-03  7:46                                   ` Matthew Wilcox
2020-02-03 17:41                                   ` Christoph Hellwig
2020-02-03 17:41                                     ` Christoph Hellwig
2020-02-03 17:20                               ` Christopher Lameter
2020-02-03 17:20                                 ` Christopher Lameter
2020-02-03 17:20                                 ` Christopher Lameter
2020-04-07  8:00                             ` Vlastimil Babka
2020-04-07  8:00                               ` Vlastimil Babka
2020-04-07 11:05                               ` Christian Borntraeger
2020-04-07 11:05                                 ` Christian Borntraeger
2020-04-20  7:53                               ` Jiri Slaby
2020-04-20  7:53                                 ` Jiri Slaby
2020-04-20 17:43                                 ` Kees Cook
2020-04-20 17:43                                   ` Kees Cook
2020-02-03 17:38                           ` Christoph Hellwig
2020-02-03 17:38                             ` Christoph Hellwig
2020-02-03 17:36                         ` Christoph Hellwig
2020-02-03 17:36                           ` Christoph Hellwig
2018-01-11  2:02 ` [PATCH 10/38] dcache: Define usercopy region in dentry_cache slab cache Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 11/38] vfs: Define usercopy region in names_cache slab caches Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 12/38] vfs: Copy struct mount.mnt_id to userspace using put_user() Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 13/38] ext4: Define usercopy region in ext4_inode_cache slab cache Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11 17:01   ` Theodore Ts'o
2018-01-11 17:01     ` [kernel-hardening] " Theodore Ts'o
2018-01-11 17:01     ` Theodore Ts'o
2018-01-11 17:01     ` Theodore Ts'o
2018-01-11 17:01     ` Theodore Ts'o
2018-01-11 23:05     ` Kees Cook
2018-01-11 23:05     ` Kees Cook
2018-01-11 23:05       ` [kernel-hardening] " Kees Cook
2018-01-11 23:05       ` Kees Cook
2018-01-11 23:05       ` Kees Cook
2018-01-14 22:34       ` Matthew Wilcox
2018-01-14 22:34         ` [kernel-hardening] " Matthew Wilcox
2018-01-14 22:34         ` Matthew Wilcox
2018-01-14 22:34         ` Matthew Wilcox
2018-01-14 22:34         ` Matthew Wilcox
2018-01-11 23:05     ` Kees Cook
2018-01-11 23:05     ` Kees Cook
2018-01-11  2:02 ` [PATCH 14/38] ext2: Define usercopy region in ext2_inode_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 15/38] jfs: Define usercopy region in jfs_ip " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 16/38] befs: Define usercopy region in befs_inode_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 17/38] exofs: Define usercopy region in exofs_inode_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 18/38] orangefs: Define usercopy region in orangefs_inode_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 19/38] ufs: Define usercopy region in ufs_inode_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 20/38] vxfs: Define usercopy region in vxfs_inode " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 21/38] cifs: Define usercopy region in cifs_request " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 22/38] scsi: Define usercopy region in scsi_sense_cache " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 23/38] net: Define usercopy region in struct proto " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 24/38] ip: Define usercopy region in IP " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 25/38] caif: Define usercopy region in caif " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 26/38] sctp: Define usercopy region in SCTP " Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02 ` [PATCH 27/38] sctp: Copy struct sctp_sock.autoclose to userspace using put_user() Kees Cook
2018-01-11  2:02   ` [kernel-hardening] " Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-11  2:02   ` Kees Cook
2018-01-18 21:31   ` [kernel-hardening] " Laura Abbott
2018-01-18 21:31     ` Laura Abbott
2018-01-18 21:31     ` Laura Abbott
2018-01-18 21:31     ` Laura Abbott
2018-01-18 21:31     ` Laura Abbott
2018-01-18 21:31     ` Laura Abbott
2018-01-18 21:36     ` [kernel-hardening] " Kees Cook
2018-01-18 21:36       ` Kees Cook
2018-01-18 21:36       ` Kees Cook
2018-01-18 21:36       ` Kees Cook
2018-01-18 21:36       ` Kees Cook
2018-01-18 21:36       ` Kees Cook
2018-01-11  2:03 ` [PATCH 28/38] net: Restrict unwhitelisted proto caches to size 0 Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 29/38] fork: Define usercopy region in mm_struct slab caches Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 30/38] fork: Define usercopy region in thread_stack " Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 31/38] fork: Provide usercopy whitelisting for task_struct Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 32/38] x86: Implement thread_struct whitelist for hardened usercopy Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 33/38] arm64: " Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-15 12:24   ` Dave P Martin
2018-01-15 12:24     ` [kernel-hardening] " Dave P Martin
2018-01-15 12:24     ` Dave P Martin
2018-01-15 12:24     ` Dave P Martin
2018-01-15 12:24     ` Dave P Martin
2018-01-15 12:24     ` Dave P Martin
2018-01-15 12:24     ` Dave P Martin
2018-01-15 20:06     ` Kees Cook
2018-01-15 20:06       ` [kernel-hardening] " Kees Cook
2018-01-15 20:06       ` Kees Cook
2018-01-15 20:06       ` Kees Cook
2018-01-15 20:06       ` Kees Cook
2018-01-15 20:06       ` Kees Cook
2018-01-15 20:06       ` Kees Cook
2018-01-16 12:33       ` Dave Martin
2018-01-16 12:33         ` [kernel-hardening] " Dave Martin
2018-01-16 12:33         ` Dave Martin
2018-01-16 12:33         ` Dave Martin
2018-01-16 12:33         ` Dave Martin
2018-01-16 12:33         ` Dave Martin
2018-03-26 16:22       ` Dave Martin
2018-03-26 16:22         ` Dave Martin
2018-03-26 17:41         ` Kees Cook
2018-03-26 17:41           ` Kees Cook
2018-03-27 12:32           ` Dave Martin
2018-03-27 12:32             ` Dave Martin
2018-01-11  2:03 ` [PATCH 34/38] arm: " Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11 10:24   ` Russell King - ARM Linux
2018-01-11 10:24     ` [kernel-hardening] " Russell King - ARM Linux
2018-01-11 10:24     ` Russell King - ARM Linux
2018-01-11 10:24     ` Russell King - ARM Linux
2018-01-11 10:24     ` Russell King - ARM Linux
2018-01-11 10:24     ` Russell King - ARM Linux
2018-01-11 23:21     ` Kees Cook
2018-01-11 23:21       ` [kernel-hardening] " Kees Cook
2018-01-11 23:21       ` Kees Cook
2018-01-11 23:21       ` Kees Cook
2018-01-11 23:21       ` Kees Cook
2018-01-11 23:21       ` Kees Cook
2018-01-11  2:03 ` [PATCH 35/38] kvm: whitelist struct kvm_vcpu_arch Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 36/38] kvm: x86: fix KVM_XEN_HVM_CONFIG ioctl Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 37/38] usercopy: Restrict non-usercopy caches to size 0 Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03 ` [PATCH 38/38] lkdtm: Update usercopy tests for whitelisting Kees Cook
2018-01-11  2:03   ` [kernel-hardening] " Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-01-11  2:03   ` Kees Cook
2018-02-19 16:55 ` [PATCH] signals: Move put_compat_sigset to compat.h to silence hardened usercopy Matt Redfearn
2018-02-19 16:55   ` Matt Redfearn
2018-02-19 23:55   ` Kees Cook [this message]
2018-03-02 21:40     ` James Hogan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAGXu5jKtrJ6Nmses_pM-qkXAkOPXAxwT+V3B+omqu0tx4xEh8w@mail.gmail.com \
    --to=keescook@chromium.org \
    --cc=kernel-hardening@lists.openwall.com \
    --cc=ldv@altlinux.org \
    --cc=linux-mips@linux-mips.org \
    --cc=matt.redfearn@mips.com \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.