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 X-Spam-Level: X-Spam-Status: No, score=-8.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1D0CCC433DF for ; Wed, 5 Aug 2020 20:09:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CBDEF22CAD for ; Wed, 5 Aug 2020 20:09:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596658176; bh=dbGVB80eYa/nySFVWDJFfLJakBsIbNOmiAZCGTFt7no=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=CancO5V52605TBhg7Totca2MMLiIqlCWqHuTk/TK6NWFUvfEu0WhxRzSCoafY226M MR7JHx86DUY9C2zAggEunwyqqWTS4PJ89Lp1S5Qe8r7EKCWDHePbT84T3cjJlwPoIN wojnEkx9S9EcpuwdTDPTf2taiZz3uqgscm1Wwqpk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729729AbgHEUJO (ORCPT ); Wed, 5 Aug 2020 16:09:14 -0400 Received: from mail.kernel.org ([198.145.29.99]:49480 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726881AbgHEQce (ORCPT ); Wed, 5 Aug 2020 12:32:34 -0400 Received: from linux-8ccs (p57a236d4.dip0.t-ipconnect.de [87.162.54.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 611972332B; Wed, 5 Aug 2020 14:53:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1596639229; bh=dbGVB80eYa/nySFVWDJFfLJakBsIbNOmiAZCGTFt7no=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=aiidoivW6Ka39wLtz4Rev/xfeu3gn/KqTPMWcMp2RpfkimMpyH9umMo3mqAjVizCX 4Ba9g+JuEE+1F2LMpKt9MJ3zqjc4VcDw6pIvqAxnAD31JOGx1wKeMHMd1vmu70PBnT 21BTAUo97qU7VTMydLFvMz/JsKrurSCZF9fPrfuM= Date: Wed, 5 Aug 2020 16:53:43 +0200 From: Jessica Yu To: Kees Cook Cc: Greg Kroah-Hartman , Scott Branden , Mimi Zohar , Luis Chamberlain , Takashi Iwai , SeongJae Park , KP Singh , linux-efi@vger.kernel.org, linux-security-module@vger.kernel.org, linux-integrity@vger.kernel.org, selinux@vger.kernel.org, linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 11/17] module: Call security_kernel_post_load_data() Message-ID: <20200805145342.GA22100@linux-8ccs> References: <20200729175845.1745471-1-keescook@chromium.org> <20200729175845.1745471-12-keescook@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20200729175845.1745471-12-keescook@chromium.org> X-OS: Linux linux-8ccs 5.8.0-rc6-lp150.12.61-default+ x86_64 User-Agent: Mutt/1.10.1 (2018-07-13) Sender: owner-linux-security-module@vger.kernel.org Precedence: bulk List-ID: +++ Kees Cook [29/07/20 10:58 -0700]: >Now that there is an API for checking loaded contents for modules >loaded without a file, call into the LSM hooks. > >Cc: Jessica Yu >Signed-off-by: Kees Cook Acked-by: Jessica Yu