Merge tag 'vfs-6.9.ntfs' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[linux-2.6-microblaze.git] / include / linux / lsm_hook_defs.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2
3 /*
4  * Linux Security Module Hook declarations.
5  *
6  * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
7  * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com>
8  * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
9  * Copyright (C) 2001 James Morris <jmorris@intercode.com.au>
10  * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group)
11  * Copyright (C) 2015 Intel Corporation.
12  * Copyright (C) 2015 Casey Schaufler <casey@schaufler-ca.com>
13  * Copyright (C) 2016 Mellanox Techonologies
14  * Copyright (C) 2020 Google LLC.
15  */
16
17 /*
18  * The macro LSM_HOOK is used to define the data structures required by
19  * the LSM framework using the pattern:
20  *
21  *      LSM_HOOK(<return_type>, <default_value>, <hook_name>, args...)
22  *
23  * struct security_hook_heads {
24  *   #define LSM_HOOK(RET, DEFAULT, NAME, ...) struct hlist_head NAME;
25  *   #include <linux/lsm_hook_defs.h>
26  *   #undef LSM_HOOK
27  * };
28  */
29 LSM_HOOK(int, 0, binder_set_context_mgr, const struct cred *mgr)
30 LSM_HOOK(int, 0, binder_transaction, const struct cred *from,
31          const struct cred *to)
32 LSM_HOOK(int, 0, binder_transfer_binder, const struct cred *from,
33          const struct cred *to)
34 LSM_HOOK(int, 0, binder_transfer_file, const struct cred *from,
35          const struct cred *to, const struct file *file)
36 LSM_HOOK(int, 0, ptrace_access_check, struct task_struct *child,
37          unsigned int mode)
38 LSM_HOOK(int, 0, ptrace_traceme, struct task_struct *parent)
39 LSM_HOOK(int, 0, capget, const struct task_struct *target, kernel_cap_t *effective,
40          kernel_cap_t *inheritable, kernel_cap_t *permitted)
41 LSM_HOOK(int, 0, capset, struct cred *new, const struct cred *old,
42          const kernel_cap_t *effective, const kernel_cap_t *inheritable,
43          const kernel_cap_t *permitted)
44 LSM_HOOK(int, 0, capable, const struct cred *cred, struct user_namespace *ns,
45          int cap, unsigned int opts)
46 LSM_HOOK(int, 0, quotactl, int cmds, int type, int id, const struct super_block *sb)
47 LSM_HOOK(int, 0, quota_on, struct dentry *dentry)
48 LSM_HOOK(int, 0, syslog, int type)
49 LSM_HOOK(int, 0, settime, const struct timespec64 *ts,
50          const struct timezone *tz)
51 LSM_HOOK(int, 1, vm_enough_memory, struct mm_struct *mm, long pages)
52 LSM_HOOK(int, 0, bprm_creds_for_exec, struct linux_binprm *bprm)
53 LSM_HOOK(int, 0, bprm_creds_from_file, struct linux_binprm *bprm, const struct file *file)
54 LSM_HOOK(int, 0, bprm_check_security, struct linux_binprm *bprm)
55 LSM_HOOK(void, LSM_RET_VOID, bprm_committing_creds, const struct linux_binprm *bprm)
56 LSM_HOOK(void, LSM_RET_VOID, bprm_committed_creds, const struct linux_binprm *bprm)
57 LSM_HOOK(int, 0, fs_context_submount, struct fs_context *fc, struct super_block *reference)
58 LSM_HOOK(int, 0, fs_context_dup, struct fs_context *fc,
59          struct fs_context *src_sc)
60 LSM_HOOK(int, -ENOPARAM, fs_context_parse_param, struct fs_context *fc,
61          struct fs_parameter *param)
62 LSM_HOOK(int, 0, sb_alloc_security, struct super_block *sb)
63 LSM_HOOK(void, LSM_RET_VOID, sb_delete, struct super_block *sb)
64 LSM_HOOK(void, LSM_RET_VOID, sb_free_security, struct super_block *sb)
65 LSM_HOOK(void, LSM_RET_VOID, sb_free_mnt_opts, void *mnt_opts)
66 LSM_HOOK(int, 0, sb_eat_lsm_opts, char *orig, void **mnt_opts)
67 LSM_HOOK(int, 0, sb_mnt_opts_compat, struct super_block *sb, void *mnt_opts)
68 LSM_HOOK(int, 0, sb_remount, struct super_block *sb, void *mnt_opts)
69 LSM_HOOK(int, 0, sb_kern_mount, const struct super_block *sb)
70 LSM_HOOK(int, 0, sb_show_options, struct seq_file *m, struct super_block *sb)
71 LSM_HOOK(int, 0, sb_statfs, struct dentry *dentry)
72 LSM_HOOK(int, 0, sb_mount, const char *dev_name, const struct path *path,
73          const char *type, unsigned long flags, void *data)
74 LSM_HOOK(int, 0, sb_umount, struct vfsmount *mnt, int flags)
75 LSM_HOOK(int, 0, sb_pivotroot, const struct path *old_path,
76          const struct path *new_path)
77 LSM_HOOK(int, 0, sb_set_mnt_opts, struct super_block *sb, void *mnt_opts,
78          unsigned long kern_flags, unsigned long *set_kern_flags)
79 LSM_HOOK(int, 0, sb_clone_mnt_opts, const struct super_block *oldsb,
80          struct super_block *newsb, unsigned long kern_flags,
81          unsigned long *set_kern_flags)
82 LSM_HOOK(int, 0, move_mount, const struct path *from_path,
83          const struct path *to_path)
84 LSM_HOOK(int, -EOPNOTSUPP, dentry_init_security, struct dentry *dentry,
85          int mode, const struct qstr *name, const char **xattr_name,
86          void **ctx, u32 *ctxlen)
87 LSM_HOOK(int, 0, dentry_create_files_as, struct dentry *dentry, int mode,
88          struct qstr *name, const struct cred *old, struct cred *new)
89
90 #ifdef CONFIG_SECURITY_PATH
91 LSM_HOOK(int, 0, path_unlink, const struct path *dir, struct dentry *dentry)
92 LSM_HOOK(int, 0, path_mkdir, const struct path *dir, struct dentry *dentry,
93          umode_t mode)
94 LSM_HOOK(int, 0, path_rmdir, const struct path *dir, struct dentry *dentry)
95 LSM_HOOK(int, 0, path_mknod, const struct path *dir, struct dentry *dentry,
96          umode_t mode, unsigned int dev)
97 LSM_HOOK(int, 0, path_truncate, const struct path *path)
98 LSM_HOOK(int, 0, path_symlink, const struct path *dir, struct dentry *dentry,
99          const char *old_name)
100 LSM_HOOK(int, 0, path_link, struct dentry *old_dentry,
101          const struct path *new_dir, struct dentry *new_dentry)
102 LSM_HOOK(int, 0, path_rename, const struct path *old_dir,
103          struct dentry *old_dentry, const struct path *new_dir,
104          struct dentry *new_dentry, unsigned int flags)
105 LSM_HOOK(int, 0, path_chmod, const struct path *path, umode_t mode)
106 LSM_HOOK(int, 0, path_chown, const struct path *path, kuid_t uid, kgid_t gid)
107 LSM_HOOK(int, 0, path_chroot, const struct path *path)
108 #endif /* CONFIG_SECURITY_PATH */
109
110 /* Needed for inode based security check */
111 LSM_HOOK(int, 0, path_notify, const struct path *path, u64 mask,
112          unsigned int obj_type)
113 LSM_HOOK(int, 0, inode_alloc_security, struct inode *inode)
114 LSM_HOOK(void, LSM_RET_VOID, inode_free_security, struct inode *inode)
115 LSM_HOOK(int, -EOPNOTSUPP, inode_init_security, struct inode *inode,
116          struct inode *dir, const struct qstr *qstr, struct xattr *xattrs,
117          int *xattr_count)
118 LSM_HOOK(int, 0, inode_init_security_anon, struct inode *inode,
119          const struct qstr *name, const struct inode *context_inode)
120 LSM_HOOK(int, 0, inode_create, struct inode *dir, struct dentry *dentry,
121          umode_t mode)
122 LSM_HOOK(int, 0, inode_link, struct dentry *old_dentry, struct inode *dir,
123          struct dentry *new_dentry)
124 LSM_HOOK(int, 0, inode_unlink, struct inode *dir, struct dentry *dentry)
125 LSM_HOOK(int, 0, inode_symlink, struct inode *dir, struct dentry *dentry,
126          const char *old_name)
127 LSM_HOOK(int, 0, inode_mkdir, struct inode *dir, struct dentry *dentry,
128          umode_t mode)
129 LSM_HOOK(int, 0, inode_rmdir, struct inode *dir, struct dentry *dentry)
130 LSM_HOOK(int, 0, inode_mknod, struct inode *dir, struct dentry *dentry,
131          umode_t mode, dev_t dev)
132 LSM_HOOK(int, 0, inode_rename, struct inode *old_dir, struct dentry *old_dentry,
133          struct inode *new_dir, struct dentry *new_dentry)
134 LSM_HOOK(int, 0, inode_readlink, struct dentry *dentry)
135 LSM_HOOK(int, 0, inode_follow_link, struct dentry *dentry, struct inode *inode,
136          bool rcu)
137 LSM_HOOK(int, 0, inode_permission, struct inode *inode, int mask)
138 LSM_HOOK(int, 0, inode_setattr, struct dentry *dentry, struct iattr *attr)
139 LSM_HOOK(int, 0, inode_getattr, const struct path *path)
140 LSM_HOOK(int, 0, inode_setxattr, struct mnt_idmap *idmap,
141          struct dentry *dentry, const char *name, const void *value,
142          size_t size, int flags)
143 LSM_HOOK(void, LSM_RET_VOID, inode_post_setxattr, struct dentry *dentry,
144          const char *name, const void *value, size_t size, int flags)
145 LSM_HOOK(int, 0, inode_getxattr, struct dentry *dentry, const char *name)
146 LSM_HOOK(int, 0, inode_listxattr, struct dentry *dentry)
147 LSM_HOOK(int, 0, inode_removexattr, struct mnt_idmap *idmap,
148          struct dentry *dentry, const char *name)
149 LSM_HOOK(int, 0, inode_set_acl, struct mnt_idmap *idmap,
150          struct dentry *dentry, const char *acl_name, struct posix_acl *kacl)
151 LSM_HOOK(int, 0, inode_get_acl, struct mnt_idmap *idmap,
152          struct dentry *dentry, const char *acl_name)
153 LSM_HOOK(int, 0, inode_remove_acl, struct mnt_idmap *idmap,
154          struct dentry *dentry, const char *acl_name)
155 LSM_HOOK(int, 0, inode_need_killpriv, struct dentry *dentry)
156 LSM_HOOK(int, 0, inode_killpriv, struct mnt_idmap *idmap,
157          struct dentry *dentry)
158 LSM_HOOK(int, -EOPNOTSUPP, inode_getsecurity, struct mnt_idmap *idmap,
159          struct inode *inode, const char *name, void **buffer, bool alloc)
160 LSM_HOOK(int, -EOPNOTSUPP, inode_setsecurity, struct inode *inode,
161          const char *name, const void *value, size_t size, int flags)
162 LSM_HOOK(int, 0, inode_listsecurity, struct inode *inode, char *buffer,
163          size_t buffer_size)
164 LSM_HOOK(void, LSM_RET_VOID, inode_getsecid, struct inode *inode, u32 *secid)
165 LSM_HOOK(int, 0, inode_copy_up, struct dentry *src, struct cred **new)
166 LSM_HOOK(int, -EOPNOTSUPP, inode_copy_up_xattr, const char *name)
167 LSM_HOOK(int, 0, kernfs_init_security, struct kernfs_node *kn_dir,
168          struct kernfs_node *kn)
169 LSM_HOOK(int, 0, file_permission, struct file *file, int mask)
170 LSM_HOOK(int, 0, file_alloc_security, struct file *file)
171 LSM_HOOK(void, LSM_RET_VOID, file_free_security, struct file *file)
172 LSM_HOOK(int, 0, file_ioctl, struct file *file, unsigned int cmd,
173          unsigned long arg)
174 LSM_HOOK(int, 0, file_ioctl_compat, struct file *file, unsigned int cmd,
175          unsigned long arg)
176 LSM_HOOK(int, 0, mmap_addr, unsigned long addr)
177 LSM_HOOK(int, 0, mmap_file, struct file *file, unsigned long reqprot,
178          unsigned long prot, unsigned long flags)
179 LSM_HOOK(int, 0, file_mprotect, struct vm_area_struct *vma,
180          unsigned long reqprot, unsigned long prot)
181 LSM_HOOK(int, 0, file_lock, struct file *file, unsigned int cmd)
182 LSM_HOOK(int, 0, file_fcntl, struct file *file, unsigned int cmd,
183          unsigned long arg)
184 LSM_HOOK(void, LSM_RET_VOID, file_set_fowner, struct file *file)
185 LSM_HOOK(int, 0, file_send_sigiotask, struct task_struct *tsk,
186          struct fown_struct *fown, int sig)
187 LSM_HOOK(int, 0, file_receive, struct file *file)
188 LSM_HOOK(int, 0, file_open, struct file *file)
189 LSM_HOOK(int, 0, file_truncate, struct file *file)
190 LSM_HOOK(int, 0, task_alloc, struct task_struct *task,
191          unsigned long clone_flags)
192 LSM_HOOK(void, LSM_RET_VOID, task_free, struct task_struct *task)
193 LSM_HOOK(int, 0, cred_alloc_blank, struct cred *cred, gfp_t gfp)
194 LSM_HOOK(void, LSM_RET_VOID, cred_free, struct cred *cred)
195 LSM_HOOK(int, 0, cred_prepare, struct cred *new, const struct cred *old,
196          gfp_t gfp)
197 LSM_HOOK(void, LSM_RET_VOID, cred_transfer, struct cred *new,
198          const struct cred *old)
199 LSM_HOOK(void, LSM_RET_VOID, cred_getsecid, const struct cred *c, u32 *secid)
200 LSM_HOOK(int, 0, kernel_act_as, struct cred *new, u32 secid)
201 LSM_HOOK(int, 0, kernel_create_files_as, struct cred *new, struct inode *inode)
202 LSM_HOOK(int, 0, kernel_module_request, char *kmod_name)
203 LSM_HOOK(int, 0, kernel_load_data, enum kernel_load_data_id id, bool contents)
204 LSM_HOOK(int, 0, kernel_post_load_data, char *buf, loff_t size,
205          enum kernel_load_data_id id, char *description)
206 LSM_HOOK(int, 0, kernel_read_file, struct file *file,
207          enum kernel_read_file_id id, bool contents)
208 LSM_HOOK(int, 0, kernel_post_read_file, struct file *file, char *buf,
209          loff_t size, enum kernel_read_file_id id)
210 LSM_HOOK(int, 0, task_fix_setuid, struct cred *new, const struct cred *old,
211          int flags)
212 LSM_HOOK(int, 0, task_fix_setgid, struct cred *new, const struct cred * old,
213          int flags)
214 LSM_HOOK(int, 0, task_fix_setgroups, struct cred *new, const struct cred * old)
215 LSM_HOOK(int, 0, task_setpgid, struct task_struct *p, pid_t pgid)
216 LSM_HOOK(int, 0, task_getpgid, struct task_struct *p)
217 LSM_HOOK(int, 0, task_getsid, struct task_struct *p)
218 LSM_HOOK(void, LSM_RET_VOID, current_getsecid_subj, u32 *secid)
219 LSM_HOOK(void, LSM_RET_VOID, task_getsecid_obj,
220          struct task_struct *p, u32 *secid)
221 LSM_HOOK(int, 0, task_setnice, struct task_struct *p, int nice)
222 LSM_HOOK(int, 0, task_setioprio, struct task_struct *p, int ioprio)
223 LSM_HOOK(int, 0, task_getioprio, struct task_struct *p)
224 LSM_HOOK(int, 0, task_prlimit, const struct cred *cred,
225          const struct cred *tcred, unsigned int flags)
226 LSM_HOOK(int, 0, task_setrlimit, struct task_struct *p, unsigned int resource,
227          struct rlimit *new_rlim)
228 LSM_HOOK(int, 0, task_setscheduler, struct task_struct *p)
229 LSM_HOOK(int, 0, task_getscheduler, struct task_struct *p)
230 LSM_HOOK(int, 0, task_movememory, struct task_struct *p)
231 LSM_HOOK(int, 0, task_kill, struct task_struct *p, struct kernel_siginfo *info,
232          int sig, const struct cred *cred)
233 LSM_HOOK(int, -ENOSYS, task_prctl, int option, unsigned long arg2,
234          unsigned long arg3, unsigned long arg4, unsigned long arg5)
235 LSM_HOOK(void, LSM_RET_VOID, task_to_inode, struct task_struct *p,
236          struct inode *inode)
237 LSM_HOOK(int, 0, userns_create, const struct cred *cred)
238 LSM_HOOK(int, 0, ipc_permission, struct kern_ipc_perm *ipcp, short flag)
239 LSM_HOOK(void, LSM_RET_VOID, ipc_getsecid, struct kern_ipc_perm *ipcp,
240          u32 *secid)
241 LSM_HOOK(int, 0, msg_msg_alloc_security, struct msg_msg *msg)
242 LSM_HOOK(void, LSM_RET_VOID, msg_msg_free_security, struct msg_msg *msg)
243 LSM_HOOK(int, 0, msg_queue_alloc_security, struct kern_ipc_perm *perm)
244 LSM_HOOK(void, LSM_RET_VOID, msg_queue_free_security,
245          struct kern_ipc_perm *perm)
246 LSM_HOOK(int, 0, msg_queue_associate, struct kern_ipc_perm *perm, int msqflg)
247 LSM_HOOK(int, 0, msg_queue_msgctl, struct kern_ipc_perm *perm, int cmd)
248 LSM_HOOK(int, 0, msg_queue_msgsnd, struct kern_ipc_perm *perm,
249          struct msg_msg *msg, int msqflg)
250 LSM_HOOK(int, 0, msg_queue_msgrcv, struct kern_ipc_perm *perm,
251          struct msg_msg *msg, struct task_struct *target, long type, int mode)
252 LSM_HOOK(int, 0, shm_alloc_security, struct kern_ipc_perm *perm)
253 LSM_HOOK(void, LSM_RET_VOID, shm_free_security, struct kern_ipc_perm *perm)
254 LSM_HOOK(int, 0, shm_associate, struct kern_ipc_perm *perm, int shmflg)
255 LSM_HOOK(int, 0, shm_shmctl, struct kern_ipc_perm *perm, int cmd)
256 LSM_HOOK(int, 0, shm_shmat, struct kern_ipc_perm *perm, char __user *shmaddr,
257          int shmflg)
258 LSM_HOOK(int, 0, sem_alloc_security, struct kern_ipc_perm *perm)
259 LSM_HOOK(void, LSM_RET_VOID, sem_free_security, struct kern_ipc_perm *perm)
260 LSM_HOOK(int, 0, sem_associate, struct kern_ipc_perm *perm, int semflg)
261 LSM_HOOK(int, 0, sem_semctl, struct kern_ipc_perm *perm, int cmd)
262 LSM_HOOK(int, 0, sem_semop, struct kern_ipc_perm *perm, struct sembuf *sops,
263          unsigned nsops, int alter)
264 LSM_HOOK(int, 0, netlink_send, struct sock *sk, struct sk_buff *skb)
265 LSM_HOOK(void, LSM_RET_VOID, d_instantiate, struct dentry *dentry,
266          struct inode *inode)
267 LSM_HOOK(int, -EOPNOTSUPP, getselfattr, unsigned int attr,
268          struct lsm_ctx __user *ctx, size_t *size, u32 flags)
269 LSM_HOOK(int, -EOPNOTSUPP, setselfattr, unsigned int attr,
270          struct lsm_ctx *ctx, size_t size, u32 flags)
271 LSM_HOOK(int, -EINVAL, getprocattr, struct task_struct *p, const char *name,
272          char **value)
273 LSM_HOOK(int, -EINVAL, setprocattr, const char *name, void *value, size_t size)
274 LSM_HOOK(int, 0, ismaclabel, const char *name)
275 LSM_HOOK(int, -EOPNOTSUPP, secid_to_secctx, u32 secid, char **secdata,
276          u32 *seclen)
277 LSM_HOOK(int, 0, secctx_to_secid, const char *secdata, u32 seclen, u32 *secid)
278 LSM_HOOK(void, LSM_RET_VOID, release_secctx, char *secdata, u32 seclen)
279 LSM_HOOK(void, LSM_RET_VOID, inode_invalidate_secctx, struct inode *inode)
280 LSM_HOOK(int, 0, inode_notifysecctx, struct inode *inode, void *ctx, u32 ctxlen)
281 LSM_HOOK(int, 0, inode_setsecctx, struct dentry *dentry, void *ctx, u32 ctxlen)
282 LSM_HOOK(int, -EOPNOTSUPP, inode_getsecctx, struct inode *inode, void **ctx,
283          u32 *ctxlen)
284
285 #if defined(CONFIG_SECURITY) && defined(CONFIG_WATCH_QUEUE)
286 LSM_HOOK(int, 0, post_notification, const struct cred *w_cred,
287          const struct cred *cred, struct watch_notification *n)
288 #endif /* CONFIG_SECURITY && CONFIG_WATCH_QUEUE */
289
290 #if defined(CONFIG_SECURITY) && defined(CONFIG_KEY_NOTIFICATIONS)
291 LSM_HOOK(int, 0, watch_key, struct key *key)
292 #endif /* CONFIG_SECURITY && CONFIG_KEY_NOTIFICATIONS */
293
294 #ifdef CONFIG_SECURITY_NETWORK
295 LSM_HOOK(int, 0, unix_stream_connect, struct sock *sock, struct sock *other,
296          struct sock *newsk)
297 LSM_HOOK(int, 0, unix_may_send, struct socket *sock, struct socket *other)
298 LSM_HOOK(int, 0, socket_create, int family, int type, int protocol, int kern)
299 LSM_HOOK(int, 0, socket_post_create, struct socket *sock, int family, int type,
300          int protocol, int kern)
301 LSM_HOOK(int, 0, socket_socketpair, struct socket *socka, struct socket *sockb)
302 LSM_HOOK(int, 0, socket_bind, struct socket *sock, struct sockaddr *address,
303          int addrlen)
304 LSM_HOOK(int, 0, socket_connect, struct socket *sock, struct sockaddr *address,
305          int addrlen)
306 LSM_HOOK(int, 0, socket_listen, struct socket *sock, int backlog)
307 LSM_HOOK(int, 0, socket_accept, struct socket *sock, struct socket *newsock)
308 LSM_HOOK(int, 0, socket_sendmsg, struct socket *sock, struct msghdr *msg,
309          int size)
310 LSM_HOOK(int, 0, socket_recvmsg, struct socket *sock, struct msghdr *msg,
311          int size, int flags)
312 LSM_HOOK(int, 0, socket_getsockname, struct socket *sock)
313 LSM_HOOK(int, 0, socket_getpeername, struct socket *sock)
314 LSM_HOOK(int, 0, socket_getsockopt, struct socket *sock, int level, int optname)
315 LSM_HOOK(int, 0, socket_setsockopt, struct socket *sock, int level, int optname)
316 LSM_HOOK(int, 0, socket_shutdown, struct socket *sock, int how)
317 LSM_HOOK(int, 0, socket_sock_rcv_skb, struct sock *sk, struct sk_buff *skb)
318 LSM_HOOK(int, -ENOPROTOOPT, socket_getpeersec_stream, struct socket *sock,
319          sockptr_t optval, sockptr_t optlen, unsigned int len)
320 LSM_HOOK(int, -ENOPROTOOPT, socket_getpeersec_dgram, struct socket *sock,
321          struct sk_buff *skb, u32 *secid)
322 LSM_HOOK(int, 0, sk_alloc_security, struct sock *sk, int family, gfp_t priority)
323 LSM_HOOK(void, LSM_RET_VOID, sk_free_security, struct sock *sk)
324 LSM_HOOK(void, LSM_RET_VOID, sk_clone_security, const struct sock *sk,
325          struct sock *newsk)
326 LSM_HOOK(void, LSM_RET_VOID, sk_getsecid, const struct sock *sk, u32 *secid)
327 LSM_HOOK(void, LSM_RET_VOID, sock_graft, struct sock *sk, struct socket *parent)
328 LSM_HOOK(int, 0, inet_conn_request, const struct sock *sk, struct sk_buff *skb,
329          struct request_sock *req)
330 LSM_HOOK(void, LSM_RET_VOID, inet_csk_clone, struct sock *newsk,
331          const struct request_sock *req)
332 LSM_HOOK(void, LSM_RET_VOID, inet_conn_established, struct sock *sk,
333          struct sk_buff *skb)
334 LSM_HOOK(int, 0, secmark_relabel_packet, u32 secid)
335 LSM_HOOK(void, LSM_RET_VOID, secmark_refcount_inc, void)
336 LSM_HOOK(void, LSM_RET_VOID, secmark_refcount_dec, void)
337 LSM_HOOK(void, LSM_RET_VOID, req_classify_flow, const struct request_sock *req,
338          struct flowi_common *flic)
339 LSM_HOOK(int, 0, tun_dev_alloc_security, void **security)
340 LSM_HOOK(void, LSM_RET_VOID, tun_dev_free_security, void *security)
341 LSM_HOOK(int, 0, tun_dev_create, void)
342 LSM_HOOK(int, 0, tun_dev_attach_queue, void *security)
343 LSM_HOOK(int, 0, tun_dev_attach, struct sock *sk, void *security)
344 LSM_HOOK(int, 0, tun_dev_open, void *security)
345 LSM_HOOK(int, 0, sctp_assoc_request, struct sctp_association *asoc,
346          struct sk_buff *skb)
347 LSM_HOOK(int, 0, sctp_bind_connect, struct sock *sk, int optname,
348          struct sockaddr *address, int addrlen)
349 LSM_HOOK(void, LSM_RET_VOID, sctp_sk_clone, struct sctp_association *asoc,
350          struct sock *sk, struct sock *newsk)
351 LSM_HOOK(int, 0, sctp_assoc_established, struct sctp_association *asoc,
352          struct sk_buff *skb)
353 LSM_HOOK(int, 0, mptcp_add_subflow, struct sock *sk, struct sock *ssk)
354 #endif /* CONFIG_SECURITY_NETWORK */
355
356 #ifdef CONFIG_SECURITY_INFINIBAND
357 LSM_HOOK(int, 0, ib_pkey_access, void *sec, u64 subnet_prefix, u16 pkey)
358 LSM_HOOK(int, 0, ib_endport_manage_subnet, void *sec, const char *dev_name,
359          u8 port_num)
360 LSM_HOOK(int, 0, ib_alloc_security, void **sec)
361 LSM_HOOK(void, LSM_RET_VOID, ib_free_security, void *sec)
362 #endif /* CONFIG_SECURITY_INFINIBAND */
363
364 #ifdef CONFIG_SECURITY_NETWORK_XFRM
365 LSM_HOOK(int, 0, xfrm_policy_alloc_security, struct xfrm_sec_ctx **ctxp,
366          struct xfrm_user_sec_ctx *sec_ctx, gfp_t gfp)
367 LSM_HOOK(int, 0, xfrm_policy_clone_security, struct xfrm_sec_ctx *old_ctx,
368          struct xfrm_sec_ctx **new_ctx)
369 LSM_HOOK(void, LSM_RET_VOID, xfrm_policy_free_security,
370          struct xfrm_sec_ctx *ctx)
371 LSM_HOOK(int, 0, xfrm_policy_delete_security, struct xfrm_sec_ctx *ctx)
372 LSM_HOOK(int, 0, xfrm_state_alloc, struct xfrm_state *x,
373          struct xfrm_user_sec_ctx *sec_ctx)
374 LSM_HOOK(int, 0, xfrm_state_alloc_acquire, struct xfrm_state *x,
375          struct xfrm_sec_ctx *polsec, u32 secid)
376 LSM_HOOK(void, LSM_RET_VOID, xfrm_state_free_security, struct xfrm_state *x)
377 LSM_HOOK(int, 0, xfrm_state_delete_security, struct xfrm_state *x)
378 LSM_HOOK(int, 0, xfrm_policy_lookup, struct xfrm_sec_ctx *ctx, u32 fl_secid)
379 LSM_HOOK(int, 1, xfrm_state_pol_flow_match, struct xfrm_state *x,
380          struct xfrm_policy *xp, const struct flowi_common *flic)
381 LSM_HOOK(int, 0, xfrm_decode_session, struct sk_buff *skb, u32 *secid,
382          int ckall)
383 #endif /* CONFIG_SECURITY_NETWORK_XFRM */
384
385 /* key management security hooks */
386 #ifdef CONFIG_KEYS
387 LSM_HOOK(int, 0, key_alloc, struct key *key, const struct cred *cred,
388          unsigned long flags)
389 LSM_HOOK(void, LSM_RET_VOID, key_free, struct key *key)
390 LSM_HOOK(int, 0, key_permission, key_ref_t key_ref, const struct cred *cred,
391          enum key_need_perm need_perm)
392 LSM_HOOK(int, 0, key_getsecurity, struct key *key, char **buffer)
393 #endif /* CONFIG_KEYS */
394
395 #ifdef CONFIG_AUDIT
396 LSM_HOOK(int, 0, audit_rule_init, u32 field, u32 op, char *rulestr,
397          void **lsmrule)
398 LSM_HOOK(int, 0, audit_rule_known, struct audit_krule *krule)
399 LSM_HOOK(int, 0, audit_rule_match, u32 secid, u32 field, u32 op, void *lsmrule)
400 LSM_HOOK(void, LSM_RET_VOID, audit_rule_free, void *lsmrule)
401 #endif /* CONFIG_AUDIT */
402
403 #ifdef CONFIG_BPF_SYSCALL
404 LSM_HOOK(int, 0, bpf, int cmd, union bpf_attr *attr, unsigned int size)
405 LSM_HOOK(int, 0, bpf_map, struct bpf_map *map, fmode_t fmode)
406 LSM_HOOK(int, 0, bpf_prog, struct bpf_prog *prog)
407 LSM_HOOK(int, 0, bpf_map_alloc_security, struct bpf_map *map)
408 LSM_HOOK(void, LSM_RET_VOID, bpf_map_free_security, struct bpf_map *map)
409 LSM_HOOK(int, 0, bpf_prog_alloc_security, struct bpf_prog_aux *aux)
410 LSM_HOOK(void, LSM_RET_VOID, bpf_prog_free_security, struct bpf_prog_aux *aux)
411 #endif /* CONFIG_BPF_SYSCALL */
412
413 LSM_HOOK(int, 0, locked_down, enum lockdown_reason what)
414
415 #ifdef CONFIG_PERF_EVENTS
416 LSM_HOOK(int, 0, perf_event_open, struct perf_event_attr *attr, int type)
417 LSM_HOOK(int, 0, perf_event_alloc, struct perf_event *event)
418 LSM_HOOK(void, LSM_RET_VOID, perf_event_free, struct perf_event *event)
419 LSM_HOOK(int, 0, perf_event_read, struct perf_event *event)
420 LSM_HOOK(int, 0, perf_event_write, struct perf_event *event)
421 #endif /* CONFIG_PERF_EVENTS */
422
423 #ifdef CONFIG_IO_URING
424 LSM_HOOK(int, 0, uring_override_creds, const struct cred *new)
425 LSM_HOOK(int, 0, uring_sqpoll, void)
426 LSM_HOOK(int, 0, uring_cmd, struct io_uring_cmd *ioucmd)
427 #endif /* CONFIG_IO_URING */