linux-coco.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH] virt: tdx-guest: Deprecate legacy IOCTL-based interface for quote generation
@ 2024-01-24  9:38 Nikolay Borisov
  2024-01-31  7:28 ` Nikolay Borisov
                   ` (2 more replies)
  0 siblings, 3 replies; 20+ messages in thread
From: Nikolay Borisov @ 2024-01-24  9:38 UTC (permalink / raw)
  To: linux-coco
  Cc: x86, dave.hansen, dan.j.williams, dionnaglaze,
	sathyanarayanan.kuppuswamy, Nikolay Borisov

IOCTL based interface was the natural choice for interacting with the
quote generation machine at a time when there wasn't anything better.
Fortunately, now we have a vendor-agnostic, configfs-based one which
obviates the need to have the IOCTL-based interface.

Gate the relevant code behind a Kconfig option, clearly marking it as
deprecated as well as introduce a runtime warning.

Signed-off-by: Nikolay Borisov <nik.borisov@suse.com>
---
 drivers/virt/coco/tdx-guest/Kconfig     |  9 +++++++++
 drivers/virt/coco/tdx-guest/tdx-guest.c | 13 +++++++++++++
 2 files changed, 22 insertions(+)

diff --git a/drivers/virt/coco/tdx-guest/Kconfig b/drivers/virt/coco/tdx-guest/Kconfig
index 22dd59e19431..0f1cfdfbbd28 100644
--- a/drivers/virt/coco/tdx-guest/Kconfig
+++ b/drivers/virt/coco/tdx-guest/Kconfig
@@ -9,3 +9,12 @@ config TDX_GUEST_DRIVER
 
 	  To compile this driver as module, choose M here. The module will
 	  be called tdx-guest.
+
+config TDX_GUEST_DRIVER_LEGACY_IOCTL
+	def_bool y
+	prompt "Enable legacy ioctl interface (DEPRECATED)"
+	depends on TDX_GUEST_DRIVER
+	help
+	  Enable the legacy IOCTL-based interface to get the TDX report. It's
+	  deprecated in favor of the configfs based one and will be removed
+	  in a future release.
diff --git a/drivers/virt/coco/tdx-guest/tdx-guest.c b/drivers/virt/coco/tdx-guest/tdx-guest.c
index 1253bf76b570..b8cea9486daf 100644
--- a/drivers/virt/coco/tdx-guest/tdx-guest.c
+++ b/drivers/virt/coco/tdx-guest/tdx-guest.c
@@ -66,6 +66,7 @@ static DEFINE_MUTEX(quote_lock);
  */
 static u32 getquote_timeout = 30;
 
+#ifdef CONFIG_TDX_GUEST_DRIVER_LEGACY_IOCTL
 static long tdx_get_report0(struct tdx_report_req __user *req)
 {
 	u8 *reportdata, *tdreport;
@@ -100,6 +101,7 @@ static long tdx_get_report0(struct tdx_report_req __user *req)
 
 	return ret;
 }
+#endif
 
 static void free_quote_buf(void *buf)
 {
@@ -249,6 +251,9 @@ static int tdx_report_new(struct tsm_report *report, void *data)
 	return ret;
 }
 
+
+
+#ifdef CONFIG_TDX_GUEST_DRIVER_LEGACY_IOCTL
 static long tdx_guest_ioctl(struct file *file, unsigned int cmd,
 			    unsigned long arg)
 {
@@ -271,6 +276,7 @@ static struct miscdevice tdx_misc_dev = {
 	.minor = MISC_DYNAMIC_MINOR,
 	.fops = &tdx_guest_fops,
 };
+#endif
 
 static const struct x86_cpu_id tdx_guest_ids[] = {
 	X86_MATCH_FEATURE(X86_FEATURE_TDX_GUEST, NULL),
@@ -290,9 +296,12 @@ static int __init tdx_guest_init(void)
 	if (!x86_match_cpu(tdx_guest_ids))
 		return -ENODEV;
 
+#ifdef CONFIG_TDX_GUEST_DRIVER_LEGACY_IOCTL
+	pr_info("Legacy IOCTL-based interface is deprecated and will be removed in a future release\n");
 	ret = misc_register(&tdx_misc_dev);
 	if (ret)
 		return ret;
+#endif
 
 	quote_data = alloc_quote_buf();
 	if (!quote_data) {
@@ -310,7 +319,9 @@ static int __init tdx_guest_init(void)
 free_quote:
 	free_quote_buf(quote_data);
 free_misc:
+#ifdef CONFIG_TDX_GUEST_DRIVER_LEGACY_IOCTL
 	misc_deregister(&tdx_misc_dev);
+#endif
 
 	return ret;
 }
@@ -320,7 +331,9 @@ static void __exit tdx_guest_exit(void)
 {
 	tsm_unregister(&tdx_tsm_ops);
 	free_quote_buf(quote_data);
+#ifdef CONFIG_TDX_GUEST_DRIVER_LEGACY_IOCTL
 	misc_deregister(&tdx_misc_dev);
+#endif
 }
 module_exit(tdx_guest_exit);
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2024-02-12 23:12 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-24  9:38 [PATCH] virt: tdx-guest: Deprecate legacy IOCTL-based interface for quote generation Nikolay Borisov
2024-01-31  7:28 ` Nikolay Borisov
2024-01-31 15:27   ` Dave Hansen
2024-01-31 18:18     ` Nikolay Borisov
2024-01-31 19:05       ` Dave Hansen
2024-02-01  4:14         ` Haitao Huang
2024-02-01  4:55           ` Dan Williams
2024-01-31  7:48 ` Kuppuswamy Sathyanarayanan
2024-01-31 19:50   ` Dan Williams
2024-01-31 19:56     ` Nikolay Borisov
2024-01-31 20:44     ` Kuppuswamy Sathyanarayanan
2024-01-31 21:00       ` Daniel P. Berrangé
2024-01-31 21:12         ` Dan Williams
2024-02-01  2:52           ` Kuppuswamy Sathyanarayanan
2024-02-01  8:15           ` Daniel P. Berrangé
2024-01-31 21:09       ` Dan Williams
2024-02-08 13:42         ` Mikko Ylinen
2024-02-09  2:23           ` Dan Middleton
2024-02-12 23:12             ` Dan Williams
2024-01-31 20:23 ` Dan Williams

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).