From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 21D6CC4332F for ; Thu, 13 Oct 2022 17:01:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229579AbiJMRB2 (ORCPT ); Thu, 13 Oct 2022 13:01:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56516 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229578AbiJMRB2 (ORCPT ); Thu, 13 Oct 2022 13:01:28 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 34669F0379 for ; Thu, 13 Oct 2022 10:01:27 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id DCFE4B81FBC for ; Thu, 13 Oct 2022 17:01:25 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 34625C433D6; Thu, 13 Oct 2022 17:01:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1665680484; bh=c4EZe/OM3oGnBn5d8mD3/jmZIYgbK873PCNQ4f0vGi8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=BNKUfBFM+Tf5g/eTkTS0w2XOqMlNJ37ja6pPpmMjsfrUr2eEPImRDxMJSCX8Xh9gk 41SsCHKgNgY5ZO9JA//1++2EnPv9cYu6xqCooUyD8S4O3BocogamTpCdDawVgFY4ig 29BE9FLLjf+XDWI7BXrMpFOqOKpT1LKDRnin2h5A= Date: Thu, 13 Oct 2022 19:02:09 +0200 From: Greg KH To: "Jason A. Donenfeld" Cc: stable@vger.kernel.org Subject: Re: [PATCH stable 4.9.y] random: restore O_NONBLOCK support Message-ID: References: <20221013163231.1410141-1-Jason@zx2c4.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221013163231.1410141-1-Jason@zx2c4.com> Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Thu, Oct 13, 2022 at 10:32:31AM -0600, Jason A. Donenfeld wrote: > commit cd4f24ae9404fd31fc461066e57889be3b68641b upstream. > > Prior to 5.6, when /dev/random was opened with O_NONBLOCK, it would > return -EAGAIN if there was no entropy. When the pools were unified in > 5.6, this was lost. The post 5.6 behavior of blocking until the pool is > initialized, and ignoring O_NONBLOCK in the process, went unnoticed, > with no reports about the regression received for two and a half years. > However, eventually this indeed did break somebody's userspace. > > So we restore the old behavior, by returning -EAGAIN if the pool is not > initialized. Unlike the old /dev/random, this can only occur during > early boot, after which it never blocks again. > > In order to make this O_NONBLOCK behavior consistent with other > expectations, also respect users reading with preadv2(RWF_NOWAIT) and > similar. > > Fixes: 30c08efec888 ("random: make /dev/random be almost like /dev/urandom") > Reported-by: Guozihua > Reported-by: Zhongguohua > Cc: Al Viro > Cc: Theodore Ts'o > Cc: Andrew Lutomirski > Cc: stable@vger.kernel.org > Signed-off-by: Jason A. Donenfeld > --- > drivers/char/random.c | 4 ++++ > 1 file changed, 4 insertions(+) Now queued up, thanks. greg k-h