aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/loop4.c
diff options
context:
space:
mode:
authorAlexei Starovoitov <ast@kernel.org>2019-08-02 15:54:01 -0700
committerAlexei Starovoitov <ast@kernel.org>2019-08-06 08:20:25 -0700
commita78d0dbec712999ecd2f800eea0f62dc93867a78 (patch)
tree90f15e134543da24e38678741d42abee60aba6a4 /tools/testing/selftests/bpf/progs/loop4.c
parentMerge branch 'setsockopt-extra-mem' (diff)
downloadlinux-dev-a78d0dbec712999ecd2f800eea0f62dc93867a78.tar.xz
linux-dev-a78d0dbec712999ecd2f800eea0f62dc93867a78.zip
selftests/bpf: add loop test 4
Add a test that returns a 'random' number between [0, 2^20) If state pruning is not working correctly for loop body the number of processed insns will be 2^20 * num_of_insns_in_loop_body and the program will be rejected. Signed-off-by: Alexei Starovoitov <ast@kernel.org> Acked-by: Andrii Nakryiko <andriin@fb.com> Acked-by: Yonghong Song <yhs@fb.com>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/bpf/progs/loop4.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/progs/loop4.c b/tools/testing/selftests/bpf/progs/loop4.c
new file mode 100644
index 000000000000..650859022771
--- /dev/null
+++ b/tools/testing/selftests/bpf/progs/loop4.c
@@ -0,0 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0
+// Copyright (c) 2019 Facebook
+#include <linux/bpf.h>
+#include "bpf_helpers.h"
+
+char _license[] SEC("license") = "GPL";
+
+SEC("socket")
+int combinations(volatile struct __sk_buff* skb)
+{
+ int ret = 0, i;
+
+#pragma nounroll
+ for (i = 0; i < 20; i++)
+ if (skb->len)
+ ret |= 1 << i;
+ return ret;
+}