]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
accel/amdxdna: Add zero check for pad in ioctl input structures
authorLizhi Hou <lizhi.hou@amd.com>
Tue, 17 Dec 2024 16:54:45 +0000 (08:54 -0800)
committerMario Limonciello <mario.limonciello@amd.com>
Tue, 17 Dec 2024 18:10:05 +0000 (12:10 -0600)
For input ioctl structures, it is better to check if the pad is zero.
Thus, the pad bytes might be usable in the future.

Suggested-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241217165446.2607585-1-lizhi.hou@amd.com
drivers/accel/amdxdna/aie2_ctx.c
drivers/accel/amdxdna/aie2_message.c
drivers/accel/amdxdna/amdxdna_ctx.c
drivers/accel/amdxdna/amdxdna_gem.c
include/uapi/drm/amdxdna_accel.h

index cdeead75c6f58e616334cb17d9ad32ee9a0f1cf2..9facf45818f9fde1839ffed676588a3cdd4f7297 100644 (file)
@@ -690,6 +690,9 @@ static int aie2_hwctx_cu_config(struct amdxdna_hwctx *hwctx, void *buf, u32 size
        int ret;
 
        XDNA_DBG(xdna, "Config %d CU to %s", config->num_cus, hwctx->name);
+       if (XDNA_MBZ_DBG(xdna, config->pad, sizeof(config->pad)))
+               return -EINVAL;
+
        if (hwctx->status != HWCTX_STAT_INIT) {
                XDNA_ERR(xdna, "Not support re-config CU");
                return -EINVAL;
index b2ca78cfd0a7ce8bdedcdbdb43a608cff2a4c52f..9e2c9a44f76a4f26f05745508f006b1c3374ffc0 100644 (file)
@@ -395,6 +395,9 @@ int aie2_config_cu(struct amdxdna_hwctx *hwctx)
        for (i = 0; i < hwctx->cus->num_cus; i++) {
                struct amdxdna_cu_config *cu = &hwctx->cus->cu_configs[i];
 
+               if (XDNA_MBZ_DBG(xdna, cu->pad, sizeof(cu->pad)))
+                       return -EINVAL;
+
                gobj = drm_gem_object_lookup(hwctx->client->filp, cu->cu_bo);
                if (!gobj) {
                        XDNA_ERR(xdna, "Lookup GEM object failed");
index 324f35c43f6cec771c2c4b1ddc290141fe722f76..d11b1c83d9c3bb33fa4c2201783c8fdec4b12bec 100644 (file)
@@ -243,6 +243,9 @@ int amdxdna_drm_destroy_hwctx_ioctl(struct drm_device *dev, void *data, struct d
        struct amdxdna_hwctx *hwctx;
        int ret = 0, idx;
 
+       if (XDNA_MBZ_DBG(xdna, &args->pad, sizeof(args->pad)))
+               return -EINVAL;
+
        if (!drm_dev_enter(dev, &idx))
                return -ENODEV;
 
@@ -277,6 +280,9 @@ int amdxdna_drm_config_hwctx_ioctl(struct drm_device *dev, void *data, struct dr
        void *buf;
        u64 val;
 
+       if (XDNA_MBZ_DBG(xdna, &args->pad, sizeof(args->pad)))
+               return -EINVAL;
+
        if (!xdna->dev_info->ops->hwctx_config)
                return -EOPNOTSUPP;
 
index 4dfeca306d9870d7ff0d74aeca89d2bdcf2c12ac..606433d73236cd7a21e6b06bfebfca5bb801768e 100644 (file)
@@ -552,7 +552,7 @@ int amdxdna_drm_get_bo_info_ioctl(struct drm_device *dev, void *data, struct drm
        struct drm_gem_object *gobj;
        int ret = 0;
 
-       if (args->ext || args->ext_flags)
+       if (args->ext || args->ext_flags || args->pad)
                return -EINVAL;
 
        gobj = drm_gem_object_lookup(filp, args->handle);
index e4edb52bc27b5d9d74eb388bc1bcab16d00d19c0..92eff83fac1f40b21c5971f7932097f5478dfe40 100644 (file)
@@ -87,7 +87,7 @@ struct amdxdna_drm_create_hwctx {
 /**
  * struct amdxdna_drm_destroy_hwctx - Destroy hardware context.
  * @handle: Hardware context handle.
- * @pad: Structure padding.
+ * @pad: MBZ.
  */
 struct amdxdna_drm_destroy_hwctx {
        __u32 handle;
@@ -98,7 +98,7 @@ struct amdxdna_drm_destroy_hwctx {
  * struct amdxdna_cu_config - configuration for one CU
  * @cu_bo: CU configuration buffer bo handle.
  * @cu_func: Function of a CU.
- * @pad: Structure padding.
+ * @pad: MBZ.
  */
 struct amdxdna_cu_config {
        __u32 cu_bo;
@@ -109,7 +109,7 @@ struct amdxdna_cu_config {
 /**
  * struct amdxdna_hwctx_param_config_cu - configuration for CUs in hardware context
  * @num_cus: Number of CUs to configure.
- * @pad: Structure padding.
+ * @pad: MBZ.
  * @cu_configs: Array of CU configurations of struct amdxdna_cu_config.
  */
 struct amdxdna_hwctx_param_config_cu {
@@ -133,7 +133,7 @@ enum amdxdna_drm_config_hwctx_param {
  * @param_val: A structure specified by the param_type struct member.
  * @param_val_size: Size of the parameter buffer pointed to by the param_val.
  *                 If param_val is not a pointer, driver can ignore this.
- * @pad: Structure padding.
+ * @pad: MBZ.
  *
  * Note: if the param_val is a pointer pointing to a buffer, the maximum size
  * of the buffer is 4KiB(PAGE_SIZE).
@@ -175,7 +175,7 @@ struct amdxdna_drm_create_bo {
  * @ext: MBZ.
  * @ext_flags: MBZ.
  * @handle: DRM buffer object handle.
- * @pad: Structure padding.
+ * @pad: MBZ.
  * @map_offset: Returned DRM fake offset for mmap().
  * @vaddr: Returned user VA of buffer. 0 in case user needs mmap().
  * @xdna_addr: Returned XDNA device virtual address.