linux-coco.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: "Huang, Kai" <kai.huang@intel.com>
To: "Williams, Dan J" <dan.j.williams@intel.com>,
	"linux-coco@lists.linux.dev" <linux-coco@lists.linux.dev>
Cc: "steven.price@arm.com" <steven.price@arm.com>,
	"bp@alien8.de" <bp@alien8.de>,
	"suzuki.poulose@arm.com" <suzuki.poulose@arm.com>,
	"sami.mujawar@arm.com" <sami.mujawar@arm.com>,
	"x86@kernel.org" <x86@kernel.org>,
	"Xing, Cedric" <cedric.xing@intel.com>,
	"thomas.lendacky@amd.com" <thomas.lendacky@amd.com>,
	"sathyanarayanan.kuppuswamy@linux.intel.com"
	<sathyanarayanan.kuppuswamy@linux.intel.com>,
	"stable@vger.kernel.org" <stable@vger.kernel.org>
Subject: Re: [PATCH] configfs-tsm-report: Fix NULL dereference of tsm_ops
Date: Tue, 29 Apr 2025 00:42:34 +0000	[thread overview]
Message-ID: <2872223857deef45c432d4b11f0a94b98fe21a80.camel@intel.com> (raw)
In-Reply-To: <174544207062.2555330.2729112107050724843.stgit@dwillia2-xfh.jf.intel.com>

On Wed, 2025-04-23 at 14:01 -0700, Dan Williams wrote:
> Unlike sysfs, the lifetime of configfs objects is controlled by
> userspace. There is no mechanism for the kernel to find and delete all
> created config-items. Instead, the configfs-tsm-report mechanism has an
> expectation that tsm_unregister() can happen at any time and cause
> established config-item access to start failing.
> 
> That expectation is not fully satisfied. While tsm_report_read(),
> tsm_report_{is,is_bin}_visible(), and tsm_report_make_item() safely fail
> if tsm_ops have been unregistered, tsm_report_privlevel_store()
> tsm_report_provider_show() fail to check for ops registration. Add the
> missing checks for tsm_ops having been removed.
> 
> Now, in supporting the ability for tsm_unregister() to always succeed,
> it leaves the problem of what to do with lingering config-items. The
> expectation is that the admin that arranges for the ->remove() (unbind)
> of the ${tsm_arch}-guest driver is also responsible for deletion of all
> open config-items. Until that deletion happens, ->probe() (reload /
> bind) of the ${tsm_arch}-guest driver fails.
> 
> This allows for emergency shutdown / revocation of attestation
> interfaces, and requires coordinated restart.

Still, is it better to print some message in tsm_unregister() to tell that some
items have not been deleted?

> 
> Fixes: 70e6f7e2b985 ("configfs-tsm: Introduce a shared ABI for attestation reports")
> Cc: stable@vger.kernel.org
> Cc: Suzuki K Poulose <suzuki.poulose@arm.com>
> Cc: Steven Price <steven.price@arm.com>
> Cc: Sami Mujawar <sami.mujawar@arm.com>
> Cc: Borislav Petkov (AMD) <bp@alien8.de>
> Cc: Tom Lendacky <thomas.lendacky@amd.com>
> Cc: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
> Reported-by: Cedric Xing <cedric.xing@intel.com>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>

Reviewed-by: Kai Huang <kai.huang@intel.com>

> ---
>  drivers/virt/coco/tsm.c |   26 +++++++++++++++++++++++++-
>  1 file changed, 25 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/virt/coco/tsm.c b/drivers/virt/coco/tsm.c
> index 9432d4e303f1..096f4f7c0c11 100644
> --- a/drivers/virt/coco/tsm.c
> +++ b/drivers/virt/coco/tsm.c
> @@ -15,6 +15,7 @@
>  static struct tsm_provider {
>  	const struct tsm_ops *ops;
>  	void *data;
> +	atomic_t count;
>  } provider;
>  static DECLARE_RWSEM(tsm_rwsem);
>  
> @@ -92,6 +93,10 @@ static ssize_t tsm_report_privlevel_store(struct config_item *cfg,
>  	if (rc)
>  		return rc;
>  
> +	guard(rwsem_write)(&tsm_rwsem);
> +	if (!provider.ops)
> +		return -ENXIO;

A minor thing:

I see tsm_report_read() returns -ENOTTY in the similar case:

static ssize_t tsm_report_read(struct tsm_report *report, void *buf,           
                               size_t count, enum tsm_data_select select)      
{       
	...
        
        /* slow path, report may need to be regenerated... */                  
        guard(rwsem_write)(&tsm_rwsem);                                        
        ops = provider.ops;                                                    
        if (!ops)                                                              
                return -ENOTTY;

Should it be changed to -ENXIO for consistency?


  parent reply	other threads:[~2025-04-29  0:42 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-23 21:01 [PATCH] configfs-tsm-report: Fix NULL dereference of tsm_ops Dan Williams
2025-04-24  2:35 ` Sathyanarayanan Kuppuswamy
2025-04-24  3:07   ` Dan Williams
2025-04-24 14:10     ` Sathyanarayanan Kuppuswamy
2025-04-29  0:42 ` Huang, Kai [this message]
2025-04-29  1:21   ` Dan Williams
2025-04-30 20:33 ` [PATCH v2] " Dan Williams

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=2872223857deef45c432d4b11f0a94b98fe21a80.camel@intel.com \
    --to=kai.huang@intel.com \
    --cc=bp@alien8.de \
    --cc=cedric.xing@intel.com \
    --cc=dan.j.williams@intel.com \
    --cc=linux-coco@lists.linux.dev \
    --cc=sami.mujawar@arm.com \
    --cc=sathyanarayanan.kuppuswamy@linux.intel.com \
    --cc=stable@vger.kernel.org \
    --cc=steven.price@arm.com \
    --cc=suzuki.poulose@arm.com \
    --cc=thomas.lendacky@amd.com \
    --cc=x86@kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).