From: Kees Cook <keescook@chromium•org>
To: Stephen Boyd <swboyd@chromium•org>
Cc: Kate Stewart <kstewart@linuxfoundation•org>,
Peter Zijlstra <peterz@infradead•org>,
Catalin Marinas <catalin.marinas@arm•com>,
Mukesh Ojha <mojha@codeaurora•org>,
Josh Poimboeuf <jpoimboe@redhat•com>,
Grzegorz Halat <ghalat@redhat•com>,
"H . Peter Anvin" <hpa@zytor•com>,
Guenter Roeck <groeck@chromium•org>,
Will Deacon <will@kernel•org>,
Marek Szyprowski <m.szyprowski@samsung•com>,
Rob Herring <robh@kernel•org>,
Daniel Thompson <daniel.thompson@linaro•org>,
Anders Roxell <anders.roxell@linaro•org>,
Yury Norov <ynorov@marvell•com>, Marc Zyngier <maz@kernel•org>,
Russell King <linux@armlinux•org.uk>,
Aaro Koskinen <aaro.koskinen@nokia•com>,
Ingo Molnar <mingo@redhat•com>,
Viresh Kumar <viresh.kumar@linaro•org>,
Waiman Long <longman@redhat•com>,
"Paul E . McKenney" <paulmck@linux•vnet.ibm.com>,
Wei Li <liwei391@huawei•com>,
Alexey Dobriyan <adobriyan@gmail•com>,
Julien Thierry <julien.thierry.kdev@gmail•com>,
Len Brown <len.brown@intel•com>, Arnd Bergmann <arnd@arndb•de>,
Rik van Riel <riel@surriel•com>,
Shaokun Zhang <zhangshaokun@hisilicon•com>,
Mike Rapoport <rppt@linux•vnet.ibm.com>,
Borislav Petkov <bp@alien8•de>,
Hsin-Yi Wang <hsinyi@chromium•org>,
Thomas Gleixner <tglx@linutronix•de>,
linux-arm-kernel@lists•infradead.org,
"Theodore Y . Ts'o" <tytso@mit•edu>,
Greg Kroah-Hartman <gregkh@linuxfoundation•org>,
Marcelo Tosatti <mtosatti@redhat•com>,
linux-kernel@vger•kernel.org, Armijn Hemel <armijn@tjaldur•nl>,
Jiri Kosina <jkosina@suse•cz>,
Mathieu Desnoyers <mathieu.desnoyers@efficios•com>,
Andrew Morton <akpm@linux-foundation•org>,
Tim Chen <tim.c.chen@linux•intel.com>,
"David S . Miller" <davem@davemloft•net>
Subject: Re: [PATCH v9 2/3] fdt: add support for rng-seed
Date: Sat, 24 Aug 2019 12:04:01 -0700 [thread overview]
Message-ID: <201908241203.92CC0BE8@keescook> (raw)
In-Reply-To: <5d5ed368.1c69fb81.419fc.0803@mx.google.com>
On Thu, Aug 22, 2019 at 10:39:51AM -0700, Stephen Boyd wrote:
> Quoting Hsin-Yi Wang (2019-08-22 00:15:22)
> > Introducing a chosen node, rng-seed, which is an entropy that can be
> > passed to kernel called very early to increase initial device
> > randomness. Bootloader should provide this entropy and the value is
> > read from /chosen/rng-seed in DT.
> >
> > Obtain of_fdt_crc32 for CRC check after early_init_dt_scan_nodes(),
> > since early_init_dt_scan_chosen() would modify fdt to erase rng-seed.
> >
> > Add a new interface add_bootloader_randomness() for rng-seed use case.
> > Depends on whether the seed is trustworthy, rng seed would be passed to
> > add_hwgenerator_randomness(). Otherwise it would be passed to
> > add_device_randomness(). Decision is controlled by kernel config
> > RANDOM_TRUST_BOOTLOADER.
> >
> > Signed-off-by: Hsin-Yi Wang <hsinyi@chromium•org>
> > Reviewed-by: Stephen Boyd <swboyd@chromium•org>
> > Reviewed-by: Rob Herring <robh@kernel•org>
> > ---
> > Change from v8:
> > * Add a new interface add_bootloader_randomness
> > * Add a new kernel config
> > ---
> > drivers/char/Kconfig | 10 ++++++++++
> > drivers/char/random.c | 15 +++++++++++++++
> > drivers/of/fdt.c | 14 ++++++++++++--
> > include/linux/random.h | 1 +
> > 4 files changed, 38 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig
> > index 96156c729a31..5974a5906fd0 100644
> > --- a/drivers/char/Kconfig
> > +++ b/drivers/char/Kconfig
> > @@ -551,3 +551,13 @@ config RANDOM_TRUST_CPU
> > has not installed a hidden back door to compromise the CPU's
> > random number generation facilities. This can also be configured
> > at boot with "random.trust_cpu=on/off".
> > +
> > +config RANDOM_TRUST_BOOTLOADER
> > + bool "Trust the bootloader to initialize Linux's CRNG"
> > + default n
>
> You can drop the default.
>
> > + help
> > + Bootloader could provide rng-seed set in /chosen/rng-seed in DT to help
> > + increase initial device randomness. Assume the entropy provided is
> > + trustworthy, it would be regarded as true hardware RNGs and update the
> > + entropy estimate. Otherwise it would be regarded as device input that
> > + could help mix the entropy pool, but won't be added to actual entropy.
>
> Maybe reword this to something like:
>
> Some bootloaders can provide entropy to increase the kernel's
> initial device randomness. Say Y here to assume the entropy
> provided by the booloader is trustworthy so it will be added to
> the kernel's entropy pool. Otherwise, say N here so it will be
> regarded as device input that only mixes the entropy pool.
>
> > \ No newline at end of file
> > diff --git a/drivers/char/random.c b/drivers/char/random.c
> > index 5d5ea4ce1442..29d3ff3de1e1 100644
> > --- a/drivers/char/random.c
> > +++ b/drivers/char/random.c
> > @@ -2445,3 +2445,18 @@ void add_hwgenerator_randomness(const char *buffer, size_t count,
> > credit_entropy_bits(poolp, entropy);
> > }
> > EXPORT_SYMBOL_GPL(add_hwgenerator_randomness);
> > +
> > +/* Handle random seed passed by bootloader.
> > + * If the seed is trustworthy, it would be regarded as hardware RNGs. Otherwise
> > + * it would be regarded as device data.
> > + * The decision is controlled by CONFIG_RANDOM_TRUST_BOOTLOADER.
> > + */
> > +void add_bootloader_randomness(const void *buf, unsigned int size)
> > +{
> > +#ifdef CONFIG_RANDOM_TRUST_BOOTLOADER
Can this please be a boot param (with the default controlled by the
CONFIG)? See how CONFIG_RANDOM_TRUST_CPU is wired up...
-Kees
> > + add_hwgenerator_randomness(buf, size, size * 8);
> > +#else
> > + add_device_randomness(buf, size);
> > +#endif
>
> Maybe use
>
> if (IS_ENABLED(CONFIG_RANDOM_TRUST_BOOTLOADER))
> add_hwgenerator_randomness(buf, size, size * 8);
> else
> add_device_randomness(buf, size);
>
> > +}
> > +EXPORT_SYMBOL_GPL(add_bootloader_randomness);
> > \ No newline at end of file
--
Kees Cook
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists•infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2019-08-28 17:36 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-22 7:15 [PATCH v9 0/3] add support for rng-seed Hsin-Yi Wang
2019-08-22 7:15 ` [PATCH v9 1/3] arm64: map FDT as RW for early_init_dt_scan() Hsin-Yi Wang
2019-08-22 7:15 ` [PATCH v9 2/3] fdt: add support for rng-seed Hsin-Yi Wang
2019-08-22 16:03 ` Theodore Y. Ts'o
2019-08-22 17:39 ` Stephen Boyd
2019-08-24 19:04 ` Kees Cook [this message]
2019-08-29 10:03 ` Hsin-Yi Wang
2019-08-29 15:45 ` Theodore Y. Ts'o
2019-08-29 16:25 ` Kees Cook
2019-08-29 16:22 ` Kees Cook
2019-08-22 7:15 ` [PATCH v9 3/3] arm64: kexec_file: add rng-seed support Hsin-Yi Wang
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=201908241203.92CC0BE8@keescook \
--to=keescook@chromium$(echo .)org \
--cc=aaro.koskinen@nokia$(echo .)com \
--cc=adobriyan@gmail$(echo .)com \
--cc=akpm@linux-foundation$(echo .)org \
--cc=anders.roxell@linaro$(echo .)org \
--cc=armijn@tjaldur$(echo .)nl \
--cc=arnd@arndb$(echo .)de \
--cc=bp@alien8$(echo .)de \
--cc=catalin.marinas@arm$(echo .)com \
--cc=daniel.thompson@linaro$(echo .)org \
--cc=davem@davemloft$(echo .)net \
--cc=ghalat@redhat$(echo .)com \
--cc=gregkh@linuxfoundation$(echo .)org \
--cc=groeck@chromium$(echo .)org \
--cc=hpa@zytor$(echo .)com \
--cc=hsinyi@chromium$(echo .)org \
--cc=jkosina@suse$(echo .)cz \
--cc=jpoimboe@redhat$(echo .)com \
--cc=julien.thierry.kdev@gmail$(echo .)com \
--cc=kstewart@linuxfoundation$(echo .)org \
--cc=len.brown@intel$(echo .)com \
--cc=linux-arm-kernel@lists$(echo .)infradead.org \
--cc=linux-kernel@vger$(echo .)kernel.org \
--cc=linux@armlinux$(echo .)org.uk \
--cc=liwei391@huawei$(echo .)com \
--cc=longman@redhat$(echo .)com \
--cc=m.szyprowski@samsung$(echo .)com \
--cc=mathieu.desnoyers@efficios$(echo .)com \
--cc=maz@kernel$(echo .)org \
--cc=mingo@redhat$(echo .)com \
--cc=mojha@codeaurora$(echo .)org \
--cc=mtosatti@redhat$(echo .)com \
--cc=paulmck@linux$(echo .)vnet.ibm.com \
--cc=peterz@infradead$(echo .)org \
--cc=riel@surriel$(echo .)com \
--cc=robh@kernel$(echo .)org \
--cc=rppt@linux$(echo .)vnet.ibm.com \
--cc=swboyd@chromium$(echo .)org \
--cc=tglx@linutronix$(echo .)de \
--cc=tim.c.chen@linux$(echo .)intel.com \
--cc=tytso@mit$(echo .)edu \
--cc=viresh.kumar@linaro$(echo .)org \
--cc=will@kernel$(echo .)org \
--cc=ynorov@marvell$(echo .)com \
--cc=zhangshaokun@hisilicon$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox