forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: bpf: add userspace example for modifying sk_bound_dev_if
Add a simple program to demonstrate the ability to attach a bpf program to a cgroup that sets sk_bound_dev_if for AF_INET{6} sockets when they are created. Signed-off-by: David Ahern <[email protected]> Acked-by: Alexei Starovoitov <[email protected]> Signed-off-by: David S. Miller <[email protected]>
- Loading branch information
Showing
3 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* eBPF example program: | ||
* | ||
* - Loads eBPF program | ||
* | ||
* The eBPF program sets the sk_bound_dev_if index in new AF_INET{6} | ||
* sockets opened by processes in the cgroup. | ||
* | ||
* - Attaches the new program to a cgroup using BPF_PROG_ATTACH | ||
*/ | ||
|
||
#define _GNU_SOURCE | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <stddef.h> | ||
#include <string.h> | ||
#include <unistd.h> | ||
#include <assert.h> | ||
#include <errno.h> | ||
#include <fcntl.h> | ||
#include <net/if.h> | ||
#include <linux/bpf.h> | ||
|
||
#include "libbpf.h" | ||
|
||
static int prog_load(int idx) | ||
{ | ||
struct bpf_insn prog[] = { | ||
BPF_MOV64_REG(BPF_REG_6, BPF_REG_1), | ||
BPF_MOV64_IMM(BPF_REG_3, idx), | ||
BPF_MOV64_IMM(BPF_REG_2, offsetof(struct bpf_sock, bound_dev_if)), | ||
BPF_STX_MEM(BPF_W, BPF_REG_1, BPF_REG_3, offsetof(struct bpf_sock, bound_dev_if)), | ||
BPF_MOV64_IMM(BPF_REG_0, 1), /* r0 = verdict */ | ||
BPF_EXIT_INSN(), | ||
}; | ||
|
||
return bpf_prog_load(BPF_PROG_TYPE_CGROUP_SOCK, prog, sizeof(prog), | ||
"GPL", 0); | ||
} | ||
|
||
static int usage(const char *argv0) | ||
{ | ||
printf("Usage: %s cg-path device-index\n", argv0); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
int cg_fd, prog_fd, ret; | ||
unsigned int idx; | ||
|
||
if (argc < 2) | ||
return usage(argv[0]); | ||
|
||
idx = if_nametoindex(argv[2]); | ||
if (!idx) { | ||
printf("Invalid device name\n"); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
cg_fd = open(argv[1], O_DIRECTORY | O_RDONLY); | ||
if (cg_fd < 0) { | ||
printf("Failed to open cgroup path: '%s'\n", strerror(errno)); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
prog_fd = prog_load(idx); | ||
printf("Output from kernel verifier:\n%s\n-------\n", bpf_log_buf); | ||
|
||
if (prog_fd < 0) { | ||
printf("Failed to load prog: '%s'\n", strerror(errno)); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
ret = bpf_prog_attach(prog_fd, cg_fd, BPF_CGROUP_INET_SOCK_CREATE); | ||
if (ret < 0) { | ||
printf("Failed to attach prog to cgroup: '%s'\n", | ||
strerror(errno)); | ||
return EXIT_FAILURE; | ||
} | ||
|
||
return EXIT_SUCCESS; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
function config_device { | ||
ip netns add at_ns0 | ||
ip link add veth0 type veth peer name veth0b | ||
ip link set veth0b up | ||
ip link set veth0 netns at_ns0 | ||
ip netns exec at_ns0 ip addr add 172.16.1.100/24 dev veth0 | ||
ip netns exec at_ns0 ip addr add 2401:db00::1/64 dev veth0 nodad | ||
ip netns exec at_ns0 ip link set dev veth0 up | ||
ip link add foo type vrf table 1234 | ||
ip link set foo up | ||
ip addr add 172.16.1.101/24 dev veth0b | ||
ip addr add 2401:db00::2/64 dev veth0b nodad | ||
ip link set veth0b master foo | ||
} | ||
|
||
function attach_bpf { | ||
rm -rf /tmp/cgroupv2 | ||
mkdir -p /tmp/cgroupv2 | ||
mount -t cgroup2 none /tmp/cgroupv2 | ||
mkdir -p /tmp/cgroupv2/foo | ||
test_cgrp2_sock /tmp/cgroupv2/foo foo | ||
echo $$ >> /tmp/cgroupv2/foo/cgroup.procs | ||
} | ||
|
||
function cleanup { | ||
set +ex | ||
ip netns delete at_ns0 | ||
ip link del veth0 | ||
ip link del foo | ||
umount /tmp/cgroupv2 | ||
rm -rf /tmp/cgroupv2 | ||
set -ex | ||
} | ||
|
||
function do_test { | ||
ping -c1 -w1 172.16.1.100 | ||
ping6 -c1 -w1 2401:db00::1 | ||
} | ||
|
||
cleanup 2>/dev/null | ||
config_device | ||
attach_bpf | ||
do_test | ||
cleanup | ||
echo "*** PASS ***" |