mirror of https://github.com/OpenIPC/firmware.git
59 lines
1.5 KiB
Diff
59 lines
1.5 KiB
Diff
diff -drupN a/include/linux/security.h b/include/linux/security.h
|
|
--- a/include/linux/security.h 2018-08-06 17:23:04.000000000 +0300
|
|
+++ b/include/linux/security.h 2022-06-12 05:28:14.000000000 +0300
|
|
@@ -1662,6 +1662,54 @@ static inline void securityfs_remove(str
|
|
|
|
#endif
|
|
|
|
+#ifdef CONFIG_BPF_SYSCALL
|
|
+union bpf_attr;
|
|
+struct bpf_map;
|
|
+struct bpf_prog;
|
|
+struct bpf_prog_aux;
|
|
+#ifdef CONFIG_SECURITY
|
|
+extern int security_bpf(int cmd, union bpf_attr *attr, unsigned int size);
|
|
+extern int security_bpf_map(struct bpf_map *map, fmode_t fmode);
|
|
+extern int security_bpf_prog(struct bpf_prog *prog);
|
|
+extern int security_bpf_map_alloc(struct bpf_map *map);
|
|
+extern void security_bpf_map_free(struct bpf_map *map);
|
|
+extern int security_bpf_prog_alloc(struct bpf_prog_aux *aux);
|
|
+extern void security_bpf_prog_free(struct bpf_prog_aux *aux);
|
|
+#else
|
|
+static inline int security_bpf(int cmd, union bpf_attr *attr,
|
|
+ unsigned int size)
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static inline int security_bpf_map(struct bpf_map *map, fmode_t fmode)
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static inline int security_bpf_prog(struct bpf_prog *prog)
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static inline int security_bpf_map_alloc(struct bpf_map *map)
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static inline void security_bpf_map_free(struct bpf_map *map)
|
|
+{ }
|
|
+
|
|
+static inline int security_bpf_prog_alloc(struct bpf_prog_aux *aux)
|
|
+{
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+static inline void security_bpf_prog_free(struct bpf_prog_aux *aux)
|
|
+{ }
|
|
+#endif /* CONFIG_SECURITY */
|
|
+#endif /* CONFIG_BPF_SYSCALL */
|
|
+
|
|
#ifdef CONFIG_SECURITY
|
|
|
|
static inline char *alloc_secdata(void)
|