From: Mimi Zohar <zohar@linux.ibm.com>
To: GUO Zihua <guozihua@huawei.com>, linux-integrity@vger.kernel.org
Cc: dmitry.kasatkin@gmail.com, roberto.sassu@huawei.com,
linux-security-module@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] ima: remove the IMA_TEMPLATE Kconfig option
Date: Wed, 06 Apr 2022 08:08:52 -0400 [thread overview]
Message-ID: <35c38676a8b464a0fb7e4842de5108e08cb53380.camel@linux.ibm.com> (raw)
In-Reply-To: <20220406061624.173584-1-guozihua@huawei.com>
On Wed, 2022-04-06 at 14:16 +0800, GUO Zihua wrote:
> It is discovered thatO allowing template "ima" as the compiled default
> would cause the following issue: the boot command line option
> "ima_hash=" must be behind "ima_template=", otherwise "ima_hash=" might
> be rejected.
The format of a proper patch description describes the current status,
provides a succinct problem description, followed by the solution.
The original 'ima' measurement list template contains a hash, defined
as 20 bytes, and a null terminated pathname, limited to 255
characters. Other measurement list templates permit both larger hashes
and longer pathnames. When the "ima" template is configured as the
default, a new measurement list template (ima_template=) must be
specified before specifying a larger hash algorithm (ima_hash=) on the
boot command line.
To avoid this boot command line ordering issue, remove the legacy "ima"
template configuration option, allowing it to still be specified on the
boot command line.
>
> The root cause of this issue is that during the processing of ima_hash,
> we would try to check whether the hash algorithm is compatible with the
> template. If the template is not set at the moment we do the check, we
> check the algorithm against the compiled default template. If the
> complied default template is "ima", then we reject any hash algorithm
> other than sha1 and md5.
>
> For example, if the compiled default template is "ima", and the default
> algorithm is sha1 (which is the current default). In the cmdline, we put
> in "ima_hash=sha256 ima_template=ima-ng". The expected behavior would be
> that ima starts with ima-ng as the template and sha256 as the hash
> algorithm. However, during the processing of "ima_hash=",
> "ima_template=" has not been processed yet, and hash_setup would check
> the configured hash algorithm against the compiled default: ima, and
> reject sha256. So at the end, the hash algorithm that is actually used
> will be sha1.
>
> With template "ima" removed from the compiled default, we ensure that
> the default tempalte would at least be "ima-ng" which allows for
> basically any hash algorithm. Users who needs to use "ima" template
> could still do it by specifying "ima_template=ima" in boot command line.
>
> This change would not break the algorithm compatibility checking for
> IMA.
>
> Fixes: 4286587dccd43 ("ima: add Kconfig default measurement list template")
> Signed-off-by: GUO Zihua <guozihua@huawei.com>
> ---
> security/integrity/ima/Kconfig | 22 +++++++++-------------
> 1 file changed, 9 insertions(+), 13 deletions(-)
>
> diff --git a/security/integrity/ima/Kconfig b/security/integrity/ima/Kconfig
> index f3a9cc201c8c..f392cac7a7d1 100644
> --- a/security/integrity/ima/Kconfig
> +++ b/security/integrity/ima/Kconfig
> @@ -65,14 +65,11 @@ choice
> help
> Select the default IMA measurement template.
>
> - The original 'ima' measurement list template contains a
> - hash, defined as 20 bytes, and a null terminated pathname,
> - limited to 255 characters. The 'ima-ng' measurement list
> - template permits both larger hash digests and longer
> - pathnames.
> -
> - config IMA_TEMPLATE
> - bool "ima"
> + The 'ima-ng' measurement list template permits various hash
> + digests and long pathnames. The compiled default template
> + can be overwritten using the kernel command line
> + 'ima_template=' option.
> +
Other than perhaps changing "contains" to "contained", there's no
reason for changing the text. Adding an additional line is fine - The
configured default template can be replaced by specifying
"ima_template=" on the boot command line.
> config IMA_NG_TEMPLATE
> bool "ima-ng (default)"
> config IMA_SIG_TEMPLATE
> @@ -82,7 +79,6 @@ endchoice
> config IMA_DEFAULT_TEMPLATE
> string
> depends on IMA
> - default "ima" if IMA_TEMPLATE
> default "ima-ng" if IMA_NG_TEMPLATE
> default "ima-sig" if IMA_SIG_TEMPLATE
>
> @@ -102,19 +98,19 @@ choice
>
> config IMA_DEFAULT_HASH_SHA256
> bool "SHA256"
> - depends on CRYPTO_SHA256=y && !IMA_TEMPLATE
> + depends on CRYPTO_SHA256=y
>
> config IMA_DEFAULT_HASH_SHA512
> bool "SHA512"
> - depends on CRYPTO_SHA512=y && !IMA_TEMPLATE
> + depends on CRYPTO_SHA512=y
>
> config IMA_DEFAULT_HASH_WP512
> bool "WP512"
> - depends on CRYPTO_WP512=y && !IMA_TEMPLATE
> + depends on CRYPTO_WP512=y
>
> config IMA_DEFAULT_HASH_SM3
> bool "SM3"
> - depends on CRYPTO_SM3=y && !IMA_TEMPLATE
> + depends on CRYPTO_SM3=y
> endchoice
>
> config IMA_DEFAULT_HASH
next prev parent reply other threads:[~2022-04-06 15:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-06 6:16 GUO Zihua
2022-04-06 12:08 ` Mimi Zohar [this message]
2022-04-07 2:18 ` Guozihua (Scott)
-- strict thread matches above, loose matches on Subject: below --
2022-04-06 3:32 GUO Zihua
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=35c38676a8b464a0fb7e4842de5108e08cb53380.camel@linux.ibm.com \
--to=zohar@linux.ibm.com \
--cc=dmitry.kasatkin@gmail.com \
--cc=guozihua@huawei.com \
--cc=linux-integrity@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-security-module@vger.kernel.org \
--cc=roberto.sassu@huawei.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
all inboxes | Powered by JetHome®