From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?Colm_MacC=C3=A1rthaigh?= Subject: Re: [PATCH v2 0/2] mm,fork,security: introduce MADV_WIPEONFORK Date: Mon, 7 Aug 2017 17:55:45 +0200 Message-ID: References: <20170806140425.20937-1-riel@redhat.com> <20170807132257.GH32434@dhcp22.suse.cz> <20170807134648.GI32434@dhcp22.suse.cz> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="001a113f46703dcfb705562be17b" Return-path: In-Reply-To: <20170807134648.GI32434@dhcp22.suse.cz> Sender: owner-linux-mm@kvack.org To: Michal Hocko Cc: Rik van Riel , linux-kernel@vger.kernel.org, mike.kravetz@oracle.com, linux-mm@kvack.org, Florian Weimer , akpm@linux-foundation.org, keescook@chromium.org, luto@amacapital.net, wad@chromium.org, mingo@kernel.org, kirill@shutemov.name, dave.hansen@intel.com, linux-api@vger.kernel.org List-Id: linux-api@vger.kernel.org --001a113f46703dcfb705562be17b Content-Type: text/plain; charset="UTF-8" On Mon, Aug 7, 2017 at 3:46 PM, Michal Hocko wrote: > > > > The use case is libraries that store or cache information, and > > > want to know that they need to regenerate it in the child process > > > after fork. > > How do they know that they need to regenerate if they do not get SEGV? > Are they going to assume that a read of zeros is a "must init again"? Isn't > that too fragile? Or do they play other tricks like parse /proc/self/smaps > and read in the flag? > Hi from a user space crypto maintainer :) Here's how we do exactly this it in s2n: https://github.com/awslabs/s2n/blob/master/utils/s2n_random.c , lines 62 - 91 and here's how LibreSSL does it: https://github.com/libressl-portable/openbsd/blob/57dcd4329d83bff3dd67a293d5c4a53b795c587e/src/lib/libc/crypt/arc4random.h (lines 37 on) https://github.com/libressl-portable/openbsd/blob/57dcd4329d83bff3dd67a293d5c4a53b795c587e/src/lib/libc/crypt/arc4random.c (Line 110) OpenSSL and libc are in the process of adding similar DRBGs and would use a WIPEONFORK. BoringSSL's maintainers are also interested as it adds robustness. I also recall it being a topic of discussion at the High Assurance Cryptography Symposium (HACS) where many crypto maintainers meet and several more maintainers there indicated it would be nice to have. Right now on Linux we all either use pthread_atfork() to zero the memory on fork, or getpid() and getppid() guards. The former can be evaded by direct syscall() and other tricks (which things like Language VMs are prone to doing), and the latter check is probabilistic as pids can repeat, though if you use both getpid() and getppid() - which is slow! - the probability of both PIDs colliding is very low indeed. The result at the moment on Linux there's no bulletproof way to detect a fork and erase a key or DRBG state. It would really be nice to be able to match what we can do with MAP_INHERIT_ZERO and minherit() on BSD. madvise() does seem like the established idiom for behavior like this on Linux. I don't imagine it will be hard to use in practice, we can fall back to existing behavior if the flag isn't accepted. -- Colm --001a113f46703dcfb705562be17b Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable


On Mon, Aug 7, 2017 at 3:46 PM, Michal Hocko <mhocko@kernel.org>= ; wrote:

> > The use case is libraries that store or cache information, and > > want to know that they need to regenerate it in the child process=
> > after fork.

How do they know that they need to regenerate if they do not get SEG= V?
Are they going to assume that a read of zeros is a "must init again&qu= ot;? Isn't
that too fragile? Or do they play other tricks like parse /proc/self/smaps<= br> and read in the flag?

Hi from a user sp= ace crypto maintainer :) Here's how we do exactly this it in s2n:
=


and here's how L= ibreSSL does it:


OpenSSL and libc are in the process of ad= ding similar DRBGs and would use a WIPEONFORK. BoringSSL's maintainers = are also interested as it adds robustness.=C2=A0 I also recall it being a t= opic of discussion at the High Assurance Cryptography Symposium (HACS) wher= e many crypto maintainers meet and several more maintainers there indicated= it would be nice to have.=C2=A0

Right now on Linu= x we all either use pthread_atfork() to zero the memory on fork, or getpid(= ) and getppid() guards. The former can be evaded by direct syscall() and ot= her tricks (which things like Language VMs are prone to doing), and the lat= ter check is probabilistic as pids can repeat, though if you use both getpi= d() and getppid() - which is slow! - the probability of both PIDs colliding= is very low indeed.=C2=A0

The result at the momen= t on Linux there's no bulletproof way to detect a fork and erase a key = or DRBG state. It would really be nice to be able to match what we can do w= ith MAP_INHERIT_ZERO and minherit() on BSD. =C2=A0madvise() does seem like = the established idiom for behavior like this on Linux.=C2=A0 I don't im= agine it will be hard to use in practice, we can fall back to existing beha= vior if the flag isn't accepted.=C2=A0

--
Colm
--001a113f46703dcfb705562be17b-- -- 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: email@kvack.org