lkml.org 
[lkml]   [2022]   [Jul]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    SubjectRe: [PATCH Part2 v6 05/49] x86/sev: Add RMP entry lookup helpers
    On Mon, Jun 20, 2022 at 11:02:33PM +0000, Ashish Kalra wrote:
    > diff --git a/arch/x86/kernel/sev.c b/arch/x86/kernel/sev.c
    > index 25c7feb367f6..59e7ec6b0326 100644
    > --- a/arch/x86/kernel/sev.c
    > +++ b/arch/x86/kernel/sev.c
    > @@ -65,6 +65,8 @@
    > * bookkeeping, the range need to be added during the RMP entry lookup.
    > */
    > #define RMPTABLE_CPU_BOOKKEEPING_SZ 0x4000
    > +#define RMPENTRY_SHIFT 8
    > +#define rmptable_page_offset(x) (RMPTABLE_CPU_BOOKKEEPING_SZ + (((unsigned long)x) >> RMPENTRY_SHIFT))
    >
    > /* For early boot hypervisor communication in SEV-ES enabled guests */
    > static struct ghcb boot_ghcb_page __bss_decrypted __aligned(PAGE_SIZE);
    > @@ -2386,3 +2388,44 @@ static int __init snp_rmptable_init(void)
    > * available after subsys_initcall().
    > */
    > fs_initcall(snp_rmptable_init);
    > +
    > +static struct rmpentry *__snp_lookup_rmpentry(u64 pfn, int *level)
    > +{
    > + unsigned long vaddr, paddr = pfn << PAGE_SHIFT;
    > + struct rmpentry *entry, *large_entry;
    > +
    > + if (!pfn_valid(pfn))
    > + return ERR_PTR(-EINVAL);
    > +
    > + if (!cpu_feature_enabled(X86_FEATURE_SEV_SNP))
    > + return ERR_PTR(-ENXIO);

    That test should happen first.

    > + vaddr = rmptable_start + rmptable_page_offset(paddr);

    Wait, what does that macro do?
    It takes the physical address and gives the offset from the beginning of
    the RMP table in VA space?

    So why don't you do

    entry = rmptable_entry(paddr)

    instead which simply gives you directly the entry in the RMP table with
    which you can work further?

    Instead of this macro doing half the work and then callers having to add
    the RMP start address and cast.

    And make it small function so that you can have typechecking too, while
    at it.

    > + if (unlikely(vaddr > rmptable_end))
    > + return ERR_PTR(-ENXIO);
    > +
    > + entry = (struct rmpentry *)vaddr;
    > +
    > + /* Read a large RMP entry to get the correct page level used in RMP entry. */
    > + vaddr = rmptable_start + rmptable_page_offset(paddr & PMD_MASK);
    > + large_entry = (struct rmpentry *)vaddr;
    > + *level = RMP_TO_X86_PG_LEVEL(rmpentry_pagesize(large_entry));
    > +
    > + return entry;
    > +}
    > +
    > +/*
    > + * Return 1 if the RMP entry is assigned, 0 if it exists but is not assigned,
    > + * and -errno if there is no corresponding RMP entry.
    > + */
    > +int snp_lookup_rmpentry(u64 pfn, int *level)
    > +{
    > + struct rmpentry *e;
    > +
    > + e = __snp_lookup_rmpentry(pfn, level);
    > + if (IS_ERR(e))
    > + return PTR_ERR(e);
    > +
    > + return !!rmpentry_assigned(e);
    > +}
    > +EXPORT_SYMBOL_GPL(snp_lookup_rmpentry);
    > diff --git a/include/linux/sev.h b/include/linux/sev.h
    > new file mode 100644
    > index 000000000000..1a68842789e1
    > --- /dev/null
    > +++ b/include/linux/sev.h

    Why is this header in the linux/ namespace and not in arch/x86/ ?

    All that stuff in here doesn't have any meaning outside of x86...

    --
    Regards/Gruss,
    Boris.

    https://people.kernel.org/tglx/notes-about-netiquette

    \
     
     \ /
      Last update: 2022-07-22 13:44    [W:4.146 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site