~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/progs/verifier_gotol.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 
  3 #include <linux/bpf.h>
  4 #include <bpf/bpf_helpers.h>
  5 #include "bpf_misc.h"
  6 
  7 #if (defined(__TARGET_ARCH_arm64) || defined(__TARGET_ARCH_x86) || \
  8         (defined(__TARGET_ARCH_riscv) && __riscv_xlen == 64) || \
  9         defined(__TARGET_ARCH_arm) || defined(__TARGET_ARCH_s390) || \
 10         defined(__TARGET_ARCH_loongarch)) && \
 11         __clang_major__ >= 18
 12 
 13 SEC("socket")
 14 __description("gotol, small_imm")
 15 __success __success_unpriv __retval(1)
 16 __naked void gotol_small_imm(void)
 17 {
 18         asm volatile ("                                 \
 19         call %[bpf_ktime_get_ns];                       \
 20         if r0 == 0 goto l0_%=;                          \
 21         gotol l1_%=;                                    \
 22 l2_%=:                                                  \
 23         gotol l3_%=;                                    \
 24 l1_%=:                                                  \
 25         r0 = 1;                                         \
 26         gotol l2_%=;                                    \
 27 l0_%=:                                                  \
 28         r0 = 2;                                         \
 29 l3_%=:                                                  \
 30         exit;                                           \
 31 "       :
 32         : __imm(bpf_ktime_get_ns)
 33         : __clobber_all);
 34 }
 35 
 36 SEC("socket")
 37 __description("gotol, large_imm")
 38 __success __failure_unpriv __retval(40000)
 39 __naked void gotol_large_imm(void)
 40 {
 41         asm volatile ("                                 \
 42         gotol 1f;                                       \
 43 0:                                                      \
 44         r0 = 0;                                         \
 45         .rept 40000;                                    \
 46         r0 += 1;                                        \
 47         .endr;                                          \
 48         exit;                                           \
 49 1:      gotol 0b;                                       \
 50 "       :
 51         :
 52         : __clobber_all);
 53 }
 54 
 55 #else
 56 
 57 SEC("socket")
 58 __description("cpuv4 is not supported by compiler or jit, use a dummy test")
 59 __success
 60 int dummy_test(void)
 61 {
 62         return 0;
 63 }
 64 
 65 #endif
 66 
 67 char _license[] SEC("license") = "GPL";
 68 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php