Received: by 2002:ac0:a582:0:0:0:0:0 with SMTP id m2-v6csp570627imm; Mon, 1 Oct 2018 14:48:26 -0700 (PDT) X-Google-Smtp-Source: ACcGV61U3Y+Kg7LgYV4yEG5M5px36cM9jmwx/wcGZb5nCGGCa1rg5qgZfqobSXR2zJdpSZId4ROB X-Received: by 2002:a62:b87:: with SMTP id 7-v6mr13466601pfl.67.1538430506642; Mon, 01 Oct 2018 14:48:26 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1538430506; cv=none; d=google.com; s=arc-20160816; b=kDJx/a9omLow54ckV2zvQPk+AOjm1+3tTs9bRfew3ZOI8TFvyeJKdruOsBt5bVv4d2 UaGUVgPqRIujkz5gr6MWAo7aZZi76QxFpum00nEUlKKo1R442mJ4UZHV1HF93yTVskGG T+eANuEnusaoWlz3e6qIygfDIzV5KKN57owB2cmQQ5TOZNqg2f5YhM3pLS2I6woqzCeS /3TvKHOw0J6vwSCYqLEehsWR8M9P7OUihHSw7YoXjMzBDZn5qXIPCou5gAXfuY7M0HbV iQwtyDwsOC1tnD1WGP/gHluRjT25eAVvZ3jTtgh3CHgNNtPLmIX0/3dcCgSjn/nTmaxI P31w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date; bh=D8drF5y3XnmemS6uC6XIQapy5uHXQxTmVKKtqrrNvsQ=; b=j5ihvwcuNYzOLy+TnCkuu8Lv7hDiw5ruvmvigsUOSMjkqa3/mnycvTMLudpowDJRN7 Hyj/C3/XkWGSo2yZe6GqcUE2ItrsbWvvqyVpwN01kU+1j0y80yaHaKx+eevvWzsCz+FL 3NUFy6UCASUN+jtvckM0MV41wYT3xmVl+vCHorJ5vXYuftKTQJ3v1kDNeTDYJYfBA1PG Zrhsc/hF4jKL73hPWBF0yW9Q8ArBxFjzHMp416glHnov6gNjk8OSKcUSgSEUhoWU9zCY xccr/FGThvB+UgUjQYJk71/RWZESYASiONpeafE3o+/++X7SvV83zW+ZbLaGZVFLiKaf y3nA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id d130-v6si12736231pgc.189.2018.10.01.14.48.12; Mon, 01 Oct 2018 14:48:26 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726533AbeJBE1t (ORCPT + 99 others); Tue, 2 Oct 2018 00:27:49 -0400 Received: from namei.org ([65.99.196.166]:34810 "EHLO namei.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726027AbeJBE1t (ORCPT ); Tue, 2 Oct 2018 00:27:49 -0400 Received: from localhost (localhost [127.0.0.1]) by namei.org (8.14.4/8.14.4) with ESMTP id w91LliaK022175; Mon, 1 Oct 2018 21:47:44 GMT Date: Tue, 2 Oct 2018 07:47:44 +1000 (AEST) From: James Morris To: Kees Cook cc: Casey Schaufler , John Johansen , Tetsuo Handa , Paul Moore , Stephen Smalley , "Schaufler, Casey" , LSM , Jonathan Corbet , linux-doc@vger.kernel.org, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH security-next v3 14/29] LSM: Plumb visibility into optional "enabled" state In-Reply-To: <20180925001832.18322-15-keescook@chromium.org> Message-ID: References: <20180925001832.18322-1-keescook@chromium.org> <20180925001832.18322-15-keescook@chromium.org> User-Agent: Alpine 2.21 (LRH 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 24 Sep 2018, Kees Cook wrote: > In preparation for lifting the "is this LSM enabled?" logic out of the > individual LSMs, pass in any special enabled state tracking (as needed > for SELinux, AppArmor, and LoadPin). This should be an "int" to include > handling any future cases where "enabled" is exposed via sysctl which > has no "bool" type. > > Signed-off-by: Kees Cook > --- > include/linux/lsm_hooks.h | 1 + > security/apparmor/lsm.c | 5 +++-- > security/selinux/hooks.c | 1 + > 3 files changed, 5 insertions(+), 2 deletions(-) > > diff --git a/include/linux/lsm_hooks.h b/include/linux/lsm_hooks.h > index 5056f7374b3d..2a41e8e6f6e5 100644 > --- a/include/linux/lsm_hooks.h > +++ b/include/linux/lsm_hooks.h > @@ -2044,6 +2044,7 @@ extern void security_add_hooks(struct security_hook_list *hooks, int count, > struct lsm_info { > const char *name; /* Populated automatically. */ > unsigned long flags; /* Optional: flags describing LSM */ > + int *enabled; /* Optional: NULL means enabled. */ This seems potentially confusing. Perhaps initialize 'enabled' to a default int pointer, like: static int lsm_default_enabled = 1; Then, DEFINE_LSM(foobar) flags = LSM_FLAG_LEGACY_MAJOR, .enabled = &lsm_default_enabled, .init = foobar_init, END_LSM; > int (*init)(void); > }; > > diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c > index 4c5f63e9aeba..d03133a267f2 100644 > --- a/security/apparmor/lsm.c > +++ b/security/apparmor/lsm.c > @@ -1303,8 +1303,8 @@ bool aa_g_paranoid_load = true; > module_param_named(paranoid_load, aa_g_paranoid_load, aabool, S_IRUGO); > > /* Boot time disable flag */ > -static bool apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE; > -module_param_named(enabled, apparmor_enabled, bool, S_IRUGO); > +static int apparmor_enabled = CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE; > +module_param_named(enabled, apparmor_enabled, int, 0444); > > static int __init apparmor_enabled_setup(char *str) > { > @@ -1608,5 +1608,6 @@ static int __init apparmor_init(void) > > DEFINE_LSM(apparmor) > .flags = LSM_FLAG_LEGACY_MAJOR, > + .enabled = &apparmor_enabled, > .init = apparmor_init, > END_LSM; > diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c > index 615cf6498c0f..3f999ed98cfd 100644 > --- a/security/selinux/hooks.c > +++ b/security/selinux/hooks.c > @@ -7204,6 +7204,7 @@ void selinux_complete_init(void) > all processes and objects when they are created. */ > DEFINE_LSM(selinux) > .flags = LSM_FLAG_LEGACY_MAJOR, > + .enabled = &selinux_enabled, > .init = selinux_init, > END_LSM; > > -- James Morris