All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laura Abbott <labbott@redhat.com>
To: Kees Cook <keescook@chromium.org>
Cc: Laura Abbott <labbott@redhat.com>,
	kernel-hardening@lists.openwall.com,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Daniel Micay <danielmicay@gmail.com>
Subject: [kernel-hardening] [PATCHv3 0/2] Command line randomness
Date: Wed, 16 Aug 2017 16:14:56 -0700	[thread overview]
Message-ID: <20170816231458.2299-1-labbott@redhat.com> (raw)

Hi,

This is v3 of the series to add the kernel command line as a source
of randomness. The main change from v2 is to correctly place the
command line randomness _before_ the stack canary initialization
so the canary can take advantage of that.

Daniel Micay (1):
  extract early boot entropy from the passed cmdline

Laura Abbott (1):
  init: Move stack canary initialization after setup_arch

 init/main.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

-- 
2.13.0

WARNING: multiple messages have this Message-ID (diff)
From: Laura Abbott <labbott@redhat.com>
To: Kees Cook <keescook@chromium.org>
Cc: Laura Abbott <labbott@redhat.com>,
	kernel-hardening@lists.openwall.com,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Daniel Micay <danielmicay@gmail.com>
Subject: [PATCHv3 0/2] Command line randomness
Date: Wed, 16 Aug 2017 16:14:56 -0700	[thread overview]
Message-ID: <20170816231458.2299-1-labbott@redhat.com> (raw)

Hi,

This is v3 of the series to add the kernel command line as a source
of randomness. The main change from v2 is to correctly place the
command line randomness _before_ the stack canary initialization
so the canary can take advantage of that.

Daniel Micay (1):
  extract early boot entropy from the passed cmdline

Laura Abbott (1):
  init: Move stack canary initialization after setup_arch

 init/main.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

-- 
2.13.0

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Laura Abbott <labbott@redhat.com>
To: Kees Cook <keescook@chromium.org>
Cc: Laura Abbott <labbott@redhat.com>,
	kernel-hardening@lists.openwall.com,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Daniel Micay <danielmicay@gmail.com>
Subject: [PATCHv3 0/2] Command line randomness
Date: Wed, 16 Aug 2017 16:14:56 -0700	[thread overview]
Message-ID: <20170816231458.2299-1-labbott@redhat.com> (raw)

Hi,

This is v3 of the series to add the kernel command line as a source
of randomness. The main change from v2 is to correctly place the
command line randomness _before_ the stack canary initialization
so the canary can take advantage of that.

Daniel Micay (1):
  extract early boot entropy from the passed cmdline

Laura Abbott (1):
  init: Move stack canary initialization after setup_arch

 init/main.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

-- 
2.13.0

             reply	other threads:[~2017-08-16 23:14 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-16 23:14 Laura Abbott [this message]
2017-08-16 23:14 ` [PATCHv3 0/2] Command line randomness Laura Abbott
2017-08-16 23:14 ` Laura Abbott
2017-08-16 23:14 ` [kernel-hardening] [PATCHv3 1/2] init: Move stack canary initialization after setup_arch Laura Abbott
2017-08-16 23:14   ` Laura Abbott
2017-08-16 23:14   ` Laura Abbott
2017-08-16 23:14 ` [kernel-hardening] [PATCHv3 2/2] extract early boot entropy from the passed cmdline Laura Abbott
2017-08-16 23:14   ` Laura Abbott
2017-08-16 23:14   ` Laura Abbott
2017-08-16 23:23   ` [kernel-hardening] " Kees Cook
2017-08-16 23:23     ` Kees Cook
2017-08-16 23:23     ` Kees Cook
2017-08-17  3:31   ` [kernel-hardening] " Theodore Ts'o
2017-08-17  3:31     ` Theodore Ts'o
2017-08-17  3:31     ` Theodore Ts'o
2017-08-17  4:23     ` [kernel-hardening] " Daniel Micay
2017-08-17  4:23       ` Daniel Micay
2017-08-17  4:23       ` Daniel Micay
2017-08-17 20:57       ` [kernel-hardening] " Daniel Micay
2017-08-17 20:57         ` Daniel Micay
2017-08-17 20:57         ` Daniel Micay
2017-08-17 21:44         ` [kernel-hardening] " Theodore Ts'o
2017-08-17 21:44           ` Theodore Ts'o
2017-08-17 21:44           ` Theodore Ts'o
2017-08-30  9:57     ` [kernel-hardening] " Pavel Machek
2017-08-30  9:57       ` Pavel Machek
2017-08-30 13:27       ` [kernel-hardening] " Nick Kralevich
2017-08-30 13:27         ` Nick Kralevich

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=20170816231458.2299-1-labbott@redhat.com \
    --to=labbott@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=danielmicay@gmail.com \
    --cc=keescook@chromium.org \
    --cc=kernel-hardening@lists.openwall.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /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.