diff options
author | Michal Srb <msrb@suse.com> | 2018-02-05 11:04:37 -0500 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-02-05 15:49:14 -0500 |
commit | 2f265fad9756a40c09e3f4dcc62d5d7fa73a9fb2 (patch) | |
tree | 186054b2aa3960900161db7a93d43bcb3fe09f34 | |
parent | 6ec5bd348934887494541bcc9b53d621b1f2962c (diff) |
drm/i915/cmdparser: Check reg_table_count before derefencing.
The find_reg function was assuming that there is always at least one table in
reg_tables. It is not always true.
In case of VCS or VECS, the reg_tables is NULL and reg_table_count is 0,
implying that no register-accessing commands are allowed. However, the command
tables include commands such as MI_STORE_REGISTER_MEM. When trying to check
such command, the find_reg would dereference NULL pointer.
Now it will just return NULL meaning that the register was not found and the
command will be rejected.
Fixes: 76ff480ec963 ("drm/i915/cmdparser: Use binary search for faster register lookup")
Signed-off-by: Michal Srb <msrb@suse.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180205142916.27092-2-msrb@suse.com
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20180205160438.3267-1-chris@chris-wilson.co.uk
register lookup")
-rw-r--r-- | drivers/gpu/drm/i915/i915_cmd_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_cmd_parser.c b/drivers/gpu/drm/i915/i915_cmd_parser.c index ccb5ba043b63..ab4c8b0ec886 100644 --- a/drivers/gpu/drm/i915/i915_cmd_parser.c +++ b/drivers/gpu/drm/i915/i915_cmd_parser.c | |||
@@ -1032,7 +1032,7 @@ find_reg(const struct intel_engine_cs *engine, bool is_master, u32 addr) | |||
1032 | const struct drm_i915_reg_table *table = engine->reg_tables; | 1032 | const struct drm_i915_reg_table *table = engine->reg_tables; |
1033 | int count = engine->reg_table_count; | 1033 | int count = engine->reg_table_count; |
1034 | 1034 | ||
1035 | do { | 1035 | for (; count > 0; ++table, --count) { |
1036 | if (!table->master || is_master) { | 1036 | if (!table->master || is_master) { |
1037 | const struct drm_i915_reg_descriptor *reg; | 1037 | const struct drm_i915_reg_descriptor *reg; |
1038 | 1038 | ||
@@ -1040,7 +1040,7 @@ find_reg(const struct intel_engine_cs *engine, bool is_master, u32 addr) | |||
1040 | if (reg != NULL) | 1040 | if (reg != NULL) |
1041 | return reg; | 1041 | return reg; |
1042 | } | 1042 | } |
1043 | } while (table++, --count); | 1043 | } |
1044 | 1044 | ||
1045 | return NULL; | 1045 | return NULL; |
1046 | } | 1046 | } |