Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-07-04 Thread Paraschiv, Andra-Irina
On 02/07/2020 18:24, Alexander Graf wrote: On 22.06.20 22:03, Andra Paraschiv wrote: The Nitro Enclaves driver handles the enclave lifetime management. This includes enclave creation, termination and setting up its resources such as memory and CPU. An enclave runs alongside the VM that spa

Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-07-02 Thread Alexander Graf
On 22.06.20 22:03, Andra Paraschiv wrote: The Nitro Enclaves driver handles the enclave lifetime management. This includes enclave creation, termination and setting up its resources such as memory and CPU. An enclave runs alongside the VM that spawned it. It is abstracted as a process running

Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-06-25 Thread Paraschiv, Andra-Irina
On 25/06/2020 16:29, Stefan Hajnoczi wrote: On Wed, Jun 24, 2020 at 05:02:54PM +0300, Paraschiv, Andra-Irina wrote: On 23/06/2020 11:56, Stefan Hajnoczi wrote: On Mon, Jun 22, 2020 at 11:03:12PM +0300, Andra Paraschiv wrote: +/* User memory region flags */ + +/* Memory region for enclave ge

Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-06-25 Thread Stefan Hajnoczi
On Wed, Jun 24, 2020 at 05:02:54PM +0300, Paraschiv, Andra-Irina wrote: > On 23/06/2020 11:56, Stefan Hajnoczi wrote: > > On Mon, Jun 22, 2020 at 11:03:12PM +0300, Andra Paraschiv wrote: > > > +/* User memory region flags */ > > > + > > > +/* Memory region for enclave general usage. */ > > > +#defi

Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-06-24 Thread Paraschiv, Andra-Irina
On 23/06/2020 11:56, Stefan Hajnoczi wrote: On Mon, Jun 22, 2020 at 11:03:12PM +0300, Andra Paraschiv wrote: diff --git a/include/uapi/linux/nitro_enclaves.h b/include/uapi/linux/nitro_enclaves.h new file mode 100644 index ..3270eb939a97 --- /dev/null +++ b/include/uapi/linux/nit

Re: [PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-06-23 Thread Stefan Hajnoczi
On Mon, Jun 22, 2020 at 11:03:12PM +0300, Andra Paraschiv wrote: > diff --git a/include/uapi/linux/nitro_enclaves.h > b/include/uapi/linux/nitro_enclaves.h > new file mode 100644 > index ..3270eb939a97 > --- /dev/null > +++ b/include/uapi/linux/nitro_enclaves.h > @@ -0,0 +1,137 @@ > +/

[PATCH v4 01/18] nitro_enclaves: Add ioctl interface definition

2020-06-22 Thread Andra Paraschiv
The Nitro Enclaves driver handles the enclave lifetime management. This includes enclave creation, termination and setting up its resources such as memory and CPU. An enclave runs alongside the VM that spawned it. It is abstracted as a process running in the VM that launched it. The process intera