mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jens Wiklander <jens.wiklander@linaro.org>
To: linux-kernel@vger.kernel.org, op-tee@lists.trustedfirmware.org
Cc: Sumit Garg <sumit.garg@linaro.org>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Devaraj Rangasamy <Devaraj.Rangasamy@amd.com>,
	Rijo Thomas <Rijo-john.Thomas@amd.com>,
	David Howells <dhowells@redhat.com>,
	Tyler Hicks <tyhicks@linux.microsoft.com>,
	Jens Wiklander <jens.wiklander@linaro.org>
Subject: [PATCH v2 09/12] tee: add tee_shm_register_{user,kernel}_buf()
Date: Fri, 14 Jan 2022 16:08:21 +0100	[thread overview]
Message-ID: <20220114150824.3578829-10-jens.wiklander@linaro.org> (raw)
In-Reply-To: <20220114150824.3578829-1-jens.wiklander@linaro.org>

Adds the two new functions tee_shm_register_user_buf() and
tee_shm_register_kernel_buf() which should be used instead of the old
tee_shm_register().

This avoids having the caller supplying the flags parameter which
exposes a bit more than desired of the internals of the TEE subsystem.

Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
---
 drivers/tee/tee_core.c  |  3 +--
 drivers/tee/tee_shm.c   | 34 ++++++++++++++++++++++++++++++++++
 include/linux/tee_drv.h |  4 ++++
 3 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/drivers/tee/tee_core.c b/drivers/tee/tee_core.c
index a15812baaeb1..8aa1a4836b92 100644
--- a/drivers/tee/tee_core.c
+++ b/drivers/tee/tee_core.c
@@ -334,8 +334,7 @@ tee_ioctl_shm_register(struct tee_context *ctx,
 	if (data.flags)
 		return -EINVAL;
 
-	shm = tee_shm_register(ctx, data.addr, data.length,
-			       TEE_SHM_DMA_BUF | TEE_SHM_USER_MAPPED);
+	shm = tee_shm_register_user_buf(ctx, data.addr, data.length);
 	if (IS_ERR(shm))
 		return PTR_ERR(shm);
 
diff --git a/drivers/tee/tee_shm.c b/drivers/tee/tee_shm.c
index d51bf97ce7e5..6a1dbce75616 100644
--- a/drivers/tee/tee_shm.c
+++ b/drivers/tee/tee_shm.c
@@ -301,6 +301,40 @@ struct tee_shm *tee_shm_register(struct tee_context *ctx, unsigned long addr,
 }
 EXPORT_SYMBOL_GPL(tee_shm_register);
 
+/**
+ * tee_shm_register_user_buf() - Register a userspace shared memory buffer
+ * @ctx:	Context that registers the shared memory
+ * @addr:	The userspace address of the shared buffer
+ * @length:	Length of the shared buffer
+ *
+ * @returns a pointer to 'struct tee_shm'
+ */
+struct tee_shm *tee_shm_register_user_buf(struct tee_context *ctx,
+					  unsigned long addr, size_t length)
+{
+	return tee_shm_register(ctx, addr, length,
+				TEE_SHM_DMA_BUF | TEE_SHM_USER_MAPPED);
+}
+EXPORT_SYMBOL_GPL(tee_shm_register_user_buf);
+
+/**
+ * tee_shm_register_kernel_buf() - Register kernel memory to be shared with
+ *				   secure world
+ * @ctx:	Context that registers the shared memory
+ * @addr:	The buffer
+ * @length:	Length of the buffer
+ *
+ * @returns a pointer to 'struct tee_shm'
+ */
+
+struct tee_shm *tee_shm_register_kernel_buf(struct tee_context *ctx,
+					    void *addr, size_t length)
+{
+	return tee_shm_register(ctx, (unsigned long)addr, length,
+				TEE_SHM_DMA_BUF | TEE_SHM_KERNEL_MAPPED);
+}
+EXPORT_SYMBOL_GPL(tee_shm_register_kernel_buf);
+
 static int tee_shm_fop_release(struct inode *inode, struct file *filp)
 {
 	tee_shm_put(filp->private_data);
diff --git a/include/linux/tee_drv.h b/include/linux/tee_drv.h
index e71cb0411e9c..029c9a0590cc 100644
--- a/include/linux/tee_drv.h
+++ b/include/linux/tee_drv.h
@@ -289,6 +289,10 @@ struct tee_shm *tee_shm_alloc_kernel_buf(struct tee_context *ctx, size_t size);
  */
 struct tee_shm *tee_shm_register(struct tee_context *ctx, unsigned long addr,
 				 size_t length, u32 flags);
+struct tee_shm *tee_shm_register_user_buf(struct tee_context *ctx,
+					  unsigned long addr, size_t length);
+struct tee_shm *tee_shm_register_kernel_buf(struct tee_context *ctx,
+					    void *addr, size_t length);
 
 /**
  * tee_shm_is_registered() - Check if shared memory object in registered in TEE
-- 
2.31.1


  parent reply	other threads:[~2022-01-14 15:09 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-14 15:08 [PATCH v2 00/12] tee: shared memory updates Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 01/12] hwrng: optee-rng: use tee_shm_alloc_kernel_buf() Jens Wiklander
2022-01-18 12:12   ` Sumit Garg
2022-01-14 15:08 ` [PATCH v2 02/12] tee: remove unused tee_shm_pool_alloc_res_mem() Jens Wiklander
2022-01-18 12:57   ` Sumit Garg
2022-01-14 15:08 ` [PATCH v2 03/12] tee: add tee_shm_alloc_user_buf() Jens Wiklander
2022-01-18 13:11   ` Sumit Garg
2022-01-19  7:36     ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 04/12] tee: simplify shm pool handling Jens Wiklander
2022-01-20 10:06   ` Sumit Garg
2022-01-20 12:56     ` Jens Wiklander
2022-01-21 13:06       ` Sumit Garg
2022-01-21 13:47         ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 05/12] tee: replace tee_shm_alloc() Jens Wiklander
2022-01-20 10:41   ` Sumit Garg
2022-01-20 13:02     ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 06/12] optee: add driver private tee_context Jens Wiklander
2022-01-21 12:48   ` Sumit Garg
2022-01-24 13:58     ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 07/12] optee: use driver internal tee_contex for some rpc Jens Wiklander
2022-01-21 12:54   ` Sumit Garg
2022-01-21 13:28     ` Jerome Forissier
2022-01-21 13:37       ` Sumit Garg
2022-01-21 14:02         ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 08/12] optee: add optee_pool_op_free_helper() Jens Wiklander
2022-01-20 10:57   ` Sumit Garg
2022-01-14 15:08 ` Jens Wiklander [this message]
2022-01-20 11:00   ` [PATCH v2 09/12] tee: add tee_shm_register_{user,kernel}_buf() Sumit Garg
2022-01-20 13:06     ` Jens Wiklander
2022-01-14 15:08 ` [PATCH v2 10/12] KEYS: trusted: tee: use tee_shm_register_kernel_buf() Jens Wiklander
2022-01-20 11:03   ` Sumit Garg
2022-01-14 15:08 ` [PATCH v2 11/12] tee: replace tee_shm_register() Jens Wiklander
2022-01-20 11:51   ` Sumit Garg
2022-01-20 14:12     ` Jens Wiklander
2022-01-21 12:57       ` Sumit Garg
2022-01-14 15:08 ` [PATCH v2 12/12] tee: refactor TEE_SHM_* flags Jens Wiklander
2022-01-20 13:03   ` Sumit Garg
2022-01-21  7:23     ` Jens Wiklander

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220114150824.3578829-10-jens.wiklander@linaro.org \
    --to=jens.wiklander@linaro.org \
    --cc=Devaraj.Rangasamy@amd.com \
    --cc=Rijo-john.Thomas@amd.com \
    --cc=dhowells@redhat.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-kernel@vger.kernel.org \
    --cc=op-tee@lists.trustedfirmware.org \
    --cc=sumit.garg@linaro.org \
    --cc=tyhicks@linux.microsoft.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome