linux-coco.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH v7 0/7] configfs-tsm: Attestation Report ABI
@ 2023-10-20  1:16 Dan Williams
  2023-10-20  1:16 ` [PATCH v7 1/7] virt: sevguest: Fix passing a stack buffer as a scatterlist target Dan Williams
                   ` (6 more replies)
  0 siblings, 7 replies; 16+ messages in thread
From: Dan Williams @ 2023-10-20  1:16 UTC (permalink / raw)
  To: linux-coco
  Cc: Kuppuswamy Sathyanarayanan, Erdem Aktas, Peter Zijlstra,
	Tom Lendacky, Peter Gonda, Borislav Petkov, Dionna Amalie Glaze,
	Jeremi Piotrowski, Thomas Gleixner, Samuel Ortiz, Dionna Glaze,
	Pankaj Gupta, Greg Kroah-Hartman, Alexey Kardashevskiy,
	Andrew Morton, James Bottomley, dave.hansen, x86

Changes since v6 [1]:
- s/sev-guest/sev_guest/ in Documentation (Alexey)
- s/tdx-guest/tdx_guest/ in Documentation (Alexey)
- Check for ops registration in tsm_report_read() (Alexey)
- Reorder declaration of tsm_report_extra_attr and
  tsm_report_extra_bin_attrs to make it clear they are supersets of
  their "non-extra" versions (Alexey)
- s/ext/extra/ (Alexey)
- Move tsm_report_group declaration closer to its usage (Alexey)
- Convert from int to unsigned int (multiple locations) (Alexey)
- Drop device.h include (Alexey)
- Move SNP_REPORT_INVALID_{PARAM,KEY} definitions to sev_ret_code values
  (Alexey)
- Use guid_is_null() and explicit offset and length checks to detect
  empty entries (Alexey)
- Replace magic number 64 with a new "SNP_REPORT_USER_DATA_SIZE" name
  (Alexey)
- Add warning message for suspicious cases where the certificate table
  appears malformed (Alexey)

[1]: http://lore.kernel.org/r/169716323436.984874.9170967990536970455.stgit@dwillia2-xfh.jf.intel.com

---

Merge notes: The feedback has reached a point where the big picture
changes have been made and the last round was into more form and style
cleanups. As for merging I leave it for Dave and Boris to comment. I
am open to sending a pull request, just let me know.

Much thanks to Alexey and Peter for verifying that the certificate table
is being correctly conveyed through the @auxblob attribute, and for all
the review from everyone. I smoke tested these again after the cleanups.

---

Dan Williams (6):
      virt: sevguest: Fix passing a stack buffer as a scatterlist target
      virt: coco: Add a coco/Makefile and coco/Kconfig
      configfs-tsm: Introduce a shared ABI for attestation reports
      virt: sevguest: Prep for kernel internal get_ext_report()
      mm/slab: Add __free() support for kvfree
      virt: sevguest: Add TSM_REPORTS support for SNP_GET_EXT_REPORT

Kuppuswamy Sathyanarayanan (1):
      virt: tdx-guest: Add Quote generation support using TSM_REPORTS


 Documentation/ABI/testing/configfs-tsm  |   82 ++++++
 MAINTAINERS                             |    8 +
 arch/x86/coco/tdx/tdx.c                 |   21 ++
 arch/x86/include/asm/shared/tdx.h       |    1 
 arch/x86/include/asm/tdx.h              |    2 
 drivers/virt/Kconfig                    |    6 
 drivers/virt/Makefile                   |    4 
 drivers/virt/coco/Kconfig               |   14 +
 drivers/virt/coco/Makefile              |    8 +
 drivers/virt/coco/sev-guest/Kconfig     |    1 
 drivers/virt/coco/sev-guest/sev-guest.c |  214 ++++++++++++++--
 drivers/virt/coco/tdx-guest/Kconfig     |    1 
 drivers/virt/coco/tdx-guest/tdx-guest.c |  229 +++++++++++++++++
 drivers/virt/coco/tsm.c                 |  425 +++++++++++++++++++++++++++++++
 include/linux/slab.h                    |    2 
 include/linux/tsm.h                     |   69 +++++
 include/uapi/linux/psp-sev.h            |    1 
 include/uapi/linux/sev-guest.h          |    4 
 18 files changed, 1055 insertions(+), 37 deletions(-)
 create mode 100644 Documentation/ABI/testing/configfs-tsm
 create mode 100644 drivers/virt/coco/Kconfig
 create mode 100644 drivers/virt/coco/Makefile
 create mode 100644 drivers/virt/coco/tsm.c
 create mode 100644 include/linux/tsm.h

base-commit: 6465e260f48790807eef06b583b38ca9789b6072

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

end of thread, other threads:[~2024-01-09  2:13 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-20  1:16 [PATCH v7 0/7] configfs-tsm: Attestation Report ABI Dan Williams
2023-10-20  1:16 ` [PATCH v7 1/7] virt: sevguest: Fix passing a stack buffer as a scatterlist target Dan Williams
2023-10-20  1:16 ` [PATCH v7 2/7] virt: coco: Add a coco/Makefile and coco/Kconfig Dan Williams
2023-10-20  1:16 ` [PATCH v7 3/7] configfs-tsm: Introduce a shared ABI for attestation reports Dan Williams
2023-10-25  4:14   ` Qinkun Bao
2023-10-25 20:06     ` Dan Williams
2023-10-27  1:30       ` Chong Cai
2023-10-20  1:16 ` [PATCH v7 4/7] virt: sevguest: Prep for kernel internal get_ext_report() Dan Williams
2023-10-20  1:16 ` [PATCH v7 5/7] mm/slab: Add __free() support for kvfree Dan Williams
2023-10-20  1:17 ` [PATCH v7 6/7] virt: sevguest: Add TSM_REPORTS support for SNP_GET_EXT_REPORT Dan Williams
2023-10-20  3:25   ` Alexey Kardashevskiy
2023-10-20  1:17 ` [PATCH v7 7/7] virt: tdx-guest: Add Quote generation support using TSM_REPORTS Dan Williams
2023-10-24 17:08   ` Dan Williams
2023-12-21  1:50   ` Xiaoyao Li
2024-01-08  2:55     ` Kuppuswamy Sathyanarayanan
2024-01-09  2:13       ` Xiaoyao Li

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