lkml.org 
[lkml]   [2022]   [May]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v3 00/21] TDX host kernel support
From
Date
On Wed, 2022-05-04 at 13:15 +1200, Kai Huang wrote:
> On Tue, 2022-05-03 at 17:25 -0700, Dave Hansen wrote:
> > On 5/3/22 16:59, Kai Huang wrote:
> > > Should be:
> > >
> > > // prevent racing with TDX module initialization */
> > > tdx_init_disable();
> > >
> > > if (tdx_module_initialized()) {
> > > if (new_memory_resource in TDMRs)
> > > // allow memory hot-add
> > > else
> > > // reject memory hot-add
> > > } else if (new_memory_resource in CMR) {
> > > // add new memory to TDX memory so it can be
> > > // included into TDMRs
> > >
> > > // allow memory hot-add
> > > }
> > > else
> > > // reject memory hot-add
> > >
> > > tdx_module_enable();
> > >
> > > And when platform doesn't TDX, always allow memory hot-add.
> >
> > I don't think it even needs to be *that* complicated.
> >
> > It could just be winner take all: if TDX is initialized first, don't
> > allow memory hotplug. If memory hotplug happens first, don't allow TDX
> > to be initialized.
> >
> > That's fine at least for a minimal patch set.
>
> OK. This should also work.
>
> We will need tdx_init_disable() which grabs the mutex to prevent TDX module
> initialization from running concurrently, and to disable TDX module
> initialization once for all.
>
>
> >
> > What you have up above is probably where you want to go eventually, but
> > it means doing things like augmenting the e820 since it's the single
> > source of truth for creating the TMDRs right now.
> >
>
> Yes. But in this case, I am thinking about probably we should switch from
> consulting e820 to consulting memblock. The advantage of using e820 is it's
> easy to include legacy PMEM as TDX memory, but the disadvantage is (as you can
> see in e820_for_each_mem() loop) I am actually merging contiguous different
> types of RAM entries in order to be consistent with the behavior of
> e820_memblock_setup(). This is not nice.
>
> If memory hot-add and TDX can only be one winner, legacy PMEM actually won't be
> used as TDX memory anyway now. The reason is TDX guest will very likely needing
> to use the new fd-based backend (see my reply in other emails), but not just
> some random backend. To me it's totally fine to not support using legacy PMEM
> directly as TD guest backend (and if we create a TD with real NVDIMM as backend
> using dax, the TD cannot be created anyway). Given we cannot kmem-hot-add
> legacy PMEM back as system RAM, to me it's pointless to include legacy PMEM into
> TDMRs.
>
> In this case, we can just create TDMRs based on memblock directly. One problem
> is memblock will be gone after kernel boots, but this can be solved either by
> keeping the memblock, or build the TDX memory early when memblock is still
> alive.
>
> Btw, eventually, as it's likely we need to support different source of TDX
> memory (CLX memory, etc), I think eventually we will need some data structures
> to represent TDX memory block and APIs to add those blocks to the whole TDX
> memory so those TDX memory ranges from different source can be added before
> initializing the TDX module.
>
> struct tdx_memblock {
> struct list_head list;
> phys_addr_t start;
> phys_addr_t end;
> int nid;
> ...
> };
>
> struct tdx_memory {
> struct list_head tmb_list;
> ...
> };
>
> int tdx_memory_add_memblock(start, end, nid, ...);
>
> And the TDMRs can be created based on 'struct tdx_memory'.
>
> For now, we only need to add memblock to TDX memory.
>
> Any comments?
>

Hi Dave,

Sorry to ping (trying to close this).

Given we don't need to consider kmem-hot-add legacy PMEM after TDX module
initialization, I think for now it's totally fine to exclude legacy PMEMs from
TDMRs. The worst case is when someone tries to use them as TD guest backend
directly, the TD will fail to create. IMO it's acceptable, as it is supposedly
that no one should just use some random backend to run TD.

I think w/o needing to include legacy PMEM, it's better to get all TDX memory
blocks based on memblock, but not e820. The pages managed by page allocator are
from memblock anyway (w/o those from memory hotplug).

And I also think it makes more sense to introduce 'tdx_memblock' and
'tdx_memory' data structures to gather all TDX memory blocks during boot when
memblock is still alive. When TDX module is initialized during runtime, TDMRs
can be created based on the 'struct tdx_memory' which contains all TDX memory
blocks we gathered based on memblock during boot. This is also more flexible to
support other TDX memory from other sources such as CLX memory in the future.

Please let me know if you have any objection? Thanks!

--
Thanks,
-Kai


\
 
 \ /
  Last update: 2022-05-05 11:56    [W:0.592 / U:2.620 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site