Re: [PATCH v2] crypto: prefix module autoloading with "crypto-"

2014-11-18 Thread Kees Cook
On Tue, Nov 18, 2014 at 3:12 PM, Mathias Krause wrote: > On 18 November 2014 01:45, Kees Cook wrote: >> On Mon, Nov 17, 2014 at 3:20 PM, Mathias Krause >> wrote: >>> On 17 November 2014 21:02, Kees Cook wrote: This prefixes all crypto module loading with "crypto-" so we never run the

Re: [PATCH v2] crypto: prefix module autoloading with "crypto-"

2014-11-18 Thread Mathias Krause
On 18 November 2014 01:45, Kees Cook wrote: > On Mon, Nov 17, 2014 at 3:20 PM, Mathias Krause > wrote: >> On 17 November 2014 21:02, Kees Cook wrote: >>> This prefixes all crypto module loading with "crypto-" so we never run >>> the risk of exposing module auto-loading to userspace via a crypto

Re: [PATCH v2] crypto: prefix module autoloading with "crypto-"

2014-11-17 Thread Kees Cook
On Mon, Nov 17, 2014 at 3:20 PM, Mathias Krause wrote: > On 17 November 2014 21:02, Kees Cook wrote: >> This prefixes all crypto module loading with "crypto-" so we never run >> the risk of exposing module auto-loading to userspace via a crypto API, >> as demonstrated by Mathias Krause: >> >> htt

Re: [PATCH v2] crypto: prefix module autoloading with "crypto-"

2014-11-17 Thread Mathias Krause
On 17 November 2014 21:02, Kees Cook wrote: > This prefixes all crypto module loading with "crypto-" so we never run > the risk of exposing module auto-loading to userspace via a crypto API, > as demonstrated by Mathias Krause: > > https://lkml.org/lkml/2013/3/4/70 > > Signed-off-by: Kees Cook >

[PATCH v2] crypto: prefix module autoloading with "crypto-"

2014-11-17 Thread Kees Cook
This prefixes all crypto module loading with "crypto-" so we never run the risk of exposing module auto-loading to userspace via a crypto API, as demonstrated by Mathias Krause: https://lkml.org/lkml/2013/3/4/70 Signed-off-by: Kees Cook --- v2: - added missing #include, thanks to minipli - bui