summarylogtreecommitdiffstats
path: root/0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch
diff options
context:
space:
mode:
authorgraysky2020-03-31 17:01:38 -0400
committergraysky2020-03-31 17:01:38 -0400
commitd53a2e8af92d3bf2b71518b6c8dfbf6513969b1a (patch)
tree812951b8fbca6bd8574308c650ee1c32d9a5823a /0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch
parent18805da88eb8f32fd8ff1569c9ec790e732e0652 (diff)
downloadaur-d53a2e8af92d3bf2b71518b6c8dfbf6513969b1a.tar.gz
Update to 5.5.14rc1-2
Diffstat (limited to '0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch')
-rw-r--r--0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch58
1 files changed, 58 insertions, 0 deletions
diff --git a/0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch b/0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch
new file mode 100644
index 000000000000..dddd63697f8f
--- /dev/null
+++ b/0012-Revert-bpf-Provide-better-register-bounds-after-jmp3.patch
@@ -0,0 +1,58 @@
+From 9ff88052dbb54cdb7b05d91561b3540056c96e83 Mon Sep 17 00:00:00 2001
+From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com>
+Date: Mon, 30 Mar 2020 22:37:11 +0200
+Subject: [PATCH 12/13] Revert "bpf: Provide better register bounds after jmp32
+ instructions"
+
+This reverts commit 581738a681b6faae5725c2555439189ca81c0f1f.
+---
+ kernel/bpf/verifier.c | 19 -------------------
+ 1 file changed, 19 deletions(-)
+
+diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
+index 7d530ce8719d..79f38a281390 100644
+--- a/kernel/bpf/verifier.c
++++ b/kernel/bpf/verifier.c
+@@ -1034,17 +1034,6 @@ static void __reg_bound_offset(struct bpf_reg_state *reg)
+ reg->umax_value));
+ }
+
+-static void __reg_bound_offset32(struct bpf_reg_state *reg)
+-{
+- u64 mask = 0xffffFFFF;
+- struct tnum range = tnum_range(reg->umin_value & mask,
+- reg->umax_value & mask);
+- struct tnum lo32 = tnum_cast(reg->var_off, 4);
+- struct tnum hi32 = tnum_lshift(tnum_rshift(reg->var_off, 32), 32);
+-
+- reg->var_off = tnum_or(hi32, tnum_intersect(lo32, range));
+-}
+-
+ /* Reset the min/max bounds of a register */
+ static void __mark_reg_unbounded(struct bpf_reg_state *reg)
+ {
+@@ -5677,10 +5666,6 @@ static void reg_set_min_max(struct bpf_reg_state *true_reg,
+ /* We might have learned some bits from the bounds. */
+ __reg_bound_offset(false_reg);
+ __reg_bound_offset(true_reg);
+- if (is_jmp32) {
+- __reg_bound_offset32(false_reg);
+- __reg_bound_offset32(true_reg);
+- }
+ /* Intersecting with the old var_off might have improved our bounds
+ * slightly. e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
+ * then new var_off is (0; 0x7f...fc) which improves our umax.
+@@ -5790,10 +5775,6 @@ static void reg_set_min_max_inv(struct bpf_reg_state *true_reg,
+ /* We might have learned some bits from the bounds. */
+ __reg_bound_offset(false_reg);
+ __reg_bound_offset(true_reg);
+- if (is_jmp32) {
+- __reg_bound_offset32(false_reg);
+- __reg_bound_offset32(true_reg);
+- }
+ /* Intersecting with the old var_off might have improved our bounds
+ * slightly. e.g. if umax was 0x7f...f and var_off was (0; 0xf...fc),
+ * then new var_off is (0; 0x7f...fc) which improves our umax.
+--
+2.26.0
+