aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/bpf/bpf_filter/tests/test0010.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/bpf/bpf_filter/tests/test0010.h')
-rw-r--r--tools/regression/bpf/bpf_filter/tests/test0010.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tools/regression/bpf/bpf_filter/tests/test0010.h b/tools/regression/bpf/bpf_filter/tests/test0010.h
new file mode 100644
index 000000000000..ce8488e2c806
--- /dev/null
+++ b/tools/regression/bpf/bpf_filter/tests/test0010.h
@@ -0,0 +1,32 @@
+/*-
+ * Test 0010: BPF_LD+BPF_H+BPF_IND
+ *
+ * $FreeBSD$
+ */
+
+/* BPF program */
+struct bpf_insn pc[] = {
+ BPF_STMT(BPF_LDX+BPF_IMM, 1),
+ BPF_STMT(BPF_LD+BPF_H+BPF_IND, 1),
+ BPF_STMT(BPF_RET+BPF_A, 0),
+};
+
+/* Packet */
+u_char pkt[] = {
+ 0x01, 0x23, 0x45, 0x67,
+};
+
+/* Packet length seen on wire */
+u_int wirelen = sizeof(pkt);
+
+/* Packet length passed on buffer */
+u_int buflen = sizeof(pkt);
+
+/* Invalid instruction */
+int invalid = 0;
+
+/* Expected return value */
+u_int expect = 0x4567;
+
+/* Expected signal */
+int expect_signal = 0;