From: kernel test robot <lkp@intel.com>
To: "Amirreza Zarrabi" <amirreza.zarrabi@oss.qualcomm.com>,
"Jens Wiklander" <jens.wiklander@linaro.org>,
"Sumit Garg" <sumit.garg@kernel.org>,
"Bjorn Andersson" <andersson@kernel.org>,
"Konrad Dybcio" <konradybcio@kernel.org>,
"Bartosz Golaszewski" <bartosz.golaszewski@linaro.org>,
"Apurupa Pattapu" <quic_apurupa@quicinc.com>,
"Kees Cook" <kees@kernel.org>,
"Gustavo A. R. Silva" <gustavoars@kernel.org>,
"Sumit Semwal" <sumit.semwal@linaro.org>,
"Christian König" <christian.koenig@amd.com>
Cc: oe-kbuild-all@lists.linux.dev, linux-arm-msm@vger.kernel.org,
op-tee@lists.trustedfirmware.org, linux-kernel@vger.kernel.org,
linux-hardening@vger.kernel.org, dri-devel@lists.freedesktop.org,
linaro-mm-sig@lists.linaro.org, linux-doc@vger.kernel.org,
Amirreza Zarrabi <amirreza.zarrabi@oss.qualcomm.com>
Subject: Re: [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF
Date: Sat, 29 Mar 2025 12:58:43 +0800 [thread overview]
Message-ID: <202503291204.imMRd3l7-lkp@intel.com> (raw)
In-Reply-To: <20250327-qcom-tee-using-tee-ss-without-mem-obj-v3-3-7f457073282d@oss.qualcomm.com>
Hi Amirreza,
kernel test robot noticed the following build warnings:
[auto build test WARNING on db8da9da41bced445077925f8a886c776a47440c]
url: https://github.com/intel-lab-lkp/linux/commits/Amirreza-Zarrabi/tee-allow-a-driver-to-allocate-a-tee_device-without-a-pool/20250328-104950
base: db8da9da41bced445077925f8a886c776a47440c
patch link: https://lore.kernel.org/r/20250327-qcom-tee-using-tee-ss-without-mem-obj-v3-3-7f457073282d%40oss.qualcomm.com
patch subject: [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF
config: x86_64-randconfig-122-20250329 (https://download.01.org/0day-ci/archive/20250329/202503291204.imMRd3l7-lkp@intel.com/config)
compiler: clang version 20.1.1 (https://github.com/llvm/llvm-project 424c2d9b7e4de40d0804dd374721e6411c27d1d1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250329/202503291204.imMRd3l7-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503291204.imMRd3l7-lkp@intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/tee/tee_core.c:410:48: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *[noderef] uaddr @@ got void [noderef] __user * @@
drivers/tee/tee_core.c:410:48: sparse: expected void *[noderef] uaddr
drivers/tee/tee_core.c:410:48: sparse: got void [noderef] __user *
>> drivers/tee/tee_core.c:413:30: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const [noderef] __user *ptr @@ got void *[noderef] uaddr @@
drivers/tee/tee_core.c:413:30: sparse: expected void const [noderef] __user *ptr
drivers/tee/tee_core.c:413:30: sparse: got void *[noderef] uaddr
drivers/tee/tee_core.c:802:41: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *[noderef] uaddr @@ got void [noderef] __user * @@
drivers/tee/tee_core.c:802:41: sparse: expected void *[noderef] uaddr
drivers/tee/tee_core.c:802:41: sparse: got void [noderef] __user *
drivers/tee/tee_core.c:805:30: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const [noderef] __user *ptr @@ got void *[noderef] uaddr @@
drivers/tee/tee_core.c:805:30: sparse: expected void const [noderef] __user *ptr
drivers/tee/tee_core.c:805:30: sparse: got void *[noderef] uaddr
>> drivers/tee/tee_core.c:413:30: sparse: sparse: dereference of noderef expression
>> drivers/tee/tee_core.c:413:30: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:694:37: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:805:30: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:805:30: sparse: sparse: dereference of noderef expression
vim +410 drivers/tee/tee_core.c
378
379 static int params_from_user(struct tee_context *ctx, struct tee_param *params,
380 size_t num_params,
381 struct tee_ioctl_param __user *uparams)
382 {
383 size_t n;
384
385 for (n = 0; n < num_params; n++) {
386 struct tee_shm *shm;
387 struct tee_ioctl_param ip;
388
389 if (copy_from_user(&ip, uparams + n, sizeof(ip)))
390 return -EFAULT;
391
392 /* All unused attribute bits has to be zero */
393 if (ip.attr & ~TEE_IOCTL_PARAM_ATTR_MASK)
394 return -EINVAL;
395
396 params[n].attr = ip.attr;
397 switch (ip.attr & TEE_IOCTL_PARAM_ATTR_TYPE_MASK) {
398 case TEE_IOCTL_PARAM_ATTR_TYPE_NONE:
399 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_OUTPUT:
400 break;
401 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INPUT:
402 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT:
403 params[n].u.value.a = ip.a;
404 params[n].u.value.b = ip.b;
405 params[n].u.value.c = ip.c;
406 break;
407 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_INPUT:
408 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_OUTPUT:
409 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_INOUT:
> 410 params[n].u.ubuf.uaddr = u64_to_user_ptr(ip.a);
411 params[n].u.ubuf.size = ip.b;
412
> 413 if (!access_ok(params[n].u.ubuf.uaddr,
414 params[n].u.ubuf.size))
415 return -EFAULT;
416
417 break;
418 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_INPUT:
419 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_OUTPUT:
420 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_INOUT:
421 /*
422 * If a NULL pointer is passed to a TA in the TEE,
423 * the ip.c IOCTL parameters is set to TEE_MEMREF_NULL
424 * indicating a NULL memory reference.
425 */
426 if (ip.c != TEE_MEMREF_NULL) {
427 /*
428 * If we fail to get a pointer to a shared
429 * memory object (and increase the ref count)
430 * from an identifier we return an error. All
431 * pointers that has been added in params have
432 * an increased ref count. It's the callers
433 * responibility to do tee_shm_put() on all
434 * resolved pointers.
435 */
436 shm = tee_shm_get_from_id(ctx, ip.c);
437 if (IS_ERR(shm))
438 return PTR_ERR(shm);
439
440 /*
441 * Ensure offset + size does not overflow
442 * offset and does not overflow the size of
443 * the referred shared memory object.
444 */
445 if ((ip.a + ip.b) < ip.a ||
446 (ip.a + ip.b) > shm->size) {
447 tee_shm_put(shm);
448 return -EINVAL;
449 }
450 } else if (ctx->cap_memref_null) {
451 /* Pass NULL pointer to OP-TEE */
452 shm = NULL;
453 } else {
454 return -EINVAL;
455 }
456
457 params[n].u.memref.shm_offs = ip.a;
458 params[n].u.memref.size = ip.b;
459 params[n].u.memref.shm = shm;
460 break;
461 default:
462 /* Unknown attribute */
463 return -EINVAL;
464 }
465 }
466 return 0;
467 }
468
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: op-tee@lists.trustedfirmware.org
Subject: Re: [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF
Date: Sat, 29 Mar 2025 12:58:43 +0800 [thread overview]
Message-ID: <202503291204.imMRd3l7-lkp@intel.com> (raw)
In-Reply-To: <<20250327-qcom-tee-using-tee-ss-without-mem-obj-v3-3-7f457073282d@oss.qualcomm.com>>
[-- Attachment #1: Type: text/plain, Size: 6398 bytes --]
Hi Amirreza,
kernel test robot noticed the following build warnings:
[auto build test WARNING on db8da9da41bced445077925f8a886c776a47440c]
url: https://github.com/intel-lab-lkp/linux/commits/Amirreza-Zarrabi/tee-allow-a-driver-to-allocate-a-tee_device-without-a-pool/20250328-104950
base: db8da9da41bced445077925f8a886c776a47440c
patch link: https://lore.kernel.org/r/20250327-qcom-tee-using-tee-ss-without-mem-obj-v3-3-7f457073282d%40oss.qualcomm.com
patch subject: [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF
config: x86_64-randconfig-122-20250329 (https://download.01.org/0day-ci/archive/20250329/202503291204.imMRd3l7-lkp(a)intel.com/config)
compiler: clang version 20.1.1 (https://github.com/llvm/llvm-project 424c2d9b7e4de40d0804dd374721e6411c27d1d1)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250329/202503291204.imMRd3l7-lkp(a)intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503291204.imMRd3l7-lkp(a)intel.com/
sparse warnings: (new ones prefixed by >>)
>> drivers/tee/tee_core.c:410:48: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *[noderef] uaddr @@ got void [noderef] __user * @@
drivers/tee/tee_core.c:410:48: sparse: expected void *[noderef] uaddr
drivers/tee/tee_core.c:410:48: sparse: got void [noderef] __user *
>> drivers/tee/tee_core.c:413:30: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const [noderef] __user *ptr @@ got void *[noderef] uaddr @@
drivers/tee/tee_core.c:413:30: sparse: expected void const [noderef] __user *ptr
drivers/tee/tee_core.c:413:30: sparse: got void *[noderef] uaddr
drivers/tee/tee_core.c:802:41: sparse: sparse: incorrect type in assignment (different address spaces) @@ expected void *[noderef] uaddr @@ got void [noderef] __user * @@
drivers/tee/tee_core.c:802:41: sparse: expected void *[noderef] uaddr
drivers/tee/tee_core.c:802:41: sparse: got void [noderef] __user *
drivers/tee/tee_core.c:805:30: sparse: sparse: incorrect type in argument 1 (different address spaces) @@ expected void const [noderef] __user *ptr @@ got void *[noderef] uaddr @@
drivers/tee/tee_core.c:805:30: sparse: expected void const [noderef] __user *ptr
drivers/tee/tee_core.c:805:30: sparse: got void *[noderef] uaddr
>> drivers/tee/tee_core.c:413:30: sparse: sparse: dereference of noderef expression
>> drivers/tee/tee_core.c:413:30: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:694:37: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:805:30: sparse: sparse: dereference of noderef expression
drivers/tee/tee_core.c:805:30: sparse: sparse: dereference of noderef expression
vim +410 drivers/tee/tee_core.c
378
379 static int params_from_user(struct tee_context *ctx, struct tee_param *params,
380 size_t num_params,
381 struct tee_ioctl_param __user *uparams)
382 {
383 size_t n;
384
385 for (n = 0; n < num_params; n++) {
386 struct tee_shm *shm;
387 struct tee_ioctl_param ip;
388
389 if (copy_from_user(&ip, uparams + n, sizeof(ip)))
390 return -EFAULT;
391
392 /* All unused attribute bits has to be zero */
393 if (ip.attr & ~TEE_IOCTL_PARAM_ATTR_MASK)
394 return -EINVAL;
395
396 params[n].attr = ip.attr;
397 switch (ip.attr & TEE_IOCTL_PARAM_ATTR_TYPE_MASK) {
398 case TEE_IOCTL_PARAM_ATTR_TYPE_NONE:
399 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_OUTPUT:
400 break;
401 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INPUT:
402 case TEE_IOCTL_PARAM_ATTR_TYPE_VALUE_INOUT:
403 params[n].u.value.a = ip.a;
404 params[n].u.value.b = ip.b;
405 params[n].u.value.c = ip.c;
406 break;
407 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_INPUT:
408 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_OUTPUT:
409 case TEE_IOCTL_PARAM_ATTR_TYPE_UBUF_INOUT:
> 410 params[n].u.ubuf.uaddr = u64_to_user_ptr(ip.a);
411 params[n].u.ubuf.size = ip.b;
412
> 413 if (!access_ok(params[n].u.ubuf.uaddr,
414 params[n].u.ubuf.size))
415 return -EFAULT;
416
417 break;
418 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_INPUT:
419 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_OUTPUT:
420 case TEE_IOCTL_PARAM_ATTR_TYPE_MEMREF_INOUT:
421 /*
422 * If a NULL pointer is passed to a TA in the TEE,
423 * the ip.c IOCTL parameters is set to TEE_MEMREF_NULL
424 * indicating a NULL memory reference.
425 */
426 if (ip.c != TEE_MEMREF_NULL) {
427 /*
428 * If we fail to get a pointer to a shared
429 * memory object (and increase the ref count)
430 * from an identifier we return an error. All
431 * pointers that has been added in params have
432 * an increased ref count. It's the callers
433 * responibility to do tee_shm_put() on all
434 * resolved pointers.
435 */
436 shm = tee_shm_get_from_id(ctx, ip.c);
437 if (IS_ERR(shm))
438 return PTR_ERR(shm);
439
440 /*
441 * Ensure offset + size does not overflow
442 * offset and does not overflow the size of
443 * the referred shared memory object.
444 */
445 if ((ip.a + ip.b) < ip.a ||
446 (ip.a + ip.b) > shm->size) {
447 tee_shm_put(shm);
448 return -EINVAL;
449 }
450 } else if (ctx->cap_memref_null) {
451 /* Pass NULL pointer to OP-TEE */
452 shm = NULL;
453 } else {
454 return -EINVAL;
455 }
456
457 params[n].u.memref.shm_offs = ip.a;
458 params[n].u.memref.size = ip.b;
459 params[n].u.memref.shm = shm;
460 break;
461 default:
462 /* Unknown attribute */
463 return -EINVAL;
464 }
465 }
466 return 0;
467 }
468
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2025-03-29 4:59 UTC|newest]
Thread overview: 64+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-28 2:47 [PATCH v3 00/11] Trusted Execution Environment (TEE) driver for Qualcomm TEE (QTEE) Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 01/11] tee: allow a driver to allocate a tee_device without a pool Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-04-21 10:18 ` Sumit Garg
2025-04-21 10:18 ` Sumit Garg
2025-03-28 2:47 ` [PATCH v3 02/11] tee: add close_context to TEE driver operation Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-04-07 14:55 ` Jens Wiklander
2025-04-07 14:55 ` Jens Wiklander
2025-04-09 0:20 ` Amirreza Zarrabi
2025-04-09 0:20 ` Amirreza Zarrabi
2025-04-21 10:42 ` Sumit Garg
2025-04-21 10:42 ` Sumit Garg
2025-04-28 4:01 ` Amirreza Zarrabi
2025-04-28 4:01 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-29 4:58 ` kernel test robot [this message]
2025-03-29 4:58 ` kernel test robot
2025-04-08 12:19 ` Jens Wiklander
2025-04-08 12:19 ` Jens Wiklander
2025-03-28 2:47 ` [PATCH v3 04/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_OBJREF Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-04-21 13:38 ` Sumit Garg
2025-04-21 13:38 ` Sumit Garg
2025-04-28 4:17 ` Amirreza Zarrabi
2025-04-28 4:17 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 05/11] firmware: qcom: scm: add support for object invocation Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 06/11] firmware: qcom: scm: remove unused arguments to the shm_brige Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 07/11] firmware: qcom: tzmem: export shm_bridge create/delete Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 08/11] tee: add Qualcomm TEE driver Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 22:21 ` kernel test robot
2025-03-28 22:21 ` kernel test robot
2025-04-08 12:47 ` Jens Wiklander
2025-04-08 12:47 ` Jens Wiklander
2025-04-09 1:26 ` Amirreza Zarrabi
2025-04-09 1:26 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 09/11] qcomtee: add primordial object Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 10/11] qcomtee: enable TEE_IOC_SHM_ALLOC ioctl Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-03-28 2:47 ` [PATCH v3 11/11] Documentation: tee: Add Qualcomm TEE driver Amirreza Zarrabi
2025-03-28 2:47 ` Amirreza Zarrabi
2025-04-09 8:30 ` [PATCH v3 00/11] Trusted Execution Environment (TEE) driver for Qualcomm TEE (QTEE) neil.armstrong
2025-04-09 8:30 ` neil.armstrong
2025-04-11 5:55 ` Amirreza Zarrabi
2025-04-11 5:55 ` Amirreza Zarrabi
[not found] < <CAHUa44GRBiRr6CsFWxJhyzf1cRSEP66m5K7uFntOv3oYWTHWgQ@mail.gmail.com>
2025-04-09 0:28 ` [PATCH v3 03/11] tee: add TEE_IOCTL_PARAM_ATTR_TYPE_UBUF Amirreza Zarrabi
2025-04-09 0:28 ` Amirreza Zarrabi
2025-04-09 6:41 ` Jens Wiklander
2025-04-09 6:41 ` Jens Wiklander
2025-04-09 7:20 ` Amirreza Zarrabi
2025-04-09 7:20 ` Amirreza Zarrabi
2025-04-09 8:27 ` Jens Wiklander
2025-04-09 8:27 ` Jens Wiklander
2025-04-21 13:17 ` Sumit Garg
2025-04-21 13:17 ` Sumit Garg
2025-04-28 4:37 ` Amirreza Zarrabi
2025-04-28 4:37 ` Amirreza Zarrabi
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=202503291204.imMRd3l7-lkp@intel.com \
--to=lkp@intel.com \
--cc=amirreza.zarrabi@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=bartosz.golaszewski@linaro.org \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=gustavoars@kernel.org \
--cc=jens.wiklander@linaro.org \
--cc=kees@kernel.org \
--cc=konradybcio@kernel.org \
--cc=linaro-mm-sig@lists.linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=op-tee@lists.trustedfirmware.org \
--cc=quic_apurupa@quicinc.com \
--cc=sumit.garg@kernel.org \
--cc=sumit.semwal@linaro.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.