From patchwork Mon Jun 5 03:47:53 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jason A. Donenfeld" X-Patchwork-Id: 9765397 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 75B3E60353 for ; Mon, 5 Jun 2017 03:49:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6723626E69 for ; Mon, 5 Jun 2017 03:49:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5BD4627F9F; Mon, 5 Jun 2017 03:49:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from mother.openwall.net (mother.openwall.net [195.42.179.200]) by mail.wl.linuxfoundation.org (Postfix) with SMTP id 72B3226E69 for ; Mon, 5 Jun 2017 03:49:03 +0000 (UTC) Received: (qmail 7869 invoked by uid 550); 5 Jun 2017 03:48:43 -0000 Mailing-List: contact kernel-hardening-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Delivered-To: mailing list kernel-hardening@lists.openwall.com Received: (qmail 7284 invoked from network); 5 Jun 2017 03:48:38 -0000 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=zx2c4.com; h=from:to:cc :subject:date:message-id:in-reply-to:references; s=mail; bh=+iG8 fh1akOdU0hy7JPc3a3o9Lqs=; b=odS6MXAFp9Bs9BpPJ9Pb139ZBZjZpF18pils WnOZ+2tIp67SEk0iXViJCLH3YMmsz1DHTGa36bcb0+q1q8epLzArZV1aACmbvhWV 31tCCwRFfmHujBgSJCQnTDnGGK8s21G/tScaqeZar+PAQ5BJ6r3AlUrGQofTigH9 G4bopBrMNsPqef42GFgMZBlnZkrH6sq6POgnxPx18c6CN620zKf59/YhYTN7ZGwl xciiQJTs+EBhoRW6aUD97DYba9VT6mMuL0FVb8eKDrQV1QW1xraci3cYX+Lm0Krf AQRY8Qq8PKgCO5cRj5PK9L6u626n815+l2dkGbeuIDcrujQzxA== From: "Jason A. Donenfeld" To: Theodore Ts'o , Linux Crypto Mailing List , LKML , kernel-hardening@lists.openwall.com, Greg Kroah-Hartman Cc: "Jason A. Donenfeld" , Herbert Xu Date: Mon, 5 Jun 2017 05:47:53 +0200 Message-Id: <20170605034757.4803-5-Jason@zx2c4.com> X-Mailer: git-send-email 2.13.0 In-Reply-To: <20170605034757.4803-1-Jason@zx2c4.com> References: <20170605034757.4803-1-Jason@zx2c4.com> Subject: [kernel-hardening] [PATCH RFC v2 4/8] crypto/rng: ensure that the RNG is ready before using X-Virus-Scanned: ClamAV using ClamSMTP Otherwise, we might be seeding the RNG using bad randomness, which is dangerous. Cc: Herbert Xu Signed-off-by: Jason A. Donenfeld --- crypto/rng.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/crypto/rng.c b/crypto/rng.c index f46dac5288b9..e042437e64b4 100644 --- a/crypto/rng.c +++ b/crypto/rng.c @@ -48,12 +48,14 @@ int crypto_rng_reset(struct crypto_rng *tfm, const u8 *seed, unsigned int slen) if (!buf) return -ENOMEM; - get_random_bytes(buf, slen); + err = get_random_bytes_wait(buf, slen); + if (err) + goto out; seed = buf; } err = crypto_rng_alg(tfm)->seed(tfm, seed, slen); - +out: kzfree(buf); return err; }