lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 10 Aug 2020 08:11:15 +0200
From:   Alexander Graf <graf@...zon.de>
To:     Andra Paraschiv <andraprs@...zon.com>,
        linux-kernel <linux-kernel@...r.kernel.org>
CC:     Anthony Liguori <aliguori@...zon.com>,
        Benjamin Herrenschmidt <benh@...nel.crashing.org>,
        Colm MacCarthaigh <colmmacc@...zon.com>,
        "David Duncan" <davdunc@...zon.com>,
        Bjoern Doebel <doebel@...zon.de>,
        "David Woodhouse" <dwmw@...zon.co.uk>,
        Frank van der Linden <fllinden@...zon.com>,
        Greg KH <gregkh@...uxfoundation.org>,
        Karen Noel <knoel@...hat.com>,
        "Martin Pohlack" <mpohlack@...zon.de>,
        Matt Wilson <msw@...zon.com>,
        Paolo Bonzini <pbonzini@...hat.com>,
        Balbir Singh <sblbir@...zon.com>,
        Stefano Garzarella <sgarzare@...hat.com>,
        Stefan Hajnoczi <stefanha@...hat.com>,
        Stewart Smith <trawets@...zon.com>,
        Uwe Dannowski <uwed@...zon.de>,
        Vitaly Kuznetsov <vkuznets@...hat.com>,
        kvm <kvm@...r.kernel.org>,
        ne-devel-upstream <ne-devel-upstream@...zon.com>
Subject: Re: [PATCH v6 08/18] nitro_enclaves: Add logic for creating an
 enclave VM



On 05.08.20 11:10, Andra Paraschiv wrote:
> Add ioctl command logic for enclave VM creation. It triggers a slot
> allocation. The enclave resources will be associated with this slot and
> it will be used as an identifier for triggering enclave run.
> 
> Return a file descriptor, namely enclave fd. This is further used by the
> associated user space enclave process to set enclave resources and
> trigger enclave termination.
> 
> The poll function is implemented in order to notify the enclave process
> when an enclave exits without a specific enclave termination command
> trigger e.g. when an enclave crashes.
> 
> Signed-off-by: Alexandru Vasile <lexnv@...zon.com>
> Signed-off-by: Andra Paraschiv <andraprs@...zon.com>
> Reviewed-by: Alexander Graf <graf@...zon.com>
> ---
> Changelog
> 
> v5 -> v6
> 
> * Update the code base to init the ioctl function in this patch.
> * Update documentation to kernel-doc format.
> 
> v4 -> v5
> 
> * Release the reference to the NE PCI device on create VM error.
> * Close enclave fd on copy_to_user() failure; rename fd to enclave fd
>    while at it.
> * Remove sanity checks for situations that shouldn't happen, only if
>    buggy system or broken logic at all.
> * Remove log on copy_to_user() failure.
> 
> v3 -> v4
> 
> * Use dev_err instead of custom NE log pattern.
> * Update the NE ioctl call to match the decoupling from the KVM API.
> * Add metadata for the NUMA node for the enclave memory and CPUs.
> 
> v2 -> v3
> 
> * Remove the WARN_ON calls.
> * Update static calls sanity checks.
> * Update kzfree() calls to kfree().
> * Remove file ops that do nothing for now - open.
> 
> v1 -> v2
> 
> * Add log pattern for NE.
> * Update goto labels to match their purpose.
> * Remove the BUG_ON calls.
> ---
>   drivers/virt/nitro_enclaves/ne_misc_dev.c | 229 ++++++++++++++++++++++
>   1 file changed, 229 insertions(+)
> 
> diff --git a/drivers/virt/nitro_enclaves/ne_misc_dev.c b/drivers/virt/nitro_enclaves/ne_misc_dev.c
> index 472850250220..6c8c12f65666 100644
> --- a/drivers/virt/nitro_enclaves/ne_misc_dev.c
> +++ b/drivers/virt/nitro_enclaves/ne_misc_dev.c

[...]

> +/**
> + * ne_ioctl() - Ioctl function provided by the NE misc device.
> + * @file:	File associated with this ioctl function.
> + * @cmd:	The command that is set for the ioctl call.
> + * @arg:	The argument that is provided for the ioctl call.
> + *
> + * Context: Process context.
> + * Return:
> + * * Ioctl result (e.g. enclave file descriptor) on success.
> + * * Negative return value on failure.
> + */
> +static long ne_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
> +{
> +	switch (cmd) {
> +	case NE_CREATE_VM: {
> +		int enclave_fd = -1;
> +		struct file *enclave_file = NULL;
> +		struct ne_pci_dev *ne_pci_dev = NULL;
> +		/* TODO: Find another way to get the NE PCI device reference. */
> +		struct pci_dev *pdev = pci_get_device(PCI_VENDOR_ID_AMAZON,
> +						      PCI_DEVICE_ID_NE, NULL);

This should go away if you set misc_dev.parent.

> +		int rc = -EINVAL;
> +		u64 slot_uid = 0;
> +
> +		ne_pci_dev = pci_get_drvdata(pdev);
> +
> +		mutex_lock(&ne_pci_dev->enclaves_list_mutex);
> +
> +		enclave_fd = ne_create_vm_ioctl(pdev, ne_pci_dev, &slot_uid);
> +		if (enclave_fd < 0) {
> +			rc = enclave_fd;
> +
> +			mutex_unlock(&ne_pci_dev->enclaves_list_mutex);
> +
> +			pci_dev_put(pdev);

This should also disappear.



Alex



Amazon Development Center Germany GmbH
Krausenstr. 38
10117 Berlin
Geschaeftsfuehrung: Christian Schlaeger, Jonathan Weiss
Eingetragen am Amtsgericht Charlottenburg unter HRB 149173 B
Sitz: Berlin
Ust-ID: DE 289 237 879



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ