1 /* SPDX-License-Identifier: GPL-2.0 */
4 * Copyright (C) 2020 Google LLC.
7 #ifndef _LINUX_BPF_LSM_H
8 #define _LINUX_BPF_LSM_H
10 #include <linux/sched.h>
11 #include <linux/bpf.h>
12 #include <linux/lsm_hooks.h>
16 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \
17 RET bpf_lsm_##NAME(__VA_ARGS__);
18 #include <linux/lsm_hook_defs.h>
21 struct bpf_storage_blob {
22 struct bpf_local_storage __rcu *storage;
25 extern struct lsm_blob_sizes bpf_lsm_blob_sizes;
27 int bpf_lsm_verify_prog(struct bpf_verifier_log *vlog,
28 const struct bpf_prog *prog);
30 bool bpf_lsm_is_sleepable_hook(u32 btf_id);
31 bool bpf_lsm_is_trusted(const struct bpf_prog *prog);
33 static inline struct bpf_storage_blob *bpf_inode(
34 const struct inode *inode)
36 if (unlikely(!inode->i_security))
39 return inode->i_security + bpf_lsm_blob_sizes.lbs_inode;
42 extern const struct bpf_func_proto bpf_inode_storage_get_proto;
43 extern const struct bpf_func_proto bpf_inode_storage_delete_proto;
44 void bpf_inode_storage_free(struct inode *inode);
46 void bpf_lsm_find_cgroup_shim(const struct bpf_prog *prog, bpf_func_t *bpf_func);
48 #else /* !CONFIG_BPF_LSM */
50 static inline bool bpf_lsm_is_sleepable_hook(u32 btf_id)
55 static inline bool bpf_lsm_is_trusted(const struct bpf_prog *prog)
60 static inline int bpf_lsm_verify_prog(struct bpf_verifier_log *vlog,
61 const struct bpf_prog *prog)
66 static inline struct bpf_storage_blob *bpf_inode(
67 const struct inode *inode)
72 static inline void bpf_inode_storage_free(struct inode *inode)
76 static inline void bpf_lsm_find_cgroup_shim(const struct bpf_prog *prog,
81 #endif /* CONFIG_BPF_LSM */
83 #endif /* _LINUX_BPF_LSM_H */