Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756645Ab3H2SPA (ORCPT ); Thu, 29 Aug 2013 14:15:00 -0400 Received: from mx3-phx2.redhat.com ([209.132.183.24]:44448 "EHLO mx3-phx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756342Ab3H2SO6 (ORCPT ); Thu, 29 Aug 2013 14:14:58 -0400 Date: Thu, 29 Aug 2013 14:14:55 -0400 (EDT) From: Lenny Szubowicz To: Matthew Garrett , linux-kernel@vger.kernel.org Cc: linux-efi@vger.kernel.org, jwboyer@redhat.com, keescook@chromium.org, Vivek Goyal Message-ID: <1776247498.9768326.1377800095494.JavaMail.root@redhat.com> In-Reply-To: <410604531.9664777.1377791856786.JavaMail.root@redhat.com> References: <1376933171-9854-1-git-send-email-matthew.garrett@nebula.com> <1376933171-9854-9-git-send-email-matthew.garrett@nebula.com> <410604531.9664777.1377791856786.JavaMail.root@redhat.com> Subject: Re: [PATCH V2 08/10] kexec: Disable at runtime if the kernel enforces module loading restrictions MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [10.5.82.12] X-Mailer: Zimbra 8.0.3_GA_5664 (ZimbraWebClient - FF17 (Linux)/8.0.3_GA_5664) Thread-Topic: kexec: Disable at runtime if the kernel enforces module loading restrictions Thread-Index: pJyVwwZQoT2C3MBBHAN0lKUWpEp8CcGzBPJX Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3004 Lines: 91 ----- Original Message ----- > From: "Lenny Szubowicz" > To: "Matthew Garrett" , linux-kernel@vger.kernel.org > Cc: linux-efi@vger.kernel.org, jwboyer@redhat.com, keescook@chromium.org > Sent: Thursday, August 29, 2013 11:57:36 AM > Subject: Re: [PATCH V2 08/10] kexec: Disable at runtime if the kernel enforces module loading restrictions > > > > ----- Original Message ----- > > From: "Matthew Garrett" > > To: linux-kernel@vger.kernel.org > > Cc: linux-efi@vger.kernel.org, jwboyer@redhat.com, keescook@chromium.org, > > "Matthew Garrett" > > > > Sent: Monday, August 19, 2013 1:26:09 PM > > Subject: [PATCH V2 08/10] kexec: Disable at runtime if the kernel enforces > > module loading restrictions > > > > kexec permits the loading and execution of arbitrary code in ring 0, which > > is something that module signing enforcement is meant to prevent. It makes > > sense to disable kexec in this situation. > > > > Signed-off-by: Matthew Garrett > > --- > > kernel/kexec.c | 4 ++++ > > 1 file changed, 4 insertions(+) > > > > diff --git a/kernel/kexec.c b/kernel/kexec.c > > index 59f7b55..1a7690f 100644 > > --- a/kernel/kexec.c > > +++ b/kernel/kexec.c > > @@ -32,6 +32,7 @@ > > #include > > #include > > #include > > +#include > > > > #include > > #include > > @@ -1645,6 +1646,9 @@ int kernel_kexec(void) > > goto Unlock; > > } > > > > + if (secure_modules()) > > + return -EPERM; > > + > > #ifdef CONFIG_KEXEC_JUMP > > if (kexec_image->preserve_context) { > > lock_system_sleep(); > > -- > > 1.8.3.1 > > > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > Please read the FAQ at http://www.tux.org/lkml/ > > > > > Shouldn't that be: > > + if (secure_modules()) { > + error = -EPERM; > + goto Unlock; > + } > > -Lenny. > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ > Also, in earlier incarnations you disallowed kexec load in secure mode. But now you allow the load. You then disallow the transfer of control to the loaded code via kernel_kexec in secure mode. Even if there might be no risk by having untrusted code remain loaded, why not prevent it up front? -Lenny. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/