bpf, arm64: Support 32-bit offset jmp instruction
authorXu Kuohai <xukuohai@huawei.com>
Tue, 15 Aug 2023 15:41:56 +0000 (11:41 -0400)
committerDaniel Borkmann <daniel@iogearbox.net>
Fri, 18 Aug 2023 13:46:18 +0000 (15:46 +0200)
Add support for 32-bit offset jmp instructions. Given the arm64 direct jump
range is +-128MB, which is large enough for BPF prog, jumps beyond this range
are not supported.

Signed-off-by: Xu Kuohai <xukuohai@huawei.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Tested-by: Florent Revest <revest@chromium.org>
Acked-by: Florent Revest <revest@chromium.org>
Link: https://lore.kernel.org/bpf/20230815154158.717901-6-xukuohai@huaweicloud.com
arch/arm64/net/bpf_jit_comp.c

index 1d35acb..924b8ef 100644 (file)
@@ -982,7 +982,11 @@ emit_bswap_uxt:
 
        /* JUMP off */
        case BPF_JMP | BPF_JA:
-               jmp_offset = bpf2a64_offset(i, off, ctx);
+       case BPF_JMP32 | BPF_JA:
+               if (BPF_CLASS(code) == BPF_JMP)
+                       jmp_offset = bpf2a64_offset(i, off, ctx);
+               else
+                       jmp_offset = bpf2a64_offset(i, imm, ctx);
                check_imm26(jmp_offset);
                emit(A64_B(jmp_offset), ctx);
                break;