Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux Security plug |
| 3 | * |
| 4 | * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com> |
| 5 | * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com> |
| 6 | * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com> |
| 7 | * Copyright (C) 2001 James Morris <jmorris@intercode.com.au> |
| 8 | * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group) |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * Due to this file being licensed under the GPL there is controversy over |
| 16 | * whether this permits you to write a module that #includes this file |
| 17 | * without placing your module under the GPL. Please consult a lawyer for |
| 18 | * advice before doing this. |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #ifndef __LINUX_SECURITY_H |
| 23 | #define __LINUX_SECURITY_H |
| 24 | |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 25 | #include <linux/key.h> |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 26 | #include <linux/capability.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 28 | #include <linux/err.h> |
David Quigley | d47be3d | 2013-05-22 12:50:34 -0400 | [diff] [blame] | 29 | #include <linux/string.h> |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 30 | |
| 31 | struct linux_binprm; |
| 32 | struct cred; |
| 33 | struct rlimit; |
| 34 | struct siginfo; |
| 35 | struct sem_array; |
| 36 | struct sembuf; |
| 37 | struct kern_ipc_perm; |
| 38 | struct audit_context; |
| 39 | struct super_block; |
| 40 | struct inode; |
| 41 | struct dentry; |
| 42 | struct file; |
| 43 | struct vfsmount; |
| 44 | struct path; |
| 45 | struct qstr; |
| 46 | struct nameidata; |
| 47 | struct iattr; |
| 48 | struct fown_struct; |
| 49 | struct file_operations; |
| 50 | struct shmid_kernel; |
| 51 | struct msg_msg; |
| 52 | struct msg_queue; |
| 53 | struct xattr; |
| 54 | struct xfrm_sec_ctx; |
| 55 | struct mm_struct; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 57 | /* Maximum number of letters for an LSM name string */ |
| 58 | #define SECURITY_NAME_MAX 10 |
| 59 | |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 60 | /* If capable should audit the security request */ |
| 61 | #define SECURITY_CAP_NOAUDIT 0 |
| 62 | #define SECURITY_CAP_AUDIT 1 |
| 63 | |
David Quigley | eb9ae68 | 2013-05-22 12:50:37 -0400 | [diff] [blame] | 64 | /* LSM Agnostic defines for sb_set_mnt_opts */ |
| 65 | #define SECURITY_LSM_NATIVE_LABELS 1 |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | struct ctl_table; |
Ahmed S. Darwish | 03d37d2 | 2008-03-01 22:00:05 +0200 | [diff] [blame] | 68 | struct audit_krule; |
Serge E. Hallyn | 3486740 | 2011-03-23 16:43:17 -0700 | [diff] [blame] | 69 | struct user_namespace; |
Al Viro | 4040153 | 2012-02-13 03:58:52 +0000 | [diff] [blame] | 70 | struct timezone; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
| 72 | /* |
| 73 | * These functions are in security/capability.c and are used |
| 74 | * as the default capabilities functions |
| 75 | */ |
Eric Paris | 6a9de49 | 2012-01-03 12:25:14 -0500 | [diff] [blame] | 76 | extern int cap_capable(const struct cred *cred, struct user_namespace *ns, |
| 77 | int cap, int audit); |
Richard Cochran | 1e6d767 | 2011-02-01 13:50:58 +0000 | [diff] [blame] | 78 | extern int cap_settime(const struct timespec *ts, const struct timezone *tz); |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 79 | extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 80 | extern int cap_ptrace_traceme(struct task_struct *parent); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 81 | extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 82 | extern int cap_capset(struct cred *new, const struct cred *old, |
| 83 | const kernel_cap_t *effective, |
| 84 | const kernel_cap_t *inheritable, |
| 85 | const kernel_cap_t *permitted); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 86 | extern int cap_bprm_set_creds(struct linux_binprm *bprm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | extern int cap_bprm_secureexec(struct linux_binprm *bprm); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 88 | extern int cap_inode_setxattr(struct dentry *dentry, const char *name, |
| 89 | const void *value, size_t size, int flags); |
| 90 | extern int cap_inode_removexattr(struct dentry *dentry, const char *name); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 91 | extern int cap_inode_need_killpriv(struct dentry *dentry); |
| 92 | extern int cap_inode_killpriv(struct dentry *dentry); |
Al Viro | d007794 | 2012-05-30 13:11:37 -0400 | [diff] [blame] | 93 | extern int cap_mmap_addr(unsigned long addr); |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 94 | extern int cap_mmap_file(struct file *file, unsigned long reqprot, |
| 95 | unsigned long prot, unsigned long flags); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 96 | extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags); |
Andrew G. Morgan | 3898b1b | 2008-04-28 02:13:40 -0700 | [diff] [blame] | 97 | extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 98 | unsigned long arg4, unsigned long arg5); |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 99 | extern int cap_task_setscheduler(struct task_struct *p); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 100 | extern int cap_task_setioprio(struct task_struct *p, int ioprio); |
| 101 | extern int cap_task_setnice(struct task_struct *p, int nice); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 102 | extern int cap_vm_enough_memory(struct mm_struct *mm, long pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | struct msghdr; |
| 105 | struct sk_buff; |
| 106 | struct sock; |
| 107 | struct sockaddr; |
| 108 | struct socket; |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 109 | struct flowi; |
| 110 | struct dst_entry; |
| 111 | struct xfrm_selector; |
| 112 | struct xfrm_policy; |
| 113 | struct xfrm_state; |
| 114 | struct xfrm_user_sec_ctx; |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 115 | struct seq_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
wzt.wzt@gmail.com | 189b3b1 | 2010-02-23 23:15:28 +0800 | [diff] [blame] | 119 | void reset_security_ops(void); |
| 120 | |
David Howells | 6e14154 | 2009-12-15 19:27:45 +0000 | [diff] [blame] | 121 | #ifdef CONFIG_MMU |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 122 | extern unsigned long mmap_min_addr; |
Eric Paris | a2551df | 2009-07-31 12:54:11 -0400 | [diff] [blame] | 123 | extern unsigned long dac_mmap_min_addr; |
David Howells | 6e14154 | 2009-12-15 19:27:45 +0000 | [diff] [blame] | 124 | #else |
Mark Salter | be8cfc4 | 2012-09-24 17:17:38 -0700 | [diff] [blame] | 125 | #define mmap_min_addr 0UL |
David Howells | 6e14154 | 2009-12-15 19:27:45 +0000 | [diff] [blame] | 126 | #define dac_mmap_min_addr 0UL |
| 127 | #endif |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* |
| 130 | * Values used in the task_security_ops calls |
| 131 | */ |
| 132 | /* setuid or setgid, id0 == uid or gid */ |
| 133 | #define LSM_SETID_ID 1 |
| 134 | |
| 135 | /* setreuid or setregid, id0 == real, id1 == eff */ |
| 136 | #define LSM_SETID_RE 2 |
| 137 | |
| 138 | /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */ |
| 139 | #define LSM_SETID_RES 4 |
| 140 | |
| 141 | /* setfsuid or setfsgid, id0 == fsuid or fsgid */ |
| 142 | #define LSM_SETID_FS 8 |
| 143 | |
| 144 | /* forward declares to avoid warnings */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | struct sched_param; |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 146 | struct request_sock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 148 | /* bprm->unsafe reasons */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | #define LSM_UNSAFE_SHARE 1 |
| 150 | #define LSM_UNSAFE_PTRACE 2 |
| 151 | #define LSM_UNSAFE_PTRACE_CAP 4 |
Andy Lutomirski | 259e5e6 | 2012-04-12 16:47:50 -0500 | [diff] [blame] | 152 | #define LSM_UNSAFE_NO_NEW_PRIVS 8 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
David Howells | 6e14154 | 2009-12-15 19:27:45 +0000 | [diff] [blame] | 154 | #ifdef CONFIG_MMU |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 155 | extern int mmap_min_addr_handler(struct ctl_table *table, int write, |
Eric Paris | 47d439e | 2009-08-07 14:53:57 -0400 | [diff] [blame] | 156 | void __user *buffer, size_t *lenp, loff_t *ppos); |
David Howells | 6e14154 | 2009-12-15 19:27:45 +0000 | [diff] [blame] | 157 | #endif |
Eric Paris | 47d439e | 2009-08-07 14:53:57 -0400 | [diff] [blame] | 158 | |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 159 | /* security_inode_init_security callback function to write xattrs */ |
| 160 | typedef int (*initxattrs) (struct inode *inode, |
| 161 | const struct xattr *xattr_array, void *fs_data); |
| 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | #ifdef CONFIG_SECURITY |
| 164 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 165 | struct security_mnt_opts { |
| 166 | char **mnt_opts; |
| 167 | int *mnt_opts_flags; |
| 168 | int num_mnt_opts; |
| 169 | }; |
| 170 | |
| 171 | static inline void security_init_mnt_opts(struct security_mnt_opts *opts) |
| 172 | { |
| 173 | opts->mnt_opts = NULL; |
| 174 | opts->mnt_opts_flags = NULL; |
| 175 | opts->num_mnt_opts = 0; |
| 176 | } |
| 177 | |
| 178 | static inline void security_free_mnt_opts(struct security_mnt_opts *opts) |
| 179 | { |
| 180 | int i; |
| 181 | if (opts->mnt_opts) |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 182 | for (i = 0; i < opts->num_mnt_opts; i++) |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 183 | kfree(opts->mnt_opts[i]); |
| 184 | kfree(opts->mnt_opts); |
| 185 | opts->mnt_opts = NULL; |
| 186 | kfree(opts->mnt_opts_flags); |
| 187 | opts->mnt_opts_flags = NULL; |
| 188 | opts->num_mnt_opts = 0; |
| 189 | } |
| 190 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | /** |
| 192 | * struct security_operations - main security structure |
| 193 | * |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 194 | * Security module identifier. |
| 195 | * |
| 196 | * @name: |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 197 | * A string that acts as a unique identifier for the LSM with max number |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 198 | * of characters = SECURITY_NAME_MAX. |
| 199 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | * Security hooks for program execution operations. |
| 201 | * |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 202 | * @bprm_set_creds: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | * Save security information in the bprm->security field, typically based |
| 204 | * on information about the bprm->file, for later use by the apply_creds |
| 205 | * hook. This hook may also optionally check permissions (e.g. for |
| 206 | * transitions between security domains). |
| 207 | * This hook may be called multiple times during a single execve, e.g. for |
| 208 | * interpreters. The hook can tell whether it has already been called by |
| 209 | * checking to see if @bprm->security is non-NULL. If so, then the hook |
| 210 | * may decide either to retain the security information saved earlier or |
| 211 | * to replace it. |
| 212 | * @bprm contains the linux_binprm structure. |
| 213 | * Return 0 if the hook is successful and permission is granted. |
| 214 | * @bprm_check_security: |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 215 | * This hook mediates the point when a search for a binary handler will |
| 216 | * begin. It allows a check the @bprm->security value which is set in the |
| 217 | * preceding set_creds call. The primary difference from set_creds is |
| 218 | * that the argv list and envp list are reliably available in @bprm. This |
| 219 | * hook may be called multiple times during a single execve; and in each |
| 220 | * pass set_creds is called first. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 221 | * @bprm contains the linux_binprm structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | * Return 0 if the hook is successful and permission is granted. |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 223 | * @bprm_committing_creds: |
| 224 | * Prepare to install the new security attributes of a process being |
| 225 | * transformed by an execve operation, based on the old credentials |
| 226 | * pointed to by @current->cred and the information set in @bprm->cred by |
| 227 | * the bprm_set_creds hook. @bprm points to the linux_binprm structure. |
| 228 | * This hook is a good place to perform state changes on the process such |
| 229 | * as closing open file descriptors to which access will no longer be |
| 230 | * granted when the attributes are changed. This is called immediately |
| 231 | * before commit_creds(). |
| 232 | * @bprm_committed_creds: |
| 233 | * Tidy up after the installation of the new security attributes of a |
| 234 | * process being transformed by an execve operation. The new credentials |
| 235 | * have, by this point, been set to @current->cred. @bprm points to the |
| 236 | * linux_binprm structure. This hook is a good place to perform state |
| 237 | * changes on the process such as clearing out non-inheritable signal |
| 238 | * state. This is called immediately after commit_creds(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | * @bprm_secureexec: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 240 | * Return a boolean value (0 or 1) indicating whether a "secure exec" |
| 241 | * is required. The flag is passed in the auxiliary table |
| 242 | * on the initial stack to the ELF interpreter to indicate whether libc |
| 243 | * should enable secure mode. |
| 244 | * @bprm contains the linux_binprm structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | * |
| 246 | * Security hooks for filesystem operations. |
| 247 | * |
| 248 | * @sb_alloc_security: |
| 249 | * Allocate and attach a security structure to the sb->s_security field. |
| 250 | * The s_security field is initialized to NULL when the structure is |
| 251 | * allocated. |
| 252 | * @sb contains the super_block structure to be modified. |
| 253 | * Return 0 if operation was successful. |
| 254 | * @sb_free_security: |
| 255 | * Deallocate and clear the sb->s_security field. |
| 256 | * @sb contains the super_block structure to be modified. |
| 257 | * @sb_statfs: |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 258 | * Check permission before obtaining filesystem statistics for the @mnt |
| 259 | * mountpoint. |
| 260 | * @dentry is a handle on the superblock for the filesystem. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 261 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | * @sb_mount: |
| 263 | * Check permission before an object specified by @dev_name is mounted on |
| 264 | * the mount point named by @nd. For an ordinary mount, @dev_name |
| 265 | * identifies a device if the file system type requires a device. For a |
| 266 | * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a |
| 267 | * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the |
| 268 | * pathname of the object being mounted. |
| 269 | * @dev_name contains the name for object being mounted. |
Al Viro | b5266eb | 2008-03-22 17:48:24 -0400 | [diff] [blame] | 270 | * @path contains the path for mount point object. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | * @type contains the filesystem type. |
| 272 | * @flags contains the mount flags. |
| 273 | * @data contains the filesystem-specific data. |
| 274 | * Return 0 if permission is granted. |
| 275 | * @sb_copy_data: |
| 276 | * Allow mount option data to be copied prior to parsing by the filesystem, |
| 277 | * so that the security module can extract security-specific mount |
| 278 | * options cleanly (a filesystem may modify the data e.g. with strsep()). |
| 279 | * This also allows the original mount data to be stripped of security- |
| 280 | * specific options to avoid having to make filesystems aware of them. |
| 281 | * @type the type of filesystem being mounted. |
| 282 | * @orig the original mount data copied from userspace. |
| 283 | * @copy copied data which will be passed to the security module. |
| 284 | * Returns 0 if the copy was successful. |
Eric Paris | ff36fe2 | 2011-03-03 16:09:14 -0500 | [diff] [blame] | 285 | * @sb_remount: |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 286 | * Extracts security system specific mount options and verifies no changes |
Eric Paris | ff36fe2 | 2011-03-03 16:09:14 -0500 | [diff] [blame] | 287 | * are being made to those options. |
| 288 | * @sb superblock being remounted |
| 289 | * @data contains the filesystem-specific data. |
| 290 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | * @sb_umount: |
| 292 | * Check permission before the @mnt file system is unmounted. |
| 293 | * @mnt contains the mounted file system. |
| 294 | * @flags contains the unmount flags, e.g. MNT_FORCE. |
| 295 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | * @sb_pivotroot: |
| 297 | * Check permission before pivoting the root filesystem. |
Al Viro | b5266eb | 2008-03-22 17:48:24 -0400 | [diff] [blame] | 298 | * @old_path contains the path for the new location of the current root (put_old). |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 299 | * @new_path contains the path for the new root (new_root). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | * Return 0 if permission is granted. |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 301 | * @sb_set_mnt_opts: |
| 302 | * Set the security relevant mount options used for a superblock |
| 303 | * @sb the superblock to set security mount options for |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 304 | * @opts binary data structure containing all lsm mount data |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 305 | * @sb_clone_mnt_opts: |
| 306 | * Copy all security options from a given superblock to another |
| 307 | * @oldsb old superblock which contain information to clone |
| 308 | * @newsb new superblock which needs filled in |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 309 | * @sb_parse_opts_str: |
| 310 | * Parse a string of security data filling in the opts structure |
| 311 | * @options string containing all mount options known by the LSM |
| 312 | * @opts binary data structure usable by the LSM |
David Quigley | d47be3d | 2013-05-22 12:50:34 -0400 | [diff] [blame] | 313 | * @dentry_init_security: |
| 314 | * Compute a context for a dentry as the inode is not yet available |
| 315 | * since NFSv4 has no label backed by an EA anyway. |
| 316 | * @dentry dentry to use in calculating the context. |
| 317 | * @mode mode used to determine resource type. |
| 318 | * @name name of the last path component used to create file |
| 319 | * @ctx pointer to place the pointer to the resulting context in. |
| 320 | * @ctxlen point to place the length of the resulting context. |
| 321 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * |
| 323 | * Security hooks for inode operations. |
| 324 | * |
| 325 | * @inode_alloc_security: |
| 326 | * Allocate and attach a security structure to @inode->i_security. The |
| 327 | * i_security field is initialized to NULL when the inode structure is |
| 328 | * allocated. |
| 329 | * @inode contains the inode structure. |
| 330 | * Return 0 if operation was successful. |
| 331 | * @inode_free_security: |
| 332 | * @inode contains the inode structure. |
| 333 | * Deallocate the inode security structure and set @inode->i_security to |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 334 | * NULL. |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 335 | * @inode_init_security: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 336 | * Obtain the security attribute name suffix and value to set on a newly |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 337 | * created inode and set up the incore security field for the new inode. |
| 338 | * This hook is called by the fs code as part of the inode creation |
| 339 | * transaction and provides for atomic labeling of the inode, unlike |
| 340 | * the post_create/mkdir/... hooks called by the VFS. The hook function |
| 341 | * is expected to allocate the name and value via kmalloc, with the caller |
| 342 | * being responsible for calling kfree after using them. |
| 343 | * If the security module does not use security attributes or does |
| 344 | * not wish to put a security attribute on this particular inode, |
| 345 | * then it should return -EOPNOTSUPP to skip this processing. |
| 346 | * @inode contains the inode structure of the newly created inode. |
| 347 | * @dir contains the inode structure of the parent directory. |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 348 | * @qstr contains the last path component of the new object |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 349 | * @name will be set to the allocated name suffix (e.g. selinux). |
| 350 | * @value will be set to the allocated attribute value. |
| 351 | * @len will be set to the length of the value. |
| 352 | * Returns 0 if @name and @value have been successfully set, |
| 353 | * -EOPNOTSUPP if no security attribute is needed, or |
| 354 | * -ENOMEM on memory allocation failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | * @inode_create: |
| 356 | * Check permission to create a regular file. |
| 357 | * @dir contains inode structure of the parent of the new file. |
| 358 | * @dentry contains the dentry structure for the file to be created. |
| 359 | * @mode contains the file mode of the file to be created. |
| 360 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | * @inode_link: |
| 362 | * Check permission before creating a new hard link to a file. |
| 363 | * @old_dentry contains the dentry structure for an existing link to the file. |
| 364 | * @dir contains the inode structure of the parent directory of the new link. |
| 365 | * @new_dentry contains the dentry structure for the new link. |
| 366 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 367 | * @path_link: |
| 368 | * Check permission before creating a new hard link to a file. |
| 369 | * @old_dentry contains the dentry structure for an existing link |
| 370 | * to the file. |
| 371 | * @new_dir contains the path structure of the parent directory of |
| 372 | * the new link. |
| 373 | * @new_dentry contains the dentry structure for the new link. |
| 374 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | * @inode_unlink: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 376 | * Check the permission to remove a hard link to a file. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | * @dir contains the inode structure of parent directory of the file. |
| 378 | * @dentry contains the dentry structure for file to be unlinked. |
| 379 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 380 | * @path_unlink: |
| 381 | * Check the permission to remove a hard link to a file. |
| 382 | * @dir contains the path structure of parent directory of the file. |
| 383 | * @dentry contains the dentry structure for file to be unlinked. |
| 384 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | * @inode_symlink: |
| 386 | * Check the permission to create a symbolic link to a file. |
| 387 | * @dir contains the inode structure of parent directory of the symbolic link. |
| 388 | * @dentry contains the dentry structure of the symbolic link. |
| 389 | * @old_name contains the pathname of file. |
| 390 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 391 | * @path_symlink: |
| 392 | * Check the permission to create a symbolic link to a file. |
| 393 | * @dir contains the path structure of parent directory of |
| 394 | * the symbolic link. |
| 395 | * @dentry contains the dentry structure of the symbolic link. |
| 396 | * @old_name contains the pathname of file. |
| 397 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | * @inode_mkdir: |
| 399 | * Check permissions to create a new directory in the existing directory |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 400 | * associated with inode structure @dir. |
| 401 | * @dir contains the inode structure of parent of the directory to be created. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | * @dentry contains the dentry structure of new directory. |
| 403 | * @mode contains the mode of new directory. |
| 404 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 405 | * @path_mkdir: |
| 406 | * Check permissions to create a new directory in the existing directory |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 407 | * associated with path structure @path. |
| 408 | * @dir contains the path structure of parent of the directory |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 409 | * to be created. |
| 410 | * @dentry contains the dentry structure of new directory. |
| 411 | * @mode contains the mode of new directory. |
| 412 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | * @inode_rmdir: |
| 414 | * Check the permission to remove a directory. |
| 415 | * @dir contains the inode structure of parent of the directory to be removed. |
| 416 | * @dentry contains the dentry structure of directory to be removed. |
| 417 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 418 | * @path_rmdir: |
| 419 | * Check the permission to remove a directory. |
| 420 | * @dir contains the path structure of parent of the directory to be |
| 421 | * removed. |
| 422 | * @dentry contains the dentry structure of directory to be removed. |
| 423 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | * @inode_mknod: |
| 425 | * Check permissions when creating a special file (or a socket or a fifo |
| 426 | * file created via the mknod system call). Note that if mknod operation |
| 427 | * is being done for a regular file, then the create hook will be called |
| 428 | * and not this hook. |
| 429 | * @dir contains the inode structure of parent of the new file. |
| 430 | * @dentry contains the dentry structure of the new file. |
| 431 | * @mode contains the mode of the new file. |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 432 | * @dev contains the device number. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 434 | * @path_mknod: |
| 435 | * Check permissions when creating a file. Note that this hook is called |
| 436 | * even if mknod operation is being done for a regular file. |
| 437 | * @dir contains the path structure of parent of the new file. |
| 438 | * @dentry contains the dentry structure of the new file. |
| 439 | * @mode contains the mode of the new file. |
| 440 | * @dev contains the undecoded device number. Use new_decode_dev() to get |
| 441 | * the decoded device number. |
| 442 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | * @inode_rename: |
| 444 | * Check for permission to rename a file or directory. |
| 445 | * @old_dir contains the inode structure for parent of the old link. |
| 446 | * @old_dentry contains the dentry structure of the old link. |
| 447 | * @new_dir contains the inode structure for parent of the new link. |
| 448 | * @new_dentry contains the dentry structure of the new link. |
| 449 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 450 | * @path_rename: |
| 451 | * Check for permission to rename a file or directory. |
| 452 | * @old_dir contains the path structure for parent of the old link. |
| 453 | * @old_dentry contains the dentry structure of the old link. |
| 454 | * @new_dir contains the path structure for parent of the new link. |
| 455 | * @new_dentry contains the dentry structure of the new link. |
| 456 | * Return 0 if permission is granted. |
Tetsuo Handa | 89eda06 | 2009-10-04 21:49:47 +0900 | [diff] [blame] | 457 | * @path_chmod: |
| 458 | * Check for permission to change DAC's permission of a file or directory. |
| 459 | * @dentry contains the dentry structure. |
| 460 | * @mnt contains the vfsmnt structure. |
| 461 | * @mode contains DAC's mode. |
| 462 | * Return 0 if permission is granted. |
| 463 | * @path_chown: |
| 464 | * Check for permission to change owner/group of a file or directory. |
| 465 | * @path contains the path structure. |
| 466 | * @uid contains new owner's ID. |
| 467 | * @gid contains new group's ID. |
| 468 | * Return 0 if permission is granted. |
Tetsuo Handa | 8b8efb4 | 2009-10-04 21:49:48 +0900 | [diff] [blame] | 469 | * @path_chroot: |
| 470 | * Check for permission to change root directory. |
| 471 | * @path contains the path structure. |
| 472 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | * @inode_readlink: |
| 474 | * Check the permission to read the symbolic link. |
| 475 | * @dentry contains the dentry structure for the file link. |
| 476 | * Return 0 if permission is granted. |
| 477 | * @inode_follow_link: |
| 478 | * Check permission to follow a symbolic link when looking up a pathname. |
| 479 | * @dentry contains the dentry structure for the link. |
| 480 | * @nd contains the nameidata structure for the parent directory. |
| 481 | * Return 0 if permission is granted. |
| 482 | * @inode_permission: |
| 483 | * Check permission before accessing an inode. This hook is called by the |
| 484 | * existing Linux permission function, so a security module can use it to |
| 485 | * provide additional checking for existing Linux permission checks. |
| 486 | * Notice that this hook is called when a file is opened (as well as many |
| 487 | * other operations), whereas the file_security_ops permission hook is |
| 488 | * called when the actual read/write operations are performed. |
| 489 | * @inode contains the inode structure to check. |
| 490 | * @mask contains the permission mask. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | * Return 0 if permission is granted. |
| 492 | * @inode_setattr: |
| 493 | * Check permission before setting file attributes. Note that the kernel |
| 494 | * call to notify_change is performed from several locations, whenever |
| 495 | * file attributes change (such as when a file is truncated, chown/chmod |
| 496 | * operations, transferring disk quotas, etc). |
| 497 | * @dentry contains the dentry structure for the file. |
| 498 | * @attr is the iattr structure containing the new file attributes. |
| 499 | * Return 0 if permission is granted. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 500 | * @path_truncate: |
| 501 | * Check permission before truncating a file. |
| 502 | * @path contains the path structure for the file. |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 503 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | * @inode_getattr: |
| 505 | * Check permission before obtaining file attributes. |
| 506 | * @mnt is the vfsmount where the dentry was looked up |
| 507 | * @dentry contains the dentry structure for the file. |
| 508 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | * @inode_setxattr: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 510 | * Check permission before setting the extended attributes |
| 511 | * @value identified by @name for @dentry. |
| 512 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | * @inode_post_setxattr: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 514 | * Update inode security field after successful setxattr operation. |
| 515 | * @value identified by @name for @dentry. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | * @inode_getxattr: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 517 | * Check permission before obtaining the extended attributes |
| 518 | * identified by @name for @dentry. |
| 519 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | * @inode_listxattr: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 521 | * Check permission before obtaining the list of extended attribute |
| 522 | * names for @dentry. |
| 523 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | * @inode_removexattr: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 525 | * Check permission before removing the extended attribute |
| 526 | * identified by @name for @dentry. |
| 527 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | * @inode_getsecurity: |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 529 | * Retrieve a copy of the extended attribute representation of the |
| 530 | * security label associated with @name for @inode via @buffer. Note that |
| 531 | * @name is the remainder of the attribute name after the security prefix |
| 532 | * has been removed. @alloc is used to specify of the call should return a |
| 533 | * value via the buffer or just the value length Return size of buffer on |
| 534 | * success. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | * @inode_setsecurity: |
| 536 | * Set the security label associated with @name for @inode from the |
| 537 | * extended attribute value @value. @size indicates the size of the |
| 538 | * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 539 | * Note that @name is the remainder of the attribute name after the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | * security. prefix has been removed. |
| 541 | * Return 0 on success. |
| 542 | * @inode_listsecurity: |
| 543 | * Copy the extended attribute names for the security labels |
| 544 | * associated with @inode into @buffer. The maximum size of @buffer |
| 545 | * is specified by @buffer_size. @buffer may be NULL to request |
| 546 | * the size of the buffer required. |
| 547 | * Returns number of bytes used/required on success. |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 548 | * @inode_need_killpriv: |
| 549 | * Called when an inode has been changed. |
| 550 | * @dentry is the dentry being changed. |
| 551 | * Return <0 on error to abort the inode change operation. |
| 552 | * Return 0 if inode_killpriv does not need to be called. |
| 553 | * Return >0 if inode_killpriv does need to be called. |
| 554 | * @inode_killpriv: |
| 555 | * The setuid bit is being removed. Remove similar security labels. |
| 556 | * Called with the dentry->d_inode->i_mutex held. |
| 557 | * @dentry is the dentry being changed. |
| 558 | * Return 0 on success. If error is returned, then the operation |
| 559 | * causing setuid bit removal is failed. |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 560 | * @inode_getsecid: |
| 561 | * Get the secid associated with the node. |
| 562 | * @inode contains a pointer to the inode. |
| 563 | * @secid contains a pointer to the location where result will be saved. |
| 564 | * In case of failure, @secid will be set to zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | * |
| 566 | * Security hooks for file operations |
| 567 | * |
| 568 | * @file_permission: |
| 569 | * Check file permissions before accessing an open file. This hook is |
| 570 | * called by various operations that read or write files. A security |
| 571 | * module can use this hook to perform additional checking on these |
| 572 | * operations, e.g. to revalidate permissions on use to support privilege |
| 573 | * bracketing or policy changes. Notice that this hook is used when the |
| 574 | * actual read/write operations are performed, whereas the |
| 575 | * inode_security_ops hook is called when a file is opened (as well as |
| 576 | * many other operations). |
| 577 | * Caveat: Although this hook can be used to revalidate permissions for |
| 578 | * various system call operations that read or write files, it does not |
| 579 | * address the revalidation of permissions for memory-mapped files. |
| 580 | * Security modules must handle this separately if they need such |
| 581 | * revalidation. |
| 582 | * @file contains the file structure being accessed. |
| 583 | * @mask contains the requested permissions. |
| 584 | * Return 0 if permission is granted. |
| 585 | * @file_alloc_security: |
| 586 | * Allocate and attach a security structure to the file->f_security field. |
| 587 | * The security field is initialized to NULL when the structure is first |
| 588 | * created. |
| 589 | * @file contains the file structure to secure. |
| 590 | * Return 0 if the hook is successful and permission is granted. |
| 591 | * @file_free_security: |
| 592 | * Deallocate and free any security structures stored in file->f_security. |
| 593 | * @file contains the file structure being modified. |
| 594 | * @file_ioctl: |
| 595 | * @file contains the file structure. |
| 596 | * @cmd contains the operation to perform. |
| 597 | * @arg contains the operational arguments. |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 598 | * Check permission for an ioctl operation on @file. Note that @arg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | * sometimes represents a user space pointer; in other cases, it may be a |
| 600 | * simple integer value. When @arg represents a user space pointer, it |
| 601 | * should never be used by the security module. |
| 602 | * Return 0 if permission is granted. |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 603 | * @mmap_addr : |
| 604 | * Check permissions for a mmap operation at @addr. |
| 605 | * @addr contains virtual address that will be used for the operation. |
| 606 | * Return 0 if permission is granted. |
| 607 | * @mmap_file : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | * Check permissions for a mmap operation. The @file may be NULL, e.g. |
| 609 | * if mapping anonymous memory. |
| 610 | * @file contains the file structure for file to map (may be NULL). |
| 611 | * @reqprot contains the protection requested by the application. |
| 612 | * @prot contains the protection that will be applied by the kernel. |
| 613 | * @flags contains the operational flags. |
| 614 | * Return 0 if permission is granted. |
| 615 | * @file_mprotect: |
| 616 | * Check permissions before changing memory access permissions. |
| 617 | * @vma contains the memory region to modify. |
| 618 | * @reqprot contains the protection requested by the application. |
| 619 | * @prot contains the protection that will be applied by the kernel. |
| 620 | * Return 0 if permission is granted. |
| 621 | * @file_lock: |
| 622 | * Check permission before performing file locking operations. |
| 623 | * Note: this hook mediates both flock and fcntl style locks. |
| 624 | * @file contains the file structure. |
| 625 | * @cmd contains the posix-translated lock operation to perform |
| 626 | * (e.g. F_RDLCK, F_WRLCK). |
| 627 | * Return 0 if permission is granted. |
| 628 | * @file_fcntl: |
| 629 | * Check permission before allowing the file operation specified by @cmd |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 630 | * from being performed on the file @file. Note that @arg sometimes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | * represents a user space pointer; in other cases, it may be a simple |
| 632 | * integer value. When @arg represents a user space pointer, it should |
| 633 | * never be used by the security module. |
| 634 | * @file contains the file structure. |
| 635 | * @cmd contains the operation to be performed. |
| 636 | * @arg contains the operational arguments. |
| 637 | * Return 0 if permission is granted. |
| 638 | * @file_set_fowner: |
| 639 | * Save owner security information (typically from current->security) in |
| 640 | * file->f_security for later use by the send_sigiotask hook. |
| 641 | * @file contains the file structure to update. |
| 642 | * Return 0 on success. |
| 643 | * @file_send_sigiotask: |
| 644 | * Check permission for the file owner @fown to send SIGIO or SIGURG to the |
| 645 | * process @tsk. Note that this hook is sometimes called from interrupt. |
| 646 | * Note that the fown_struct, @fown, is never outside the context of a |
| 647 | * struct file, so the file structure (and associated security information) |
| 648 | * can always be obtained: |
Robert P. J. Day | b385a14 | 2007-02-10 01:46:25 -0800 | [diff] [blame] | 649 | * container_of(fown, struct file, f_owner) |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 650 | * @tsk contains the structure of task receiving signal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | * @fown contains the file owner information. |
| 652 | * @sig is the signal that will be sent. When 0, kernel sends SIGIO. |
| 653 | * Return 0 if permission is granted. |
| 654 | * @file_receive: |
| 655 | * This hook allows security modules to control the ability of a process |
| 656 | * to receive an open file descriptor via socket IPC. |
| 657 | * @file contains the file structure being received. |
| 658 | * Return 0 if permission is granted. |
Eric Paris | 83d4985 | 2012-04-04 13:45:40 -0400 | [diff] [blame] | 659 | * @file_open |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 660 | * Save open-time permission checking state for later use upon |
| 661 | * file_permission, and recheck access if anything has changed |
| 662 | * since inode_permission. |
| 663 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | * Security hooks for task operations. |
| 665 | * |
| 666 | * @task_create: |
| 667 | * Check permission before creating a child process. See the clone(2) |
| 668 | * manual page for definitions of the @clone_flags. |
| 669 | * @clone_flags contains the flags indicating what should be shared. |
| 670 | * Return 0 if permission is granted. |
Kees Cook | 1a2a4d0 | 2011-12-21 12:17:03 -0800 | [diff] [blame] | 671 | * @task_free: |
| 672 | * @task task being freed |
| 673 | * Handle release of task-related resources. (Note that this can be called |
| 674 | * from interrupt context.) |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 675 | * @cred_alloc_blank: |
| 676 | * @cred points to the credentials. |
| 677 | * @gfp indicates the atomicity of any memory allocations. |
| 678 | * Only allocate sufficient memory and attach to @cred such that |
| 679 | * cred_transfer() will not get ENOMEM. |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 680 | * @cred_free: |
| 681 | * @cred points to the credentials. |
| 682 | * Deallocate and clear the cred->security field in a set of credentials. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 683 | * @cred_prepare: |
| 684 | * @new points to the new credentials. |
| 685 | * @old points to the original credentials. |
| 686 | * @gfp indicates the atomicity of any memory allocations. |
| 687 | * Prepare a new set of credentials by copying the data from the old set. |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 688 | * @cred_transfer: |
| 689 | * @new points to the new credentials. |
| 690 | * @old points to the original credentials. |
| 691 | * Transfer data from original creds to new creds |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 692 | * @kernel_act_as: |
| 693 | * Set the credentials for a kernel service to act as (subjective context). |
| 694 | * @new points to the credentials to be modified. |
| 695 | * @secid specifies the security ID to be set |
| 696 | * The current task must be the one that nominated @secid. |
| 697 | * Return 0 if successful. |
| 698 | * @kernel_create_files_as: |
| 699 | * Set the file creation context in a set of credentials to be the same as |
| 700 | * the objective context of the specified inode. |
| 701 | * @new points to the credentials to be modified. |
| 702 | * @inode points to the inode to use as a reference. |
| 703 | * The current task must be the one that nominated @inode. |
| 704 | * Return 0 if successful. |
Kees Cook | 13752fe | 2014-02-25 10:28:04 -0800 | [diff] [blame] | 705 | * @kernel_fw_from_file: |
| 706 | * Load firmware from userspace (not called for built-in firmware). |
| 707 | * @file contains the file structure pointing to the file containing |
| 708 | * the firmware to load. This argument will be NULL if the firmware |
| 709 | * was loaded via the uevent-triggered blob-based interface exposed |
| 710 | * by CONFIG_FW_LOADER_USER_HELPER. |
| 711 | * @buf pointer to buffer containing firmware contents. |
| 712 | * @size length of the firmware contents. |
| 713 | * Return 0 if permission is granted. |
Eric Paris | 9188499 | 2009-08-13 09:44:57 -0400 | [diff] [blame] | 714 | * @kernel_module_request: |
| 715 | * Ability to trigger the kernel to automatically upcall to userspace for |
| 716 | * userspace to load a kernel module with the given name. |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 717 | * @kmod_name name of the module requested by the kernel |
James Morris | f322abf | 2009-08-14 11:19:29 +1000 | [diff] [blame] | 718 | * Return 0 if successful. |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 719 | * @kernel_module_from_file: |
| 720 | * Load a kernel module from userspace. |
| 721 | * @file contains the file structure pointing to the file containing |
| 722 | * the kernel module to load. If the module is being loaded from a blob, |
| 723 | * this argument will be NULL. |
| 724 | * Return 0 if permission is granted. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 725 | * @task_fix_setuid: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | * Update the module's state after setting one or more of the user |
| 727 | * identity attributes of the current process. The @flags parameter |
| 728 | * indicates which of the set*uid system calls invoked this hook. If |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 729 | * @new is the set of credentials that will be installed. Modifications |
| 730 | * should be made to this rather than to @current->cred. |
| 731 | * @old is the set of credentials that are being replaces |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | * @flags contains one of the LSM_SETID_* values. |
| 733 | * Return 0 on success. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | * @task_setpgid: |
| 735 | * Check permission before setting the process group identifier of the |
| 736 | * process @p to @pgid. |
| 737 | * @p contains the task_struct for process being modified. |
| 738 | * @pgid contains the new pgid. |
| 739 | * Return 0 if permission is granted. |
| 740 | * @task_getpgid: |
| 741 | * Check permission before getting the process group identifier of the |
| 742 | * process @p. |
| 743 | * @p contains the task_struct for the process. |
| 744 | * Return 0 if permission is granted. |
| 745 | * @task_getsid: |
| 746 | * Check permission before getting the session identifier of the process |
| 747 | * @p. |
| 748 | * @p contains the task_struct for the process. |
| 749 | * Return 0 if permission is granted. |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 750 | * @task_getsecid: |
| 751 | * Retrieve the security identifier of the process @p. |
| 752 | * @p contains the task_struct for the process and place is into @secid. |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 753 | * In case of failure, @secid will be set to zero. |
| 754 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | * @task_setnice: |
| 756 | * Check permission before setting the nice value of @p to @nice. |
| 757 | * @p contains the task_struct of process. |
| 758 | * @nice contains the new nice value. |
| 759 | * Return 0 if permission is granted. |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 760 | * @task_setioprio |
| 761 | * Check permission before setting the ioprio value of @p to @ioprio. |
| 762 | * @p contains the task_struct of process. |
| 763 | * @ioprio contains the new ioprio value |
| 764 | * Return 0 if permission is granted. |
David Quigley | a1836a4 | 2006-06-30 01:55:49 -0700 | [diff] [blame] | 765 | * @task_getioprio |
| 766 | * Check permission before getting the ioprio value of @p. |
| 767 | * @p contains the task_struct of process. |
| 768 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | * @task_setrlimit: |
| 770 | * Check permission before setting the resource limits of the current |
| 771 | * process for @resource to @new_rlim. The old resource limit values can |
| 772 | * be examined by dereferencing (current->signal->rlim + resource). |
| 773 | * @resource contains the resource whose limit is being set. |
| 774 | * @new_rlim contains the new limits for @resource. |
| 775 | * Return 0 if permission is granted. |
| 776 | * @task_setscheduler: |
| 777 | * Check permission before setting scheduling policy and/or parameters of |
| 778 | * process @p based on @policy and @lp. |
| 779 | * @p contains the task_struct for process. |
| 780 | * @policy contains the scheduling policy. |
| 781 | * @lp contains the scheduling parameters. |
| 782 | * Return 0 if permission is granted. |
| 783 | * @task_getscheduler: |
| 784 | * Check permission before obtaining scheduling information for process |
| 785 | * @p. |
| 786 | * @p contains the task_struct for process. |
| 787 | * Return 0 if permission is granted. |
David Quigley | 3560154 | 2006-06-23 02:04:01 -0700 | [diff] [blame] | 788 | * @task_movememory |
| 789 | * Check permission before moving memory owned by process @p. |
| 790 | * @p contains the task_struct for process. |
| 791 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | * @task_kill: |
| 793 | * Check permission before sending signal @sig to @p. @info can be NULL, |
| 794 | * the constant 1, or a pointer to a siginfo structure. If @info is 1 or |
| 795 | * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming |
| 796 | * from the kernel and should typically be permitted. |
| 797 | * SIGIO signals are handled separately by the send_sigiotask hook in |
| 798 | * file_security_ops. |
| 799 | * @p contains the task_struct for process. |
| 800 | * @info contains the signal information. |
| 801 | * @sig contains the signal value. |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 802 | * @secid contains the sid of the process where the signal originated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | * Return 0 if permission is granted. |
| 804 | * @task_wait: |
| 805 | * Check permission before allowing a process to reap a child process @p |
| 806 | * and collect its status information. |
| 807 | * @p contains the task_struct for process. |
| 808 | * Return 0 if permission is granted. |
| 809 | * @task_prctl: |
| 810 | * Check permission before performing a process control operation on the |
| 811 | * current process. |
| 812 | * @option contains the operation. |
| 813 | * @arg2 contains a argument. |
| 814 | * @arg3 contains a argument. |
| 815 | * @arg4 contains a argument. |
| 816 | * @arg5 contains a argument. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 817 | * Return -ENOSYS if no-one wanted to handle this op, any other value to |
| 818 | * cause prctl() to return immediately with that value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | * @task_to_inode: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 820 | * Set the security attributes for an inode based on an associated task's |
| 821 | * security attributes, e.g. for /proc/pid inodes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | * @p contains the task_struct for the task. |
| 823 | * @inode contains the inode structure for the inode. |
| 824 | * |
| 825 | * Security hooks for Netlink messaging. |
| 826 | * |
| 827 | * @netlink_send: |
| 828 | * Save security information for a netlink message so that permission |
| 829 | * checking can be performed when the message is processed. The security |
| 830 | * information can be saved using the eff_cap field of the |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 831 | * netlink_skb_parms structure. Also may be used to provide fine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | * grained control over message transmission. |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 833 | * @sk associated sock of task sending the message. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | * @skb contains the sk_buff structure for the netlink message. |
| 835 | * Return 0 if the information was successfully saved and message |
| 836 | * is allowed to be transmitted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | * |
| 838 | * Security hooks for Unix domain networking. |
| 839 | * |
| 840 | * @unix_stream_connect: |
| 841 | * Check permissions before establishing a Unix domain stream connection |
| 842 | * between @sock and @other. |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 843 | * @sock contains the sock structure. |
| 844 | * @other contains the peer sock structure. |
| 845 | * @newsk contains the new sock structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | * Return 0 if permission is granted. |
| 847 | * @unix_may_send: |
| 848 | * Check permissions before connecting or sending datagrams from @sock to |
| 849 | * @other. |
| 850 | * @sock contains the socket structure. |
Javier Martinez Canillas | fbe74e3 | 2012-02-15 11:58:54 +0100 | [diff] [blame] | 851 | * @other contains the peer socket structure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | * Return 0 if permission is granted. |
| 853 | * |
| 854 | * The @unix_stream_connect and @unix_may_send hooks were necessary because |
| 855 | * Linux provides an alternative to the conventional file name space for Unix |
| 856 | * domain sockets. Whereas binding and connecting to sockets in the file name |
| 857 | * space is mediated by the typical file permissions (and caught by the mknod |
| 858 | * and permission hooks in inode_security_ops), binding and connecting to |
| 859 | * sockets in the abstract name space is completely unmediated. Sufficient |
| 860 | * control of Unix domain sockets in the abstract name space isn't possible |
| 861 | * using only the socket layer hooks, since we need to know the actual target |
| 862 | * socket, which is not looked up until we are inside the af_unix code. |
| 863 | * |
| 864 | * Security hooks for socket operations. |
| 865 | * |
| 866 | * @socket_create: |
| 867 | * Check permissions prior to creating a new socket. |
| 868 | * @family contains the requested protocol family. |
| 869 | * @type contains the requested communications type. |
| 870 | * @protocol contains the requested protocol. |
| 871 | * @kern set to 1 if a kernel socket. |
| 872 | * Return 0 if permission is granted. |
| 873 | * @socket_post_create: |
| 874 | * This hook allows a module to update or allocate a per-socket security |
| 875 | * structure. Note that the security field was not added directly to the |
| 876 | * socket structure, but rather, the socket security information is stored |
| 877 | * in the associated inode. Typically, the inode alloc_security hook will |
| 878 | * allocate and and attach security information to |
| 879 | * sock->inode->i_security. This hook may be used to update the |
| 880 | * sock->inode->i_security field with additional information that wasn't |
| 881 | * available when the inode was allocated. |
| 882 | * @sock contains the newly created socket structure. |
| 883 | * @family contains the requested protocol family. |
| 884 | * @type contains the requested communications type. |
| 885 | * @protocol contains the requested protocol. |
| 886 | * @kern set to 1 if a kernel socket. |
| 887 | * @socket_bind: |
| 888 | * Check permission before socket protocol layer bind operation is |
| 889 | * performed and the socket @sock is bound to the address specified in the |
| 890 | * @address parameter. |
| 891 | * @sock contains the socket structure. |
| 892 | * @address contains the address to bind to. |
| 893 | * @addrlen contains the length of address. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 894 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | * @socket_connect: |
| 896 | * Check permission before socket protocol layer connect operation |
| 897 | * attempts to connect socket @sock to a remote address, @address. |
| 898 | * @sock contains the socket structure. |
| 899 | * @address contains the address of remote endpoint. |
| 900 | * @addrlen contains the length of address. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 901 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | * @socket_listen: |
| 903 | * Check permission before socket protocol layer listen operation. |
| 904 | * @sock contains the socket structure. |
| 905 | * @backlog contains the maximum length for the pending connection queue. |
| 906 | * Return 0 if permission is granted. |
| 907 | * @socket_accept: |
| 908 | * Check permission before accepting a new connection. Note that the new |
| 909 | * socket, @newsock, has been created and some information copied to it, |
| 910 | * but the accept operation has not actually been performed. |
| 911 | * @sock contains the listening socket structure. |
| 912 | * @newsock contains the newly created server socket for connection. |
| 913 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | * @socket_sendmsg: |
| 915 | * Check permission before transmitting a message to another socket. |
| 916 | * @sock contains the socket structure. |
| 917 | * @msg contains the message to be transmitted. |
| 918 | * @size contains the size of message. |
| 919 | * Return 0 if permission is granted. |
| 920 | * @socket_recvmsg: |
| 921 | * Check permission before receiving a message from a socket. |
| 922 | * @sock contains the socket structure. |
| 923 | * @msg contains the message structure. |
| 924 | * @size contains the size of message structure. |
| 925 | * @flags contains the operational flags. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 926 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | * @socket_getsockname: |
| 928 | * Check permission before the local address (name) of the socket object |
| 929 | * @sock is retrieved. |
| 930 | * @sock contains the socket structure. |
| 931 | * Return 0 if permission is granted. |
| 932 | * @socket_getpeername: |
| 933 | * Check permission before the remote address (name) of a socket object |
| 934 | * @sock is retrieved. |
| 935 | * @sock contains the socket structure. |
| 936 | * Return 0 if permission is granted. |
| 937 | * @socket_getsockopt: |
| 938 | * Check permissions before retrieving the options associated with socket |
| 939 | * @sock. |
| 940 | * @sock contains the socket structure. |
| 941 | * @level contains the protocol level to retrieve option from. |
| 942 | * @optname contains the name of option to retrieve. |
| 943 | * Return 0 if permission is granted. |
| 944 | * @socket_setsockopt: |
| 945 | * Check permissions before setting the options associated with socket |
| 946 | * @sock. |
| 947 | * @sock contains the socket structure. |
| 948 | * @level contains the protocol level to set options for. |
| 949 | * @optname contains the name of the option to set. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 950 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | * @socket_shutdown: |
| 952 | * Checks permission before all or part of a connection on the socket |
| 953 | * @sock is shut down. |
| 954 | * @sock contains the socket structure. |
| 955 | * @how contains the flag indicating how future sends and receives are handled. |
| 956 | * Return 0 if permission is granted. |
| 957 | * @socket_sock_rcv_skb: |
| 958 | * Check permissions on incoming network packets. This hook is distinct |
| 959 | * from Netfilter's IP input hooks since it is the first time that the |
| 960 | * incoming sk_buff @skb has been associated with a particular socket, @sk. |
Tetsuo Handa | 0ed7318 | 2010-01-06 09:23:54 +0900 | [diff] [blame] | 961 | * Must not sleep inside this hook because some callers hold spinlocks. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | * @sk contains the sock (not socket) associated with the incoming sk_buff. |
| 963 | * @skb contains the incoming network data. |
Serge Hallyn | 6da34ba | 2007-10-20 00:53:30 +0200 | [diff] [blame] | 964 | * @socket_getpeersec_stream: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | * This hook allows the security module to provide peer socket security |
Serge Hallyn | 6da34ba | 2007-10-20 00:53:30 +0200 | [diff] [blame] | 966 | * state for unix or connected tcp sockets to userspace via getsockopt |
| 967 | * SO_GETPEERSEC. For tcp sockets this can be meaningful if the |
| 968 | * socket is associated with an ipsec SA. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | * @sock is the local socket. |
| 970 | * @optval userspace memory where the security state is to be copied. |
| 971 | * @optlen userspace int where the module should copy the actual length |
| 972 | * of the security state. |
| 973 | * @len as input is the maximum length to copy to userspace provided |
| 974 | * by the caller. |
| 975 | * Return 0 if all is well, otherwise, typical getsockopt return |
| 976 | * values. |
Serge Hallyn | 6da34ba | 2007-10-20 00:53:30 +0200 | [diff] [blame] | 977 | * @socket_getpeersec_dgram: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 978 | * This hook allows the security module to provide peer socket security |
| 979 | * state for udp sockets on a per-packet basis to userspace via |
| 980 | * getsockopt SO_GETPEERSEC. The application must first have indicated |
| 981 | * the IP_PASSSEC option via getsockopt. It can then retrieve the |
| 982 | * security state returned by this hook for a packet via the SCM_SECURITY |
| 983 | * ancillary message type. |
| 984 | * @skb is the skbuff for the packet being queried |
| 985 | * @secdata is a pointer to a buffer in which to copy the security data |
| 986 | * @seclen is the maximum length for @secdata |
| 987 | * Return 0 on success, error on failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | * @sk_alloc_security: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 989 | * Allocate and attach a security structure to the sk->sk_security field, |
| 990 | * which is used to copy security attributes between local stream sockets. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | * @sk_free_security: |
| 992 | * Deallocate security structure. |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 993 | * @sk_clone_security: |
| 994 | * Clone/copy security structure. |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 995 | * @sk_getsecid: |
| 996 | * Retrieve the LSM-specific secid for the sock to enable caching of network |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 997 | * authorizations. |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 998 | * @sock_graft: |
Paul Moore | 2873ead | 2014-07-28 10:42:48 -0400 | [diff] [blame] | 999 | * Sets the socket's isec sid to the sock's sid. |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 1000 | * @inet_conn_request: |
| 1001 | * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid. |
| 1002 | * @inet_csk_clone: |
| 1003 | * Sets the new child socket's sid to the openreq sid. |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 1004 | * @inet_conn_established: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1005 | * Sets the connection's peersid to the secmark on skb. |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 1006 | * @secmark_relabel_packet: |
| 1007 | * check if the process should be allowed to relabel packets to the given secid |
| 1008 | * @security_secmark_refcount_inc |
| 1009 | * tells the LSM to increment the number of secmark labeling rules loaded |
| 1010 | * @security_secmark_refcount_dec |
| 1011 | * tells the LSM to decrement the number of secmark labeling rules loaded |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 1012 | * @req_classify_flow: |
| 1013 | * Sets the flow's sid to the openreq sid. |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 1014 | * @tun_dev_alloc_security: |
| 1015 | * This hook allows a module to allocate a security structure for a TUN |
| 1016 | * device. |
| 1017 | * @security pointer to a security structure pointer. |
| 1018 | * Returns a zero on success, negative values on failure. |
| 1019 | * @tun_dev_free_security: |
| 1020 | * This hook allows a module to free the security structure for a TUN |
| 1021 | * device. |
| 1022 | * @security pointer to the TUN device's security structure |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1023 | * @tun_dev_create: |
| 1024 | * Check permissions prior to creating a new TUN device. |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 1025 | * @tun_dev_attach_queue: |
| 1026 | * Check permissions prior to attaching to a TUN device queue. |
| 1027 | * @security pointer to the TUN device's security structure. |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1028 | * @tun_dev_attach: |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 1029 | * This hook can be used by the module to update any security state |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 1030 | * associated with the TUN device's sock structure. |
| 1031 | * @sk contains the existing sock structure. |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 1032 | * @security pointer to the TUN device's security structure. |
| 1033 | * @tun_dev_open: |
| 1034 | * This hook can be used by the module to update any security state |
| 1035 | * associated with the TUN device's security structure. |
| 1036 | * @security pointer to the TUN devices's security structure. |
Paul Moore | 6b07a24 | 2013-04-10 15:34:14 -0400 | [diff] [blame] | 1037 | * @skb_owned_by: |
| 1038 | * This hook sets the packet's owning sock. |
| 1039 | * @skb is the packet. |
| 1040 | * @sk the sock which owns the packet. |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1041 | * |
| 1042 | * Security hooks for XFRM operations. |
| 1043 | * |
| 1044 | * @xfrm_policy_alloc_security: |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1045 | * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy |
| 1046 | * Database used by the XFRM system. |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1047 | * @sec_ctx contains the security context information being provided by |
| 1048 | * the user-level policy update program (e.g., setkey). |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1049 | * Allocate a security structure to the xp->security field; the security |
Venkat Yekkirala | c1a856c | 2006-11-08 17:03:44 -0600 | [diff] [blame] | 1050 | * field is initialized to NULL when the xfrm_policy is allocated. |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1051 | * Return 0 if operation was successful (memory to allocate, legal context) |
Nikolay Aleksandrov | 52a4c64 | 2014-03-07 12:44:19 +0100 | [diff] [blame] | 1052 | * @gfp is to specify the context for the allocation |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1053 | * @xfrm_policy_clone_security: |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1054 | * @old_ctx contains an existing xfrm_sec_ctx. |
| 1055 | * @new_ctxp contains a new xfrm_sec_ctx being cloned from old. |
| 1056 | * Allocate a security structure in new_ctxp that contains the |
| 1057 | * information from the old_ctx structure. |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1058 | * Return 0 if operation was successful (memory to allocate). |
| 1059 | * @xfrm_policy_free_security: |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1060 | * @ctx contains the xfrm_sec_ctx |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 1061 | * Deallocate xp->security. |
| 1062 | * @xfrm_policy_delete_security: |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1063 | * @ctx contains the xfrm_sec_ctx. |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 1064 | * Authorize deletion of xp->security. |
Paul Moore | 2e5aa86 | 2013-07-23 17:38:38 -0400 | [diff] [blame] | 1065 | * @xfrm_state_alloc: |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1066 | * @x contains the xfrm_state being added to the Security Association |
| 1067 | * Database by the XFRM system. |
| 1068 | * @sec_ctx contains the security context information being provided by |
| 1069 | * the user-level SA generation program (e.g., setkey or racoon). |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1070 | * Allocate a security structure to the x->security field; the security |
| 1071 | * field is initialized to NULL when the xfrm_state is allocated. Set the |
Paul Moore | 2e5aa86 | 2013-07-23 17:38:38 -0400 | [diff] [blame] | 1072 | * context to correspond to sec_ctx. Return 0 if operation was successful |
| 1073 | * (memory to allocate, legal context). |
| 1074 | * @xfrm_state_alloc_acquire: |
| 1075 | * @x contains the xfrm_state being added to the Security Association |
| 1076 | * Database by the XFRM system. |
| 1077 | * @polsec contains the policy's security context. |
| 1078 | * @secid contains the secid from which to take the mls portion of the |
| 1079 | * context. |
| 1080 | * Allocate a security structure to the x->security field; the security |
| 1081 | * field is initialized to NULL when the xfrm_state is allocated. Set the |
| 1082 | * context to correspond to secid. Return 0 if operation was successful |
| 1083 | * (memory to allocate, legal context). |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1084 | * @xfrm_state_free_security: |
| 1085 | * @x contains the xfrm_state. |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 1086 | * Deallocate x->security. |
| 1087 | * @xfrm_state_delete_security: |
| 1088 | * @x contains the xfrm_state. |
| 1089 | * Authorize deletion of x->security. |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1090 | * @xfrm_policy_lookup: |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1091 | * @ctx contains the xfrm_sec_ctx for which the access control is being |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1092 | * checked. |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1093 | * @fl_secid contains the flow security label that is used to authorize |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1094 | * access to the policy xp. |
| 1095 | * @dir contains the direction of the flow (input or output). |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1096 | * Check permission when a flow selects a xfrm_policy for processing |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1097 | * XFRMs on a packet. The hook is called when selecting either a |
| 1098 | * per-socket policy or a generic xfrm policy. |
Venkat Yekkirala | 5b368e6 | 2006-10-05 15:42:18 -0500 | [diff] [blame] | 1099 | * Return 0 if permission is granted, -ESRCH otherwise, or -errno |
| 1100 | * on other errors. |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1101 | * @xfrm_state_pol_flow_match: |
| 1102 | * @x contains the state to match. |
| 1103 | * @xp contains the policy to check for a match. |
| 1104 | * @fl contains the flow to check for a match. |
| 1105 | * Return 1 if there is a match. |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 1106 | * @xfrm_decode_session: |
| 1107 | * @skb points to skb to decode. |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 1108 | * @secid points to the flow key secid to set. |
| 1109 | * @ckall says if all xfrms used should be checked for same secid. |
| 1110 | * Return 0 if ckall is zero or all xfrms used have the same secid. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | * |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1112 | * Security hooks affecting all Key Management operations |
| 1113 | * |
| 1114 | * @key_alloc: |
| 1115 | * Permit allocation of a key and assign security data. Note that key does |
| 1116 | * not have a serial number assigned at this point. |
| 1117 | * @key points to the key. |
David Howells | 7e047ef | 2006-06-26 00:24:50 -0700 | [diff] [blame] | 1118 | * @flags is the allocation flags |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1119 | * Return 0 if permission is granted, -ve error otherwise. |
| 1120 | * @key_free: |
| 1121 | * Notification of destruction; free security data. |
| 1122 | * @key points to the key. |
| 1123 | * No return value. |
| 1124 | * @key_permission: |
| 1125 | * See whether a specific operational right is granted to a process on a |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1126 | * key. |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1127 | * @key_ref refers to the key (key pointer + possession attribute bit). |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1128 | * @cred points to the credentials to provide the context against which to |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1129 | * evaluate the security data on the key. |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1130 | * @perm describes the combination of permissions required of this key. |
Tetsuo Handa | ad9c2b0 | 2010-11-30 11:06:47 +0900 | [diff] [blame] | 1131 | * Return 0 if permission is granted, -ve error otherwise. |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 1132 | * @key_getsecurity: |
| 1133 | * Get a textual representation of the security context attached to a key |
| 1134 | * for the purposes of honouring KEYCTL_GETSECURITY. This function |
| 1135 | * allocates the storage for the NUL-terminated string and the caller |
| 1136 | * should free it. |
| 1137 | * @key points to the key to be queried. |
| 1138 | * @_buffer points to a pointer that should be set to point to the |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 1139 | * resulting string (if no label or an error occurs). |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 1140 | * Return the length of the string (including terminating NUL) or -ve if |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 1141 | * an error. |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 1142 | * May also return 0 (and a NULL buffer pointer) if there is no label. |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1143 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1144 | * Security hooks affecting all System V IPC operations. |
| 1145 | * |
| 1146 | * @ipc_permission: |
| 1147 | * Check permissions for access to IPC |
| 1148 | * @ipcp contains the kernel IPC permission structure |
| 1149 | * @flag contains the desired (requested) permission set |
| 1150 | * Return 0 if permission is granted. |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 1151 | * @ipc_getsecid: |
| 1152 | * Get the secid associated with the ipc object. |
| 1153 | * @ipcp contains the kernel IPC permission structure. |
| 1154 | * @secid contains a pointer to the location where result will be saved. |
| 1155 | * In case of failure, @secid will be set to zero. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | * |
| 1157 | * Security hooks for individual messages held in System V IPC message queues |
| 1158 | * @msg_msg_alloc_security: |
| 1159 | * Allocate and attach a security structure to the msg->security field. |
| 1160 | * The security field is initialized to NULL when the structure is first |
| 1161 | * created. |
| 1162 | * @msg contains the message structure to be modified. |
| 1163 | * Return 0 if operation was successful and permission is granted. |
| 1164 | * @msg_msg_free_security: |
| 1165 | * Deallocate the security structure for this message. |
| 1166 | * @msg contains the message structure to be modified. |
| 1167 | * |
| 1168 | * Security hooks for System V IPC Message Queues |
| 1169 | * |
| 1170 | * @msg_queue_alloc_security: |
| 1171 | * Allocate and attach a security structure to the |
| 1172 | * msq->q_perm.security field. The security field is initialized to |
| 1173 | * NULL when the structure is first created. |
| 1174 | * @msq contains the message queue structure to be modified. |
| 1175 | * Return 0 if operation was successful and permission is granted. |
| 1176 | * @msg_queue_free_security: |
| 1177 | * Deallocate security structure for this message queue. |
| 1178 | * @msq contains the message queue structure to be modified. |
| 1179 | * @msg_queue_associate: |
| 1180 | * Check permission when a message queue is requested through the |
| 1181 | * msgget system call. This hook is only called when returning the |
| 1182 | * message queue identifier for an existing message queue, not when a |
| 1183 | * new message queue is created. |
| 1184 | * @msq contains the message queue to act upon. |
| 1185 | * @msqflg contains the operation control flags. |
| 1186 | * Return 0 if permission is granted. |
| 1187 | * @msg_queue_msgctl: |
| 1188 | * Check permission when a message control operation specified by @cmd |
| 1189 | * is to be performed on the message queue @msq. |
| 1190 | * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO. |
| 1191 | * @msq contains the message queue to act upon. May be NULL. |
| 1192 | * @cmd contains the operation to be performed. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1193 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | * @msg_queue_msgsnd: |
| 1195 | * Check permission before a message, @msg, is enqueued on the message |
| 1196 | * queue, @msq. |
| 1197 | * @msq contains the message queue to send message to. |
| 1198 | * @msg contains the message to be enqueued. |
| 1199 | * @msqflg contains operational flags. |
| 1200 | * Return 0 if permission is granted. |
| 1201 | * @msg_queue_msgrcv: |
| 1202 | * Check permission before a message, @msg, is removed from the message |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1203 | * queue, @msq. The @target task structure contains a pointer to the |
| 1204 | * process that will be receiving the message (not equal to the current |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | * process when inline receives are being performed). |
| 1206 | * @msq contains the message queue to retrieve message from. |
| 1207 | * @msg contains the message destination. |
| 1208 | * @target contains the task structure for recipient process. |
| 1209 | * @type contains the type of message requested. |
| 1210 | * @mode contains the operational flags. |
| 1211 | * Return 0 if permission is granted. |
| 1212 | * |
| 1213 | * Security hooks for System V Shared Memory Segments |
| 1214 | * |
| 1215 | * @shm_alloc_security: |
| 1216 | * Allocate and attach a security structure to the shp->shm_perm.security |
| 1217 | * field. The security field is initialized to NULL when the structure is |
| 1218 | * first created. |
| 1219 | * @shp contains the shared memory structure to be modified. |
| 1220 | * Return 0 if operation was successful and permission is granted. |
| 1221 | * @shm_free_security: |
| 1222 | * Deallocate the security struct for this memory segment. |
| 1223 | * @shp contains the shared memory structure to be modified. |
| 1224 | * @shm_associate: |
| 1225 | * Check permission when a shared memory region is requested through the |
| 1226 | * shmget system call. This hook is only called when returning the shared |
| 1227 | * memory region identifier for an existing region, not when a new shared |
| 1228 | * memory region is created. |
| 1229 | * @shp contains the shared memory structure to be modified. |
| 1230 | * @shmflg contains the operation control flags. |
| 1231 | * Return 0 if permission is granted. |
| 1232 | * @shm_shmctl: |
| 1233 | * Check permission when a shared memory control operation specified by |
| 1234 | * @cmd is to be performed on the shared memory region @shp. |
| 1235 | * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO. |
| 1236 | * @shp contains shared memory structure to be modified. |
| 1237 | * @cmd contains the operation to be performed. |
| 1238 | * Return 0 if permission is granted. |
| 1239 | * @shm_shmat: |
| 1240 | * Check permissions prior to allowing the shmat system call to attach the |
| 1241 | * shared memory segment @shp to the data segment of the calling process. |
| 1242 | * The attaching address is specified by @shmaddr. |
| 1243 | * @shp contains the shared memory structure to be modified. |
| 1244 | * @shmaddr contains the address to attach memory region to. |
| 1245 | * @shmflg contains the operational flags. |
| 1246 | * Return 0 if permission is granted. |
| 1247 | * |
| 1248 | * Security hooks for System V Semaphores |
| 1249 | * |
| 1250 | * @sem_alloc_security: |
| 1251 | * Allocate and attach a security structure to the sma->sem_perm.security |
| 1252 | * field. The security field is initialized to NULL when the structure is |
| 1253 | * first created. |
| 1254 | * @sma contains the semaphore structure |
| 1255 | * Return 0 if operation was successful and permission is granted. |
| 1256 | * @sem_free_security: |
| 1257 | * deallocate security struct for this semaphore |
| 1258 | * @sma contains the semaphore structure. |
| 1259 | * @sem_associate: |
| 1260 | * Check permission when a semaphore is requested through the semget |
| 1261 | * system call. This hook is only called when returning the semaphore |
| 1262 | * identifier for an existing semaphore, not when a new one must be |
| 1263 | * created. |
| 1264 | * @sma contains the semaphore structure. |
| 1265 | * @semflg contains the operation control flags. |
| 1266 | * Return 0 if permission is granted. |
| 1267 | * @sem_semctl: |
| 1268 | * Check permission when a semaphore operation specified by @cmd is to be |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1269 | * performed on the semaphore @sma. The @sma may be NULL, e.g. for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | * IPC_INFO or SEM_INFO. |
| 1271 | * @sma contains the semaphore structure. May be NULL. |
| 1272 | * @cmd contains the operation to be performed. |
| 1273 | * Return 0 if permission is granted. |
| 1274 | * @sem_semop |
| 1275 | * Check permissions before performing operations on members of the |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1276 | * semaphore set @sma. If the @alter flag is nonzero, the semaphore set |
| 1277 | * may be modified. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | * @sma contains the semaphore structure. |
| 1279 | * @sops contains the operations to perform. |
| 1280 | * @nsops contains the number of operations to perform. |
| 1281 | * @alter contains the flag indicating whether changes are to be made. |
| 1282 | * Return 0 if permission is granted. |
| 1283 | * |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1284 | * @ptrace_access_check: |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1285 | * Check permission before allowing the current process to trace the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | * @child process. |
| 1287 | * Security modules may also want to perform a process tracing check |
| 1288 | * during an execve in the set_security or apply_creds hooks of |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1289 | * tracing check during an execve in the bprm_set_creds hook of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | * binprm_security_ops if the process is being traced and its security |
| 1291 | * attributes would be changed by the execve. |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1292 | * @child contains the task_struct structure for the target process. |
Stephen Smalley | 006ebb4 | 2008-05-19 08:32:49 -0400 | [diff] [blame] | 1293 | * @mode contains the PTRACE_MODE flags indicating the form of access. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | * Return 0 if permission is granted. |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1295 | * @ptrace_traceme: |
| 1296 | * Check that the @parent process has sufficient permission to trace the |
| 1297 | * current process before allowing the current process to present itself |
| 1298 | * to the @parent process for tracing. |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1299 | * @parent contains the task_struct structure for debugger process. |
| 1300 | * Return 0 if permission is granted. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | * @capget: |
| 1302 | * Get the @effective, @inheritable, and @permitted capability sets for |
| 1303 | * the @target process. The hook may also perform permission checking to |
| 1304 | * determine if the current process is allowed to see the capability sets |
| 1305 | * of the @target process. |
| 1306 | * @target contains the task_struct structure for target process. |
| 1307 | * @effective contains the effective capability set. |
| 1308 | * @inheritable contains the inheritable capability set. |
| 1309 | * @permitted contains the permitted capability set. |
| 1310 | * Return 0 if the capability sets were successfully obtained. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1311 | * @capset: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | * Set the @effective, @inheritable, and @permitted capability sets for |
David Howells | 1cdcbec | 2008-11-14 10:39:14 +1100 | [diff] [blame] | 1313 | * the current process. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1314 | * @new contains the new credentials structure for target process. |
| 1315 | * @old contains the current credentials structure for target process. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | * @effective contains the effective capability set. |
| 1317 | * @inheritable contains the inheritable capability set. |
| 1318 | * @permitted contains the permitted capability set. |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1319 | * Return 0 and update @new if permission is granted. |
Chris Wright | 12b5989 | 2006-03-25 03:07:41 -0800 | [diff] [blame] | 1320 | * @capable: |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1321 | * Check whether the @tsk process has the @cap capability in the indicated |
| 1322 | * credentials. |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1323 | * @cred contains the credentials to use. |
Vsevolod Alekseev | 11be0b3 | 2011-11-05 02:35:28 -0700 | [diff] [blame] | 1324 | * @ns contains the user namespace we want the capability in |
Chris Wright | 12b5989 | 2006-03-25 03:07:41 -0800 | [diff] [blame] | 1325 | * @cap contains the capability <include/linux/capability.h>. |
David Howells | 3699c53 | 2009-01-06 22:27:01 +0000 | [diff] [blame] | 1326 | * @audit: Whether to write an audit message or not |
Chris Wright | 12b5989 | 2006-03-25 03:07:41 -0800 | [diff] [blame] | 1327 | * Return 0 if the capability is granted for @tsk. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | * @syslog: |
| 1329 | * Check permission before accessing the kernel message ring or changing |
| 1330 | * logging to the console. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1331 | * See the syslog(2) manual page for an explanation of the @type values. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | * @type contains the type of action. |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 1333 | * @from_file indicates the context of action (if it came from /proc). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | * Return 0 if permission is granted. |
| 1335 | * @settime: |
| 1336 | * Check permission to change the system time. |
| 1337 | * struct timespec and timezone are defined in include/linux/time.h |
| 1338 | * @ts contains new time |
| 1339 | * @tz contains new timezone |
| 1340 | * Return 0 if permission is granted. |
| 1341 | * @vm_enough_memory: |
| 1342 | * Check permissions for allocating a new virtual mapping. |
Alan Cox | 34b4e4a | 2007-08-22 14:01:28 -0700 | [diff] [blame] | 1343 | * @mm contains the mm struct it is being added to. |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1344 | * @pages contains the number of pages. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | * Return 0 if permission is granted. |
| 1346 | * |
David Quigley | 746df9b | 2013-05-22 12:50:35 -0400 | [diff] [blame] | 1347 | * @ismaclabel: |
| 1348 | * Check if the extended attribute specified by @name |
| 1349 | * represents a MAC label. Returns 1 if name is a MAC |
| 1350 | * attribute otherwise returns 0. |
| 1351 | * @name full extended attribute name to check against |
| 1352 | * LSM as a MAC label. |
| 1353 | * |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 1354 | * @secid_to_secctx: |
Eric Paris | d5630b9 | 2010-10-13 16:24:48 -0400 | [diff] [blame] | 1355 | * Convert secid to security context. If secdata is NULL the length of |
| 1356 | * the result will be returned in seclen, but no secdata will be returned. |
| 1357 | * This does mean that the length could change between calls to check the |
| 1358 | * length and the next call which actually allocates and returns the secdata. |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 1359 | * @secid contains the security ID. |
| 1360 | * @secdata contains the pointer that stores the converted security context. |
Eric Paris | d5630b9 | 2010-10-13 16:24:48 -0400 | [diff] [blame] | 1361 | * @seclen pointer which contains the length of the data |
David Howells | 63cb344 | 2008-01-15 23:47:35 +0000 | [diff] [blame] | 1362 | * @secctx_to_secid: |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1363 | * Convert security context to secid. |
| 1364 | * @secid contains the pointer to the generated security ID. |
| 1365 | * @secdata contains the security context. |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 1366 | * |
| 1367 | * @release_secctx: |
| 1368 | * Release the security context. |
| 1369 | * @secdata contains the security context. |
| 1370 | * @seclen contains the length of the security context. |
| 1371 | * |
Ahmed S. Darwish | 03d37d2 | 2008-03-01 22:00:05 +0200 | [diff] [blame] | 1372 | * Security hooks for Audit |
| 1373 | * |
| 1374 | * @audit_rule_init: |
| 1375 | * Allocate and initialize an LSM audit rule structure. |
| 1376 | * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h |
| 1377 | * @op contains the operator the rule uses. |
| 1378 | * @rulestr contains the context where the rule will be applied to. |
| 1379 | * @lsmrule contains a pointer to receive the result. |
| 1380 | * Return 0 if @lsmrule has been successfully set, |
| 1381 | * -EINVAL in case of an invalid rule. |
| 1382 | * |
| 1383 | * @audit_rule_known: |
| 1384 | * Specifies whether given @rule contains any fields related to current LSM. |
| 1385 | * @rule contains the audit rule of interest. |
| 1386 | * Return 1 in case of relation found, 0 otherwise. |
| 1387 | * |
| 1388 | * @audit_rule_match: |
| 1389 | * Determine if given @secid matches a rule previously approved |
| 1390 | * by @audit_rule_known. |
| 1391 | * @secid contains the security id in question. |
| 1392 | * @field contains the field which relates to current LSM. |
| 1393 | * @op contains the operator that will be used for matching. |
| 1394 | * @rule points to the audit rule that will be checked against. |
| 1395 | * @actx points to the audit context associated with the check. |
| 1396 | * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure. |
| 1397 | * |
| 1398 | * @audit_rule_free: |
| 1399 | * Deallocate the LSM audit rule structure previously allocated by |
| 1400 | * audit_rule_init. |
| 1401 | * @rule contains the allocated rule |
| 1402 | * |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 1403 | * @inode_notifysecctx: |
| 1404 | * Notify the security module of what the security context of an inode |
| 1405 | * should be. Initializes the incore security context managed by the |
| 1406 | * security module for this inode. Example usage: NFS client invokes |
| 1407 | * this hook to initialize the security context in its incore inode to the |
| 1408 | * value provided by the server for the file when the server returned the |
| 1409 | * file's attributes to the client. |
| 1410 | * |
| 1411 | * Must be called with inode->i_mutex locked. |
| 1412 | * |
| 1413 | * @inode we wish to set the security context of. |
| 1414 | * @ctx contains the string which we wish to set in the inode. |
| 1415 | * @ctxlen contains the length of @ctx. |
| 1416 | * |
| 1417 | * @inode_setsecctx: |
| 1418 | * Change the security context of an inode. Updates the |
| 1419 | * incore security context managed by the security module and invokes the |
| 1420 | * fs code as needed (via __vfs_setxattr_noperm) to update any backing |
| 1421 | * xattrs that represent the context. Example usage: NFS server invokes |
| 1422 | * this hook to change the security context in its incore inode and on the |
| 1423 | * backing filesystem to a value provided by the client on a SETATTR |
| 1424 | * operation. |
| 1425 | * |
| 1426 | * Must be called with inode->i_mutex locked. |
| 1427 | * |
| 1428 | * @dentry contains the inode we wish to set the security context of. |
| 1429 | * @ctx contains the string which we wish to set in the inode. |
| 1430 | * @ctxlen contains the length of @ctx. |
| 1431 | * |
| 1432 | * @inode_getsecctx: |
J. Bruce Fields | 4726e8f | 2013-05-09 11:41:04 -0400 | [diff] [blame] | 1433 | * On success, returns 0 and fills out @ctx and @ctxlen with the security |
| 1434 | * context for the given @inode. |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 1435 | * |
rongqing.li@windriver.com | fc9ff9b | 2011-09-06 11:35:36 +0800 | [diff] [blame] | 1436 | * @inode we wish to get the security context of. |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 1437 | * @ctx is a pointer in which to place the allocated security context. |
| 1438 | * @ctxlen points to the place to put the length of @ctx. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1439 | * This is the main security structure. |
| 1440 | */ |
| 1441 | struct security_operations { |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 1442 | char name[SECURITY_NAME_MAX + 1]; |
| 1443 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1444 | int (*ptrace_access_check) (struct task_struct *child, unsigned int mode); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1445 | int (*ptrace_traceme) (struct task_struct *parent); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1446 | int (*capget) (struct task_struct *target, |
| 1447 | kernel_cap_t *effective, |
| 1448 | kernel_cap_t *inheritable, kernel_cap_t *permitted); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1449 | int (*capset) (struct cred *new, |
| 1450 | const struct cred *old, |
| 1451 | const kernel_cap_t *effective, |
| 1452 | const kernel_cap_t *inheritable, |
| 1453 | const kernel_cap_t *permitted); |
Eric Paris | 6a9de49 | 2012-01-03 12:25:14 -0500 | [diff] [blame] | 1454 | int (*capable) (const struct cred *cred, struct user_namespace *ns, |
| 1455 | int cap, int audit); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1456 | int (*quotactl) (int cmds, int type, int id, struct super_block *sb); |
| 1457 | int (*quota_on) (struct dentry *dentry); |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1458 | int (*syslog) (int type); |
Richard Cochran | 1e6d767 | 2011-02-01 13:50:58 +0000 | [diff] [blame] | 1459 | int (*settime) (const struct timespec *ts, const struct timezone *tz); |
Alan Cox | 34b4e4a | 2007-08-22 14:01:28 -0700 | [diff] [blame] | 1460 | int (*vm_enough_memory) (struct mm_struct *mm, long pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1461 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1462 | int (*bprm_set_creds) (struct linux_binprm *bprm); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1463 | int (*bprm_check_security) (struct linux_binprm *bprm); |
| 1464 | int (*bprm_secureexec) (struct linux_binprm *bprm); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1465 | void (*bprm_committing_creds) (struct linux_binprm *bprm); |
| 1466 | void (*bprm_committed_creds) (struct linux_binprm *bprm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1468 | int (*sb_alloc_security) (struct super_block *sb); |
| 1469 | void (*sb_free_security) (struct super_block *sb); |
| 1470 | int (*sb_copy_data) (char *orig, char *copy); |
Eric Paris | ff36fe2 | 2011-03-03 16:09:14 -0500 | [diff] [blame] | 1471 | int (*sb_remount) (struct super_block *sb, void *data); |
James Morris | 12204e2 | 2008-12-19 10:44:42 +1100 | [diff] [blame] | 1472 | int (*sb_kern_mount) (struct super_block *sb, int flags, void *data); |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 1473 | int (*sb_show_options) (struct seq_file *m, struct super_block *sb); |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1474 | int (*sb_statfs) (struct dentry *dentry); |
Al Viro | 808d4e3 | 2012-10-11 11:42:01 -0400 | [diff] [blame] | 1475 | int (*sb_mount) (const char *dev_name, struct path *path, |
| 1476 | const char *type, unsigned long flags, void *data); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1477 | int (*sb_umount) (struct vfsmount *mnt, int flags); |
Al Viro | b5266eb | 2008-03-22 17:48:24 -0400 | [diff] [blame] | 1478 | int (*sb_pivotroot) (struct path *old_path, |
| 1479 | struct path *new_path); |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 1480 | int (*sb_set_mnt_opts) (struct super_block *sb, |
David Quigley | 649f6e7 | 2013-05-22 12:50:36 -0400 | [diff] [blame] | 1481 | struct security_mnt_opts *opts, |
| 1482 | unsigned long kern_flags, |
| 1483 | unsigned long *set_kern_flags); |
Jeff Layton | 094f7b6 | 2013-04-01 08:14:24 -0400 | [diff] [blame] | 1484 | int (*sb_clone_mnt_opts) (const struct super_block *oldsb, |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 1485 | struct super_block *newsb); |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 1486 | int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts); |
David Quigley | d47be3d | 2013-05-22 12:50:34 -0400 | [diff] [blame] | 1487 | int (*dentry_init_security) (struct dentry *dentry, int mode, |
| 1488 | struct qstr *name, void **ctx, |
| 1489 | u32 *ctxlen); |
| 1490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1492 | #ifdef CONFIG_SECURITY_PATH |
| 1493 | int (*path_unlink) (struct path *dir, struct dentry *dentry); |
Al Viro | 4572bef | 2011-11-21 14:56:21 -0500 | [diff] [blame] | 1494 | int (*path_mkdir) (struct path *dir, struct dentry *dentry, umode_t mode); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1495 | int (*path_rmdir) (struct path *dir, struct dentry *dentry); |
Al Viro | 04fc66e | 2011-11-21 14:58:38 -0500 | [diff] [blame] | 1496 | int (*path_mknod) (struct path *dir, struct dentry *dentry, umode_t mode, |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1497 | unsigned int dev); |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 1498 | int (*path_truncate) (struct path *path); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1499 | int (*path_symlink) (struct path *dir, struct dentry *dentry, |
| 1500 | const char *old_name); |
| 1501 | int (*path_link) (struct dentry *old_dentry, struct path *new_dir, |
| 1502 | struct dentry *new_dentry); |
| 1503 | int (*path_rename) (struct path *old_dir, struct dentry *old_dentry, |
| 1504 | struct path *new_dir, struct dentry *new_dentry); |
Al Viro | cdcf116 | 2011-12-08 10:51:53 -0500 | [diff] [blame] | 1505 | int (*path_chmod) (struct path *path, umode_t mode); |
Eric W. Biederman | d2b31ca | 2012-06-01 16:14:19 -0600 | [diff] [blame] | 1506 | int (*path_chown) (struct path *path, kuid_t uid, kgid_t gid); |
Tetsuo Handa | 8b8efb4 | 2009-10-04 21:49:48 +0900 | [diff] [blame] | 1507 | int (*path_chroot) (struct path *path); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 1508 | #endif |
| 1509 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1510 | int (*inode_alloc_security) (struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | void (*inode_free_security) (struct inode *inode); |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 1512 | int (*inode_init_security) (struct inode *inode, struct inode *dir, |
Tetsuo Handa | 9548906 | 2013-07-25 05:44:02 +0900 | [diff] [blame] | 1513 | const struct qstr *qstr, const char **name, |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 1514 | void **value, size_t *len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | int (*inode_create) (struct inode *dir, |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 1516 | struct dentry *dentry, umode_t mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | int (*inode_link) (struct dentry *old_dentry, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1518 | struct inode *dir, struct dentry *new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | int (*inode_unlink) (struct inode *dir, struct dentry *dentry); |
| 1520 | int (*inode_symlink) (struct inode *dir, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1521 | struct dentry *dentry, const char *old_name); |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 1522 | int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, umode_t mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | int (*inode_rmdir) (struct inode *dir, struct dentry *dentry); |
| 1524 | int (*inode_mknod) (struct inode *dir, struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 1525 | umode_t mode, dev_t dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1527 | struct inode *new_dir, struct dentry *new_dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | int (*inode_readlink) (struct dentry *dentry); |
| 1529 | int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd); |
Al Viro | e74f71e | 2011-06-20 19:38:15 -0400 | [diff] [blame] | 1530 | int (*inode_permission) (struct inode *inode, int mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | int (*inode_setattr) (struct dentry *dentry, struct iattr *attr); |
| 1532 | int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 1533 | int (*inode_setxattr) (struct dentry *dentry, const char *name, |
| 1534 | const void *value, size_t size, int flags); |
| 1535 | void (*inode_post_setxattr) (struct dentry *dentry, const char *name, |
| 1536 | const void *value, size_t size, int flags); |
| 1537 | int (*inode_getxattr) (struct dentry *dentry, const char *name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | int (*inode_listxattr) (struct dentry *dentry); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 1539 | int (*inode_removexattr) (struct dentry *dentry, const char *name); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 1540 | int (*inode_need_killpriv) (struct dentry *dentry); |
| 1541 | int (*inode_killpriv) (struct dentry *dentry); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1542 | int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc); |
| 1543 | int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags); |
| 1544 | int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size); |
| 1545 | void (*inode_getsecid) (const struct inode *inode, u32 *secid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1547 | int (*file_permission) (struct file *file, int mask); |
| 1548 | int (*file_alloc_security) (struct file *file); |
| 1549 | void (*file_free_security) (struct file *file); |
| 1550 | int (*file_ioctl) (struct file *file, unsigned int cmd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | unsigned long arg); |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 1552 | int (*mmap_addr) (unsigned long addr); |
| 1553 | int (*mmap_file) (struct file *file, |
Eric Paris | ed03218 | 2007-06-28 15:55:21 -0400 | [diff] [blame] | 1554 | unsigned long reqprot, unsigned long prot, |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 1555 | unsigned long flags); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1556 | int (*file_mprotect) (struct vm_area_struct *vma, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | unsigned long reqprot, |
| 1558 | unsigned long prot); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1559 | int (*file_lock) (struct file *file, unsigned int cmd); |
| 1560 | int (*file_fcntl) (struct file *file, unsigned int cmd, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1561 | unsigned long arg); |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 1562 | void (*file_set_fowner) (struct file *file); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1563 | int (*file_send_sigiotask) (struct task_struct *tsk, |
| 1564 | struct fown_struct *fown, int sig); |
| 1565 | int (*file_receive) (struct file *file); |
Eric Paris | 83d4985 | 2012-04-04 13:45:40 -0400 | [diff] [blame] | 1566 | int (*file_open) (struct file *file, const struct cred *cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1567 | |
| 1568 | int (*task_create) (unsigned long clone_flags); |
Kees Cook | 1a2a4d0 | 2011-12-21 12:17:03 -0800 | [diff] [blame] | 1569 | void (*task_free) (struct task_struct *task); |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 1570 | int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp); |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 1571 | void (*cred_free) (struct cred *cred); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1572 | int (*cred_prepare)(struct cred *new, const struct cred *old, |
| 1573 | gfp_t gfp); |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 1574 | void (*cred_transfer)(struct cred *new, const struct cred *old); |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 1575 | int (*kernel_act_as)(struct cred *new, u32 secid); |
| 1576 | int (*kernel_create_files_as)(struct cred *new, struct inode *inode); |
Kees Cook | 13752fe | 2014-02-25 10:28:04 -0800 | [diff] [blame] | 1577 | int (*kernel_fw_from_file)(struct file *file, char *buf, size_t size); |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 1578 | int (*kernel_module_request)(char *kmod_name); |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 1579 | int (*kernel_module_from_file)(struct file *file); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1580 | int (*task_fix_setuid) (struct cred *new, const struct cred *old, |
| 1581 | int flags); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1582 | int (*task_setpgid) (struct task_struct *p, pid_t pgid); |
| 1583 | int (*task_getpgid) (struct task_struct *p); |
| 1584 | int (*task_getsid) (struct task_struct *p); |
| 1585 | void (*task_getsecid) (struct task_struct *p, u32 *secid); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1586 | int (*task_setnice) (struct task_struct *p, int nice); |
| 1587 | int (*task_setioprio) (struct task_struct *p, int ioprio); |
| 1588 | int (*task_getioprio) (struct task_struct *p); |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 1589 | int (*task_setrlimit) (struct task_struct *p, unsigned int resource, |
| 1590 | struct rlimit *new_rlim); |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 1591 | int (*task_setscheduler) (struct task_struct *p); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1592 | int (*task_getscheduler) (struct task_struct *p); |
| 1593 | int (*task_movememory) (struct task_struct *p); |
| 1594 | int (*task_kill) (struct task_struct *p, |
| 1595 | struct siginfo *info, int sig, u32 secid); |
| 1596 | int (*task_wait) (struct task_struct *p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | int (*task_prctl) (int option, unsigned long arg2, |
| 1598 | unsigned long arg3, unsigned long arg4, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1599 | unsigned long arg5); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1600 | void (*task_to_inode) (struct task_struct *p, struct inode *inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1602 | int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag); |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 1603 | void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1604 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1605 | int (*msg_msg_alloc_security) (struct msg_msg *msg); |
| 1606 | void (*msg_msg_free_security) (struct msg_msg *msg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1608 | int (*msg_queue_alloc_security) (struct msg_queue *msq); |
| 1609 | void (*msg_queue_free_security) (struct msg_queue *msq); |
| 1610 | int (*msg_queue_associate) (struct msg_queue *msq, int msqflg); |
| 1611 | int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd); |
| 1612 | int (*msg_queue_msgsnd) (struct msg_queue *msq, |
| 1613 | struct msg_msg *msg, int msqflg); |
| 1614 | int (*msg_queue_msgrcv) (struct msg_queue *msq, |
| 1615 | struct msg_msg *msg, |
| 1616 | struct task_struct *target, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | long type, int mode); |
| 1618 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1619 | int (*shm_alloc_security) (struct shmid_kernel *shp); |
| 1620 | void (*shm_free_security) (struct shmid_kernel *shp); |
| 1621 | int (*shm_associate) (struct shmid_kernel *shp, int shmflg); |
| 1622 | int (*shm_shmctl) (struct shmid_kernel *shp, int cmd); |
| 1623 | int (*shm_shmat) (struct shmid_kernel *shp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | char __user *shmaddr, int shmflg); |
| 1625 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1626 | int (*sem_alloc_security) (struct sem_array *sma); |
| 1627 | void (*sem_free_security) (struct sem_array *sma); |
| 1628 | int (*sem_associate) (struct sem_array *sma, int semflg); |
| 1629 | int (*sem_semctl) (struct sem_array *sma, int cmd); |
| 1630 | int (*sem_semop) (struct sem_array *sma, |
| 1631 | struct sembuf *sops, unsigned nsops, int alter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1633 | int (*netlink_send) (struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | void (*d_instantiate) (struct dentry *dentry, struct inode *inode); |
| 1636 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1637 | int (*getprocattr) (struct task_struct *p, char *name, char **value); |
| 1638 | int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size); |
David Quigley | 746df9b | 2013-05-22 12:50:35 -0400 | [diff] [blame] | 1639 | int (*ismaclabel) (const char *name); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1640 | int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen); |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 1641 | int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1642 | void (*release_secctx) (char *secdata, u32 seclen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 1644 | int (*inode_notifysecctx)(struct inode *inode, void *ctx, u32 ctxlen); |
| 1645 | int (*inode_setsecctx)(struct dentry *dentry, void *ctx, u32 ctxlen); |
| 1646 | int (*inode_getsecctx)(struct inode *inode, void **ctx, u32 *ctxlen); |
| 1647 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | #ifdef CONFIG_SECURITY_NETWORK |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 1649 | int (*unix_stream_connect) (struct sock *sock, struct sock *other, struct sock *newsk); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1650 | int (*unix_may_send) (struct socket *sock, struct socket *other); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | |
| 1652 | int (*socket_create) (int family, int type, int protocol, int kern); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1653 | int (*socket_post_create) (struct socket *sock, int family, |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 1654 | int type, int protocol, int kern); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1655 | int (*socket_bind) (struct socket *sock, |
| 1656 | struct sockaddr *address, int addrlen); |
| 1657 | int (*socket_connect) (struct socket *sock, |
| 1658 | struct sockaddr *address, int addrlen); |
| 1659 | int (*socket_listen) (struct socket *sock, int backlog); |
| 1660 | int (*socket_accept) (struct socket *sock, struct socket *newsock); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1661 | int (*socket_sendmsg) (struct socket *sock, |
| 1662 | struct msghdr *msg, int size); |
| 1663 | int (*socket_recvmsg) (struct socket *sock, |
| 1664 | struct msghdr *msg, int size, int flags); |
| 1665 | int (*socket_getsockname) (struct socket *sock); |
| 1666 | int (*socket_getpeername) (struct socket *sock); |
| 1667 | int (*socket_getsockopt) (struct socket *sock, int level, int optname); |
| 1668 | int (*socket_setsockopt) (struct socket *sock, int level, int optname); |
| 1669 | int (*socket_shutdown) (struct socket *sock, int how); |
| 1670 | int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb); |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 1671 | int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len); |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 1672 | int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid); |
Al Viro | 7d877f3 | 2005-10-21 03:20:43 -0400 | [diff] [blame] | 1673 | int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | void (*sk_free_security) (struct sock *sk); |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 1675 | void (*sk_clone_security) (const struct sock *sk, struct sock *newsk); |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 1676 | void (*sk_getsecid) (struct sock *sk, u32 *secid); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1677 | void (*sock_graft) (struct sock *sk, struct socket *parent); |
| 1678 | int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb, |
| 1679 | struct request_sock *req); |
| 1680 | void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req); |
| 1681 | void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb); |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 1682 | int (*secmark_relabel_packet) (u32 secid); |
| 1683 | void (*secmark_refcount_inc) (void); |
| 1684 | void (*secmark_refcount_dec) (void); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1685 | void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl); |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 1686 | int (*tun_dev_alloc_security) (void **security); |
| 1687 | void (*tun_dev_free_security) (void *security); |
| 1688 | int (*tun_dev_create) (void); |
| 1689 | int (*tun_dev_attach_queue) (void *security); |
| 1690 | int (*tun_dev_attach) (struct sock *sk, void *security); |
| 1691 | int (*tun_dev_open) (void *security); |
Eric Dumazet | ca10b9e | 2013-04-08 17:58:11 +0000 | [diff] [blame] | 1692 | void (*skb_owned_by) (struct sk_buff *skb, struct sock *sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | #endif /* CONFIG_SECURITY_NETWORK */ |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1694 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1695 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1696 | int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp, |
Nikolay Aleksandrov | 52a4c64 | 2014-03-07 12:44:19 +0100 | [diff] [blame] | 1697 | struct xfrm_user_sec_ctx *sec_ctx, gfp_t gfp); |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 1698 | int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx); |
| 1699 | void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx); |
| 1700 | int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx); |
Paul Moore | 2e5aa86 | 2013-07-23 17:38:38 -0400 | [diff] [blame] | 1701 | int (*xfrm_state_alloc) (struct xfrm_state *x, |
| 1702 | struct xfrm_user_sec_ctx *sec_ctx); |
| 1703 | int (*xfrm_state_alloc_acquire) (struct xfrm_state *x, |
| 1704 | struct xfrm_sec_ctx *polsec, |
| 1705 | u32 secid); |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1706 | void (*xfrm_state_free_security) (struct xfrm_state *x); |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 1707 | int (*xfrm_state_delete_security) (struct xfrm_state *x); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1708 | int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir); |
| 1709 | int (*xfrm_state_pol_flow_match) (struct xfrm_state *x, |
| 1710 | struct xfrm_policy *xp, |
David S. Miller | e33f770 | 2011-02-22 18:13:15 -0800 | [diff] [blame] | 1711 | const struct flowi *fl); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1712 | int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall); |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 1713 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ |
| 1714 | |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1715 | /* key management security hooks */ |
| 1716 | #ifdef CONFIG_KEYS |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1717 | int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1718 | void (*key_free) (struct key *key); |
| 1719 | int (*key_permission) (key_ref_t key_ref, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1720 | const struct cred *cred, |
David Howells | f589594 | 2014-03-14 17:44:49 +0000 | [diff] [blame] | 1721 | unsigned perm); |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 1722 | int (*key_getsecurity)(struct key *key, char **_buffer); |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 1723 | #endif /* CONFIG_KEYS */ |
| 1724 | |
Ahmed S. Darwish | 03d37d2 | 2008-03-01 22:00:05 +0200 | [diff] [blame] | 1725 | #ifdef CONFIG_AUDIT |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1726 | int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule); |
| 1727 | int (*audit_rule_known) (struct audit_krule *krule); |
| 1728 | int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule, |
| 1729 | struct audit_context *actx); |
| 1730 | void (*audit_rule_free) (void *lsmrule); |
Ahmed S. Darwish | 03d37d2 | 2008-03-01 22:00:05 +0200 | [diff] [blame] | 1731 | #endif /* CONFIG_AUDIT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | }; |
| 1733 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | /* prototypes */ |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1735 | extern int security_init(void); |
Ahmed S. Darwish | 076c54c | 2008-03-06 18:09:10 +0200 | [diff] [blame] | 1736 | extern int security_module_enable(struct security_operations *ops); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1737 | extern int register_security(struct security_operations *ops); |
James Morris | 5dbe304 | 2011-08-30 13:48:53 +1000 | [diff] [blame] | 1738 | extern void __init security_fixup_ops(struct security_operations *ops); |
| 1739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1741 | /* Security operations */ |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1742 | int security_ptrace_access_check(struct task_struct *child, unsigned int mode); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1743 | int security_ptrace_traceme(struct task_struct *parent); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1744 | int security_capget(struct task_struct *target, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1745 | kernel_cap_t *effective, |
| 1746 | kernel_cap_t *inheritable, |
| 1747 | kernel_cap_t *permitted); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1748 | int security_capset(struct cred *new, const struct cred *old, |
| 1749 | const kernel_cap_t *effective, |
| 1750 | const kernel_cap_t *inheritable, |
| 1751 | const kernel_cap_t *permitted); |
Eric Paris | b7e724d | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 1752 | int security_capable(const struct cred *cred, struct user_namespace *ns, |
Serge E. Hallyn | 3486740 | 2011-03-23 16:43:17 -0700 | [diff] [blame] | 1753 | int cap); |
Eric Paris | c7eba4a | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 1754 | int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns, |
| 1755 | int cap); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1756 | int security_quotactl(int cmds, int type, int id, struct super_block *sb); |
| 1757 | int security_quota_on(struct dentry *dentry); |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1758 | int security_syslog(int type); |
Richard Cochran | 1e6d767 | 2011-02-01 13:50:58 +0000 | [diff] [blame] | 1759 | int security_settime(const struct timespec *ts, const struct timezone *tz); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1760 | int security_vm_enough_memory_mm(struct mm_struct *mm, long pages); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1761 | int security_bprm_set_creds(struct linux_binprm *bprm); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1762 | int security_bprm_check(struct linux_binprm *bprm); |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1763 | void security_bprm_committing_creds(struct linux_binprm *bprm); |
| 1764 | void security_bprm_committed_creds(struct linux_binprm *bprm); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1765 | int security_bprm_secureexec(struct linux_binprm *bprm); |
| 1766 | int security_sb_alloc(struct super_block *sb); |
| 1767 | void security_sb_free(struct super_block *sb); |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 1768 | int security_sb_copy_data(char *orig, char *copy); |
Eric Paris | ff36fe2 | 2011-03-03 16:09:14 -0500 | [diff] [blame] | 1769 | int security_sb_remount(struct super_block *sb, void *data); |
James Morris | 12204e2 | 2008-12-19 10:44:42 +1100 | [diff] [blame] | 1770 | int security_sb_kern_mount(struct super_block *sb, int flags, void *data); |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 1771 | int security_sb_show_options(struct seq_file *m, struct super_block *sb); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1772 | int security_sb_statfs(struct dentry *dentry); |
Al Viro | 808d4e3 | 2012-10-11 11:42:01 -0400 | [diff] [blame] | 1773 | int security_sb_mount(const char *dev_name, struct path *path, |
| 1774 | const char *type, unsigned long flags, void *data); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1775 | int security_sb_umount(struct vfsmount *mnt, int flags); |
Al Viro | b5266eb | 2008-03-22 17:48:24 -0400 | [diff] [blame] | 1776 | int security_sb_pivotroot(struct path *old_path, struct path *new_path); |
David Quigley | 649f6e7 | 2013-05-22 12:50:36 -0400 | [diff] [blame] | 1777 | int security_sb_set_mnt_opts(struct super_block *sb, |
| 1778 | struct security_mnt_opts *opts, |
| 1779 | unsigned long kern_flags, |
| 1780 | unsigned long *set_kern_flags); |
Jeff Layton | 094f7b6 | 2013-04-01 08:14:24 -0400 | [diff] [blame] | 1781 | int security_sb_clone_mnt_opts(const struct super_block *oldsb, |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 1782 | struct super_block *newsb); |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 1783 | int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts); |
David Quigley | d47be3d | 2013-05-22 12:50:34 -0400 | [diff] [blame] | 1784 | int security_dentry_init_security(struct dentry *dentry, int mode, |
| 1785 | struct qstr *name, void **ctx, |
| 1786 | u32 *ctxlen); |
Eric Paris | c9180a5 | 2007-11-30 13:00:35 -0500 | [diff] [blame] | 1787 | |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1788 | int security_inode_alloc(struct inode *inode); |
| 1789 | void security_inode_free(struct inode *inode); |
| 1790 | int security_inode_init_security(struct inode *inode, struct inode *dir, |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 1791 | const struct qstr *qstr, |
| 1792 | initxattrs initxattrs, void *fs_data); |
| 1793 | int security_old_inode_init_security(struct inode *inode, struct inode *dir, |
Tetsuo Handa | 9548906 | 2013-07-25 05:44:02 +0900 | [diff] [blame] | 1794 | const struct qstr *qstr, const char **name, |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 1795 | void **value, size_t *len); |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 1796 | int security_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1797 | int security_inode_link(struct dentry *old_dentry, struct inode *dir, |
| 1798 | struct dentry *new_dentry); |
| 1799 | int security_inode_unlink(struct inode *dir, struct dentry *dentry); |
| 1800 | int security_inode_symlink(struct inode *dir, struct dentry *dentry, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1801 | const char *old_name); |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 1802 | int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1803 | int security_inode_rmdir(struct inode *dir, struct dentry *dentry); |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 1804 | int security_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1805 | int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry, |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 1806 | struct inode *new_dir, struct dentry *new_dentry, |
| 1807 | unsigned int flags); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1808 | int security_inode_readlink(struct dentry *dentry); |
| 1809 | int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd); |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 1810 | int security_inode_permission(struct inode *inode, int mask); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1811 | int security_inode_setattr(struct dentry *dentry, struct iattr *attr); |
| 1812 | int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 1813 | int security_inode_setxattr(struct dentry *dentry, const char *name, |
| 1814 | const void *value, size_t size, int flags); |
| 1815 | void security_inode_post_setxattr(struct dentry *dentry, const char *name, |
| 1816 | const void *value, size_t size, int flags); |
| 1817 | int security_inode_getxattr(struct dentry *dentry, const char *name); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1818 | int security_inode_listxattr(struct dentry *dentry); |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 1819 | int security_inode_removexattr(struct dentry *dentry, const char *name); |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 1820 | int security_inode_need_killpriv(struct dentry *dentry); |
| 1821 | int security_inode_killpriv(struct dentry *dentry); |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 1822 | int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1823 | int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags); |
| 1824 | int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size); |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 1825 | void security_inode_getsecid(const struct inode *inode, u32 *secid); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1826 | int security_file_permission(struct file *file, int mask); |
| 1827 | int security_file_alloc(struct file *file); |
| 1828 | void security_file_free(struct file *file); |
| 1829 | int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg); |
Al Viro | 8b3ec68 | 2012-05-30 17:11:23 -0400 | [diff] [blame] | 1830 | int security_mmap_file(struct file *file, unsigned long prot, |
| 1831 | unsigned long flags); |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 1832 | int security_mmap_addr(unsigned long addr); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1833 | int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1834 | unsigned long prot); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1835 | int security_file_lock(struct file *file, unsigned int cmd); |
| 1836 | int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg); |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 1837 | void security_file_set_fowner(struct file *file); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1838 | int security_file_send_sigiotask(struct task_struct *tsk, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1839 | struct fown_struct *fown, int sig); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1840 | int security_file_receive(struct file *file); |
Eric Paris | 83d4985 | 2012-04-04 13:45:40 -0400 | [diff] [blame] | 1841 | int security_file_open(struct file *file, const struct cred *cred); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1842 | int security_task_create(unsigned long clone_flags); |
Kees Cook | 1a2a4d0 | 2011-12-21 12:17:03 -0800 | [diff] [blame] | 1843 | void security_task_free(struct task_struct *task); |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 1844 | int security_cred_alloc_blank(struct cred *cred, gfp_t gfp); |
David Howells | f1752ee | 2008-11-14 10:39:17 +1100 | [diff] [blame] | 1845 | void security_cred_free(struct cred *cred); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1846 | int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp); |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 1847 | void security_transfer_creds(struct cred *new, const struct cred *old); |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 1848 | int security_kernel_act_as(struct cred *new, u32 secid); |
| 1849 | int security_kernel_create_files_as(struct cred *new, struct inode *inode); |
Kees Cook | 13752fe | 2014-02-25 10:28:04 -0800 | [diff] [blame] | 1850 | int security_kernel_fw_from_file(struct file *file, char *buf, size_t size); |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 1851 | int security_kernel_module_request(char *kmod_name); |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 1852 | int security_kernel_module_from_file(struct file *file); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1853 | int security_task_fix_setuid(struct cred *new, const struct cred *old, |
| 1854 | int flags); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1855 | int security_task_setpgid(struct task_struct *p, pid_t pgid); |
| 1856 | int security_task_getpgid(struct task_struct *p); |
| 1857 | int security_task_getsid(struct task_struct *p); |
| 1858 | void security_task_getsecid(struct task_struct *p, u32 *secid); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1859 | int security_task_setnice(struct task_struct *p, int nice); |
| 1860 | int security_task_setioprio(struct task_struct *p, int ioprio); |
| 1861 | int security_task_getioprio(struct task_struct *p); |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 1862 | int security_task_setrlimit(struct task_struct *p, unsigned int resource, |
| 1863 | struct rlimit *new_rlim); |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 1864 | int security_task_setscheduler(struct task_struct *p); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1865 | int security_task_getscheduler(struct task_struct *p); |
| 1866 | int security_task_movememory(struct task_struct *p); |
| 1867 | int security_task_kill(struct task_struct *p, struct siginfo *info, |
| 1868 | int sig, u32 secid); |
| 1869 | int security_task_wait(struct task_struct *p); |
| 1870 | int security_task_prctl(int option, unsigned long arg2, unsigned long arg3, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1871 | unsigned long arg4, unsigned long arg5); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1872 | void security_task_to_inode(struct task_struct *p, struct inode *inode); |
| 1873 | int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag); |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 1874 | void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1875 | int security_msg_msg_alloc(struct msg_msg *msg); |
| 1876 | void security_msg_msg_free(struct msg_msg *msg); |
| 1877 | int security_msg_queue_alloc(struct msg_queue *msq); |
| 1878 | void security_msg_queue_free(struct msg_queue *msq); |
| 1879 | int security_msg_queue_associate(struct msg_queue *msq, int msqflg); |
| 1880 | int security_msg_queue_msgctl(struct msg_queue *msq, int cmd); |
| 1881 | int security_msg_queue_msgsnd(struct msg_queue *msq, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1882 | struct msg_msg *msg, int msqflg); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1883 | int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1884 | struct task_struct *target, long type, int mode); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1885 | int security_shm_alloc(struct shmid_kernel *shp); |
| 1886 | void security_shm_free(struct shmid_kernel *shp); |
| 1887 | int security_shm_associate(struct shmid_kernel *shp, int shmflg); |
| 1888 | int security_shm_shmctl(struct shmid_kernel *shp, int cmd); |
| 1889 | int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg); |
| 1890 | int security_sem_alloc(struct sem_array *sma); |
| 1891 | void security_sem_free(struct sem_array *sma); |
| 1892 | int security_sem_associate(struct sem_array *sma, int semflg); |
| 1893 | int security_sem_semctl(struct sem_array *sma, int cmd); |
| 1894 | int security_sem_semop(struct sem_array *sma, struct sembuf *sops, |
| 1895 | unsigned nsops, int alter); |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1896 | void security_d_instantiate(struct dentry *dentry, struct inode *inode); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1897 | int security_getprocattr(struct task_struct *p, char *name, char **value); |
| 1898 | int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size); |
| 1899 | int security_netlink_send(struct sock *sk, struct sk_buff *skb); |
David Quigley | 746df9b | 2013-05-22 12:50:35 -0400 | [diff] [blame] | 1900 | int security_ismaclabel(const char *name); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1901 | int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen); |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 1902 | int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 1903 | void security_release_secctx(char *secdata, u32 seclen); |
| 1904 | |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 1905 | int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen); |
| 1906 | int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen); |
| 1907 | int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | #else /* CONFIG_SECURITY */ |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 1909 | struct security_mnt_opts { |
| 1910 | }; |
| 1911 | |
| 1912 | static inline void security_init_mnt_opts(struct security_mnt_opts *opts) |
| 1913 | { |
| 1914 | } |
| 1915 | |
| 1916 | static inline void security_free_mnt_opts(struct security_mnt_opts *opts) |
| 1917 | { |
| 1918 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | |
| 1920 | /* |
| 1921 | * This is the default capabilities functionality. Most of these functions |
| 1922 | * are just stubbed out, but a few must call the proper capable code. |
| 1923 | */ |
| 1924 | |
| 1925 | static inline int security_init(void) |
| 1926 | { |
| 1927 | return 0; |
| 1928 | } |
| 1929 | |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1930 | static inline int security_ptrace_access_check(struct task_struct *child, |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1931 | unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | { |
Ingo Molnar | 9e48858 | 2009-05-07 19:26:19 +1000 | [diff] [blame] | 1933 | return cap_ptrace_access_check(child, mode); |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1934 | } |
| 1935 | |
Alexander Beregalov | 5e186b5 | 2008-08-17 05:34:20 +0400 | [diff] [blame] | 1936 | static inline int security_ptrace_traceme(struct task_struct *parent) |
David Howells | 5cd9c58 | 2008-08-14 11:37:28 +0100 | [diff] [blame] | 1937 | { |
| 1938 | return cap_ptrace_traceme(parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1939 | } |
| 1940 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1941 | static inline int security_capget(struct task_struct *target, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | kernel_cap_t *effective, |
| 1943 | kernel_cap_t *inheritable, |
| 1944 | kernel_cap_t *permitted) |
| 1945 | { |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1946 | return cap_capget(target, effective, inheritable, permitted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | } |
| 1948 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1949 | static inline int security_capset(struct cred *new, |
| 1950 | const struct cred *old, |
| 1951 | const kernel_cap_t *effective, |
| 1952 | const kernel_cap_t *inheritable, |
| 1953 | const kernel_cap_t *permitted) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 1955 | return cap_capset(new, old, effective, inheritable, permitted); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | } |
| 1957 | |
Eric Paris | b7e724d | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 1958 | static inline int security_capable(const struct cred *cred, |
| 1959 | struct user_namespace *ns, int cap) |
Chris Wright | 12b5989 | 2006-03-25 03:07:41 -0800 | [diff] [blame] | 1960 | { |
Eric Paris | 6a9de49 | 2012-01-03 12:25:14 -0500 | [diff] [blame] | 1961 | return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT); |
Eric Paris | 0611216 | 2008-11-11 22:02:50 +1100 | [diff] [blame] | 1962 | } |
| 1963 | |
Eric Paris | c7eba4a | 2012-01-03 12:25:15 -0500 | [diff] [blame] | 1964 | static inline int security_capable_noaudit(const struct cred *cred, |
| 1965 | struct user_namespace *ns, int cap) { |
| 1966 | return cap_capable(cred, ns, cap, SECURITY_CAP_NOAUDIT); |
Chris Wright | 12b5989 | 2006-03-25 03:07:41 -0800 | [diff] [blame] | 1967 | } |
| 1968 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1969 | static inline int security_quotactl(int cmds, int type, int id, |
| 1970 | struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | { |
| 1972 | return 0; |
| 1973 | } |
| 1974 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 1975 | static inline int security_quota_on(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | { |
| 1977 | return 0; |
| 1978 | } |
| 1979 | |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1980 | static inline int security_syslog(int type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | { |
Eric Paris | 12b3052 | 2010-11-15 18:36:29 -0500 | [diff] [blame] | 1982 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | } |
| 1984 | |
Richard Cochran | 1e6d767 | 2011-02-01 13:50:58 +0000 | [diff] [blame] | 1985 | static inline int security_settime(const struct timespec *ts, |
| 1986 | const struct timezone *tz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | { |
| 1988 | return cap_settime(ts, tz); |
| 1989 | } |
| 1990 | |
Alan Cox | 34b4e4a | 2007-08-22 14:01:28 -0700 | [diff] [blame] | 1991 | static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages) |
| 1992 | { |
| 1993 | return cap_vm_enough_memory(mm, pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1994 | } |
| 1995 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1996 | static inline int security_bprm_set_creds(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | { |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 1998 | return cap_bprm_set_creds(bprm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | } |
| 2000 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2001 | static inline int security_bprm_check(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | { |
| 2003 | return 0; |
| 2004 | } |
| 2005 | |
David Howells | a6f76f2 | 2008-11-14 10:39:24 +1100 | [diff] [blame] | 2006 | static inline void security_bprm_committing_creds(struct linux_binprm *bprm) |
| 2007 | { |
| 2008 | } |
| 2009 | |
| 2010 | static inline void security_bprm_committed_creds(struct linux_binprm *bprm) |
| 2011 | { |
| 2012 | } |
| 2013 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2014 | static inline int security_bprm_secureexec(struct linux_binprm *bprm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | { |
| 2016 | return cap_bprm_secureexec(bprm); |
| 2017 | } |
| 2018 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2019 | static inline int security_sb_alloc(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | { |
| 2021 | return 0; |
| 2022 | } |
| 2023 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2024 | static inline void security_sb_free(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | { } |
| 2026 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2027 | static inline int security_sb_copy_data(char *orig, char *copy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2028 | { |
| 2029 | return 0; |
| 2030 | } |
| 2031 | |
Eric Paris | ff36fe2 | 2011-03-03 16:09:14 -0500 | [diff] [blame] | 2032 | static inline int security_sb_remount(struct super_block *sb, void *data) |
| 2033 | { |
| 2034 | return 0; |
| 2035 | } |
| 2036 | |
James Morris | 12204e2 | 2008-12-19 10:44:42 +1100 | [diff] [blame] | 2037 | static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | { |
| 2039 | return 0; |
| 2040 | } |
| 2041 | |
Eric Paris | 2069f45 | 2008-07-04 09:47:13 +1000 | [diff] [blame] | 2042 | static inline int security_sb_show_options(struct seq_file *m, |
| 2043 | struct super_block *sb) |
| 2044 | { |
| 2045 | return 0; |
| 2046 | } |
| 2047 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2048 | static inline int security_sb_statfs(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | { |
| 2050 | return 0; |
| 2051 | } |
| 2052 | |
Al Viro | 808d4e3 | 2012-10-11 11:42:01 -0400 | [diff] [blame] | 2053 | static inline int security_sb_mount(const char *dev_name, struct path *path, |
| 2054 | const char *type, unsigned long flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2055 | void *data) |
| 2056 | { |
| 2057 | return 0; |
| 2058 | } |
| 2059 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2060 | static inline int security_sb_umount(struct vfsmount *mnt, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | { |
| 2062 | return 0; |
| 2063 | } |
| 2064 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2065 | static inline int security_sb_pivotroot(struct path *old_path, |
| 2066 | struct path *new_path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | { |
| 2068 | return 0; |
| 2069 | } |
| 2070 | |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 2071 | static inline int security_sb_set_mnt_opts(struct super_block *sb, |
David Quigley | 649f6e7 | 2013-05-22 12:50:36 -0400 | [diff] [blame] | 2072 | struct security_mnt_opts *opts, |
| 2073 | unsigned long kern_flags, |
| 2074 | unsigned long *set_kern_flags) |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 2075 | { |
| 2076 | return 0; |
| 2077 | } |
| 2078 | |
Jeff Layton | 094f7b6 | 2013-04-01 08:14:24 -0400 | [diff] [blame] | 2079 | static inline int security_sb_clone_mnt_opts(const struct super_block *oldsb, |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 2080 | struct super_block *newsb) |
Jeff Layton | 094f7b6 | 2013-04-01 08:14:24 -0400 | [diff] [blame] | 2081 | { |
| 2082 | return 0; |
| 2083 | } |
Eric Paris | e000752 | 2008-03-05 10:31:54 -0500 | [diff] [blame] | 2084 | |
| 2085 | static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts) |
| 2086 | { |
| 2087 | return 0; |
| 2088 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2089 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2090 | static inline int security_inode_alloc(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2091 | { |
| 2092 | return 0; |
| 2093 | } |
| 2094 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2095 | static inline void security_inode_free(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | { } |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2097 | |
David Quigley | d47be3d | 2013-05-22 12:50:34 -0400 | [diff] [blame] | 2098 | static inline int security_dentry_init_security(struct dentry *dentry, |
| 2099 | int mode, |
| 2100 | struct qstr *name, |
| 2101 | void **ctx, |
| 2102 | u32 *ctxlen) |
| 2103 | { |
| 2104 | return -EOPNOTSUPP; |
| 2105 | } |
| 2106 | |
| 2107 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2108 | static inline int security_inode_init_security(struct inode *inode, |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2109 | struct inode *dir, |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 2110 | const struct qstr *qstr, |
Mark Rustad | fbff661 | 2014-08-28 04:43:09 -0700 | [diff] [blame] | 2111 | const initxattrs xattrs, |
Mimi Zohar | 9d8f13b | 2011-06-06 15:29:25 -0400 | [diff] [blame] | 2112 | void *fs_data) |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2113 | { |
Mimi Zohar | 1e39f38 | 2011-08-15 09:09:16 -0400 | [diff] [blame] | 2114 | return 0; |
Stephen Smalley | 5e41ff9 | 2005-09-09 13:01:35 -0700 | [diff] [blame] | 2115 | } |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2116 | |
Mimi Zohar | 1e39f38 | 2011-08-15 09:09:16 -0400 | [diff] [blame] | 2117 | static inline int security_old_inode_init_security(struct inode *inode, |
| 2118 | struct inode *dir, |
| 2119 | const struct qstr *qstr, |
Tetsuo Handa | 9548906 | 2013-07-25 05:44:02 +0900 | [diff] [blame] | 2120 | const char **name, |
| 2121 | void **value, size_t *len) |
Mimi Zohar | e1c9b23 | 2011-08-11 00:22:51 -0400 | [diff] [blame] | 2122 | { |
Jan Kara | 30e0532 | 2012-01-03 13:14:29 +0100 | [diff] [blame] | 2123 | return -EOPNOTSUPP; |
Mimi Zohar | e1c9b23 | 2011-08-11 00:22:51 -0400 | [diff] [blame] | 2124 | } |
| 2125 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2126 | static inline int security_inode_create(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | struct dentry *dentry, |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 2128 | umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | { |
| 2130 | return 0; |
| 2131 | } |
| 2132 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2133 | static inline int security_inode_link(struct dentry *old_dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | struct inode *dir, |
| 2135 | struct dentry *new_dentry) |
| 2136 | { |
| 2137 | return 0; |
| 2138 | } |
| 2139 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2140 | static inline int security_inode_unlink(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | struct dentry *dentry) |
| 2142 | { |
| 2143 | return 0; |
| 2144 | } |
| 2145 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2146 | static inline int security_inode_symlink(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | struct dentry *dentry, |
| 2148 | const char *old_name) |
| 2149 | { |
| 2150 | return 0; |
| 2151 | } |
| 2152 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2153 | static inline int security_inode_mkdir(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | struct dentry *dentry, |
| 2155 | int mode) |
| 2156 | { |
| 2157 | return 0; |
| 2158 | } |
| 2159 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2160 | static inline int security_inode_rmdir(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | struct dentry *dentry) |
| 2162 | { |
| 2163 | return 0; |
| 2164 | } |
| 2165 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2166 | static inline int security_inode_mknod(struct inode *dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | struct dentry *dentry, |
| 2168 | int mode, dev_t dev) |
| 2169 | { |
| 2170 | return 0; |
| 2171 | } |
| 2172 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2173 | static inline int security_inode_rename(struct inode *old_dir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | struct dentry *old_dentry, |
| 2175 | struct inode *new_dir, |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 2176 | struct dentry *new_dentry, |
| 2177 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | { |
| 2179 | return 0; |
| 2180 | } |
| 2181 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2182 | static inline int security_inode_readlink(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | { |
| 2184 | return 0; |
| 2185 | } |
| 2186 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2187 | static inline int security_inode_follow_link(struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | struct nameidata *nd) |
| 2189 | { |
| 2190 | return 0; |
| 2191 | } |
| 2192 | |
Al Viro | b77b064 | 2008-07-17 09:37:02 -0400 | [diff] [blame] | 2193 | static inline int security_inode_permission(struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | { |
| 2195 | return 0; |
| 2196 | } |
| 2197 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2198 | static inline int security_inode_setattr(struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | struct iattr *attr) |
| 2200 | { |
| 2201 | return 0; |
| 2202 | } |
| 2203 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2204 | static inline int security_inode_getattr(struct vfsmount *mnt, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | struct dentry *dentry) |
| 2206 | { |
| 2207 | return 0; |
| 2208 | } |
| 2209 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2210 | static inline int security_inode_setxattr(struct dentry *dentry, |
| 2211 | const char *name, const void *value, size_t size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | { |
| 2213 | return cap_inode_setxattr(dentry, name, value, size, flags); |
| 2214 | } |
| 2215 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2216 | static inline void security_inode_post_setxattr(struct dentry *dentry, |
| 2217 | const char *name, const void *value, size_t size, int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | { } |
| 2219 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2220 | static inline int security_inode_getxattr(struct dentry *dentry, |
| 2221 | const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | { |
| 2223 | return 0; |
| 2224 | } |
| 2225 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2226 | static inline int security_inode_listxattr(struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | { |
| 2228 | return 0; |
| 2229 | } |
| 2230 | |
David Howells | 8f0cfa5 | 2008-04-29 00:59:41 -0700 | [diff] [blame] | 2231 | static inline int security_inode_removexattr(struct dentry *dentry, |
| 2232 | const char *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | { |
| 2234 | return cap_inode_removexattr(dentry, name); |
| 2235 | } |
| 2236 | |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2237 | static inline int security_inode_need_killpriv(struct dentry *dentry) |
| 2238 | { |
| 2239 | return cap_inode_need_killpriv(dentry); |
| 2240 | } |
| 2241 | |
| 2242 | static inline int security_inode_killpriv(struct dentry *dentry) |
| 2243 | { |
| 2244 | return cap_inode_killpriv(dentry); |
| 2245 | } |
| 2246 | |
David P. Quigley | 4249259 | 2008-02-04 22:29:39 -0800 | [diff] [blame] | 2247 | static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | { |
| 2249 | return -EOPNOTSUPP; |
| 2250 | } |
| 2251 | |
| 2252 | static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags) |
| 2253 | { |
| 2254 | return -EOPNOTSUPP; |
| 2255 | } |
| 2256 | |
| 2257 | static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size) |
| 2258 | { |
| 2259 | return 0; |
| 2260 | } |
| 2261 | |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 2262 | static inline void security_inode_getsecid(const struct inode *inode, u32 *secid) |
| 2263 | { |
| 2264 | *secid = 0; |
| 2265 | } |
| 2266 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2267 | static inline int security_file_permission(struct file *file, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | { |
| 2269 | return 0; |
| 2270 | } |
| 2271 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2272 | static inline int security_file_alloc(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | { |
| 2274 | return 0; |
| 2275 | } |
| 2276 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2277 | static inline void security_file_free(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2278 | { } |
| 2279 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2280 | static inline int security_file_ioctl(struct file *file, unsigned int cmd, |
| 2281 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | { |
| 2283 | return 0; |
| 2284 | } |
| 2285 | |
Al Viro | 8b3ec68 | 2012-05-30 17:11:23 -0400 | [diff] [blame] | 2286 | static inline int security_mmap_file(struct file *file, unsigned long prot, |
Al Viro | e546785 | 2012-05-30 13:30:51 -0400 | [diff] [blame] | 2287 | unsigned long flags) |
| 2288 | { |
| 2289 | return 0; |
| 2290 | } |
| 2291 | |
| 2292 | static inline int security_mmap_addr(unsigned long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | { |
Al Viro | d007794 | 2012-05-30 13:11:37 -0400 | [diff] [blame] | 2294 | return cap_mmap_addr(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | } |
| 2296 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2297 | static inline int security_file_mprotect(struct vm_area_struct *vma, |
| 2298 | unsigned long reqprot, |
| 2299 | unsigned long prot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | { |
| 2301 | return 0; |
| 2302 | } |
| 2303 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2304 | static inline int security_file_lock(struct file *file, unsigned int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | { |
| 2306 | return 0; |
| 2307 | } |
| 2308 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2309 | static inline int security_file_fcntl(struct file *file, unsigned int cmd, |
| 2310 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | { |
| 2312 | return 0; |
| 2313 | } |
| 2314 | |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 2315 | static inline void security_file_set_fowner(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | { |
Jeff Layton | e0b93ed | 2014-08-22 11:27:32 -0400 | [diff] [blame] | 2317 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | } |
| 2319 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2320 | static inline int security_file_send_sigiotask(struct task_struct *tsk, |
| 2321 | struct fown_struct *fown, |
| 2322 | int sig) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2323 | { |
| 2324 | return 0; |
| 2325 | } |
| 2326 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2327 | static inline int security_file_receive(struct file *file) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | { |
| 2329 | return 0; |
| 2330 | } |
| 2331 | |
Eric Paris | 83d4985 | 2012-04-04 13:45:40 -0400 | [diff] [blame] | 2332 | static inline int security_file_open(struct file *file, |
| 2333 | const struct cred *cred) |
Yuichi Nakamura | 788e7dd | 2007-09-14 09:27:07 +0900 | [diff] [blame] | 2334 | { |
| 2335 | return 0; |
| 2336 | } |
| 2337 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2338 | static inline int security_task_create(unsigned long clone_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | { |
| 2340 | return 0; |
| 2341 | } |
| 2342 | |
Kees Cook | 1a2a4d0 | 2011-12-21 12:17:03 -0800 | [diff] [blame] | 2343 | static inline void security_task_free(struct task_struct *task) |
| 2344 | { } |
| 2345 | |
David Howells | 945af7c | 2009-09-04 09:19:48 +0100 | [diff] [blame] | 2346 | static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp) |
| 2347 | { |
| 2348 | return 0; |
| 2349 | } |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 2350 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2351 | static inline void security_cred_free(struct cred *cred) |
| 2352 | { } |
| 2353 | |
| 2354 | static inline int security_prepare_creds(struct cred *new, |
| 2355 | const struct cred *old, |
| 2356 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2357 | { |
| 2358 | return 0; |
| 2359 | } |
| 2360 | |
David Howells | ee18d64 | 2009-09-02 09:14:21 +0100 | [diff] [blame] | 2361 | static inline void security_transfer_creds(struct cred *new, |
| 2362 | const struct cred *old) |
| 2363 | { |
| 2364 | } |
| 2365 | |
David Howells | 3a3b7ce | 2008-11-14 10:39:28 +1100 | [diff] [blame] | 2366 | static inline int security_kernel_act_as(struct cred *cred, u32 secid) |
| 2367 | { |
| 2368 | return 0; |
| 2369 | } |
| 2370 | |
| 2371 | static inline int security_kernel_create_files_as(struct cred *cred, |
| 2372 | struct inode *inode) |
| 2373 | { |
| 2374 | return 0; |
| 2375 | } |
| 2376 | |
Kees Cook | 13752fe | 2014-02-25 10:28:04 -0800 | [diff] [blame] | 2377 | static inline int security_kernel_fw_from_file(struct file *file, |
| 2378 | char *buf, size_t size) |
| 2379 | { |
| 2380 | return 0; |
| 2381 | } |
| 2382 | |
Eric Paris | dd8dbf2 | 2009-11-03 16:35:32 +1100 | [diff] [blame] | 2383 | static inline int security_kernel_module_request(char *kmod_name) |
Eric Paris | 9188499 | 2009-08-13 09:44:57 -0400 | [diff] [blame] | 2384 | { |
| 2385 | return 0; |
| 2386 | } |
| 2387 | |
Kees Cook | 2e72d51 | 2012-10-16 07:32:07 +1030 | [diff] [blame] | 2388 | static inline int security_kernel_module_from_file(struct file *file) |
| 2389 | { |
| 2390 | return 0; |
| 2391 | } |
| 2392 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2393 | static inline int security_task_fix_setuid(struct cred *new, |
| 2394 | const struct cred *old, |
| 2395 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2397 | return cap_task_fix_setuid(new, old, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | } |
| 2399 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2400 | static inline int security_task_setpgid(struct task_struct *p, pid_t pgid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | { |
| 2402 | return 0; |
| 2403 | } |
| 2404 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2405 | static inline int security_task_getpgid(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | { |
| 2407 | return 0; |
| 2408 | } |
| 2409 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2410 | static inline int security_task_getsid(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | { |
| 2412 | return 0; |
| 2413 | } |
| 2414 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2415 | static inline void security_task_getsecid(struct task_struct *p, u32 *secid) |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 2416 | { |
| 2417 | *secid = 0; |
| 2418 | } |
David Quigley | f9008e4 | 2006-06-30 01:55:46 -0700 | [diff] [blame] | 2419 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2420 | static inline int security_task_setnice(struct task_struct *p, int nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2422 | return cap_task_setnice(p, nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | } |
| 2424 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2425 | static inline int security_task_setioprio(struct task_struct *p, int ioprio) |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 2426 | { |
Serge E. Hallyn | b537677 | 2007-10-16 23:31:36 -0700 | [diff] [blame] | 2427 | return cap_task_setioprio(p, ioprio); |
James Morris | 03e6806 | 2006-06-23 02:03:58 -0700 | [diff] [blame] | 2428 | } |
| 2429 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2430 | static inline int security_task_getioprio(struct task_struct *p) |
David Quigley | a1836a4 | 2006-06-30 01:55:49 -0700 | [diff] [blame] | 2431 | { |
| 2432 | return 0; |
| 2433 | } |
| 2434 | |
Jiri Slaby | 8fd00b4 | 2009-08-26 18:41:16 +0200 | [diff] [blame] | 2435 | static inline int security_task_setrlimit(struct task_struct *p, |
| 2436 | unsigned int resource, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2437 | struct rlimit *new_rlim) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2438 | { |
| 2439 | return 0; |
| 2440 | } |
| 2441 | |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 2442 | static inline int security_task_setscheduler(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | { |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 2444 | return cap_task_setscheduler(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | } |
| 2446 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2447 | static inline int security_task_getscheduler(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2448 | { |
| 2449 | return 0; |
| 2450 | } |
| 2451 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2452 | static inline int security_task_movememory(struct task_struct *p) |
David Quigley | 3560154 | 2006-06-23 02:04:01 -0700 | [diff] [blame] | 2453 | { |
| 2454 | return 0; |
| 2455 | } |
| 2456 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2457 | static inline int security_task_kill(struct task_struct *p, |
| 2458 | struct siginfo *info, int sig, |
| 2459 | u32 secid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | { |
Serge Hallyn | aedb60a | 2008-02-29 15:14:57 +0000 | [diff] [blame] | 2461 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | } |
| 2463 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2464 | static inline int security_task_wait(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2465 | { |
| 2466 | return 0; |
| 2467 | } |
| 2468 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2469 | static inline int security_task_prctl(int option, unsigned long arg2, |
| 2470 | unsigned long arg3, |
| 2471 | unsigned long arg4, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2472 | unsigned long arg5) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 2474 | return cap_task_prctl(option, arg2, arg3, arg3, arg5); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2475 | } |
| 2476 | |
| 2477 | static inline void security_task_to_inode(struct task_struct *p, struct inode *inode) |
| 2478 | { } |
| 2479 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2480 | static inline int security_ipc_permission(struct kern_ipc_perm *ipcp, |
| 2481 | short flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2482 | { |
| 2483 | return 0; |
| 2484 | } |
| 2485 | |
Ahmed S. Darwish | 8a07619 | 2008-03-01 21:51:09 +0200 | [diff] [blame] | 2486 | static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid) |
| 2487 | { |
| 2488 | *secid = 0; |
| 2489 | } |
| 2490 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2491 | static inline int security_msg_msg_alloc(struct msg_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2492 | { |
| 2493 | return 0; |
| 2494 | } |
| 2495 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2496 | static inline void security_msg_msg_free(struct msg_msg *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2497 | { } |
| 2498 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2499 | static inline int security_msg_queue_alloc(struct msg_queue *msq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2500 | { |
| 2501 | return 0; |
| 2502 | } |
| 2503 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2504 | static inline void security_msg_queue_free(struct msg_queue *msq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | { } |
| 2506 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2507 | static inline int security_msg_queue_associate(struct msg_queue *msq, |
| 2508 | int msqflg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2509 | { |
| 2510 | return 0; |
| 2511 | } |
| 2512 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2513 | static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | { |
| 2515 | return 0; |
| 2516 | } |
| 2517 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2518 | static inline int security_msg_queue_msgsnd(struct msg_queue *msq, |
| 2519 | struct msg_msg *msg, int msqflg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | { |
| 2521 | return 0; |
| 2522 | } |
| 2523 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2524 | static inline int security_msg_queue_msgrcv(struct msg_queue *msq, |
| 2525 | struct msg_msg *msg, |
| 2526 | struct task_struct *target, |
| 2527 | long type, int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2528 | { |
| 2529 | return 0; |
| 2530 | } |
| 2531 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2532 | static inline int security_shm_alloc(struct shmid_kernel *shp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | { |
| 2534 | return 0; |
| 2535 | } |
| 2536 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2537 | static inline void security_shm_free(struct shmid_kernel *shp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | { } |
| 2539 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2540 | static inline int security_shm_associate(struct shmid_kernel *shp, |
| 2541 | int shmflg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | { |
| 2543 | return 0; |
| 2544 | } |
| 2545 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2546 | static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | { |
| 2548 | return 0; |
| 2549 | } |
| 2550 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2551 | static inline int security_shm_shmat(struct shmid_kernel *shp, |
| 2552 | char __user *shmaddr, int shmflg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2553 | { |
| 2554 | return 0; |
| 2555 | } |
| 2556 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2557 | static inline int security_sem_alloc(struct sem_array *sma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | { |
| 2559 | return 0; |
| 2560 | } |
| 2561 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2562 | static inline void security_sem_free(struct sem_array *sma) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | { } |
| 2564 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2565 | static inline int security_sem_associate(struct sem_array *sma, int semflg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | { |
| 2567 | return 0; |
| 2568 | } |
| 2569 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2570 | static inline int security_sem_semctl(struct sem_array *sma, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2571 | { |
| 2572 | return 0; |
| 2573 | } |
| 2574 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2575 | static inline int security_sem_semop(struct sem_array *sma, |
| 2576 | struct sembuf *sops, unsigned nsops, |
| 2577 | int alter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2578 | { |
| 2579 | return 0; |
| 2580 | } |
| 2581 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2582 | static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | { } |
| 2584 | |
Al Viro | 04ff970 | 2007-03-12 16:17:58 +0000 | [diff] [blame] | 2585 | static inline int security_getprocattr(struct task_struct *p, char *name, char **value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | { |
| 2587 | return -EINVAL; |
| 2588 | } |
| 2589 | |
| 2590 | static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size) |
| 2591 | { |
| 2592 | return -EINVAL; |
| 2593 | } |
| 2594 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2595 | static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2596 | { |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2597 | return cap_netlink_send(sk, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2598 | } |
| 2599 | |
David Quigley | 746df9b | 2013-05-22 12:50:35 -0400 | [diff] [blame] | 2600 | static inline int security_ismaclabel(const char *name) |
| 2601 | { |
| 2602 | return 0; |
| 2603 | } |
| 2604 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 2605 | static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen) |
| 2606 | { |
| 2607 | return -EOPNOTSUPP; |
| 2608 | } |
| 2609 | |
David Howells | 7bf570d | 2008-04-29 20:52:51 +0100 | [diff] [blame] | 2610 | static inline int security_secctx_to_secid(const char *secdata, |
David Howells | 63cb344 | 2008-01-15 23:47:35 +0000 | [diff] [blame] | 2611 | u32 seclen, |
| 2612 | u32 *secid) |
| 2613 | { |
| 2614 | return -EOPNOTSUPP; |
| 2615 | } |
| 2616 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 2617 | static inline void security_release_secctx(char *secdata, u32 seclen) |
| 2618 | { |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 2619 | } |
David P. Quigley | 1ee65e3 | 2009-09-03 14:25:57 -0400 | [diff] [blame] | 2620 | |
| 2621 | static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen) |
| 2622 | { |
| 2623 | return -EOPNOTSUPP; |
| 2624 | } |
| 2625 | static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen) |
| 2626 | { |
| 2627 | return -EOPNOTSUPP; |
| 2628 | } |
| 2629 | static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen) |
| 2630 | { |
| 2631 | return -EOPNOTSUPP; |
| 2632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | #endif /* CONFIG_SECURITY */ |
| 2634 | |
| 2635 | #ifdef CONFIG_SECURITY_NETWORK |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2636 | |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 2637 | int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2638 | int security_unix_may_send(struct socket *sock, struct socket *other); |
| 2639 | int security_socket_create(int family, int type, int protocol, int kern); |
| 2640 | int security_socket_post_create(struct socket *sock, int family, |
| 2641 | int type, int protocol, int kern); |
| 2642 | int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen); |
| 2643 | int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen); |
| 2644 | int security_socket_listen(struct socket *sock, int backlog); |
| 2645 | int security_socket_accept(struct socket *sock, struct socket *newsock); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2646 | int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size); |
| 2647 | int security_socket_recvmsg(struct socket *sock, struct msghdr *msg, |
| 2648 | int size, int flags); |
| 2649 | int security_socket_getsockname(struct socket *sock); |
| 2650 | int security_socket_getpeername(struct socket *sock); |
| 2651 | int security_socket_getsockopt(struct socket *sock, int level, int optname); |
| 2652 | int security_socket_setsockopt(struct socket *sock, int level, int optname); |
| 2653 | int security_socket_shutdown(struct socket *sock, int how); |
| 2654 | int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb); |
| 2655 | int security_socket_getpeersec_stream(struct socket *sock, char __user *optval, |
| 2656 | int __user *optlen, unsigned len); |
| 2657 | int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid); |
| 2658 | int security_sk_alloc(struct sock *sk, int family, gfp_t priority); |
| 2659 | void security_sk_free(struct sock *sk); |
| 2660 | void security_sk_clone(const struct sock *sk, struct sock *newsk); |
| 2661 | void security_sk_classify_flow(struct sock *sk, struct flowi *fl); |
| 2662 | void security_req_classify_flow(const struct request_sock *req, struct flowi *fl); |
| 2663 | void security_sock_graft(struct sock*sk, struct socket *parent); |
| 2664 | int security_inet_conn_request(struct sock *sk, |
| 2665 | struct sk_buff *skb, struct request_sock *req); |
| 2666 | void security_inet_csk_clone(struct sock *newsk, |
| 2667 | const struct request_sock *req); |
| 2668 | void security_inet_conn_established(struct sock *sk, |
| 2669 | struct sk_buff *skb); |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 2670 | int security_secmark_relabel_packet(u32 secid); |
| 2671 | void security_secmark_refcount_inc(void); |
| 2672 | void security_secmark_refcount_dec(void); |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2673 | int security_tun_dev_alloc_security(void **security); |
| 2674 | void security_tun_dev_free_security(void *security); |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2675 | int security_tun_dev_create(void); |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2676 | int security_tun_dev_attach_queue(void *security); |
| 2677 | int security_tun_dev_attach(struct sock *sk, void *security); |
| 2678 | int security_tun_dev_open(void *security); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | |
Eric Dumazet | ca10b9e | 2013-04-08 17:58:11 +0000 | [diff] [blame] | 2680 | void security_skb_owned_by(struct sk_buff *skb, struct sock *sk); |
| 2681 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | #else /* CONFIG_SECURITY_NETWORK */ |
David S. Miller | 3610cda | 2011-01-05 15:38:53 -0800 | [diff] [blame] | 2683 | static inline int security_unix_stream_connect(struct sock *sock, |
| 2684 | struct sock *other, |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2685 | struct sock *newsk) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2686 | { |
| 2687 | return 0; |
| 2688 | } |
| 2689 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2690 | static inline int security_unix_may_send(struct socket *sock, |
| 2691 | struct socket *other) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | { |
| 2693 | return 0; |
| 2694 | } |
| 2695 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2696 | static inline int security_socket_create(int family, int type, |
| 2697 | int protocol, int kern) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | { |
| 2699 | return 0; |
| 2700 | } |
| 2701 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2702 | static inline int security_socket_post_create(struct socket *sock, |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 2703 | int family, |
| 2704 | int type, |
| 2705 | int protocol, int kern) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | { |
Venkat Yekkirala | 7420ed2 | 2006-08-04 23:17:57 -0700 | [diff] [blame] | 2707 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | } |
| 2709 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2710 | static inline int security_socket_bind(struct socket *sock, |
| 2711 | struct sockaddr *address, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | int addrlen) |
| 2713 | { |
| 2714 | return 0; |
| 2715 | } |
| 2716 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2717 | static inline int security_socket_connect(struct socket *sock, |
| 2718 | struct sockaddr *address, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | int addrlen) |
| 2720 | { |
| 2721 | return 0; |
| 2722 | } |
| 2723 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2724 | static inline int security_socket_listen(struct socket *sock, int backlog) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | { |
| 2726 | return 0; |
| 2727 | } |
| 2728 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2729 | static inline int security_socket_accept(struct socket *sock, |
| 2730 | struct socket *newsock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | { |
| 2732 | return 0; |
| 2733 | } |
| 2734 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2735 | static inline int security_socket_sendmsg(struct socket *sock, |
| 2736 | struct msghdr *msg, int size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2737 | { |
| 2738 | return 0; |
| 2739 | } |
| 2740 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2741 | static inline int security_socket_recvmsg(struct socket *sock, |
| 2742 | struct msghdr *msg, int size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | int flags) |
| 2744 | { |
| 2745 | return 0; |
| 2746 | } |
| 2747 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2748 | static inline int security_socket_getsockname(struct socket *sock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2749 | { |
| 2750 | return 0; |
| 2751 | } |
| 2752 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2753 | static inline int security_socket_getpeername(struct socket *sock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | { |
| 2755 | return 0; |
| 2756 | } |
| 2757 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2758 | static inline int security_socket_getsockopt(struct socket *sock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | int level, int optname) |
| 2760 | { |
| 2761 | return 0; |
| 2762 | } |
| 2763 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2764 | static inline int security_socket_setsockopt(struct socket *sock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | int level, int optname) |
| 2766 | { |
| 2767 | return 0; |
| 2768 | } |
| 2769 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2770 | static inline int security_socket_shutdown(struct socket *sock, int how) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | { |
| 2772 | return 0; |
| 2773 | } |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2774 | static inline int security_sock_rcv_skb(struct sock *sk, |
| 2775 | struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2776 | { |
| 2777 | return 0; |
| 2778 | } |
| 2779 | |
Catherine Zhang | 2c7946a | 2006-03-20 22:41:23 -0800 | [diff] [blame] | 2780 | static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval, |
| 2781 | int __user *optlen, unsigned len) |
| 2782 | { |
| 2783 | return -ENOPROTOOPT; |
| 2784 | } |
| 2785 | |
Catherine Zhang | dc49c1f | 2006-08-02 14:12:06 -0700 | [diff] [blame] | 2786 | static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | { |
| 2788 | return -ENOPROTOOPT; |
| 2789 | } |
| 2790 | |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 2791 | static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2792 | { |
| 2793 | return 0; |
| 2794 | } |
| 2795 | |
| 2796 | static inline void security_sk_free(struct sock *sk) |
| 2797 | { |
| 2798 | } |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2799 | |
Venkat Yekkirala | 892c141 | 2006-08-04 23:08:56 -0700 | [diff] [blame] | 2800 | static inline void security_sk_clone(const struct sock *sk, struct sock *newsk) |
| 2801 | { |
| 2802 | } |
| 2803 | |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 2804 | static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2805 | { |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2806 | } |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 2807 | |
| 2808 | static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl) |
| 2809 | { |
| 2810 | } |
| 2811 | |
Eric Paris | 7b41b17 | 2008-04-23 14:10:25 -0400 | [diff] [blame] | 2812 | static inline void security_sock_graft(struct sock *sk, struct socket *parent) |
Venkat Yekkirala | 4237c75 | 2006-07-24 23:32:50 -0700 | [diff] [blame] | 2813 | { |
| 2814 | } |
| 2815 | |
| 2816 | static inline int security_inet_conn_request(struct sock *sk, |
| 2817 | struct sk_buff *skb, struct request_sock *req) |
| 2818 | { |
| 2819 | return 0; |
| 2820 | } |
| 2821 | |
| 2822 | static inline void security_inet_csk_clone(struct sock *newsk, |
| 2823 | const struct request_sock *req) |
| 2824 | { |
| 2825 | } |
Venkat Yekkirala | 6b87769 | 2006-11-08 17:04:09 -0600 | [diff] [blame] | 2826 | |
| 2827 | static inline void security_inet_conn_established(struct sock *sk, |
| 2828 | struct sk_buff *skb) |
| 2829 | { |
| 2830 | } |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2831 | |
Eric Paris | 2606fd1 | 2010-10-13 16:24:41 -0400 | [diff] [blame] | 2832 | static inline int security_secmark_relabel_packet(u32 secid) |
| 2833 | { |
| 2834 | return 0; |
| 2835 | } |
| 2836 | |
| 2837 | static inline void security_secmark_refcount_inc(void) |
| 2838 | { |
| 2839 | } |
| 2840 | |
| 2841 | static inline void security_secmark_refcount_dec(void) |
| 2842 | { |
| 2843 | } |
| 2844 | |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2845 | static inline int security_tun_dev_alloc_security(void **security) |
| 2846 | { |
| 2847 | return 0; |
| 2848 | } |
| 2849 | |
| 2850 | static inline void security_tun_dev_free_security(void *security) |
| 2851 | { |
| 2852 | } |
| 2853 | |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2854 | static inline int security_tun_dev_create(void) |
| 2855 | { |
| 2856 | return 0; |
| 2857 | } |
| 2858 | |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2859 | static inline int security_tun_dev_attach_queue(void *security) |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2860 | { |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2861 | return 0; |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2862 | } |
| 2863 | |
Paul Moore | 5dbbaf2 | 2013-01-14 07:12:19 +0000 | [diff] [blame] | 2864 | static inline int security_tun_dev_attach(struct sock *sk, void *security) |
| 2865 | { |
| 2866 | return 0; |
| 2867 | } |
| 2868 | |
| 2869 | static inline int security_tun_dev_open(void *security) |
Paul Moore | 2b980db | 2009-08-28 18:12:43 -0400 | [diff] [blame] | 2870 | { |
| 2871 | return 0; |
| 2872 | } |
Eric Dumazet | ca10b9e | 2013-04-08 17:58:11 +0000 | [diff] [blame] | 2873 | |
| 2874 | static inline void security_skb_owned_by(struct sk_buff *skb, struct sock *sk) |
| 2875 | { |
| 2876 | } |
| 2877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | #endif /* CONFIG_SECURITY_NETWORK */ |
| 2879 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2880 | #ifdef CONFIG_SECURITY_NETWORK_XFRM |
Venkat Yekkirala | cb969f0 | 2006-07-24 23:32:20 -0700 | [diff] [blame] | 2881 | |
Nikolay Aleksandrov | 52a4c64 | 2014-03-07 12:44:19 +0100 | [diff] [blame] | 2882 | int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, |
| 2883 | struct xfrm_user_sec_ctx *sec_ctx, gfp_t gfp); |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2884 | int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp); |
| 2885 | void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx); |
| 2886 | int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2887 | int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx); |
| 2888 | int security_xfrm_state_alloc_acquire(struct xfrm_state *x, |
| 2889 | struct xfrm_sec_ctx *polsec, u32 secid); |
| 2890 | int security_xfrm_state_delete(struct xfrm_state *x); |
| 2891 | void security_xfrm_state_free(struct xfrm_state *x); |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2892 | int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2893 | int security_xfrm_state_pol_flow_match(struct xfrm_state *x, |
David S. Miller | e33f770 | 2011-02-22 18:13:15 -0800 | [diff] [blame] | 2894 | struct xfrm_policy *xp, |
| 2895 | const struct flowi *fl); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2896 | int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid); |
| 2897 | void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl); |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2898 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2899 | #else /* CONFIG_SECURITY_NETWORK_XFRM */ |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 2900 | |
Nikolay Aleksandrov | 52a4c64 | 2014-03-07 12:44:19 +0100 | [diff] [blame] | 2901 | static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, |
| 2902 | struct xfrm_user_sec_ctx *sec_ctx, |
| 2903 | gfp_t gfp) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2904 | { |
| 2905 | return 0; |
| 2906 | } |
| 2907 | |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2908 | static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2909 | { |
| 2910 | return 0; |
| 2911 | } |
| 2912 | |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2913 | static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2914 | { |
| 2915 | } |
| 2916 | |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2917 | static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx) |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 2918 | { |
| 2919 | return 0; |
| 2920 | } |
| 2921 | |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 2922 | static inline int security_xfrm_state_alloc(struct xfrm_state *x, |
| 2923 | struct xfrm_user_sec_ctx *sec_ctx) |
| 2924 | { |
| 2925 | return 0; |
| 2926 | } |
| 2927 | |
| 2928 | static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x, |
| 2929 | struct xfrm_sec_ctx *polsec, u32 secid) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2930 | { |
| 2931 | return 0; |
| 2932 | } |
| 2933 | |
| 2934 | static inline void security_xfrm_state_free(struct xfrm_state *x) |
| 2935 | { |
| 2936 | } |
| 2937 | |
David S. Miller | 6f68dc3 | 2006-06-08 23:58:52 -0700 | [diff] [blame] | 2938 | static inline int security_xfrm_state_delete(struct xfrm_state *x) |
Catherine Zhang | c8c05a8 | 2006-06-08 23:39:49 -0700 | [diff] [blame] | 2939 | { |
| 2940 | return 0; |
| 2941 | } |
| 2942 | |
Paul Moore | 03e1ad7 | 2008-04-12 19:07:52 -0700 | [diff] [blame] | 2943 | static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir) |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2944 | { |
| 2945 | return 0; |
| 2946 | } |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 2947 | |
| 2948 | static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x, |
David S. Miller | e33f770 | 2011-02-22 18:13:15 -0800 | [diff] [blame] | 2949 | struct xfrm_policy *xp, const struct flowi *fl) |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 2950 | { |
| 2951 | return 1; |
| 2952 | } |
| 2953 | |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 2954 | static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid) |
Venkat Yekkirala | e0d1caa | 2006-07-24 23:29:07 -0700 | [diff] [blame] | 2955 | { |
| 2956 | return 0; |
| 2957 | } |
| 2958 | |
Venkat Yekkirala | beb8d13 | 2006-08-04 23:12:42 -0700 | [diff] [blame] | 2959 | static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl) |
| 2960 | { |
| 2961 | } |
| 2962 | |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 2963 | #endif /* CONFIG_SECURITY_NETWORK_XFRM */ |
| 2964 | |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2965 | #ifdef CONFIG_SECURITY_PATH |
| 2966 | int security_path_unlink(struct path *dir, struct dentry *dentry); |
Al Viro | 4572bef | 2011-11-21 14:56:21 -0500 | [diff] [blame] | 2967 | int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2968 | int security_path_rmdir(struct path *dir, struct dentry *dentry); |
Al Viro | 04fc66e | 2011-11-21 14:58:38 -0500 | [diff] [blame] | 2969 | int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode, |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2970 | unsigned int dev); |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 2971 | int security_path_truncate(struct path *path); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2972 | int security_path_symlink(struct path *dir, struct dentry *dentry, |
| 2973 | const char *old_name); |
| 2974 | int security_path_link(struct dentry *old_dentry, struct path *new_dir, |
| 2975 | struct dentry *new_dentry); |
| 2976 | int security_path_rename(struct path *old_dir, struct dentry *old_dentry, |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 2977 | struct path *new_dir, struct dentry *new_dentry, |
| 2978 | unsigned int flags); |
Al Viro | cdcf116 | 2011-12-08 10:51:53 -0500 | [diff] [blame] | 2979 | int security_path_chmod(struct path *path, umode_t mode); |
Eric W. Biederman | d2b31ca | 2012-06-01 16:14:19 -0600 | [diff] [blame] | 2980 | int security_path_chown(struct path *path, kuid_t uid, kgid_t gid); |
Tetsuo Handa | 8b8efb4 | 2009-10-04 21:49:48 +0900 | [diff] [blame] | 2981 | int security_path_chroot(struct path *path); |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2982 | #else /* CONFIG_SECURITY_PATH */ |
| 2983 | static inline int security_path_unlink(struct path *dir, struct dentry *dentry) |
| 2984 | { |
| 2985 | return 0; |
| 2986 | } |
| 2987 | |
| 2988 | static inline int security_path_mkdir(struct path *dir, struct dentry *dentry, |
Al Viro | 4572bef | 2011-11-21 14:56:21 -0500 | [diff] [blame] | 2989 | umode_t mode) |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 2990 | { |
| 2991 | return 0; |
| 2992 | } |
| 2993 | |
| 2994 | static inline int security_path_rmdir(struct path *dir, struct dentry *dentry) |
| 2995 | { |
| 2996 | return 0; |
| 2997 | } |
| 2998 | |
| 2999 | static inline int security_path_mknod(struct path *dir, struct dentry *dentry, |
Al Viro | 04fc66e | 2011-11-21 14:58:38 -0500 | [diff] [blame] | 3000 | umode_t mode, unsigned int dev) |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3001 | { |
| 3002 | return 0; |
| 3003 | } |
| 3004 | |
Tetsuo Handa | ea0d3ab | 2010-06-02 13:24:43 +0900 | [diff] [blame] | 3005 | static inline int security_path_truncate(struct path *path) |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3006 | { |
| 3007 | return 0; |
| 3008 | } |
| 3009 | |
| 3010 | static inline int security_path_symlink(struct path *dir, struct dentry *dentry, |
| 3011 | const char *old_name) |
| 3012 | { |
| 3013 | return 0; |
| 3014 | } |
| 3015 | |
| 3016 | static inline int security_path_link(struct dentry *old_dentry, |
| 3017 | struct path *new_dir, |
| 3018 | struct dentry *new_dentry) |
| 3019 | { |
| 3020 | return 0; |
| 3021 | } |
| 3022 | |
| 3023 | static inline int security_path_rename(struct path *old_dir, |
| 3024 | struct dentry *old_dentry, |
| 3025 | struct path *new_dir, |
Miklos Szeredi | 0b3974e | 2014-04-01 17:08:43 +0200 | [diff] [blame] | 3026 | struct dentry *new_dentry, |
| 3027 | unsigned int flags) |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3028 | { |
| 3029 | return 0; |
| 3030 | } |
Tetsuo Handa | 89eda06 | 2009-10-04 21:49:47 +0900 | [diff] [blame] | 3031 | |
Al Viro | cdcf116 | 2011-12-08 10:51:53 -0500 | [diff] [blame] | 3032 | static inline int security_path_chmod(struct path *path, umode_t mode) |
Tetsuo Handa | 89eda06 | 2009-10-04 21:49:47 +0900 | [diff] [blame] | 3033 | { |
| 3034 | return 0; |
| 3035 | } |
| 3036 | |
Eric W. Biederman | d2b31ca | 2012-06-01 16:14:19 -0600 | [diff] [blame] | 3037 | static inline int security_path_chown(struct path *path, kuid_t uid, kgid_t gid) |
Tetsuo Handa | 89eda06 | 2009-10-04 21:49:47 +0900 | [diff] [blame] | 3038 | { |
| 3039 | return 0; |
| 3040 | } |
Tetsuo Handa | 8b8efb4 | 2009-10-04 21:49:48 +0900 | [diff] [blame] | 3041 | |
| 3042 | static inline int security_path_chroot(struct path *path) |
| 3043 | { |
| 3044 | return 0; |
| 3045 | } |
Kentaro Takeda | be6d3e5 | 2008-12-17 13:24:15 +0900 | [diff] [blame] | 3046 | #endif /* CONFIG_SECURITY_PATH */ |
| 3047 | |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3048 | #ifdef CONFIG_KEYS |
| 3049 | #ifdef CONFIG_SECURITY |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3050 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3051 | int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags); |
James Morris | 20510f2 | 2007-10-16 23:31:32 -0700 | [diff] [blame] | 3052 | void security_key_free(struct key *key); |
| 3053 | int security_key_permission(key_ref_t key_ref, |
David Howells | f589594 | 2014-03-14 17:44:49 +0000 | [diff] [blame] | 3054 | const struct cred *cred, unsigned perm); |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 3055 | int security_key_getsecurity(struct key *key, char **_buffer); |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3056 | |
| 3057 | #else |
| 3058 | |
Michael LeMay | d720024 | 2006-06-22 14:47:17 -0700 | [diff] [blame] | 3059 | static inline int security_key_alloc(struct key *key, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3060 | const struct cred *cred, |
David Howells | 7e047ef | 2006-06-26 00:24:50 -0700 | [diff] [blame] | 3061 | unsigned long flags) |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3062 | { |
| 3063 | return 0; |
| 3064 | } |
| 3065 | |
| 3066 | static inline void security_key_free(struct key *key) |
| 3067 | { |
| 3068 | } |
| 3069 | |
| 3070 | static inline int security_key_permission(key_ref_t key_ref, |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 3071 | const struct cred *cred, |
David Howells | f589594 | 2014-03-14 17:44:49 +0000 | [diff] [blame] | 3072 | unsigned perm) |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3073 | { |
| 3074 | return 0; |
| 3075 | } |
| 3076 | |
David Howells | 70a5bb7 | 2008-04-29 01:01:26 -0700 | [diff] [blame] | 3077 | static inline int security_key_getsecurity(struct key *key, char **_buffer) |
| 3078 | { |
| 3079 | *_buffer = NULL; |
| 3080 | return 0; |
| 3081 | } |
| 3082 | |
David Howells | 29db919 | 2005-10-30 15:02:44 -0800 | [diff] [blame] | 3083 | #endif |
| 3084 | #endif /* CONFIG_KEYS */ |
| 3085 | |
Ahmed S. Darwish | 03d37d2 | 2008-03-01 22:00:05 +0200 | [diff] [blame] | 3086 | #ifdef CONFIG_AUDIT |
| 3087 | #ifdef CONFIG_SECURITY |
| 3088 | int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule); |
| 3089 | int security_audit_rule_known(struct audit_krule *krule); |
| 3090 | int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule, |
| 3091 | struct audit_context *actx); |
| 3092 | void security_audit_rule_free(void *lsmrule); |
| 3093 | |
| 3094 | #else |
| 3095 | |
| 3096 | static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr, |
| 3097 | void **lsmrule) |
| 3098 | { |
| 3099 | return 0; |
| 3100 | } |
| 3101 | |
| 3102 | static inline int security_audit_rule_known(struct audit_krule *krule) |
| 3103 | { |
| 3104 | return 0; |
| 3105 | } |
| 3106 | |
| 3107 | static inline int security_audit_rule_match(u32 secid, u32 field, u32 op, |
| 3108 | void *lsmrule, struct audit_context *actx) |
| 3109 | { |
| 3110 | return 0; |
| 3111 | } |
| 3112 | |
| 3113 | static inline void security_audit_rule_free(void *lsmrule) |
| 3114 | { } |
| 3115 | |
| 3116 | #endif /* CONFIG_SECURITY */ |
| 3117 | #endif /* CONFIG_AUDIT */ |
| 3118 | |
Eric Paris | da31894 | 2008-08-22 11:35:57 -0400 | [diff] [blame] | 3119 | #ifdef CONFIG_SECURITYFS |
| 3120 | |
Al Viro | 52ef0c0 | 2011-07-26 04:30:04 -0400 | [diff] [blame] | 3121 | extern struct dentry *securityfs_create_file(const char *name, umode_t mode, |
Eric Paris | da31894 | 2008-08-22 11:35:57 -0400 | [diff] [blame] | 3122 | struct dentry *parent, void *data, |
| 3123 | const struct file_operations *fops); |
| 3124 | extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent); |
| 3125 | extern void securityfs_remove(struct dentry *dentry); |
| 3126 | |
| 3127 | #else /* CONFIG_SECURITYFS */ |
| 3128 | |
| 3129 | static inline struct dentry *securityfs_create_dir(const char *name, |
| 3130 | struct dentry *parent) |
| 3131 | { |
| 3132 | return ERR_PTR(-ENODEV); |
| 3133 | } |
| 3134 | |
| 3135 | static inline struct dentry *securityfs_create_file(const char *name, |
Al Viro | 52ef0c0 | 2011-07-26 04:30:04 -0400 | [diff] [blame] | 3136 | umode_t mode, |
Eric Paris | da31894 | 2008-08-22 11:35:57 -0400 | [diff] [blame] | 3137 | struct dentry *parent, |
| 3138 | void *data, |
| 3139 | const struct file_operations *fops) |
| 3140 | { |
| 3141 | return ERR_PTR(-ENODEV); |
| 3142 | } |
| 3143 | |
| 3144 | static inline void securityfs_remove(struct dentry *dentry) |
| 3145 | {} |
| 3146 | |
| 3147 | #endif |
| 3148 | |
Pekka Enberg | 3d544f4 | 2009-03-24 11:59:23 +0200 | [diff] [blame] | 3149 | #ifdef CONFIG_SECURITY |
| 3150 | |
| 3151 | static inline char *alloc_secdata(void) |
| 3152 | { |
| 3153 | return (char *)get_zeroed_page(GFP_KERNEL); |
| 3154 | } |
| 3155 | |
| 3156 | static inline void free_secdata(void *secdata) |
| 3157 | { |
| 3158 | free_page((unsigned long)secdata); |
| 3159 | } |
| 3160 | |
| 3161 | #else |
| 3162 | |
| 3163 | static inline char *alloc_secdata(void) |
| 3164 | { |
| 3165 | return (char *)1; |
| 3166 | } |
| 3167 | |
| 3168 | static inline void free_secdata(void *secdata) |
| 3169 | { } |
| 3170 | #endif /* CONFIG_SECURITY */ |
| 3171 | |
Kees Cook | c6993e4 | 2012-09-04 13:32:13 -0700 | [diff] [blame] | 3172 | #ifdef CONFIG_SECURITY_YAMA |
| 3173 | extern int yama_ptrace_access_check(struct task_struct *child, |
| 3174 | unsigned int mode); |
| 3175 | extern int yama_ptrace_traceme(struct task_struct *parent); |
| 3176 | extern void yama_task_free(struct task_struct *task); |
| 3177 | extern int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3, |
| 3178 | unsigned long arg4, unsigned long arg5); |
| 3179 | #else |
| 3180 | static inline int yama_ptrace_access_check(struct task_struct *child, |
| 3181 | unsigned int mode) |
| 3182 | { |
| 3183 | return 0; |
| 3184 | } |
| 3185 | |
| 3186 | static inline int yama_ptrace_traceme(struct task_struct *parent) |
| 3187 | { |
| 3188 | return 0; |
| 3189 | } |
| 3190 | |
| 3191 | static inline void yama_task_free(struct task_struct *task) |
| 3192 | { |
| 3193 | } |
| 3194 | |
| 3195 | static inline int yama_task_prctl(int option, unsigned long arg2, |
| 3196 | unsigned long arg3, unsigned long arg4, |
| 3197 | unsigned long arg5) |
| 3198 | { |
| 3199 | return -ENOSYS; |
| 3200 | } |
| 3201 | #endif /* CONFIG_SECURITY_YAMA */ |
| 3202 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3203 | #endif /* ! __LINUX_SECURITY_H */ |
| 3204 | |