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

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/bpf/progs/sockopt_multi.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 #include <netinet/in.h>
  3 #include <linux/bpf.h>
  4 #include <bpf/bpf_helpers.h>
  5 
  6 char _license[] SEC("license") = "GPL";
  7 
  8 __s32 page_size = 0;
  9 
 10 SEC("cgroup/getsockopt")
 11 int _getsockopt_child(struct bpf_sockopt *ctx)
 12 {
 13         __u8 *optval_end = ctx->optval_end;
 14         __u8 *optval = ctx->optval;
 15 
 16         if (ctx->level != SOL_IP || ctx->optname != IP_TOS)
 17                 goto out;
 18 
 19         if (optval + 1 > optval_end)
 20                 return 0; /* EPERM, bounds check */
 21 
 22         if (optval[0] != 0x80)
 23                 return 0; /* EPERM, unexpected optval from the kernel */
 24 
 25         ctx->retval = 0; /* Reset system call return value to zero */
 26 
 27         optval[0] = 0x90;
 28         ctx->optlen = 1;
 29 
 30         return 1;
 31 
 32 out:
 33         /* optval larger than PAGE_SIZE use kernel's buffer. */
 34         if (ctx->optlen > page_size)
 35                 ctx->optlen = 0;
 36         return 1;
 37 }
 38 
 39 SEC("cgroup/getsockopt")
 40 int _getsockopt_parent(struct bpf_sockopt *ctx)
 41 {
 42         __u8 *optval_end = ctx->optval_end;
 43         __u8 *optval = ctx->optval;
 44 
 45         if (ctx->level != SOL_IP || ctx->optname != IP_TOS)
 46                 goto out;
 47 
 48         if (optval + 1 > optval_end)
 49                 return 0; /* EPERM, bounds check */
 50 
 51         if (optval[0] != 0x90)
 52                 return 0; /* EPERM, unexpected optval from the kernel */
 53 
 54         ctx->retval = 0; /* Reset system call return value to zero */
 55 
 56         optval[0] = 0xA0;
 57         ctx->optlen = 1;
 58 
 59         return 1;
 60 
 61 out:
 62         /* optval larger than PAGE_SIZE use kernel's buffer. */
 63         if (ctx->optlen > page_size)
 64                 ctx->optlen = 0;
 65         return 1;
 66 }
 67 
 68 SEC("cgroup/setsockopt")
 69 int _setsockopt(struct bpf_sockopt *ctx)
 70 {
 71         __u8 *optval_end = ctx->optval_end;
 72         __u8 *optval = ctx->optval;
 73 
 74         if (ctx->level != SOL_IP || ctx->optname != IP_TOS)
 75                 goto out;
 76 
 77         if (optval + 1 > optval_end)
 78                 return 0; /* EPERM, bounds check */
 79 
 80         optval[0] += 0x10;
 81         ctx->optlen = 1;
 82 
 83         return 1;
 84 
 85 out:
 86         /* optval larger than PAGE_SIZE use kernel's buffer. */
 87         if (ctx->optlen > page_size)
 88                 ctx->optlen = 0;
 89         return 1;
 90 }
 91 

~ [ 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