From patchwork Fri Nov 12 12:44:07 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 12616741 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 64885C433EF for ; Fri, 12 Nov 2021 12:44:48 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 02DB261029 for ; Fri, 12 Nov 2021 12:44:47 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 02DB261029 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id A65636B007D; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 9EFEC6B007B; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 754336B0081; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0100.hostedemail.com [216.40.44.100]) by kanga.kvack.org (Postfix) with ESMTP id 52B6D6B007D for ; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: from smtpin30.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 1E41018296D06 for ; Fri, 12 Nov 2021 12:44:45 +0000 (UTC) X-FDA: 78800247330.30.77FAECE Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by imf01.hostedemail.com (Postfix) with ESMTP id C26CC509267E for ; Fri, 12 Nov 2021 12:44:29 +0000 (UTC) Received: from fraeml714-chm.china.huawei.com (unknown [172.18.147.226]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4HrJ9D1rK1z67bFK; Fri, 12 Nov 2021 20:41:04 +0800 (CST) Received: from roberto-ThinkStation-P620.huawei.com (10.204.63.22) by fraeml714-chm.china.huawei.com (10.206.15.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 12 Nov 2021 13:44:40 +0100 From: Roberto Sassu To: , , , , , CC: , , , , , , Roberto Sassu Subject: [RFC][PATCH 1/5] fsverity: Introduce fsverity_get_file_digest() Date: Fri, 12 Nov 2021 13:44:07 +0100 Message-ID: <20211112124411.1948809-2-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211112124411.1948809-1-roberto.sassu@huawei.com> References: <20211112124411.1948809-1-roberto.sassu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.204.63.22] X-ClientProxiedBy: lhreml753-chm.china.huawei.com (10.201.108.203) To fraeml714-chm.china.huawei.com (10.206.15.33) X-CFilter-Loop: Reflected X-Rspamd-Server: rspam01 X-Rspamd-Queue-Id: C26CC509267E X-Stat-Signature: biyit59uy9xpye7zcr1q8gmusmzq8o6n Authentication-Results: imf01.hostedemail.com; dkim=none; spf=pass (imf01.hostedemail.com: domain of roberto.sassu@huawei.com designates 185.176.79.56 as permitted sender) smtp.mailfrom=roberto.sassu@huawei.com; dmarc=pass (policy=none) header.from=huawei.com X-HE-Tag: 1636721069-28968 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Since the fsverity_info structure is defined internally in fsverity, expose the fsverity file digest through the new function fsverity_get_file_digest(). Given that an fsverity file is guaranteed to be immutable, also the retrieved file digest is stable and won't change. Signed-off-by: Roberto Sassu --- fs/verity/open.c | 24 ++++++++++++++++++++++++ include/linux/fsverity.h | 10 ++++++++++ 2 files changed, 34 insertions(+) diff --git a/fs/verity/open.c b/fs/verity/open.c index 92df87f5fa38..9127c77c6539 100644 --- a/fs/verity/open.c +++ b/fs/verity/open.c @@ -218,6 +218,30 @@ void fsverity_free_info(struct fsverity_info *vi) kmem_cache_free(fsverity_info_cachep, vi); } +/* + * Copy the file digest and associated algorithm taken from the passed + * fsverity_info structure to the locations supplied by the caller. + * + * Return: the digest size on success, a negative value on error + */ +ssize_t fsverity_get_file_digest(struct fsverity_info *info, u8 *buf, + size_t bufsize, enum hash_algo *algo) +{ + enum hash_algo a; + + a = match_string(hash_algo_name, HASH_ALGO__LAST, + info->tree_params.hash_alg->name); + if (a < 0) + return a; + + if (bufsize < hash_digest_size[a]) + return -ERANGE; + + *algo = a; + memcpy(buf, info->file_digest, hash_digest_size[*algo]); + return hash_digest_size[*algo]; +} + static bool validate_fsverity_descriptor(struct inode *inode, const struct fsverity_descriptor *desc, size_t desc_size) diff --git a/include/linux/fsverity.h b/include/linux/fsverity.h index b568b3c7d095..877a7f609dd9 100644 --- a/include/linux/fsverity.h +++ b/include/linux/fsverity.h @@ -13,6 +13,7 @@ #include #include +#include /* Verity operations for filesystems */ struct fsverity_operations { @@ -137,6 +138,8 @@ int fsverity_ioctl_measure(struct file *filp, void __user *arg); int fsverity_file_open(struct inode *inode, struct file *filp); int fsverity_prepare_setattr(struct dentry *dentry, struct iattr *attr); void fsverity_cleanup_inode(struct inode *inode); +ssize_t fsverity_get_file_digest(struct fsverity_info *info, u8 *buf, + size_t bufsize, enum hash_algo *algo); /* read_metadata.c */ @@ -187,6 +190,13 @@ static inline void fsverity_cleanup_inode(struct inode *inode) { } +static inline ssize_t fsverity_get_file_digest(struct fsverity_info *info, + u8 *buf, size_t bufsize, + enum hash_algo *algo) +{ + return -EOPNOTSUPP; +} + /* read_metadata.c */ static inline int fsverity_ioctl_read_metadata(struct file *filp, From patchwork Fri Nov 12 12:44:08 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 12616743 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 284EEC433FE for ; Fri, 12 Nov 2021 12:44:50 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id D341760EE0 for ; Fri, 12 Nov 2021 12:44:49 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org D341760EE0 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id C62BC6B007B; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id AFFAD6B0081; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 9797B6B0080; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0134.hostedemail.com [216.40.44.134]) by kanga.kvack.org (Postfix) with ESMTP id 5D7976B007E for ; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: from smtpin21.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 0157379A66 for ; Fri, 12 Nov 2021 12:44:45 +0000 (UTC) X-FDA: 78800247330.21.57B9557 Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by imf18.hostedemail.com (Postfix) with ESMTP id 467B24002099 for ; Fri, 12 Nov 2021 12:44:44 +0000 (UTC) Received: from fraeml714-chm.china.huawei.com (unknown [172.18.147.207]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4HrJ7k6NSxz67bR7; Fri, 12 Nov 2021 20:39:46 +0800 (CST) Received: from roberto-ThinkStation-P620.huawei.com (10.204.63.22) by fraeml714-chm.china.huawei.com (10.206.15.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 12 Nov 2021 13:44:41 +0100 From: Roberto Sassu To: , , , , , CC: , , , , , , Roberto Sassu Subject: [RFC][PATCH 2/5] fsverity: Revalidate built-in signatures at file open Date: Fri, 12 Nov 2021 13:44:08 +0100 Message-ID: <20211112124411.1948809-3-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211112124411.1948809-1-roberto.sassu@huawei.com> References: <20211112124411.1948809-1-roberto.sassu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.204.63.22] X-ClientProxiedBy: lhreml753-chm.china.huawei.com (10.201.108.203) To fraeml714-chm.china.huawei.com (10.206.15.33) X-CFilter-Loop: Reflected X-Rspamd-Server: rspam05 X-Rspamd-Queue-Id: 467B24002099 X-Stat-Signature: eqt5y1fnrjiebmajwxocd1r6ct7okpaf Authentication-Results: imf18.hostedemail.com; dkim=none; dmarc=pass (policy=none) header.from=huawei.com; spf=pass (imf18.hostedemail.com: domain of roberto.sassu@huawei.com designates 185.176.79.56 as permitted sender) smtp.mailfrom=roberto.sassu@huawei.com X-HE-Tag: 1636721084-219660 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Fsverity signatures are validated only upon request by the user by setting the requirement through procfs or sysctl. However, signatures are validated only when the fsverity-related initialization is performed on the file. If the initialization happened while the signature requirement was disabled, the signature is not validated again. Keep track in the fsverity_info structure if the signature was validated and, based on that and on the signature requirement, perform signature validation at every call of fsverity_file_open() (the behavior remains the same if the requirement is not set). Finally, expose the information of whether the signature was validated through the new function fsverity_sig_validated(). It could be used for example by IPE to enforce the signature requirement in a mandatory way (the procfs/sysctl methods are discretionary). NOTE: revalidation is not performed if the keys in the fs-verity keyring changed; this would probably require a more sophisticated mechanism such as one based on sequence numbers. Signed-off-by: Roberto Sassu --- fs/verity/fsverity_private.h | 7 +++++-- fs/verity/open.c | 19 ++++++++++++++++++- fs/verity/signature.c | 6 ++++-- include/linux/fsverity.h | 6 ++++++ 4 files changed, 33 insertions(+), 5 deletions(-) diff --git a/fs/verity/fsverity_private.h b/fs/verity/fsverity_private.h index a7920434bae5..bcd5c0587e42 100644 --- a/fs/verity/fsverity_private.h +++ b/fs/verity/fsverity_private.h @@ -75,6 +75,7 @@ struct fsverity_info { u8 root_hash[FS_VERITY_MAX_DIGEST_SIZE]; u8 file_digest[FS_VERITY_MAX_DIGEST_SIZE]; const struct inode *inode; + bool sig_validated; }; /* Arbitrary limit to bound the kmalloc() size. Can be changed. */ @@ -138,14 +139,16 @@ void __init fsverity_exit_info_cache(void); /* signature.c */ +extern int fsverity_require_signatures; + #ifdef CONFIG_FS_VERITY_BUILTIN_SIGNATURES -int fsverity_verify_signature(const struct fsverity_info *vi, +int fsverity_verify_signature(struct fsverity_info *vi, const u8 *signature, size_t sig_size); int __init fsverity_init_signature(void); #else /* !CONFIG_FS_VERITY_BUILTIN_SIGNATURES */ static inline int -fsverity_verify_signature(const struct fsverity_info *vi, +fsverity_verify_signature(struct fsverity_info *vi, const u8 *signature, size_t sig_size) { return 0; diff --git a/fs/verity/open.c b/fs/verity/open.c index 9127c77c6539..22c6644b0282 100644 --- a/fs/verity/open.c +++ b/fs/verity/open.c @@ -242,6 +242,17 @@ ssize_t fsverity_get_file_digest(struct fsverity_info *info, u8 *buf, return hash_digest_size[*algo]; } +/* + * Provide the information of whether the fsverity built-in signature was + * validated. + * + * Return: true if the signature was validated, false if not + */ +bool fsverity_sig_validated(struct fsverity_info *info) +{ + return info->sig_validated; +} + static bool validate_fsverity_descriptor(struct inode *inode, const struct fsverity_descriptor *desc, size_t desc_size) @@ -333,13 +344,19 @@ static int ensure_verity_info(struct inode *inode) size_t desc_size; int err; - if (vi) + if (vi && (!fsverity_require_signatures || vi->sig_validated)) return 0; err = fsverity_get_descriptor(inode, &desc, &desc_size); if (err) return err; + if (vi) { + err = fsverity_verify_signature(vi, desc->signature, + le32_to_cpu(desc->sig_size)); + goto out_free_desc; + } + vi = fsverity_create_info(inode, desc, desc_size); if (IS_ERR(vi)) { err = PTR_ERR(vi); diff --git a/fs/verity/signature.c b/fs/verity/signature.c index 143a530a8008..dbe6b3b0431c 100644 --- a/fs/verity/signature.c +++ b/fs/verity/signature.c @@ -16,7 +16,7 @@ * /proc/sys/fs/verity/require_signatures * If 1, all verity files must have a valid builtin signature. */ -static int fsverity_require_signatures; +int fsverity_require_signatures; /* * Keyring that contains the trusted X.509 certificates. @@ -37,7 +37,7 @@ static struct key *fsverity_keyring; * * Return: 0 on success (signature valid or not required); -errno on failure */ -int fsverity_verify_signature(const struct fsverity_info *vi, +int fsverity_verify_signature(struct fsverity_info *vi, const u8 *signature, size_t sig_size) { const struct inode *inode = vi->inode; @@ -82,6 +82,8 @@ int fsverity_verify_signature(const struct fsverity_info *vi, return err; } + vi->sig_validated = true; + pr_debug("Valid signature for file digest %s:%*phN\n", hash_alg->name, hash_alg->digest_size, vi->file_digest); return 0; diff --git a/include/linux/fsverity.h b/include/linux/fsverity.h index 877a7f609dd9..85e52333d1b8 100644 --- a/include/linux/fsverity.h +++ b/include/linux/fsverity.h @@ -140,6 +140,7 @@ int fsverity_prepare_setattr(struct dentry *dentry, struct iattr *attr); void fsverity_cleanup_inode(struct inode *inode); ssize_t fsverity_get_file_digest(struct fsverity_info *info, u8 *buf, size_t bufsize, enum hash_algo *algo); +bool fsverity_sig_validated(struct fsverity_info *info); /* read_metadata.c */ @@ -197,6 +198,11 @@ static inline ssize_t fsverity_get_file_digest(struct fsverity_info *info, return -EOPNOTSUPP; } +static inline bool fsverity_sig_validated(struct fsverity_info *info) +{ + return false; +} + /* read_metadata.c */ static inline int fsverity_ioctl_read_metadata(struct file *filp, From patchwork Fri Nov 12 12:44:09 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 12616739 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B27EDC4332F for ; Fri, 12 Nov 2021 12:44:46 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 35A916108E for ; Fri, 12 Nov 2021 12:44:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 35A916108E Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 5E37E6B0078; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 50BCA6B007B; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 24CE66B007D; Fri, 12 Nov 2021 07:44:45 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0100.hostedemail.com [216.40.44.100]) by kanga.kvack.org (Postfix) with ESMTP id 13F696B0078 for ; Fri, 12 Nov 2021 07:44:45 -0500 (EST) Received: from smtpin27.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id CBE451830BAEC for ; Fri, 12 Nov 2021 12:44:44 +0000 (UTC) X-FDA: 78800247246.27.AF37B7F Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by imf23.hostedemail.com (Postfix) with ESMTP id 3F57E9000383 for ; Fri, 12 Nov 2021 12:44:28 +0000 (UTC) Received: from fraeml714-chm.china.huawei.com (unknown [172.18.147.200]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4HrJ9F4J73z67bVy; Fri, 12 Nov 2021 20:41:05 +0800 (CST) Received: from roberto-ThinkStation-P620.huawei.com (10.204.63.22) by fraeml714-chm.china.huawei.com (10.206.15.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 12 Nov 2021 13:44:42 +0100 From: Roberto Sassu To: , , , , , CC: , , , , , , Roberto Sassu Subject: [RFC][PATCH 3/5] fsverity: Do initialization earlier Date: Fri, 12 Nov 2021 13:44:09 +0100 Message-ID: <20211112124411.1948809-4-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211112124411.1948809-1-roberto.sassu@huawei.com> References: <20211112124411.1948809-1-roberto.sassu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.204.63.22] X-ClientProxiedBy: lhreml753-chm.china.huawei.com (10.201.108.203) To fraeml714-chm.china.huawei.com (10.206.15.33) X-CFilter-Loop: Reflected X-Rspamd-Server: rspam05 X-Rspamd-Queue-Id: 3F57E9000383 X-Stat-Signature: q13sbfxdjmwdqpzoywjhoxrse3b5siyk Authentication-Results: imf23.hostedemail.com; dkim=none; dmarc=pass (policy=none) header.from=huawei.com; spf=pass (imf23.hostedemail.com: domain of roberto.sassu@huawei.com designates 185.176.79.56 as permitted sender) smtp.mailfrom=roberto.sassu@huawei.com X-HE-Tag: 1636721068-277756 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Perform fsverity initialization with core_initcall(), to ensure that fsverity is available also very early during the boot process. More specifically, allow files in the rootfs filesystem (from an initial ram disk) to be protected with fsverity and be checked with LSMs such as IPE. Signed-off-by: Roberto Sassu --- fs/verity/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/verity/init.c b/fs/verity/init.c index c98b7016f446..910083919e1d 100644 --- a/fs/verity/init.c +++ b/fs/verity/init.c @@ -58,4 +58,4 @@ static int __init fsverity_init(void) fsverity_exit_info_cache(); return err; } -late_initcall(fsverity_init) +core_initcall(fsverity_init) From patchwork Fri Nov 12 12:44:10 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 12616777 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 92FE1C433F5 for ; Fri, 12 Nov 2021 13:00:33 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 6122561078 for ; Fri, 12 Nov 2021 13:00:33 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 6122561078 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id D384D6B0074; Fri, 12 Nov 2021 08:00:32 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id CE7496B0078; Fri, 12 Nov 2021 08:00:32 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id BFED76B007B; Fri, 12 Nov 2021 08:00:32 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0087.hostedemail.com [216.40.44.87]) by kanga.kvack.org (Postfix) with ESMTP id AE02E6B0074 for ; Fri, 12 Nov 2021 08:00:32 -0500 (EST) Received: from smtpin06.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 6E7BF18528A83 for ; Fri, 12 Nov 2021 13:00:32 +0000 (UTC) X-FDA: 78800287104.06.ADAD68A Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by imf16.hostedemail.com (Postfix) with ESMTP id D775BF0000B6 for ; Fri, 12 Nov 2021 13:00:18 +0000 (UTC) Received: from fraeml714-chm.china.huawei.com (unknown [172.18.147.226]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4HrJDx5BRjz67ZgZ; Fri, 12 Nov 2021 20:44:17 +0800 (CST) Received: from roberto-ThinkStation-P620.huawei.com (10.204.63.22) by fraeml714-chm.china.huawei.com (10.206.15.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 12 Nov 2021 13:44:42 +0100 From: Roberto Sassu To: , , , , , CC: , , , , , , Roberto Sassu Subject: [RFC][PATCH 4/5] shmem: Avoid segfault in shmem_read_mapping_page_gfp() Date: Fri, 12 Nov 2021 13:44:10 +0100 Message-ID: <20211112124411.1948809-5-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211112124411.1948809-1-roberto.sassu@huawei.com> References: <20211112124411.1948809-1-roberto.sassu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.204.63.22] X-ClientProxiedBy: lhreml753-chm.china.huawei.com (10.201.108.203) To fraeml714-chm.china.huawei.com (10.206.15.33) X-CFilter-Loop: Reflected Authentication-Results: imf16.hostedemail.com; dkim=none; spf=pass (imf16.hostedemail.com: domain of roberto.sassu@huawei.com designates 185.176.79.56 as permitted sender) smtp.mailfrom=roberto.sassu@huawei.com; dmarc=pass (policy=none) header.from=huawei.com X-Rspamd-Server: rspam04 X-Rspamd-Queue-Id: D775BF0000B6 X-Stat-Signature: 5gcxowjxduc33p3o96xkjb814rajrc9h X-HE-Tag: 1636722018-240846 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Check the hwpoison page flag only if the page is valid in shmem_read_mapping_page_gfp(). The PageHWPoison() macro tries to access the page flags and cannot work on an error pointer. Signed-off-by: Roberto Sassu --- mm/shmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/shmem.c b/mm/shmem.c index 23c91a8beb78..427863cbf0dc 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -4222,7 +4222,7 @@ struct page *shmem_read_mapping_page_gfp(struct address_space *mapping, else unlock_page(page); - if (PageHWPoison(page)) + if (!IS_ERR(page) && PageHWPoison(page)) page = ERR_PTR(-EIO); return page; From patchwork Fri Nov 12 12:44:11 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roberto Sassu X-Patchwork-Id: 12616745 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3BF98C43219 for ; Fri, 12 Nov 2021 12:46:07 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id CA0CC60EE0 for ; Fri, 12 Nov 2021 12:46:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org CA0CC60EE0 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 644576B0074; Fri, 12 Nov 2021 07:46:06 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 5F4386B0078; Fri, 12 Nov 2021 07:46:06 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 4BC5C6B007B; Fri, 12 Nov 2021 07:46:06 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0121.hostedemail.com [216.40.44.121]) by kanga.kvack.org (Postfix) with ESMTP id 394B36B0074 for ; Fri, 12 Nov 2021 07:46:06 -0500 (EST) Received: from smtpin01.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id EDF351828B5DB for ; Fri, 12 Nov 2021 12:46:05 +0000 (UTC) X-FDA: 78800250690.01.B1EBFBD Received: from frasgout.his.huawei.com (frasgout.his.huawei.com [185.176.79.56]) by imf05.hostedemail.com (Postfix) with ESMTP id DC1A2509265E for ; Fri, 12 Nov 2021 12:45:40 +0000 (UTC) Received: from fraeml714-chm.china.huawei.com (unknown [172.18.147.200]) by frasgout.his.huawei.com (SkyGuard) with ESMTP id 4HrJBm5xPgz67bN5; Fri, 12 Nov 2021 20:42:24 +0800 (CST) Received: from roberto-ThinkStation-P620.huawei.com (10.204.63.22) by fraeml714-chm.china.huawei.com (10.206.15.33) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.15; Fri, 12 Nov 2021 13:46:00 +0100 From: Roberto Sassu To: , , , , , CC: , , , , , , Roberto Sassu Subject: [RFC][PATCH 5/5] shmem: Add fsverity support Date: Fri, 12 Nov 2021 13:44:11 +0100 Message-ID: <20211112124411.1948809-6-roberto.sassu@huawei.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20211112124411.1948809-1-roberto.sassu@huawei.com> References: <20211112124411.1948809-1-roberto.sassu@huawei.com> MIME-Version: 1.0 X-Originating-IP: [10.204.63.22] X-ClientProxiedBy: lhreml753-chm.china.huawei.com (10.201.108.203) To fraeml714-chm.china.huawei.com (10.206.15.33) X-CFilter-Loop: Reflected X-Rspamd-Server: rspam02 X-Rspamd-Queue-Id: DC1A2509265E X-Stat-Signature: 5fpuw54ybpoa6ikx8x4mmd9uk1pr7nad Authentication-Results: imf05.hostedemail.com; dkim=none; dmarc=pass (policy=none) header.from=huawei.com; spf=pass (imf05.hostedemail.com: domain of roberto.sassu@huawei.com designates 185.176.79.56 as permitted sender) smtp.mailfrom=roberto.sassu@huawei.com X-HE-Tag: 1636721140-735555 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Make the necessary modifications to support fsverity in tmpfs. First, implement the fsverity operations (in a similar way of f2fs). These operations make use of shmem_read_mapping_page() instead of read_mapping_page() to handle the case where the page has been swapped out. The fsverity descriptor is placed at the end of the file and its location is stored in an xattr. Second, implement the ioctl operations to enable, measure and read fsverity metadata. Lastly, add calls to fsverity functions, to ensure that fsverity-relevant operations are checked and handled by fsverity (file open, attr set, inode evict). Fsverity support can be enabled through the kernel configuration and remains enabled by default for every tmpfs filesystem instantiated (there should be no overhead, unless fsverity is enabled for a file). Signed-off-by: Roberto Sassu --- Documentation/filesystems/fsverity.rst | 18 ++ MAINTAINERS | 1 + fs/Kconfig | 7 + fs/verity/enable.c | 6 +- include/linux/shmem_fs.h | 27 +++ mm/Makefile | 2 + mm/shmem.c | 69 ++++++- mm/shmem_verity.c | 267 +++++++++++++++++++++++++ 8 files changed, 394 insertions(+), 3 deletions(-) create mode 100644 mm/shmem_verity.c diff --git a/Documentation/filesystems/fsverity.rst b/Documentation/filesystems/fsverity.rst index 1d831e3cbcb3..71186cebf15d 100644 --- a/Documentation/filesystems/fsverity.rst +++ b/Documentation/filesystems/fsverity.rst @@ -533,6 +533,24 @@ Currently, f2fs verity only supports a Merkle tree block size of 4096. Also, f2fs doesn't support enabling verity on files that currently have atomic or volatile writes pending. +tmpfs +----- + +tmpfs supports fsverity since Linux v5.17. + +Fsverity support for tmpfs can be enabled at build time through the kernel +configuration option ``CONFIG_TMPFS_VERITY``. If enabled, it is also +automatically enabled at mount time for every tmpfs filesystem +instantiated. + +Like f2fs, tmpfs stores the verity metadata (Merkle tree and +fsverity_descriptor) past the end of the file, starting at the first +64K boundary beyond i_size. Also, like f2fs, it stores the fsverity +descriptor location in an xattr. + +Currently, tmpfs verity only supports the case where the Merkle tree +block size and page size are the same. + Implementation details ====================== diff --git a/MAINTAINERS b/MAINTAINERS index 9096c64d8d09..118cf9d58601 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -19137,6 +19137,7 @@ L: linux-mm@kvack.org S: Maintained F: include/linux/shmem_fs.h F: mm/shmem.c +F: mm/shmem_verity.c TOMOYO SECURITY MODULE M: Kentaro Takeda diff --git a/fs/Kconfig b/fs/Kconfig index a6313a969bc5..d67f7a1cdcb6 100644 --- a/fs/Kconfig +++ b/fs/Kconfig @@ -229,6 +229,13 @@ config TMPFS_INODE64 If unsure, say N. +config TMPFS_VERITY + bool "fsverity support for tmpfs (EXPERIMENTAL)" + depends on FS_VERITY && TMPFS && TMPFS_XATTR + + help + Enable fsverity protection for files in the tmpfs filesystem. + config ARCH_SUPPORTS_HUGETLBFS def_bool n diff --git a/fs/verity/enable.c b/fs/verity/enable.c index 60a4372aa4d7..9cd64cbe3579 100644 --- a/fs/verity/enable.c +++ b/fs/verity/enable.c @@ -13,6 +13,7 @@ #include #include #include +#include /* * Read a file data page for Merkle tree construction. Do aggressive readahead, @@ -31,7 +32,10 @@ static struct page *read_file_data_page(struct file *filp, pgoff_t index, else page_cache_sync_readahead(filp->f_mapping, ra, filp, index, remaining_pages); - page = read_mapping_page(filp->f_mapping, index, NULL); + if (shmem_file(filp)) + page = shmem_read_mapping_page(filp->f_mapping, index); + else + page = read_mapping_page(filp->f_mapping, index, NULL); if (IS_ERR(page)) return page; } diff --git a/include/linux/shmem_fs.h b/include/linux/shmem_fs.h index 166158b6e917..07b9a142c7d3 100644 --- a/include/linux/shmem_fs.h +++ b/include/linux/shmem_fs.h @@ -10,6 +10,9 @@ #include #include +#define SHMEM_VERITY_IN_PROGRESS 0x00000001 +#define SHMEM_XATTR_NAME_VERITY "v" + /* inode in-kernel data */ struct shmem_inode_info { @@ -44,6 +47,7 @@ struct shmem_sb_info { spinlock_t shrinklist_lock; /* Protects shrinklist */ struct list_head shrinklist; /* List of shinkable inodes */ unsigned long shrinklist_len; /* Length of shrinklist */ + bool verity; /* Fsverity enabled or not */ }; static inline struct shmem_inode_info *SHMEM_I(struct inode *inode) @@ -51,10 +55,33 @@ static inline struct shmem_inode_info *SHMEM_I(struct inode *inode) return container_of(inode, struct shmem_inode_info, vfs_inode); } +static inline bool shmem_verity_in_progress(struct inode *inode) +{ + struct shmem_inode_info *info = SHMEM_I(inode); + + return IS_ENABLED(CONFIG_FS_VERITY) && + (info->flags & SHMEM_VERITY_IN_PROGRESS); +} + +static inline void shmem_verity_set_in_progress(struct inode *inode) +{ + struct shmem_inode_info *info = SHMEM_I(inode); + + info->flags |= SHMEM_VERITY_IN_PROGRESS; +} + +static inline void shmem_verity_clear_in_progress(struct inode *inode) +{ + struct shmem_inode_info *info = SHMEM_I(inode); + + info->flags &= ~SHMEM_VERITY_IN_PROGRESS; +} + /* * Functions in mm/shmem.c called directly from elsewhere: */ extern const struct fs_parameter_spec shmem_fs_parameters[]; +extern const struct fsverity_operations shmem_verityops; extern int shmem_init(void); extern int shmem_init_fs_context(struct fs_context *fc); extern struct file *shmem_file_setup(const char *name, diff --git a/mm/Makefile b/mm/Makefile index d6c0042e3aa0..f15b48dbd235 100644 --- a/mm/Makefile +++ b/mm/Makefile @@ -54,6 +54,8 @@ obj-y := filemap.o mempool.o oom_kill.o fadvise.o \ interval_tree.o list_lru.o workingset.o \ debug.o gup.o mmap_lock.o $(mmu-y) +obj-$(CONFIG_TMPFS_VERITY) += shmem_verity.o + # Give 'page_alloc' its own module-parameter namespace page-alloc-y := page_alloc.o page-alloc-$(CONFIG_SHUFFLE_PAGE_ALLOCATOR) += shuffle.o diff --git a/mm/shmem.c b/mm/shmem.c index 427863cbf0dc..f36e1a493610 100644 --- a/mm/shmem.c +++ b/mm/shmem.c @@ -78,6 +78,7 @@ static struct vfsmount *shm_mnt; #include #include #include +#include #include @@ -1089,6 +1090,10 @@ static int shmem_setattr(struct user_namespace *mnt_userns, if (error) return error; + error = fsverity_prepare_setattr(dentry, attr); + if (error) + return error; + if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) { loff_t oldsize = inode->i_size; loff_t newsize = attr->ia_size; @@ -1156,6 +1161,7 @@ static void shmem_evict_inode(struct inode *inode) } } + fsverity_cleanup_inode(inode); simple_xattrs_free(&info->xattrs); WARN_ON(inode->i_blocks); shmem_free_inode(inode->i_sb); @@ -1827,7 +1833,8 @@ static int shmem_getpage_gfp(struct inode *inode, pgoff_t index, return -EFBIG; repeat: if (sgp <= SGP_CACHE && - ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode)) { + ((loff_t)index << PAGE_SHIFT) >= i_size_read(inode) && + !fsverity_active(inode) && !shmem_verity_in_progress(inode)) { return -EINVAL; } @@ -2485,7 +2492,7 @@ shmem_write_end(struct file *file, struct address_space *mapping, { struct inode *inode = mapping->host; - if (pos + copied > inode->i_size) + if (pos + copied > inode->i_size && !shmem_verity_in_progress(inode)) i_size_write(inode, pos + copied); if (!PageUptodate(page)) { @@ -2805,6 +2812,56 @@ static long shmem_fallocate(struct file *file, int mode, loff_t offset, return error; } +static bool shmem_sb_has_verity(struct inode *inode) +{ + return SHMEM_SB(inode->i_sb)->verity; +} + +static int shmem_ioc_enable_verity(struct file *filp, unsigned long arg) +{ + if (!shmem_sb_has_verity(file_inode(filp))) + return -EOPNOTSUPP; + + return fsverity_ioctl_enable(filp, (const void __user *)arg); +} + +static int shmem_ioc_measure_verity(struct file *filp, unsigned long arg) +{ + if (!shmem_sb_has_verity(file_inode(filp))) + return -EOPNOTSUPP; + + return fsverity_ioctl_measure(filp, (void __user *)arg); +} + +static int shmem_ioc_read_verity_metadata(struct file *filp, unsigned long arg) +{ + if (!shmem_sb_has_verity(file_inode(filp))) + return -EOPNOTSUPP; + + return fsverity_ioctl_read_metadata(filp, (const void __user *)arg); +} + +static long shmem_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) +{ + switch (cmd) { + case FS_IOC_ENABLE_VERITY: + return shmem_ioc_enable_verity(filp, arg); + case FS_IOC_MEASURE_VERITY: + return shmem_ioc_measure_verity(filp, arg); + case FS_IOC_READ_VERITY_METADATA: + return shmem_ioc_read_verity_metadata(filp, arg); + default: + return -EOPNOTSUPP; + } +} + +#ifdef CONFIG_TMPFS_VERITY +static int shmem_file_open(struct inode *inode, struct file *filp) +{ + return fsverity_file_open(inode, filp); +} +#endif + static int shmem_statfs(struct dentry *dentry, struct kstatfs *buf) { struct shmem_sb_info *sbinfo = SHMEM_SB(dentry->d_sb); @@ -3673,6 +3730,10 @@ static int shmem_fill_super(struct super_block *sb, struct fs_context *fc) } sb->s_export_op = &shmem_export_ops; sb->s_flags |= SB_NOSEC; +#ifdef CONFIG_TMPFS_VERITY + sb->s_vop = &shmem_verityops; + sbinfo->verity = true; +#endif #else sb->s_flags |= SB_NOUSER; #endif @@ -3825,6 +3886,10 @@ static const struct file_operations shmem_file_operations = { .splice_read = generic_file_splice_read, .splice_write = iter_file_splice_write, .fallocate = shmem_fallocate, + .unlocked_ioctl = shmem_ioctl, +#ifdef CONFIG_TMPFS_VERITY + .open = shmem_file_open, +#endif #endif }; diff --git a/mm/shmem_verity.c b/mm/shmem_verity.c new file mode 100644 index 000000000000..f5f5c7394dda --- /dev/null +++ b/mm/shmem_verity.c @@ -0,0 +1,267 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright 2019 Google LLC + * Copyright 2021 Huawei Technologies Duesseldorf GmbH + * + * Author: Roberto Sassu + */ + +/* + * Implementation of fsverity_operations for tmpfs. + * + * Like ext4, tmpfs stores the verity metadata (Merkle tree and + * fsverity_descriptor) past the end of the file, starting at the first 64K + * boundary beyond i_size. + * + * Using a 64K boundary rather than a 4K one keeps things ready for + * architectures with 64K pages, and it doesn't necessarily waste space on-disk + * since there can be a hole between i_size and the start of the Merkle tree. + */ + +#include +#include +#include +#include + +#define SHMEM_VERIFY_VER (1) + +static inline loff_t shmem_verity_metadata_pos(const struct inode *inode) +{ + return round_up(inode->i_size, 65536); +} + +/* + * Read some verity metadata from the inode. __vfs_read() can't be used because + * we need to read beyond i_size. + */ +static int pagecache_read(struct inode *inode, void *buf, size_t count, + loff_t pos) +{ + while (count) { + size_t n = min_t(size_t, count, + PAGE_SIZE - offset_in_page(pos)); + struct page *page; + void *addr; + + page = shmem_read_mapping_page(inode->i_mapping, + pos >> PAGE_SHIFT); + if (IS_ERR(page)) + return PTR_ERR(page); + + addr = kmap_atomic(page); + memcpy(buf, addr + offset_in_page(pos), n); + kunmap_atomic(addr); + + put_page(page); + + buf += n; + pos += n; + count -= n; + } + return 0; +} + +/* + * Write some verity metadata to the inode for FS_IOC_ENABLE_VERITY. + * kernel_write() can't be used because the file descriptor is readonly. + */ +static int pagecache_write(struct inode *inode, const void *buf, size_t count, + loff_t pos) +{ + if (pos + count > inode->i_sb->s_maxbytes) + return -EFBIG; + + while (count) { + size_t n = min_t(size_t, count, + PAGE_SIZE - offset_in_page(pos)); + struct page *page; + void *fsdata; + void *addr; + int res; + + res = pagecache_write_begin(NULL, inode->i_mapping, pos, n, 0, + &page, &fsdata); + if (res) + return res; + + addr = kmap_atomic(page); + memcpy(addr + offset_in_page(pos), buf, n); + kunmap_atomic(addr); + + res = pagecache_write_end(NULL, inode->i_mapping, pos, n, n, + page, fsdata); + if (res < 0) + return res; + if (res != n) + return -EIO; + + buf += n; + pos += n; + count -= n; + } + return 0; +} + +/* + * Format of tmpfs verity xattr. This points to the location of the verity + * descriptor within the file data rather than containing it (the code was taken + * from fs/f2fs/verity.c). + */ +struct fsverity_descriptor_location { + __le32 version; + __le32 size; + __le64 pos; +}; + +static int shmem_begin_enable_verity(struct file *filp) +{ + struct inode *inode = file_inode(filp); + int err; + + if (shmem_verity_in_progress(inode)) + return -EBUSY; + + /* + * Since the file was opened readonly, we have to initialize the quotas + * here and not rely on ->open() doing it. + */ + err = dquot_initialize(inode); + if (err) + return err; + + shmem_verity_set_in_progress(inode); + return 0; +} + +static int shmem_end_enable_verity(struct file *filp, const void *desc, + size_t desc_size, u64 merkle_tree_size) +{ + struct inode *inode = file_inode(filp); + struct shmem_inode_info *info = SHMEM_I(inode); + u64 desc_pos = shmem_verity_metadata_pos(inode) + merkle_tree_size; + struct fsverity_descriptor_location dloc = { + .version = cpu_to_le32(SHMEM_VERIFY_VER), + .size = cpu_to_le32(desc_size), + .pos = cpu_to_le64(desc_pos), + }; + int err = 0; + + /* + * If an error already occurred (which fs/verity/ signals by passing + * desc == NULL), then only clean-up is needed. + */ + if (desc == NULL) + goto cleanup; + + /* Append the verity descriptor. */ + err = pagecache_write(inode, desc, desc_size, desc_pos); + if (err) + goto cleanup; + + /* + * Write all pages (both data and verity metadata). Note that this must + * happen before clearing SHMEM_VERITY_IN_PROGRESS; otherwise pages + * beyond i_size won't be written properly. + */ + err = filemap_write_and_wait(inode->i_mapping); + if (err) + goto cleanup; + + /* Set the verity xattr. */ + err = simple_xattr_set(&info->xattrs, SHMEM_XATTR_NAME_VERITY, &dloc, + sizeof(dloc), XATTR_CREATE, NULL); + if (err) + goto cleanup; + + /* Finally, set the verity inode flag. */ + inode_set_flags(inode, S_VERITY, inode->i_flags | S_VERITY); + mark_inode_dirty_sync(inode); + + shmem_verity_clear_in_progress(inode); + return 0; + +cleanup: + /* + * Verity failed to be enabled, so clean up by truncating any verity + * metadata that was written beyond i_size (both from cache and from + * disk) and clearing FI_VERITY_IN_PROGRESS. + */ + shmem_truncate_range(inode, 0, inode->i_size); + shmem_verity_clear_in_progress(inode); + return err; +} + +static int shmem_get_verity_descriptor(struct inode *inode, void *buf, + size_t buf_size) +{ + struct fsverity_descriptor_location dloc; + struct shmem_inode_info *info = SHMEM_I(inode); + int res; + u32 size; + u64 pos; + + /* Get the descriptor location */ + res = simple_xattr_get(&info->xattrs, SHMEM_XATTR_NAME_VERITY, &dloc, + sizeof(dloc)); + if (res < 0 && res != -ERANGE) + return res; + if (res != sizeof(dloc) || + dloc.version != cpu_to_le32(SHMEM_VERIFY_VER)) { + pr_err("Unknown verity xattr format inode %lu\n", inode->i_ino); + return -EINVAL; + } + size = le32_to_cpu(dloc.size); + pos = le64_to_cpu(dloc.pos); + + /* Get the descriptor */ + if (pos + size < pos || pos + size > inode->i_sb->s_maxbytes || + pos < shmem_verity_metadata_pos(inode) || size > INT_MAX) { + pr_err("Invalid verity xattr for inode %lu\n", inode->i_ino); + return -EINVAL; + } + if (buf_size) { + if (size > buf_size) + return -ERANGE; + res = pagecache_read(inode, buf, size, pos); + if (res) + return res; + } + return size; +} + +static struct page *shmem_read_merkle_tree_page(struct inode *inode, + pgoff_t index, + unsigned long num_ra_pages) +{ + DEFINE_READAHEAD(ractl, NULL, NULL, inode->i_mapping, index); + struct page *page; + + index += shmem_verity_metadata_pos(inode) >> PAGE_SHIFT; + + page = find_get_page_flags(inode->i_mapping, index, FGP_ACCESSED); + if (!page || !PageUptodate(page)) { + if (page) + put_page(page); + else if (num_ra_pages > 1) + page_cache_ra_unbounded(&ractl, num_ra_pages, 0); + page = shmem_read_mapping_page(inode->i_mapping, index); + } + return page; +} + +static int shmem_write_merkle_tree_block(struct inode *inode, const void *buf, + u64 index, int log_blocksize) +{ + loff_t pos = shmem_verity_metadata_pos(inode) + + (index << log_blocksize); + + return pagecache_write(inode, buf, 1 << log_blocksize, pos); +} + +const struct fsverity_operations shmem_verityops = { + .begin_enable_verity = shmem_begin_enable_verity, + .end_enable_verity = shmem_end_enable_verity, + .get_verity_descriptor = shmem_get_verity_descriptor, + .read_merkle_tree_page = shmem_read_merkle_tree_page, + .write_merkle_tree_block = shmem_write_merkle_tree_block, +};