├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── fedora-dependency.sh ├── include ├── linux │ ├── bpf.h │ ├── bpf_local_storage.h │ ├── bpf_lsm.h │ └── bpf_types.h └── uapi │ └── linux │ └── bpf.h ├── kernel └── bpf │ ├── Makefile │ ├── bpf_cred_storage.c │ ├── bpf_file_storage.c │ ├── bpf_ipc_storage.c │ ├── bpf_lsm.c │ ├── bpf_msg_storage.c │ ├── syscall.c │ └── verifier.c ├── scripts └── bpf_helpers_doc.py ├── security └── bpf │ └── hooks.c └── tools ├── bpf └── bpftool │ ├── Documentation │ └── bpftool-map.rst │ ├── bash-completion │ └── bpftool │ └── map.c ├── include └── uapi │ └── linux │ └── bpf.h ├── lib └── bpf │ └── libbpf_probes.c └── testing └── selftests └── bpf ├── prog_tests └── test_local_storage.c └── progs └── local_storage.c /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/README.md -------------------------------------------------------------------------------- /fedora-dependency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/fedora-dependency.sh -------------------------------------------------------------------------------- /include/linux/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/include/linux/bpf.h -------------------------------------------------------------------------------- /include/linux/bpf_local_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/include/linux/bpf_local_storage.h -------------------------------------------------------------------------------- /include/linux/bpf_lsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/include/linux/bpf_lsm.h -------------------------------------------------------------------------------- /include/linux/bpf_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/include/linux/bpf_types.h -------------------------------------------------------------------------------- /include/uapi/linux/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/include/uapi/linux/bpf.h -------------------------------------------------------------------------------- /kernel/bpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/Makefile -------------------------------------------------------------------------------- /kernel/bpf/bpf_cred_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/bpf_cred_storage.c -------------------------------------------------------------------------------- /kernel/bpf/bpf_file_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/bpf_file_storage.c -------------------------------------------------------------------------------- /kernel/bpf/bpf_ipc_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/bpf_ipc_storage.c -------------------------------------------------------------------------------- /kernel/bpf/bpf_lsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/bpf_lsm.c -------------------------------------------------------------------------------- /kernel/bpf/bpf_msg_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/bpf_msg_storage.c -------------------------------------------------------------------------------- /kernel/bpf/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/syscall.c -------------------------------------------------------------------------------- /kernel/bpf/verifier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/kernel/bpf/verifier.c -------------------------------------------------------------------------------- /scripts/bpf_helpers_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/scripts/bpf_helpers_doc.py -------------------------------------------------------------------------------- /security/bpf/hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/security/bpf/hooks.c -------------------------------------------------------------------------------- /tools/bpf/bpftool/Documentation/bpftool-map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/bpf/bpftool/Documentation/bpftool-map.rst -------------------------------------------------------------------------------- /tools/bpf/bpftool/bash-completion/bpftool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/bpf/bpftool/bash-completion/bpftool -------------------------------------------------------------------------------- /tools/bpf/bpftool/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/bpf/bpftool/map.c -------------------------------------------------------------------------------- /tools/include/uapi/linux/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/include/uapi/linux/bpf.h -------------------------------------------------------------------------------- /tools/lib/bpf/libbpf_probes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/lib/bpf/libbpf_probes.c -------------------------------------------------------------------------------- /tools/testing/selftests/bpf/prog_tests/test_local_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/testing/selftests/bpf/prog_tests/test_local_storage.c -------------------------------------------------------------------------------- /tools/testing/selftests/bpf/progs/local_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saBPF-project/sabpf-kernel/HEAD/tools/testing/selftests/bpf/progs/local_storage.c --------------------------------------------------------------------------------