From: Lakshmi Ramasubramanian <nramas@linux.microsoft.com>
To: Casey Schaufler <casey@schaufler-ca.com>,
Mimi Zohar <zohar@linux.ibm.com>,
Stephen Smalley <stephen.smalley.work@gmail.com>
Cc: Tyler Hicks <tyhicks@linux.microsoft.com>,
tusharsu@linux.microsoft.com, sashal@kernel.org,
James Morris <jmorris@namei.org>,
linux-integrity@vger.kernel.org,
SElinux list <selinux@vger.kernel.org>,
LSM List <linux-security-module@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
paul Moore <paul@paul-moore.com>
Subject: Re: [PATCH 2/2] SELinux: Measure state and hash of policy using IMA
Date: Mon, 17 Aug 2020 15:33:15 -0700 [thread overview]
Message-ID: <089ca24d-863b-ca84-4859-d2d6e4f09b4c@linux.microsoft.com> (raw)
In-Reply-To: <57f972a7-26f1-3ac7-4001-54c0bc7e12a8@schaufler-ca.com>
On 8/17/20 3:00 PM, Casey Schaufler wrote:
> On 8/17/2020 2:31 PM, Mimi Zohar wrote:
>> On Thu, 2020-08-13 at 14:13 -0400, Stephen Smalley wrote:
>>> On Thu, Aug 13, 2020 at 2:03 PM Lakshmi Ramasubramanian
>>> <nramas@linux.microsoft.com> wrote:
>>>> On 8/13/20 10:58 AM, Stephen Smalley wrote:
>>>>> On Thu, Aug 13, 2020 at 1:52 PM Lakshmi Ramasubramanian
>>>>> <nramas@linux.microsoft.com> wrote:
>>>>>> On 8/13/20 10:42 AM, Stephen Smalley wrote:
>>>>>>
>>>>>>>> diff --git a/security/selinux/measure.c b/security/selinux/measure.c
>>>>>>>> new file mode 100644
>>>>>>>> index 000000000000..f21b7de4e2ae
>>>>>>>> --- /dev/null
>>>>>>>> +++ b/security/selinux/measure.c
>>>>>>>> @@ -0,0 +1,204 @@
>>>>>>>> +static int selinux_hash_buffer(void *buf, size_t buf_len,
>>>>>>>> + void **buf_hash, int *buf_hash_len)
>>>>>>>> +{
>>>>>>>> + struct crypto_shash *tfm;
>>>>>>>> + struct shash_desc *desc = NULL;
>>>>>>>> + void *digest = NULL;
>>>>>>>> + int desc_size;
>>>>>>>> + int digest_size;
>>>>>>>> + int ret = 0;
>>>>>>>> +
>>>>>>>> + tfm = crypto_alloc_shash("sha256", 0, 0);
>>>>>>>> + if (IS_ERR(tfm))
>>>>>>>> + return PTR_ERR(tfm);
>>>>>>> Can we make the algorithm selectable via kernel parameter and/or writing
>>>>>>> to a new selinuxfs node?
>>>>>> I can add a kernel parameter to select this hash algorithm.
>>>>> Also can we provide a Kconfig option for the default value like IMA does?
>>>>>
>>>> Would we need both - Kconfig and kernel param?
>>>>
>>>> The other option is to provide an IMA function to return the current
>>>> hash algorithm used for measurement. That way a consistent hash
>>>> algorithm can be employed by both IMA and the callers. Would that be better?
>>> This is why I preferred just passing the serialized policy buffer to
>>> IMA and letting it handle the hashing. But apparently that approach
>>> wouldn't fly. IMA appears to support both a Kconfig option for
>>> selecting a default algorithm and a kernel parameter for overriding
>>> it. I assume the idea is that the distros can pick a reasonable
>>> default and then the end users can override that if they have specific
>>> requirements. I'd want the same for SELinux. If IMA is willing to
>>> export its hash algorithm to external components, then I'm willing to
>>> reuse that but not sure if that's a layering violation.
>> With the new ima_measure_critical_data() hook, I agree with you and
>> Casey it doesn't make sense for each caller to have to write their own
>> function. Casey suggested exporting IMA's hash function or defining a
>> new common hash function. There's nothing specific to IMA.
>
> Except that no one is going to use the function unless they're
> doing an IMA operation.
Can we do the following instead:
In ima_measure_critical_data() IMA hook, we can add another param for
the caller to indicate whether
=> The contents of "buf" needs to be measured
OR
=> Hash of the contents of "buf" needs to be measured.
This way IMA doesn't need to export any new function to meet the hashing
requirement.
-lakshmi
>
>> Should
>> the common hash function be prefixed with "security_"?
>
> Yuck. That prefix is for interfaces that are exported outside the
> security sub-system. We're talking about a function that is provided
> for use within the security sub-system, but not for any one particular
> security module or non-module feature. We're currently using the lsm_
> prefix for interfaces used within the security subsystem, so I suggest
> lsm_hash_brown_potatoes() might be the way to go.
>
>>
>> Like when we add a new security hook call, the new LSM call is separate
>> from any other change. Please break up this patch with the SELinux
>> specific pieces separated from the ima_measure_critical_data() call as
>> much as possible.
>>
next prev parent reply other threads:[~2020-08-17 22:33 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-13 17:07 [PATCH 0/2] SELinux: Measure state and hash of policy using IMA Lakshmi Ramasubramanian
2020-08-13 17:07 ` [PATCH 1/2] IMA: Handle early boot data measurement Lakshmi Ramasubramanian
2020-08-13 17:07 ` [PATCH 2/2] SELinux: Measure state and hash of policy using IMA Lakshmi Ramasubramanian
2020-08-13 17:42 ` Stephen Smalley
2020-08-13 17:52 ` Lakshmi Ramasubramanian
2020-08-13 17:58 ` Stephen Smalley
2020-08-13 18:03 ` Lakshmi Ramasubramanian
2020-08-13 18:13 ` Stephen Smalley
2020-08-17 21:31 ` Mimi Zohar
2020-08-17 22:00 ` Casey Schaufler
2020-08-17 22:33 ` Lakshmi Ramasubramanian [this message]
2020-08-17 23:11 ` Mimi Zohar
2020-08-17 23:20 ` Lakshmi Ramasubramanian
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=089ca24d-863b-ca84-4859-d2d6e4f09b4c@linux.microsoft.com \
--to=nramas@linux.microsoft.com \
--cc=casey@schaufler-ca.com \
--cc=jmorris@namei.org \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=paul@paul-moore.com \
--cc=sashal@kernel.org \
--cc=selinux@vger.kernel.org \
--cc=stephen.smalley.work@gmail.com \
--cc=tusharsu@linux.microsoft.com \
--cc=tyhicks@linux.microsoft.com \
--cc=zohar@linux.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox