Blame SOURCES/CVE-2022-0330.patch

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