Blame SOURCES/CVE-2022-0330.patch

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