summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch')
-rw-r--r--recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch b/recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch
new file mode 100644
index 0000000..e50e108
--- /dev/null
+++ b/recipes-kernel/linux/linux-cavium/CVE-2017-5577.patch
@@ -0,0 +1,38 @@
1From cfba2a001d0e36905016bb4f87fc47245c944c36 Mon Sep 17 00:00:00 2001
2From: Eric Anholt <eric@anholt.net>
3Date: Tue, 17 Jan 2017 21:58:06 +1100
4Subject: [PATCH] drm/vc4: Return -EINVAL on the overflow checks failing.
5
6commit 6b8ac63847bc2f958dd93c09edc941a0118992d9 upstream.
7
8By failing to set the errno, we'd continue on to trying to set up the
9RCL, and then oops on trying to dereference the tile_bo that binning
10validation should have set up.
11
12CVE: CVE-2017-5577
13Upstream-Status: Backport [from kernel.org longterm 4.9.52]
14
15Reported-by: Ingo Molnar <mingo@kernel.org>
16Signed-off-by: Eric Anholt <eric@anholt.net>
17Fixes: d5b1a78a772f ("drm/vc4: Add support for drawing 3D frames.")
18Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19Signed-off-by: Sona Sarmadi <sona.sarmadi@enea.com>
20---
21 drivers/gpu/drm/vc4/vc4_gem.c | 1 +
22 1 file changed, 1 insertion(+)
23
24diff --git a/drivers/gpu/drm/vc4/vc4_gem.c b/drivers/gpu/drm/vc4/vc4_gem.c
25index 39ef674..18e3717 100644
26--- a/drivers/gpu/drm/vc4/vc4_gem.c
27+++ b/drivers/gpu/drm/vc4/vc4_gem.c
28@@ -601,6 +601,7 @@ struct vc4_hang_state {
29 sizeof(struct vc4_shader_state)) ||
30 temp_size < exec_size) {
31 DRM_ERROR("overflow in exec arguments\n");
32+ ret = -EINVAL;
33 goto fail;
34 }
35
36--
371.9.1
38