|
|
336690 |
From c2dd834b3e366fff19a868fa446643f7f30201c7 Mon Sep 17 00:00:00 2001
|
|
|
336690 |
From: Yannick Cote <ycote@redhat.com>
|
|
|
336690 |
Date: Tue, 8 Feb 2022 17:10:45 -0500
|
|
|
336690 |
Subject: [KPATCH CVE-2022-0330] drm/i915: kpatch fixes for CVE-2022-0330
|
|
|
336690 |
|
|
|
336690 |
Kernels:
|
|
|
336690 |
3.10.0-1160.21.1.el7
|
|
|
336690 |
3.10.0-1160.24.1.el7
|
|
|
336690 |
3.10.0-1160.25.1.el7
|
|
|
336690 |
3.10.0-1160.31.1.el7
|
|
|
336690 |
3.10.0-1160.36.2.el7
|
|
|
336690 |
3.10.0-1160.41.1.el7
|
|
|
336690 |
3.10.0-1160.42.2.el7
|
|
|
336690 |
3.10.0-1160.45.1.el7
|
|
|
336690 |
3.10.0-1160.49.1.el7
|
|
|
336690 |
3.10.0-1160.53.1.el7
|
|
|
336690 |
|
|
|
336690 |
Changes since last build:
|
|
|
336690 |
arches: x86_64
|
|
|
336690 |
i915_drv.o: changed function: i915_driver_destroy
|
|
|
336690 |
i915_gem.o: changed function: __i915_gem_object_unset_pages
|
|
|
336690 |
i915_gem.o: changed function: i915_gem_fault
|
|
|
336690 |
i915_gem.o: new function: assert_rpm_wakelock_held.part.56
|
|
|
336690 |
i915_gem.o: new function: tlb_invalidate_lock_ctor
|
|
|
336690 |
i915_vma.o: changed function: i915_vma_bind
|
|
|
336690 |
---------------------------
|
|
|
336690 |
|
|
|
336690 |
Kpatch-MR: https://gitlab.com/redhat/prdsc/rhel/src/kpatch/rhel-7/-/merge_requests/24
|
|
|
336690 |
Kernels:
|
|
|
336690 |
3.10.0-1160.21.1.el7
|
|
|
336690 |
3.10.0-1160.24.1.el7
|
|
|
336690 |
3.10.0-1160.25.1.el7
|
|
|
336690 |
3.10.0-1160.31.1.el7
|
|
|
336690 |
3.10.0-1160.36.2.el7
|
|
|
336690 |
3.10.0-1160.41.1.el7
|
|
|
336690 |
3.10.0-1160.42.2.el7
|
|
|
336690 |
3.10.0-1160.45.1.el7
|
|
|
336690 |
3.10.0-1160.49.1.el7
|
|
|
336690 |
3.10.0-1160.53.1.el7
|
|
|
336690 |
|
|
|
336690 |
Modifications:
|
|
|
336690 |
- Move new bit definition to .c files avoiding changes to .h files.
|
|
|
336690 |
- Redefine tlb_invalidate_lock as a klp shadow variable and avoid
|
|
|
336690 |
changes to global structure definition (struct drm_i915_private).
|
|
|
336690 |
|
|
|
336690 |
commit c96aee1f92b3a81d8a36efd91cfc5ff33ca3ac80
|
|
|
336690 |
Author: Dave Airlie <airlied@redhat.com>
|
|
|
336690 |
Date: Tue Jan 25 18:19:06 2022 -0500
|
|
|
336690 |
|
|
|
336690 |
drm/i915: Flush TLBs before releasing backing store
|
|
|
336690 |
|
|
|
336690 |
Bugzilla: http://bugzilla.redhat.com/2044319
|
|
|
336690 |
CVE: CVE-2022-0330
|
|
|
336690 |
|
|
|
336690 |
commit 7938d61591d33394a21bdd7797a245b65428f44c
|
|
|
336690 |
Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
|
|
|
336690 |
Date: Tue Oct 19 13:27:10 2021 +0100
|
|
|
336690 |
|
|
|
336690 |
drm/i915: Flush TLBs before releasing backing store
|
|
|
336690 |
|
|
|
336690 |
We need to flush TLBs before releasing backing store otherwise userspace
|
|
|
336690 |
is able to encounter stale entries if a) it is not declaring access to
|
|
|
336690 |
certain buffers and b) it races with the backing store release from a
|
|
|
336690 |
such undeclared execution already executing on the GPU in parallel.
|
|
|
336690 |
|
|
|
336690 |
The approach taken is to mark any buffer objects which were ever bound
|
|
|
336690 |
to the GPU and to trigger a serialized TLB flush when their backing
|
|
|
336690 |
store is released.
|
|
|
336690 |
|
|
|
336690 |
Alternatively the flushing could be done on VMA unbind, at which point
|
|
|
336690 |
we would be able to ascertain whether there is potential a parallel GPU
|
|
|
336690 |
execution (which could race), but essentially it boils down to paying
|
|
|
336690 |
the cost of TLB flushes potentially needlessly at VMA unbind time (when
|
|
|
336690 |
the backing store is not known to be going away so not needed for
|
|
|
336690 |
safety), versus potentially needlessly at backing store relase time
|
|
|
336690 |
(since we at that point cannot tell whether there is anything executing
|
|
|
336690 |
on the GPU which uses that object).
|
|
|
336690 |
|
|
|
336690 |
Thereforce simplicity of implementation has been chosen for now with
|
|
|
336690 |
scope to benchmark and refine later as required.
|
|
|
336690 |
|
|
|
336690 |
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
|
|
|
336690 |
Reported-by: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com>
|
|
|
336690 |
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
|
|
|
336690 |
Acked-by: Dave Airlie <airlied@redhat.com>
|
|
|
336690 |
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
|
|
|
336690 |
Cc: Jon Bloomfield <jon.bloomfield@intel.com>
|
|
|
336690 |
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
|
|
|
336690 |
Cc: Jani Nikula <jani.nikula@intel.com>
|
|
|
336690 |
Cc: stable@vger.kernel.org
|
|
|
336690 |
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
|
|
|
336690 |
|
|
|
336690 |
Signed-off-by: Dave Airlie <airlied@redhat.com>
|
|
|
336690 |
|
|
|
336690 |
Signed-off-by: Yannick Cote <ycote@redhat.com>
|
|
|
336690 |
---
|
|
|
336690 |
drivers/gpu/drm/i915/i915_drv.c | 4 ++
|
|
|
336690 |
drivers/gpu/drm/i915/i915_gem.c | 104 ++++++++++++++++++++++++++++++++
|
|
|
336690 |
drivers/gpu/drm/i915/i915_vma.c | 6 ++
|
|
|
336690 |
3 files changed, 114 insertions(+)
|
|
|
336690 |
|
|
|
336690 |
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
|
|
|
336690 |
index db8a0e6d2f2f..9c12def30f4b 100644
|
|
|
336690 |
--- a/drivers/gpu/drm/i915/i915_drv.c
|
|
|
336690 |
+++ b/drivers/gpu/drm/i915/i915_drv.c
|
|
|
336690 |
@@ -1683,11 +1683,15 @@ i915_driver_create(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|
|
336690 |
return i915;
|
|
|
336690 |
}
|
|
|
336690 |
|
|
|
336690 |
+#include <linux/livepatch.h>
|
|
|
336690 |
+#define KLP_CVE_2022_0330_MUTEX 0x2022033000000001
|
|
|
336690 |
+
|
|
|
336690 |
static void i915_driver_destroy(struct drm_i915_private *i915)
|
|
|
336690 |
{
|
|
|
336690 |
struct pci_dev *pdev = i915->drm.pdev;
|
|
|
336690 |
|
|
|
336690 |
drm_dev_fini(&i915->drm);
|
|
|
336690 |
+ klp_shadow_free(i915, KLP_CVE_2022_0330_MUTEX, NULL);
|
|
|
336690 |
kfree(i915);
|
|
|
336690 |
|
|
|
336690 |
/* And make sure we never chase our dangling pointer from pci_dev */
|
|
|
336690 |
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
|
|
|
336690 |
index c96ccd9001bf..b882a08b32f9 100644
|
|
|
336690 |
--- a/drivers/gpu/drm/i915/i915_gem.c
|
|
|
336690 |
+++ b/drivers/gpu/drm/i915/i915_gem.c
|
|
|
336690 |
@@ -2464,6 +2464,101 @@ static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
|
|
|
336690 |
rcu_read_unlock();
|
|
|
336690 |
}
|
|
|
336690 |
|
|
|
336690 |
+struct reg_and_bit {
|
|
|
336690 |
+ i915_reg_t reg;
|
|
|
336690 |
+ u32 bit;
|
|
|
336690 |
+};
|
|
|
336690 |
+
|
|
|
336690 |
+static struct reg_and_bit
|
|
|
336690 |
+get_reg_and_bit(const struct intel_engine_cs *engine,
|
|
|
336690 |
+ const i915_reg_t *regs, const unsigned int num)
|
|
|
336690 |
+{
|
|
|
336690 |
+ const unsigned int class = engine->class;
|
|
|
336690 |
+ struct reg_and_bit rb = { .bit = 1 };
|
|
|
336690 |
+
|
|
|
336690 |
+ if (WARN_ON_ONCE(class >= num || !regs[class].reg))
|
|
|
336690 |
+ return rb;
|
|
|
336690 |
+
|
|
|
336690 |
+ rb.reg = regs[class];
|
|
|
336690 |
+ if (class == VIDEO_DECODE_CLASS)
|
|
|
336690 |
+ rb.reg.reg += 4 * engine->instance; /* GEN8_M2TCR */
|
|
|
336690 |
+
|
|
|
336690 |
+ return rb;
|
|
|
336690 |
+}
|
|
|
336690 |
+
|
|
|
336690 |
+#include <linux/livepatch.h>
|
|
|
336690 |
+#define KLP_CVE_2022_0330_MUTEX 0x2022033000000001
|
|
|
336690 |
+#define I915_BO_WAS_BOUND_BIT 1
|
|
|
336690 |
+#define GEN8_RTCR _MMIO(0x4260)
|
|
|
336690 |
+#define GEN8_M1TCR _MMIO(0x4264)
|
|
|
336690 |
+#define GEN8_M2TCR _MMIO(0x4268)
|
|
|
336690 |
+#define GEN8_BTCR _MMIO(0x426c)
|
|
|
336690 |
+#define GEN8_VTCR _MMIO(0x4270)
|
|
|
336690 |
+
|
|
|
336690 |
+static int tlb_invalidate_lock_ctor(void *obj, void *shadow_data, void *ctor_data)
|
|
|
336690 |
+{
|
|
|
336690 |
+ struct mutex *m = shadow_data;
|
|
|
336690 |
+ mutex_init(m);
|
|
|
336690 |
+
|
|
|
336690 |
+ return 0;
|
|
|
336690 |
+}
|
|
|
336690 |
+
|
|
|
336690 |
+static void invalidate_tlbs(struct drm_i915_private *dev_priv)
|
|
|
336690 |
+{
|
|
|
336690 |
+ static const i915_reg_t gen8_regs[] = {
|
|
|
336690 |
+ [RENDER_CLASS] = GEN8_RTCR,
|
|
|
336690 |
+ [VIDEO_DECODE_CLASS] = GEN8_M1TCR, /* , GEN8_M2TCR */
|
|
|
336690 |
+ [VIDEO_ENHANCEMENT_CLASS] = GEN8_VTCR,
|
|
|
336690 |
+ [COPY_ENGINE_CLASS] = GEN8_BTCR,
|
|
|
336690 |
+ };
|
|
|
336690 |
+ const unsigned int num = ARRAY_SIZE(gen8_regs);
|
|
|
336690 |
+ const i915_reg_t *regs = gen8_regs;
|
|
|
336690 |
+ struct intel_engine_cs *engine;
|
|
|
336690 |
+ enum intel_engine_id id;
|
|
|
336690 |
+ struct mutex *tlb_invalidate_lock;
|
|
|
336690 |
+
|
|
|
336690 |
+ if (INTEL_GEN(dev_priv) < 8)
|
|
|
336690 |
+ return;
|
|
|
336690 |
+
|
|
|
336690 |
+ GEM_TRACE("\n");
|
|
|
336690 |
+
|
|
|
336690 |
+ assert_rpm_wakelock_held(dev_priv);
|
|
|
336690 |
+
|
|
|
336690 |
+ tlb_invalidate_lock = klp_shadow_get_or_alloc(dev_priv, KLP_CVE_2022_0330_MUTEX,
|
|
|
336690 |
+ sizeof(*tlb_invalidate_lock), GFP_KERNEL,
|
|
|
336690 |
+ tlb_invalidate_lock_ctor, NULL);
|
|
|
336690 |
+ if (tlb_invalidate_lock) {
|
|
|
336690 |
+ mutex_lock(tlb_invalidate_lock);
|
|
|
336690 |
+ intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
|
|
336690 |
+
|
|
|
336690 |
+ for_each_engine(engine, dev_priv, id) {
|
|
|
336690 |
+ /*
|
|
|
336690 |
+ * HW architecture suggest typical invalidation time at 40us,
|
|
|
336690 |
+ * with pessimistic cases up to 100us and a recommendation to
|
|
|
336690 |
+ * cap at 1ms. We go a bit higher just in case.
|
|
|
336690 |
+ */
|
|
|
336690 |
+ const unsigned int timeout_us = 100;
|
|
|
336690 |
+ const unsigned int timeout_ms = 4;
|
|
|
336690 |
+ struct reg_and_bit rb;
|
|
|
336690 |
+
|
|
|
336690 |
+ rb = get_reg_and_bit(engine, regs, num);
|
|
|
336690 |
+ if (!i915_mmio_reg_offset(rb.reg))
|
|
|
336690 |
+ continue;
|
|
|
336690 |
+
|
|
|
336690 |
+ I915_WRITE_FW(rb.reg, rb.bit);
|
|
|
336690 |
+ if (__intel_wait_for_register_fw(dev_priv,
|
|
|
336690 |
+ rb.reg, rb.bit, 0,
|
|
|
336690 |
+ timeout_us, timeout_ms,
|
|
|
336690 |
+ NULL))
|
|
|
336690 |
+ DRM_ERROR_RATELIMITED("%s TLB invalidation did not complete in %ums!\n",
|
|
|
336690 |
+ engine->name, timeout_ms);
|
|
|
336690 |
+ }
|
|
|
336690 |
+
|
|
|
336690 |
+ intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
|
|
336690 |
+ mutex_unlock(tlb_invalidate_lock);
|
|
|
336690 |
+ }
|
|
|
336690 |
+}
|
|
|
336690 |
+
|
|
|
336690 |
static struct sg_table *
|
|
|
336690 |
__i915_gem_object_unset_pages(struct drm_i915_gem_object *obj)
|
|
|
336690 |
{
|
|
|
336690 |
@@ -2493,6 +2588,15 @@ __i915_gem_object_unset_pages(struct drm_i915_gem_object *obj)
|
|
|
336690 |
__i915_gem_object_reset_page_iter(obj);
|
|
|
336690 |
obj->mm.page_sizes.phys = obj->mm.page_sizes.sg = 0;
|
|
|
336690 |
|
|
|
336690 |
+ if (test_and_clear_bit(I915_BO_WAS_BOUND_BIT, &obj->flags)) {
|
|
|
336690 |
+ struct drm_i915_private *i915 = to_i915(obj->base.dev);
|
|
|
336690 |
+
|
|
|
336690 |
+ if (intel_runtime_pm_get_if_in_use(i915)) {
|
|
|
336690 |
+ invalidate_tlbs(i915);
|
|
|
336690 |
+ intel_runtime_pm_put(i915);
|
|
|
336690 |
+ }
|
|
|
336690 |
+ }
|
|
|
336690 |
+
|
|
|
336690 |
return pages;
|
|
|
336690 |
}
|
|
|
336690 |
|
|
|
336690 |
diff --git a/drivers/gpu/drm/i915/i915_vma.c b/drivers/gpu/drm/i915/i915_vma.c
|
|
|
336690 |
index 5b4d78cdb4ca..906e6321ad77 100644
|
|
|
336690 |
--- a/drivers/gpu/drm/i915/i915_vma.c
|
|
|
336690 |
+++ b/drivers/gpu/drm/i915/i915_vma.c
|
|
|
336690 |
@@ -285,6 +285,8 @@ i915_vma_instance(struct drm_i915_gem_object *obj,
|
|
|
336690 |
return vma;
|
|
|
336690 |
}
|
|
|
336690 |
|
|
|
336690 |
+#define I915_BO_WAS_BOUND_BIT 1
|
|
|
336690 |
+
|
|
|
336690 |
/**
|
|
|
336690 |
* i915_vma_bind - Sets up PTEs for an VMA in it's corresponding address space.
|
|
|
336690 |
* @vma: VMA to map
|
|
|
336690 |
@@ -335,6 +337,10 @@ int i915_vma_bind(struct i915_vma *vma, enum i915_cache_level cache_level,
|
|
|
336690 |
return ret;
|
|
|
336690 |
|
|
|
336690 |
vma->flags |= bind_flags;
|
|
|
336690 |
+
|
|
|
336690 |
+ if (vma->obj)
|
|
|
336690 |
+ set_bit(I915_BO_WAS_BOUND_BIT, &vma->obj->flags);
|
|
|
336690 |
+
|
|
|
336690 |
return 0;
|
|
|
336690 |
}
|
|
|
336690 |
|
|
|
336690 |
--
|
|
|
336690 |
2.26.3
|
|
|
336690 |
|
|
|
336690 |
|