Re: [RFC PATCH v1 44/50] arm64: ptr auth: Use get_random_u64 instead of _bytes

From: George Spelvin
Date: Tue Mar 31 2020 - 10:50:02 EST


On Tue, Mar 31, 2020 at 11:14:12AM +0100, Mark Rutland wrote:
> On Mon, Mar 30, 2020 at 07:32:37PM +0000, George Spelvin wrote:
>> On Mon, Mar 30, 2020 at 11:57:45AM +0100, Mark Rutland wrote:
>>> As I am unaware, how does the cost of get_random_bytes() compare to the
>>> cost of get_random_u64()?
>>
>> It's approximately 8 times the cost. [Of *one* get_random_u64()
>> call; 4x the cost of the two needed to generate a 128-bit key.]
>>
>> Because get_random_bytes() implements anti-backtracking, it's a minimum
>> of one global lock and one ChaCha20 operation per call. Even though
>> chacha_block_generic() returns 64 bytes, for anti-backtracking we use
>> 32 of them to generate a new key and discard the remainder.
>>
>> get_random_u64() uses the exact same generator, but amortizes the cost by
>> storing the output in a per-CPU buffer which it only has to refill every
>> 64 bytes generated. 7/8 of the time, it's just a fetch from a per-CPU
>> data structure.
>
> I see; thanks for this explanation. It would be helpful to mention the
> backtracking distinction explicitly in the commit message, since it
> currently only alludes to it in the first sentence.

Easily done, but I need to find a centralized place to say it, or
I'd be repeating myself a *lot* in the series.

That said, thanks for prompting me to quantify the cost ratio.
I knew it, but never actually wrote it down.

> It's worth noting that the key values *can* be exposed to userspace when
> CONFIG_CHECKPOINT_RESTORE is selected. On such kernels, a user could
> regenerate and read the keys an arbitrary number of times on a CPU of
> their choice. From my limited understanding I presume backtracking may
> be a concern there?

No. Backtracking is an issue if the keys must remain secret *after*
they are wiped from kernel memory. This applies to session
*encryption* keys (assuming the plaintext should remain secret
after the session is over), and to any long-lived keys which are
stored encrypted or otherwise inaccessible (e.g. in dedicated
hardware). The latter includes most asymmetric private keys.

Since the pointer authentication keys are authentication keys,
and valueless to an attacker once the kernel is done using them,
there is no need for backtracking protetion.

Basically, do you need to wipe the key (with memzero_explicit) when
you are done with it? If that is important, you also want to
know that the key cannot be reconstructed from the CRNG state.

>> Yes, I went overboard, and your proposed change below is perfectly
>> fine with me.
>
> Great. That's what I'd prefer due to clarity of the code, and I'm not
> too concerned by the figures below given it only adds 12 bytes to the
> contemporary text size.

A modified patch will follow. Thanks for your patience.