blob: b62f3969e84bbe534e958377025d813548bf2469 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Howells29db9192005-10-30 15:02:44 -080025#include <linux/key.h>
Al Viro40401532012-02-13 03:58:52 +000026#include <linux/capability.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Al Viro40401532012-02-13 03:58:52 +000028#include <linux/err.h>
29
30struct linux_binprm;
31struct cred;
32struct rlimit;
33struct siginfo;
34struct sem_array;
35struct sembuf;
36struct kern_ipc_perm;
37struct audit_context;
38struct super_block;
39struct inode;
40struct dentry;
41struct file;
42struct vfsmount;
43struct path;
44struct qstr;
45struct nameidata;
46struct iattr;
47struct fown_struct;
48struct file_operations;
49struct shmid_kernel;
50struct msg_msg;
51struct msg_queue;
52struct xattr;
53struct xfrm_sec_ctx;
54struct mm_struct;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +020056/* Maximum number of letters for an LSM name string */
57#define SECURITY_NAME_MAX 10
58
Eric Paris06112162008-11-11 22:02:50 +110059/* If capable should audit the security request */
60#define SECURITY_CAP_NOAUDIT 0
61#define SECURITY_CAP_AUDIT 1
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063struct ctl_table;
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +020064struct audit_krule;
Serge E. Hallyn34867402011-03-23 16:43:17 -070065struct user_namespace;
Al Viro40401532012-02-13 03:58:52 +000066struct timezone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/*
69 * These functions are in security/capability.c and are used
70 * as the default capabilities functions
71 */
Eric Paris6a9de492012-01-03 12:25:14 -050072extern int cap_capable(const struct cred *cred, struct user_namespace *ns,
73 int cap, int audit);
Richard Cochran1e6d7672011-02-01 13:50:58 +000074extern int cap_settime(const struct timespec *ts, const struct timezone *tz);
Ingo Molnar9e488582009-05-07 19:26:19 +100075extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +010076extern int cap_ptrace_traceme(struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -040077extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +110078extern int cap_capset(struct cred *new, const struct cred *old,
79 const kernel_cap_t *effective,
80 const kernel_cap_t *inheritable,
81 const kernel_cap_t *permitted);
David Howellsa6f76f22008-11-14 10:39:24 +110082extern int cap_bprm_set_creds(struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083extern int cap_bprm_secureexec(struct linux_binprm *bprm);
David Howells8f0cfa52008-04-29 00:59:41 -070084extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
85 const void *value, size_t size, int flags);
86extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -070087extern int cap_inode_need_killpriv(struct dentry *dentry);
88extern int cap_inode_killpriv(struct dentry *dentry);
Eric Paris7c738752009-07-31 12:53:58 -040089extern int cap_file_mmap(struct file *file, unsigned long reqprot,
90 unsigned long prot, unsigned long flags,
91 unsigned long addr, unsigned long addr_only);
David Howellsd84f4f92008-11-14 10:39:23 +110092extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070093extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +110094 unsigned long arg4, unsigned long arg5);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +090095extern int cap_task_setscheduler(struct task_struct *p);
Eric Paris7b41b172008-04-23 14:10:25 -040096extern int cap_task_setioprio(struct task_struct *p, int ioprio);
97extern int cap_task_setnice(struct task_struct *p, int nice);
James Morris20510f22007-10-16 23:31:32 -070098extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100struct msghdr;
101struct sk_buff;
102struct sock;
103struct sockaddr;
104struct socket;
Trent Jaegerdf718372005-12-13 23:12:27 -0800105struct flowi;
106struct dst_entry;
107struct xfrm_selector;
108struct xfrm_policy;
109struct xfrm_state;
110struct xfrm_user_sec_ctx;
Eric Paris2069f452008-07-04 09:47:13 +1000111struct seq_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
wzt.wzt@gmail.com189b3b12010-02-23 23:15:28 +0800115void reset_security_ops(void);
116
David Howells6e141542009-12-15 19:27:45 +0000117#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -0400118extern unsigned long mmap_min_addr;
Eric Parisa2551df2009-07-31 12:54:11 -0400119extern unsigned long dac_mmap_min_addr;
David Howells6e141542009-12-15 19:27:45 +0000120#else
121#define dac_mmap_min_addr 0UL
122#endif
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124/*
125 * Values used in the task_security_ops calls
126 */
127/* setuid or setgid, id0 == uid or gid */
128#define LSM_SETID_ID 1
129
130/* setreuid or setregid, id0 == real, id1 == eff */
131#define LSM_SETID_RE 2
132
133/* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
134#define LSM_SETID_RES 4
135
136/* setfsuid or setfsgid, id0 == fsuid or fsgid */
137#define LSM_SETID_FS 8
138
139/* forward declares to avoid warnings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140struct sched_param;
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700141struct request_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
David Howellsa6f76f22008-11-14 10:39:24 +1100143/* bprm->unsafe reasons */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define LSM_UNSAFE_SHARE 1
145#define LSM_UNSAFE_PTRACE 2
146#define LSM_UNSAFE_PTRACE_CAP 4
147
David Howells6e141542009-12-15 19:27:45 +0000148#ifdef CONFIG_MMU
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700149extern int mmap_min_addr_handler(struct ctl_table *table, int write,
Eric Paris47d439e2009-08-07 14:53:57 -0400150 void __user *buffer, size_t *lenp, loff_t *ppos);
David Howells6e141542009-12-15 19:27:45 +0000151#endif
Eric Paris47d439e2009-08-07 14:53:57 -0400152
Mimi Zohar9d8f13b2011-06-06 15:29:25 -0400153/* security_inode_init_security callback function to write xattrs */
154typedef int (*initxattrs) (struct inode *inode,
155 const struct xattr *xattr_array, void *fs_data);
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#ifdef CONFIG_SECURITY
158
Eric Parise0007522008-03-05 10:31:54 -0500159struct security_mnt_opts {
160 char **mnt_opts;
161 int *mnt_opts_flags;
162 int num_mnt_opts;
163};
164
165static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
166{
167 opts->mnt_opts = NULL;
168 opts->mnt_opts_flags = NULL;
169 opts->num_mnt_opts = 0;
170}
171
172static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
173{
174 int i;
175 if (opts->mnt_opts)
Eric Paris7b41b172008-04-23 14:10:25 -0400176 for (i = 0; i < opts->num_mnt_opts; i++)
Eric Parise0007522008-03-05 10:31:54 -0500177 kfree(opts->mnt_opts[i]);
178 kfree(opts->mnt_opts);
179 opts->mnt_opts = NULL;
180 kfree(opts->mnt_opts_flags);
181 opts->mnt_opts_flags = NULL;
182 opts->num_mnt_opts = 0;
183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
186 * struct security_operations - main security structure
187 *
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +0200188 * Security module identifier.
189 *
190 * @name:
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700191 * A string that acts as a unique identifier for the LSM with max number
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +0200192 * of characters = SECURITY_NAME_MAX.
193 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * Security hooks for program execution operations.
195 *
David Howellsa6f76f22008-11-14 10:39:24 +1100196 * @bprm_set_creds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * Save security information in the bprm->security field, typically based
198 * on information about the bprm->file, for later use by the apply_creds
199 * hook. This hook may also optionally check permissions (e.g. for
200 * transitions between security domains).
201 * This hook may be called multiple times during a single execve, e.g. for
202 * interpreters. The hook can tell whether it has already been called by
203 * checking to see if @bprm->security is non-NULL. If so, then the hook
204 * may decide either to retain the security information saved earlier or
205 * to replace it.
206 * @bprm contains the linux_binprm structure.
207 * Return 0 if the hook is successful and permission is granted.
208 * @bprm_check_security:
David Howellsa6f76f22008-11-14 10:39:24 +1100209 * This hook mediates the point when a search for a binary handler will
210 * begin. It allows a check the @bprm->security value which is set in the
211 * preceding set_creds call. The primary difference from set_creds is
212 * that the argv list and envp list are reliably available in @bprm. This
213 * hook may be called multiple times during a single execve; and in each
214 * pass set_creds is called first.
Eric Paris7b41b172008-04-23 14:10:25 -0400215 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 * Return 0 if the hook is successful and permission is granted.
David Howellsa6f76f22008-11-14 10:39:24 +1100217 * @bprm_committing_creds:
218 * Prepare to install the new security attributes of a process being
219 * transformed by an execve operation, based on the old credentials
220 * pointed to by @current->cred and the information set in @bprm->cred by
221 * the bprm_set_creds hook. @bprm points to the linux_binprm structure.
222 * This hook is a good place to perform state changes on the process such
223 * as closing open file descriptors to which access will no longer be
224 * granted when the attributes are changed. This is called immediately
225 * before commit_creds().
226 * @bprm_committed_creds:
227 * Tidy up after the installation of the new security attributes of a
228 * process being transformed by an execve operation. The new credentials
229 * have, by this point, been set to @current->cred. @bprm points to the
230 * linux_binprm structure. This hook is a good place to perform state
231 * changes on the process such as clearing out non-inheritable signal
232 * state. This is called immediately after commit_creds().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * @bprm_secureexec:
Eric Paris7b41b172008-04-23 14:10:25 -0400234 * Return a boolean value (0 or 1) indicating whether a "secure exec"
235 * is required. The flag is passed in the auxiliary table
236 * on the initial stack to the ELF interpreter to indicate whether libc
237 * should enable secure mode.
238 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 *
240 * Security hooks for filesystem operations.
241 *
242 * @sb_alloc_security:
243 * Allocate and attach a security structure to the sb->s_security field.
244 * The s_security field is initialized to NULL when the structure is
245 * allocated.
246 * @sb contains the super_block structure to be modified.
247 * Return 0 if operation was successful.
248 * @sb_free_security:
249 * Deallocate and clear the sb->s_security field.
250 * @sb contains the super_block structure to be modified.
251 * @sb_statfs:
David Howells726c3342006-06-23 02:02:58 -0700252 * Check permission before obtaining filesystem statistics for the @mnt
253 * mountpoint.
254 * @dentry is a handle on the superblock for the filesystem.
Eric Paris7b41b172008-04-23 14:10:25 -0400255 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * @sb_mount:
257 * Check permission before an object specified by @dev_name is mounted on
258 * the mount point named by @nd. For an ordinary mount, @dev_name
259 * identifies a device if the file system type requires a device. For a
260 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
261 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
262 * pathname of the object being mounted.
263 * @dev_name contains the name for object being mounted.
Al Virob5266eb2008-03-22 17:48:24 -0400264 * @path contains the path for mount point object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * @type contains the filesystem type.
266 * @flags contains the mount flags.
267 * @data contains the filesystem-specific data.
268 * Return 0 if permission is granted.
269 * @sb_copy_data:
270 * Allow mount option data to be copied prior to parsing by the filesystem,
271 * so that the security module can extract security-specific mount
272 * options cleanly (a filesystem may modify the data e.g. with strsep()).
273 * This also allows the original mount data to be stripped of security-
274 * specific options to avoid having to make filesystems aware of them.
275 * @type the type of filesystem being mounted.
276 * @orig the original mount data copied from userspace.
277 * @copy copied data which will be passed to the security module.
278 * Returns 0 if the copy was successful.
Eric Parisff36fe22011-03-03 16:09:14 -0500279 * @sb_remount:
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700280 * Extracts security system specific mount options and verifies no changes
Eric Parisff36fe22011-03-03 16:09:14 -0500281 * are being made to those options.
282 * @sb superblock being remounted
283 * @data contains the filesystem-specific data.
284 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * @sb_umount:
286 * Check permission before the @mnt file system is unmounted.
287 * @mnt contains the mounted file system.
288 * @flags contains the unmount flags, e.g. MNT_FORCE.
289 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 * @sb_pivotroot:
291 * Check permission before pivoting the root filesystem.
Al Virob5266eb2008-03-22 17:48:24 -0400292 * @old_path contains the path for the new location of the current root (put_old).
Eric Paris7b41b172008-04-23 14:10:25 -0400293 * @new_path contains the path for the new root (new_root).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * Return 0 if permission is granted.
Eric Parisc9180a52007-11-30 13:00:35 -0500295 * @sb_set_mnt_opts:
296 * Set the security relevant mount options used for a superblock
297 * @sb the superblock to set security mount options for
Eric Parise0007522008-03-05 10:31:54 -0500298 * @opts binary data structure containing all lsm mount data
Eric Parisc9180a52007-11-30 13:00:35 -0500299 * @sb_clone_mnt_opts:
300 * Copy all security options from a given superblock to another
301 * @oldsb old superblock which contain information to clone
302 * @newsb new superblock which needs filled in
Eric Parise0007522008-03-05 10:31:54 -0500303 * @sb_parse_opts_str:
304 * Parse a string of security data filling in the opts structure
305 * @options string containing all mount options known by the LSM
306 * @opts binary data structure usable by the LSM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
308 * Security hooks for inode operations.
309 *
310 * @inode_alloc_security:
311 * Allocate and attach a security structure to @inode->i_security. The
312 * i_security field is initialized to NULL when the inode structure is
313 * allocated.
314 * @inode contains the inode structure.
315 * Return 0 if operation was successful.
316 * @inode_free_security:
317 * @inode contains the inode structure.
318 * Deallocate the inode security structure and set @inode->i_security to
Eric Paris7b41b172008-04-23 14:10:25 -0400319 * NULL.
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700320 * @inode_init_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400321 * Obtain the security attribute name suffix and value to set on a newly
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700322 * created inode and set up the incore security field for the new inode.
323 * This hook is called by the fs code as part of the inode creation
324 * transaction and provides for atomic labeling of the inode, unlike
325 * the post_create/mkdir/... hooks called by the VFS. The hook function
326 * is expected to allocate the name and value via kmalloc, with the caller
327 * being responsible for calling kfree after using them.
328 * If the security module does not use security attributes or does
329 * not wish to put a security attribute on this particular inode,
330 * then it should return -EOPNOTSUPP to skip this processing.
331 * @inode contains the inode structure of the newly created inode.
332 * @dir contains the inode structure of the parent directory.
Eric Paris2a7dba32011-02-01 11:05:39 -0500333 * @qstr contains the last path component of the new object
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700334 * @name will be set to the allocated name suffix (e.g. selinux).
335 * @value will be set to the allocated attribute value.
336 * @len will be set to the length of the value.
337 * Returns 0 if @name and @value have been successfully set,
338 * -EOPNOTSUPP if no security attribute is needed, or
339 * -ENOMEM on memory allocation failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * @inode_create:
341 * Check permission to create a regular file.
342 * @dir contains inode structure of the parent of the new file.
343 * @dentry contains the dentry structure for the file to be created.
344 * @mode contains the file mode of the file to be created.
345 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * @inode_link:
347 * Check permission before creating a new hard link to a file.
348 * @old_dentry contains the dentry structure for an existing link to the file.
349 * @dir contains the inode structure of the parent directory of the new link.
350 * @new_dentry contains the dentry structure for the new link.
351 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900352 * @path_link:
353 * Check permission before creating a new hard link to a file.
354 * @old_dentry contains the dentry structure for an existing link
355 * to the file.
356 * @new_dir contains the path structure of the parent directory of
357 * the new link.
358 * @new_dentry contains the dentry structure for the new link.
359 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * @inode_unlink:
Eric Paris7b41b172008-04-23 14:10:25 -0400361 * Check the permission to remove a hard link to a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * @dir contains the inode structure of parent directory of the file.
363 * @dentry contains the dentry structure for file to be unlinked.
364 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900365 * @path_unlink:
366 * Check the permission to remove a hard link to a file.
367 * @dir contains the path structure of parent directory of the file.
368 * @dentry contains the dentry structure for file to be unlinked.
369 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * @inode_symlink:
371 * Check the permission to create a symbolic link to a file.
372 * @dir contains the inode structure of parent directory of the symbolic link.
373 * @dentry contains the dentry structure of the symbolic link.
374 * @old_name contains the pathname of file.
375 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900376 * @path_symlink:
377 * Check the permission to create a symbolic link to a file.
378 * @dir contains the path structure of parent directory of
379 * the symbolic link.
380 * @dentry contains the dentry structure of the symbolic link.
381 * @old_name contains the pathname of file.
382 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 * @inode_mkdir:
384 * Check permissions to create a new directory in the existing directory
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700385 * associated with inode structure @dir.
386 * @dir contains the inode structure of parent of the directory to be created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * @dentry contains the dentry structure of new directory.
388 * @mode contains the mode of new directory.
389 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900390 * @path_mkdir:
391 * Check permissions to create a new directory in the existing directory
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700392 * associated with path structure @path.
393 * @dir contains the path structure of parent of the directory
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900394 * to be created.
395 * @dentry contains the dentry structure of new directory.
396 * @mode contains the mode of new directory.
397 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * @inode_rmdir:
399 * Check the permission to remove a directory.
400 * @dir contains the inode structure of parent of the directory to be removed.
401 * @dentry contains the dentry structure of directory to be removed.
402 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900403 * @path_rmdir:
404 * Check the permission to remove a directory.
405 * @dir contains the path structure of parent of the directory to be
406 * removed.
407 * @dentry contains the dentry structure of directory to be removed.
408 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * @inode_mknod:
410 * Check permissions when creating a special file (or a socket or a fifo
411 * file created via the mknod system call). Note that if mknod operation
412 * is being done for a regular file, then the create hook will be called
413 * and not this hook.
414 * @dir contains the inode structure of parent of the new file.
415 * @dentry contains the dentry structure of the new file.
416 * @mode contains the mode of the new file.
Michael Opdenacker59c51592007-05-09 08:57:56 +0200417 * @dev contains the device number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900419 * @path_mknod:
420 * Check permissions when creating a file. Note that this hook is called
421 * even if mknod operation is being done for a regular file.
422 * @dir contains the path structure of parent of the new file.
423 * @dentry contains the dentry structure of the new file.
424 * @mode contains the mode of the new file.
425 * @dev contains the undecoded device number. Use new_decode_dev() to get
426 * the decoded device number.
427 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * @inode_rename:
429 * Check for permission to rename a file or directory.
430 * @old_dir contains the inode structure for parent of the old link.
431 * @old_dentry contains the dentry structure of the old link.
432 * @new_dir contains the inode structure for parent of the new link.
433 * @new_dentry contains the dentry structure of the new link.
434 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900435 * @path_rename:
436 * Check for permission to rename a file or directory.
437 * @old_dir contains the path structure for parent of the old link.
438 * @old_dentry contains the dentry structure of the old link.
439 * @new_dir contains the path structure for parent of the new link.
440 * @new_dentry contains the dentry structure of the new link.
441 * Return 0 if permission is granted.
Tetsuo Handa89eda062009-10-04 21:49:47 +0900442 * @path_chmod:
443 * Check for permission to change DAC's permission of a file or directory.
444 * @dentry contains the dentry structure.
445 * @mnt contains the vfsmnt structure.
446 * @mode contains DAC's mode.
447 * Return 0 if permission is granted.
448 * @path_chown:
449 * Check for permission to change owner/group of a file or directory.
450 * @path contains the path structure.
451 * @uid contains new owner's ID.
452 * @gid contains new group's ID.
453 * Return 0 if permission is granted.
Tetsuo Handa8b8efb42009-10-04 21:49:48 +0900454 * @path_chroot:
455 * Check for permission to change root directory.
456 * @path contains the path structure.
457 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * @inode_readlink:
459 * Check the permission to read the symbolic link.
460 * @dentry contains the dentry structure for the file link.
461 * Return 0 if permission is granted.
462 * @inode_follow_link:
463 * Check permission to follow a symbolic link when looking up a pathname.
464 * @dentry contains the dentry structure for the link.
465 * @nd contains the nameidata structure for the parent directory.
466 * Return 0 if permission is granted.
467 * @inode_permission:
468 * Check permission before accessing an inode. This hook is called by the
469 * existing Linux permission function, so a security module can use it to
470 * provide additional checking for existing Linux permission checks.
471 * Notice that this hook is called when a file is opened (as well as many
472 * other operations), whereas the file_security_ops permission hook is
473 * called when the actual read/write operations are performed.
474 * @inode contains the inode structure to check.
475 * @mask contains the permission mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Return 0 if permission is granted.
477 * @inode_setattr:
478 * Check permission before setting file attributes. Note that the kernel
479 * call to notify_change is performed from several locations, whenever
480 * file attributes change (such as when a file is truncated, chown/chmod
481 * operations, transferring disk quotas, etc).
482 * @dentry contains the dentry structure for the file.
483 * @attr is the iattr structure containing the new file attributes.
484 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900485 * @path_truncate:
486 * Check permission before truncating a file.
487 * @path contains the path structure for the file.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900488 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * @inode_getattr:
490 * Check permission before obtaining file attributes.
491 * @mnt is the vfsmount where the dentry was looked up
492 * @dentry contains the dentry structure for the file.
493 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 * @inode_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400495 * Check permission before setting the extended attributes
496 * @value identified by @name for @dentry.
497 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 * @inode_post_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400499 * Update inode security field after successful setxattr operation.
500 * @value identified by @name for @dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * @inode_getxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400502 * Check permission before obtaining the extended attributes
503 * identified by @name for @dentry.
504 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * @inode_listxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400506 * Check permission before obtaining the list of extended attribute
507 * names for @dentry.
508 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * @inode_removexattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400510 * Check permission before removing the extended attribute
511 * identified by @name for @dentry.
512 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * @inode_getsecurity:
David P. Quigley42492592008-02-04 22:29:39 -0800514 * Retrieve a copy of the extended attribute representation of the
515 * security label associated with @name for @inode via @buffer. Note that
516 * @name is the remainder of the attribute name after the security prefix
517 * has been removed. @alloc is used to specify of the call should return a
518 * value via the buffer or just the value length Return size of buffer on
519 * success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * @inode_setsecurity:
521 * Set the security label associated with @name for @inode from the
522 * extended attribute value @value. @size indicates the size of the
523 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
Eric Paris7b41b172008-04-23 14:10:25 -0400524 * Note that @name is the remainder of the attribute name after the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 * security. prefix has been removed.
526 * Return 0 on success.
527 * @inode_listsecurity:
528 * Copy the extended attribute names for the security labels
529 * associated with @inode into @buffer. The maximum size of @buffer
530 * is specified by @buffer_size. @buffer may be NULL to request
531 * the size of the buffer required.
532 * Returns number of bytes used/required on success.
Serge E. Hallynb5376772007-10-16 23:31:36 -0700533 * @inode_need_killpriv:
534 * Called when an inode has been changed.
535 * @dentry is the dentry being changed.
536 * Return <0 on error to abort the inode change operation.
537 * Return 0 if inode_killpriv does not need to be called.
538 * Return >0 if inode_killpriv does need to be called.
539 * @inode_killpriv:
540 * The setuid bit is being removed. Remove similar security labels.
541 * Called with the dentry->d_inode->i_mutex held.
542 * @dentry is the dentry being changed.
543 * Return 0 on success. If error is returned, then the operation
544 * causing setuid bit removal is failed.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200545 * @inode_getsecid:
546 * Get the secid associated with the node.
547 * @inode contains a pointer to the inode.
548 * @secid contains a pointer to the location where result will be saved.
549 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 *
551 * Security hooks for file operations
552 *
553 * @file_permission:
554 * Check file permissions before accessing an open file. This hook is
555 * called by various operations that read or write files. A security
556 * module can use this hook to perform additional checking on these
557 * operations, e.g. to revalidate permissions on use to support privilege
558 * bracketing or policy changes. Notice that this hook is used when the
559 * actual read/write operations are performed, whereas the
560 * inode_security_ops hook is called when a file is opened (as well as
561 * many other operations).
562 * Caveat: Although this hook can be used to revalidate permissions for
563 * various system call operations that read or write files, it does not
564 * address the revalidation of permissions for memory-mapped files.
565 * Security modules must handle this separately if they need such
566 * revalidation.
567 * @file contains the file structure being accessed.
568 * @mask contains the requested permissions.
569 * Return 0 if permission is granted.
570 * @file_alloc_security:
571 * Allocate and attach a security structure to the file->f_security field.
572 * The security field is initialized to NULL when the structure is first
573 * created.
574 * @file contains the file structure to secure.
575 * Return 0 if the hook is successful and permission is granted.
576 * @file_free_security:
577 * Deallocate and free any security structures stored in file->f_security.
578 * @file contains the file structure being modified.
579 * @file_ioctl:
580 * @file contains the file structure.
581 * @cmd contains the operation to perform.
582 * @arg contains the operational arguments.
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700583 * Check permission for an ioctl operation on @file. Note that @arg
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * sometimes represents a user space pointer; in other cases, it may be a
585 * simple integer value. When @arg represents a user space pointer, it
586 * should never be used by the security module.
587 * Return 0 if permission is granted.
588 * @file_mmap :
589 * Check permissions for a mmap operation. The @file may be NULL, e.g.
590 * if mapping anonymous memory.
591 * @file contains the file structure for file to map (may be NULL).
592 * @reqprot contains the protection requested by the application.
593 * @prot contains the protection that will be applied by the kernel.
594 * @flags contains the operational flags.
Kees Cook114d6e92011-12-19 11:32:56 -0800595 * @addr contains virtual address that will be used for the operation.
596 * @addr_only contains a boolean: 0 if file-backed VMA, otherwise 1.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 * Return 0 if permission is granted.
598 * @file_mprotect:
599 * Check permissions before changing memory access permissions.
600 * @vma contains the memory region to modify.
601 * @reqprot contains the protection requested by the application.
602 * @prot contains the protection that will be applied by the kernel.
603 * Return 0 if permission is granted.
604 * @file_lock:
605 * Check permission before performing file locking operations.
606 * Note: this hook mediates both flock and fcntl style locks.
607 * @file contains the file structure.
608 * @cmd contains the posix-translated lock operation to perform
609 * (e.g. F_RDLCK, F_WRLCK).
610 * Return 0 if permission is granted.
611 * @file_fcntl:
612 * Check permission before allowing the file operation specified by @cmd
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700613 * from being performed on the file @file. Note that @arg sometimes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * represents a user space pointer; in other cases, it may be a simple
615 * integer value. When @arg represents a user space pointer, it should
616 * never be used by the security module.
617 * @file contains the file structure.
618 * @cmd contains the operation to be performed.
619 * @arg contains the operational arguments.
620 * Return 0 if permission is granted.
621 * @file_set_fowner:
622 * Save owner security information (typically from current->security) in
623 * file->f_security for later use by the send_sigiotask hook.
624 * @file contains the file structure to update.
625 * Return 0 on success.
626 * @file_send_sigiotask:
627 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
628 * process @tsk. Note that this hook is sometimes called from interrupt.
629 * Note that the fown_struct, @fown, is never outside the context of a
630 * struct file, so the file structure (and associated security information)
631 * can always be obtained:
Robert P. J. Dayb385a142007-02-10 01:46:25 -0800632 * container_of(fown, struct file, f_owner)
Eric Paris7b41b172008-04-23 14:10:25 -0400633 * @tsk contains the structure of task receiving signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * @fown contains the file owner information.
635 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
636 * Return 0 if permission is granted.
637 * @file_receive:
638 * This hook allows security modules to control the ability of a process
639 * to receive an open file descriptor via socket IPC.
640 * @file contains the file structure being received.
641 * Return 0 if permission is granted.
642 *
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900643 * Security hook for dentry
644 *
645 * @dentry_open
646 * Save open-time permission checking state for later use upon
647 * file_permission, and recheck access if anything has changed
648 * since inode_permission.
649 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 * Security hooks for task operations.
651 *
652 * @task_create:
653 * Check permission before creating a child process. See the clone(2)
654 * manual page for definitions of the @clone_flags.
655 * @clone_flags contains the flags indicating what should be shared.
656 * Return 0 if permission is granted.
Kees Cook1a2a4d02011-12-21 12:17:03 -0800657 * @task_free:
658 * @task task being freed
659 * Handle release of task-related resources. (Note that this can be called
660 * from interrupt context.)
David Howellsee18d642009-09-02 09:14:21 +0100661 * @cred_alloc_blank:
662 * @cred points to the credentials.
663 * @gfp indicates the atomicity of any memory allocations.
664 * Only allocate sufficient memory and attach to @cred such that
665 * cred_transfer() will not get ENOMEM.
David Howellsf1752ee2008-11-14 10:39:17 +1100666 * @cred_free:
667 * @cred points to the credentials.
668 * Deallocate and clear the cred->security field in a set of credentials.
David Howellsd84f4f92008-11-14 10:39:23 +1100669 * @cred_prepare:
670 * @new points to the new credentials.
671 * @old points to the original credentials.
672 * @gfp indicates the atomicity of any memory allocations.
673 * Prepare a new set of credentials by copying the data from the old set.
David Howellsee18d642009-09-02 09:14:21 +0100674 * @cred_transfer:
675 * @new points to the new credentials.
676 * @old points to the original credentials.
677 * Transfer data from original creds to new creds
David Howells3a3b7ce2008-11-14 10:39:28 +1100678 * @kernel_act_as:
679 * Set the credentials for a kernel service to act as (subjective context).
680 * @new points to the credentials to be modified.
681 * @secid specifies the security ID to be set
682 * The current task must be the one that nominated @secid.
683 * Return 0 if successful.
684 * @kernel_create_files_as:
685 * Set the file creation context in a set of credentials to be the same as
686 * the objective context of the specified inode.
687 * @new points to the credentials to be modified.
688 * @inode points to the inode to use as a reference.
689 * The current task must be the one that nominated @inode.
690 * Return 0 if successful.
Eric Paris91884992009-08-13 09:44:57 -0400691 * @kernel_module_request:
692 * Ability to trigger the kernel to automatically upcall to userspace for
693 * userspace to load a kernel module with the given name.
Eric Parisdd8dbf22009-11-03 16:35:32 +1100694 * @kmod_name name of the module requested by the kernel
James Morrisf322abf2009-08-14 11:19:29 +1000695 * Return 0 if successful.
David Howellsd84f4f92008-11-14 10:39:23 +1100696 * @task_fix_setuid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * Update the module's state after setting one or more of the user
698 * identity attributes of the current process. The @flags parameter
699 * indicates which of the set*uid system calls invoked this hook. If
David Howellsd84f4f92008-11-14 10:39:23 +1100700 * @new is the set of credentials that will be installed. Modifications
701 * should be made to this rather than to @current->cred.
702 * @old is the set of credentials that are being replaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * @flags contains one of the LSM_SETID_* values.
704 * Return 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 * @task_setpgid:
706 * Check permission before setting the process group identifier of the
707 * process @p to @pgid.
708 * @p contains the task_struct for process being modified.
709 * @pgid contains the new pgid.
710 * Return 0 if permission is granted.
711 * @task_getpgid:
712 * Check permission before getting the process group identifier of the
713 * process @p.
714 * @p contains the task_struct for the process.
715 * Return 0 if permission is granted.
716 * @task_getsid:
717 * Check permission before getting the session identifier of the process
718 * @p.
719 * @p contains the task_struct for the process.
720 * Return 0 if permission is granted.
David Quigleyf9008e42006-06-30 01:55:46 -0700721 * @task_getsecid:
722 * Retrieve the security identifier of the process @p.
723 * @p contains the task_struct for the process and place is into @secid.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200724 * In case of failure, @secid will be set to zero.
725 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * @task_setnice:
727 * Check permission before setting the nice value of @p to @nice.
728 * @p contains the task_struct of process.
729 * @nice contains the new nice value.
730 * Return 0 if permission is granted.
James Morris03e68062006-06-23 02:03:58 -0700731 * @task_setioprio
732 * Check permission before setting the ioprio value of @p to @ioprio.
733 * @p contains the task_struct of process.
734 * @ioprio contains the new ioprio value
735 * Return 0 if permission is granted.
David Quigleya1836a42006-06-30 01:55:49 -0700736 * @task_getioprio
737 * Check permission before getting the ioprio value of @p.
738 * @p contains the task_struct of process.
739 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 * @task_setrlimit:
741 * Check permission before setting the resource limits of the current
742 * process for @resource to @new_rlim. The old resource limit values can
743 * be examined by dereferencing (current->signal->rlim + resource).
744 * @resource contains the resource whose limit is being set.
745 * @new_rlim contains the new limits for @resource.
746 * Return 0 if permission is granted.
747 * @task_setscheduler:
748 * Check permission before setting scheduling policy and/or parameters of
749 * process @p based on @policy and @lp.
750 * @p contains the task_struct for process.
751 * @policy contains the scheduling policy.
752 * @lp contains the scheduling parameters.
753 * Return 0 if permission is granted.
754 * @task_getscheduler:
755 * Check permission before obtaining scheduling information for process
756 * @p.
757 * @p contains the task_struct for process.
758 * Return 0 if permission is granted.
David Quigley35601542006-06-23 02:04:01 -0700759 * @task_movememory
760 * Check permission before moving memory owned by process @p.
761 * @p contains the task_struct for process.
762 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * @task_kill:
764 * Check permission before sending signal @sig to @p. @info can be NULL,
765 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
766 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
767 * from the kernel and should typically be permitted.
768 * SIGIO signals are handled separately by the send_sigiotask hook in
769 * file_security_ops.
770 * @p contains the task_struct for process.
771 * @info contains the signal information.
772 * @sig contains the signal value.
David Quigleyf9008e42006-06-30 01:55:46 -0700773 * @secid contains the sid of the process where the signal originated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 * Return 0 if permission is granted.
775 * @task_wait:
776 * Check permission before allowing a process to reap a child process @p
777 * and collect its status information.
778 * @p contains the task_struct for process.
779 * Return 0 if permission is granted.
780 * @task_prctl:
781 * Check permission before performing a process control operation on the
782 * current process.
783 * @option contains the operation.
784 * @arg2 contains a argument.
785 * @arg3 contains a argument.
786 * @arg4 contains a argument.
787 * @arg5 contains a argument.
David Howellsd84f4f92008-11-14 10:39:23 +1100788 * Return -ENOSYS if no-one wanted to handle this op, any other value to
789 * cause prctl() to return immediately with that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 * @task_to_inode:
Eric Paris7b41b172008-04-23 14:10:25 -0400791 * Set the security attributes for an inode based on an associated task's
792 * security attributes, e.g. for /proc/pid inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * @p contains the task_struct for the task.
794 * @inode contains the inode structure for the inode.
795 *
796 * Security hooks for Netlink messaging.
797 *
798 * @netlink_send:
799 * Save security information for a netlink message so that permission
800 * checking can be performed when the message is processed. The security
801 * information can be saved using the eff_cap field of the
Eric Paris7b41b172008-04-23 14:10:25 -0400802 * netlink_skb_parms structure. Also may be used to provide fine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * grained control over message transmission.
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -0700804 * @sk associated sock of task sending the message.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * @skb contains the sk_buff structure for the netlink message.
806 * Return 0 if the information was successfully saved and message
807 * is allowed to be transmitted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 *
809 * Security hooks for Unix domain networking.
810 *
811 * @unix_stream_connect:
812 * Check permissions before establishing a Unix domain stream connection
813 * between @sock and @other.
David S. Miller3610cda2011-01-05 15:38:53 -0800814 * @sock contains the sock structure.
815 * @other contains the peer sock structure.
816 * @newsk contains the new sock structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * Return 0 if permission is granted.
818 * @unix_may_send:
819 * Check permissions before connecting or sending datagrams from @sock to
820 * @other.
821 * @sock contains the socket structure.
Javier Martinez Canillasfbe74e32012-02-15 11:58:54 +0100822 * @other contains the peer socket structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * Return 0 if permission is granted.
824 *
825 * The @unix_stream_connect and @unix_may_send hooks were necessary because
826 * Linux provides an alternative to the conventional file name space for Unix
827 * domain sockets. Whereas binding and connecting to sockets in the file name
828 * space is mediated by the typical file permissions (and caught by the mknod
829 * and permission hooks in inode_security_ops), binding and connecting to
830 * sockets in the abstract name space is completely unmediated. Sufficient
831 * control of Unix domain sockets in the abstract name space isn't possible
832 * using only the socket layer hooks, since we need to know the actual target
833 * socket, which is not looked up until we are inside the af_unix code.
834 *
835 * Security hooks for socket operations.
836 *
837 * @socket_create:
838 * Check permissions prior to creating a new socket.
839 * @family contains the requested protocol family.
840 * @type contains the requested communications type.
841 * @protocol contains the requested protocol.
842 * @kern set to 1 if a kernel socket.
843 * Return 0 if permission is granted.
844 * @socket_post_create:
845 * This hook allows a module to update or allocate a per-socket security
846 * structure. Note that the security field was not added directly to the
847 * socket structure, but rather, the socket security information is stored
848 * in the associated inode. Typically, the inode alloc_security hook will
849 * allocate and and attach security information to
850 * sock->inode->i_security. This hook may be used to update the
851 * sock->inode->i_security field with additional information that wasn't
852 * available when the inode was allocated.
853 * @sock contains the newly created socket structure.
854 * @family contains the requested protocol family.
855 * @type contains the requested communications type.
856 * @protocol contains the requested protocol.
857 * @kern set to 1 if a kernel socket.
858 * @socket_bind:
859 * Check permission before socket protocol layer bind operation is
860 * performed and the socket @sock is bound to the address specified in the
861 * @address parameter.
862 * @sock contains the socket structure.
863 * @address contains the address to bind to.
864 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400865 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 * @socket_connect:
867 * Check permission before socket protocol layer connect operation
868 * attempts to connect socket @sock to a remote address, @address.
869 * @sock contains the socket structure.
870 * @address contains the address of remote endpoint.
871 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400872 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * @socket_listen:
874 * Check permission before socket protocol layer listen operation.
875 * @sock contains the socket structure.
876 * @backlog contains the maximum length for the pending connection queue.
877 * Return 0 if permission is granted.
878 * @socket_accept:
879 * Check permission before accepting a new connection. Note that the new
880 * socket, @newsock, has been created and some information copied to it,
881 * but the accept operation has not actually been performed.
882 * @sock contains the listening socket structure.
883 * @newsock contains the newly created server socket for connection.
884 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 * @socket_sendmsg:
886 * Check permission before transmitting a message to another socket.
887 * @sock contains the socket structure.
888 * @msg contains the message to be transmitted.
889 * @size contains the size of message.
890 * Return 0 if permission is granted.
891 * @socket_recvmsg:
892 * Check permission before receiving a message from a socket.
893 * @sock contains the socket structure.
894 * @msg contains the message structure.
895 * @size contains the size of message structure.
896 * @flags contains the operational flags.
Eric Paris7b41b172008-04-23 14:10:25 -0400897 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 * @socket_getsockname:
899 * Check permission before the local address (name) of the socket object
900 * @sock is retrieved.
901 * @sock contains the socket structure.
902 * Return 0 if permission is granted.
903 * @socket_getpeername:
904 * Check permission before the remote address (name) of a socket object
905 * @sock is retrieved.
906 * @sock contains the socket structure.
907 * Return 0 if permission is granted.
908 * @socket_getsockopt:
909 * Check permissions before retrieving the options associated with socket
910 * @sock.
911 * @sock contains the socket structure.
912 * @level contains the protocol level to retrieve option from.
913 * @optname contains the name of option to retrieve.
914 * Return 0 if permission is granted.
915 * @socket_setsockopt:
916 * Check permissions before setting the options associated with socket
917 * @sock.
918 * @sock contains the socket structure.
919 * @level contains the protocol level to set options for.
920 * @optname contains the name of the option to set.
Eric Paris7b41b172008-04-23 14:10:25 -0400921 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 * @socket_shutdown:
923 * Checks permission before all or part of a connection on the socket
924 * @sock is shut down.
925 * @sock contains the socket structure.
926 * @how contains the flag indicating how future sends and receives are handled.
927 * Return 0 if permission is granted.
928 * @socket_sock_rcv_skb:
929 * Check permissions on incoming network packets. This hook is distinct
930 * from Netfilter's IP input hooks since it is the first time that the
931 * incoming sk_buff @skb has been associated with a particular socket, @sk.
Tetsuo Handa0ed73182010-01-06 09:23:54 +0900932 * Must not sleep inside this hook because some callers hold spinlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * @sk contains the sock (not socket) associated with the incoming sk_buff.
934 * @skb contains the incoming network data.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200935 * @socket_getpeersec_stream:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 * This hook allows the security module to provide peer socket security
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200937 * state for unix or connected tcp sockets to userspace via getsockopt
938 * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
939 * socket is associated with an ipsec SA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 * @sock is the local socket.
941 * @optval userspace memory where the security state is to be copied.
942 * @optlen userspace int where the module should copy the actual length
943 * of the security state.
944 * @len as input is the maximum length to copy to userspace provided
945 * by the caller.
946 * Return 0 if all is well, otherwise, typical getsockopt return
947 * values.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200948 * @socket_getpeersec_dgram:
Eric Paris7b41b172008-04-23 14:10:25 -0400949 * This hook allows the security module to provide peer socket security
950 * state for udp sockets on a per-packet basis to userspace via
951 * getsockopt SO_GETPEERSEC. The application must first have indicated
952 * the IP_PASSSEC option via getsockopt. It can then retrieve the
953 * security state returned by this hook for a packet via the SCM_SECURITY
954 * ancillary message type.
955 * @skb is the skbuff for the packet being queried
956 * @secdata is a pointer to a buffer in which to copy the security data
957 * @seclen is the maximum length for @secdata
958 * Return 0 on success, error on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 * @sk_alloc_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400960 * Allocate and attach a security structure to the sk->sk_security field,
961 * which is used to copy security attributes between local stream sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 * @sk_free_security:
963 * Deallocate security structure.
Venkat Yekkirala892c1412006-08-04 23:08:56 -0700964 * @sk_clone_security:
965 * Clone/copy security structure.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700966 * @sk_getsecid:
967 * Retrieve the LSM-specific secid for the sock to enable caching of network
Trent Jaegerdf718372005-12-13 23:12:27 -0800968 * authorizations.
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700969 * @sock_graft:
970 * Sets the socket's isec sid to the sock's sid.
971 * @inet_conn_request:
972 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
973 * @inet_csk_clone:
974 * Sets the new child socket's sid to the openreq sid.
Venkat Yekkirala6b877692006-11-08 17:04:09 -0600975 * @inet_conn_established:
Eric Paris7b41b172008-04-23 14:10:25 -0400976 * Sets the connection's peersid to the secmark on skb.
Eric Paris2606fd12010-10-13 16:24:41 -0400977 * @secmark_relabel_packet:
978 * check if the process should be allowed to relabel packets to the given secid
979 * @security_secmark_refcount_inc
980 * tells the LSM to increment the number of secmark labeling rules loaded
981 * @security_secmark_refcount_dec
982 * tells the LSM to decrement the number of secmark labeling rules loaded
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700983 * @req_classify_flow:
984 * Sets the flow's sid to the openreq sid.
Paul Moore2b980db2009-08-28 18:12:43 -0400985 * @tun_dev_create:
986 * Check permissions prior to creating a new TUN device.
987 * @tun_dev_post_create:
988 * This hook allows a module to update or allocate a per-socket security
989 * structure.
990 * @sk contains the newly created sock structure.
991 * @tun_dev_attach:
992 * Check permissions prior to attaching to a persistent TUN device. This
993 * hook can also be used by the module to update any security state
994 * associated with the TUN device's sock structure.
995 * @sk contains the existing sock structure.
Trent Jaegerdf718372005-12-13 23:12:27 -0800996 *
997 * Security hooks for XFRM operations.
998 *
999 * @xfrm_policy_alloc_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001000 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
1001 * Database used by the XFRM system.
Trent Jaegerdf718372005-12-13 23:12:27 -08001002 * @sec_ctx contains the security context information being provided by
1003 * the user-level policy update program (e.g., setkey).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001004 * Allocate a security structure to the xp->security field; the security
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001005 * field is initialized to NULL when the xfrm_policy is allocated.
Trent Jaegerdf718372005-12-13 23:12:27 -08001006 * Return 0 if operation was successful (memory to allocate, legal context)
1007 * @xfrm_policy_clone_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001008 * @old_ctx contains an existing xfrm_sec_ctx.
1009 * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
1010 * Allocate a security structure in new_ctxp that contains the
1011 * information from the old_ctx structure.
Trent Jaegerdf718372005-12-13 23:12:27 -08001012 * Return 0 if operation was successful (memory to allocate).
1013 * @xfrm_policy_free_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001014 * @ctx contains the xfrm_sec_ctx
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001015 * Deallocate xp->security.
1016 * @xfrm_policy_delete_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001017 * @ctx contains the xfrm_sec_ctx.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001018 * Authorize deletion of xp->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001019 * @xfrm_state_alloc_security:
1020 * @x contains the xfrm_state being added to the Security Association
1021 * Database by the XFRM system.
1022 * @sec_ctx contains the security context information being provided by
1023 * the user-level SA generation program (e.g., setkey or racoon).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001024 * @secid contains the secid from which to take the mls portion of the context.
1025 * Allocate a security structure to the x->security field; the security
1026 * field is initialized to NULL when the xfrm_state is allocated. Set the
1027 * context to correspond to either sec_ctx or polsec, with the mls portion
1028 * taken from secid in the latter case.
Trent Jaegerdf718372005-12-13 23:12:27 -08001029 * Return 0 if operation was successful (memory to allocate, legal context).
1030 * @xfrm_state_free_security:
1031 * @x contains the xfrm_state.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001032 * Deallocate x->security.
1033 * @xfrm_state_delete_security:
1034 * @x contains the xfrm_state.
1035 * Authorize deletion of x->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001036 * @xfrm_policy_lookup:
Paul Moore03e1ad72008-04-12 19:07:52 -07001037 * @ctx contains the xfrm_sec_ctx for which the access control is being
Trent Jaegerdf718372005-12-13 23:12:27 -08001038 * checked.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001039 * @fl_secid contains the flow security label that is used to authorize
Trent Jaegerdf718372005-12-13 23:12:27 -08001040 * access to the policy xp.
1041 * @dir contains the direction of the flow (input or output).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001042 * Check permission when a flow selects a xfrm_policy for processing
Trent Jaegerdf718372005-12-13 23:12:27 -08001043 * XFRMs on a packet. The hook is called when selecting either a
1044 * per-socket policy or a generic xfrm policy.
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05001045 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
1046 * on other errors.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001047 * @xfrm_state_pol_flow_match:
1048 * @x contains the state to match.
1049 * @xp contains the policy to check for a match.
1050 * @fl contains the flow to check for a match.
1051 * Return 1 if there is a match.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001052 * @xfrm_decode_session:
1053 * @skb points to skb to decode.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001054 * @secid points to the flow key secid to set.
1055 * @ckall says if all xfrms used should be checked for same secid.
1056 * Return 0 if ckall is zero or all xfrms used have the same secid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 *
David Howells29db9192005-10-30 15:02:44 -08001058 * Security hooks affecting all Key Management operations
1059 *
1060 * @key_alloc:
1061 * Permit allocation of a key and assign security data. Note that key does
1062 * not have a serial number assigned at this point.
1063 * @key points to the key.
David Howells7e047ef2006-06-26 00:24:50 -07001064 * @flags is the allocation flags
David Howells29db9192005-10-30 15:02:44 -08001065 * Return 0 if permission is granted, -ve error otherwise.
1066 * @key_free:
1067 * Notification of destruction; free security data.
1068 * @key points to the key.
1069 * No return value.
1070 * @key_permission:
1071 * See whether a specific operational right is granted to a process on a
Eric Paris7b41b172008-04-23 14:10:25 -04001072 * key.
David Howells29db9192005-10-30 15:02:44 -08001073 * @key_ref refers to the key (key pointer + possession attribute bit).
David Howellsd84f4f92008-11-14 10:39:23 +11001074 * @cred points to the credentials to provide the context against which to
Eric Paris7b41b172008-04-23 14:10:25 -04001075 * evaluate the security data on the key.
David Howells29db9192005-10-30 15:02:44 -08001076 * @perm describes the combination of permissions required of this key.
Tetsuo Handaad9c2b02010-11-30 11:06:47 +09001077 * Return 0 if permission is granted, -ve error otherwise.
David Howells70a5bb72008-04-29 01:01:26 -07001078 * @key_getsecurity:
1079 * Get a textual representation of the security context attached to a key
1080 * for the purposes of honouring KEYCTL_GETSECURITY. This function
1081 * allocates the storage for the NUL-terminated string and the caller
1082 * should free it.
1083 * @key points to the key to be queried.
1084 * @_buffer points to a pointer that should be set to point to the
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -07001085 * resulting string (if no label or an error occurs).
David Howells70a5bb72008-04-29 01:01:26 -07001086 * Return the length of the string (including terminating NUL) or -ve if
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -07001087 * an error.
David Howells70a5bb72008-04-29 01:01:26 -07001088 * May also return 0 (and a NULL buffer pointer) if there is no label.
David Howells29db9192005-10-30 15:02:44 -08001089 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 * Security hooks affecting all System V IPC operations.
1091 *
1092 * @ipc_permission:
1093 * Check permissions for access to IPC
1094 * @ipcp contains the kernel IPC permission structure
1095 * @flag contains the desired (requested) permission set
1096 * Return 0 if permission is granted.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001097 * @ipc_getsecid:
1098 * Get the secid associated with the ipc object.
1099 * @ipcp contains the kernel IPC permission structure.
1100 * @secid contains a pointer to the location where result will be saved.
1101 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 *
1103 * Security hooks for individual messages held in System V IPC message queues
1104 * @msg_msg_alloc_security:
1105 * Allocate and attach a security structure to the msg->security field.
1106 * The security field is initialized to NULL when the structure is first
1107 * created.
1108 * @msg contains the message structure to be modified.
1109 * Return 0 if operation was successful and permission is granted.
1110 * @msg_msg_free_security:
1111 * Deallocate the security structure for this message.
1112 * @msg contains the message structure to be modified.
1113 *
1114 * Security hooks for System V IPC Message Queues
1115 *
1116 * @msg_queue_alloc_security:
1117 * Allocate and attach a security structure to the
1118 * msq->q_perm.security field. The security field is initialized to
1119 * NULL when the structure is first created.
1120 * @msq contains the message queue structure to be modified.
1121 * Return 0 if operation was successful and permission is granted.
1122 * @msg_queue_free_security:
1123 * Deallocate security structure for this message queue.
1124 * @msq contains the message queue structure to be modified.
1125 * @msg_queue_associate:
1126 * Check permission when a message queue is requested through the
1127 * msgget system call. This hook is only called when returning the
1128 * message queue identifier for an existing message queue, not when a
1129 * new message queue is created.
1130 * @msq contains the message queue to act upon.
1131 * @msqflg contains the operation control flags.
1132 * Return 0 if permission is granted.
1133 * @msg_queue_msgctl:
1134 * Check permission when a message control operation specified by @cmd
1135 * is to be performed on the message queue @msq.
1136 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1137 * @msq contains the message queue to act upon. May be NULL.
1138 * @cmd contains the operation to be performed.
Eric Paris7b41b172008-04-23 14:10:25 -04001139 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 * @msg_queue_msgsnd:
1141 * Check permission before a message, @msg, is enqueued on the message
1142 * queue, @msq.
1143 * @msq contains the message queue to send message to.
1144 * @msg contains the message to be enqueued.
1145 * @msqflg contains operational flags.
1146 * Return 0 if permission is granted.
1147 * @msg_queue_msgrcv:
1148 * Check permission before a message, @msg, is removed from the message
Eric Paris7b41b172008-04-23 14:10:25 -04001149 * queue, @msq. The @target task structure contains a pointer to the
1150 * process that will be receiving the message (not equal to the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 * process when inline receives are being performed).
1152 * @msq contains the message queue to retrieve message from.
1153 * @msg contains the message destination.
1154 * @target contains the task structure for recipient process.
1155 * @type contains the type of message requested.
1156 * @mode contains the operational flags.
1157 * Return 0 if permission is granted.
1158 *
1159 * Security hooks for System V Shared Memory Segments
1160 *
1161 * @shm_alloc_security:
1162 * Allocate and attach a security structure to the shp->shm_perm.security
1163 * field. The security field is initialized to NULL when the structure is
1164 * first created.
1165 * @shp contains the shared memory structure to be modified.
1166 * Return 0 if operation was successful and permission is granted.
1167 * @shm_free_security:
1168 * Deallocate the security struct for this memory segment.
1169 * @shp contains the shared memory structure to be modified.
1170 * @shm_associate:
1171 * Check permission when a shared memory region is requested through the
1172 * shmget system call. This hook is only called when returning the shared
1173 * memory region identifier for an existing region, not when a new shared
1174 * memory region is created.
1175 * @shp contains the shared memory structure to be modified.
1176 * @shmflg contains the operation control flags.
1177 * Return 0 if permission is granted.
1178 * @shm_shmctl:
1179 * Check permission when a shared memory control operation specified by
1180 * @cmd is to be performed on the shared memory region @shp.
1181 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1182 * @shp contains shared memory structure to be modified.
1183 * @cmd contains the operation to be performed.
1184 * Return 0 if permission is granted.
1185 * @shm_shmat:
1186 * Check permissions prior to allowing the shmat system call to attach the
1187 * shared memory segment @shp to the data segment of the calling process.
1188 * The attaching address is specified by @shmaddr.
1189 * @shp contains the shared memory structure to be modified.
1190 * @shmaddr contains the address to attach memory region to.
1191 * @shmflg contains the operational flags.
1192 * Return 0 if permission is granted.
1193 *
1194 * Security hooks for System V Semaphores
1195 *
1196 * @sem_alloc_security:
1197 * Allocate and attach a security structure to the sma->sem_perm.security
1198 * field. The security field is initialized to NULL when the structure is
1199 * first created.
1200 * @sma contains the semaphore structure
1201 * Return 0 if operation was successful and permission is granted.
1202 * @sem_free_security:
1203 * deallocate security struct for this semaphore
1204 * @sma contains the semaphore structure.
1205 * @sem_associate:
1206 * Check permission when a semaphore is requested through the semget
1207 * system call. This hook is only called when returning the semaphore
1208 * identifier for an existing semaphore, not when a new one must be
1209 * created.
1210 * @sma contains the semaphore structure.
1211 * @semflg contains the operation control flags.
1212 * Return 0 if permission is granted.
1213 * @sem_semctl:
1214 * Check permission when a semaphore operation specified by @cmd is to be
Eric Paris7b41b172008-04-23 14:10:25 -04001215 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 * IPC_INFO or SEM_INFO.
1217 * @sma contains the semaphore structure. May be NULL.
1218 * @cmd contains the operation to be performed.
1219 * Return 0 if permission is granted.
1220 * @sem_semop
1221 * Check permissions before performing operations on members of the
Eric Paris7b41b172008-04-23 14:10:25 -04001222 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1223 * may be modified.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * @sma contains the semaphore structure.
1225 * @sops contains the operations to perform.
1226 * @nsops contains the number of operations to perform.
1227 * @alter contains the flag indicating whether changes are to be made.
1228 * Return 0 if permission is granted.
1229 *
Ingo Molnar9e488582009-05-07 19:26:19 +10001230 * @ptrace_access_check:
David Howells5cd9c582008-08-14 11:37:28 +01001231 * Check permission before allowing the current process to trace the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * @child process.
1233 * Security modules may also want to perform a process tracing check
1234 * during an execve in the set_security or apply_creds hooks of
David Howellsd84f4f92008-11-14 10:39:23 +11001235 * tracing check during an execve in the bprm_set_creds hook of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 * binprm_security_ops if the process is being traced and its security
1237 * attributes would be changed by the execve.
David Howells5cd9c582008-08-14 11:37:28 +01001238 * @child contains the task_struct structure for the target process.
Stephen Smalley006ebb42008-05-19 08:32:49 -04001239 * @mode contains the PTRACE_MODE flags indicating the form of access.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * Return 0 if permission is granted.
David Howells5cd9c582008-08-14 11:37:28 +01001241 * @ptrace_traceme:
1242 * Check that the @parent process has sufficient permission to trace the
1243 * current process before allowing the current process to present itself
1244 * to the @parent process for tracing.
Ingo Molnar9e488582009-05-07 19:26:19 +10001245 * The parent process will still have to undergo the ptrace_access_check
David Howells5cd9c582008-08-14 11:37:28 +01001246 * checks before it is allowed to trace this one.
1247 * @parent contains the task_struct structure for debugger process.
1248 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 * @capget:
1250 * Get the @effective, @inheritable, and @permitted capability sets for
1251 * the @target process. The hook may also perform permission checking to
1252 * determine if the current process is allowed to see the capability sets
1253 * of the @target process.
1254 * @target contains the task_struct structure for target process.
1255 * @effective contains the effective capability set.
1256 * @inheritable contains the inheritable capability set.
1257 * @permitted contains the permitted capability set.
1258 * Return 0 if the capability sets were successfully obtained.
David Howellsd84f4f92008-11-14 10:39:23 +11001259 * @capset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 * Set the @effective, @inheritable, and @permitted capability sets for
David Howells1cdcbec2008-11-14 10:39:14 +11001261 * the current process.
David Howellsd84f4f92008-11-14 10:39:23 +11001262 * @new contains the new credentials structure for target process.
1263 * @old contains the current credentials structure for target process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 * @effective contains the effective capability set.
1265 * @inheritable contains the inheritable capability set.
1266 * @permitted contains the permitted capability set.
David Howellsd84f4f92008-11-14 10:39:23 +11001267 * Return 0 and update @new if permission is granted.
Chris Wright12b59892006-03-25 03:07:41 -08001268 * @capable:
David Howells3699c532009-01-06 22:27:01 +00001269 * Check whether the @tsk process has the @cap capability in the indicated
1270 * credentials.
David Howells3699c532009-01-06 22:27:01 +00001271 * @cred contains the credentials to use.
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -07001272 * @ns contains the user namespace we want the capability in
Chris Wright12b59892006-03-25 03:07:41 -08001273 * @cap contains the capability <include/linux/capability.h>.
David Howells3699c532009-01-06 22:27:01 +00001274 * @audit: Whether to write an audit message or not
Chris Wright12b59892006-03-25 03:07:41 -08001275 * Return 0 if the capability is granted for @tsk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 * @syslog:
1277 * Check permission before accessing the kernel message ring or changing
1278 * logging to the console.
Eric Paris7b41b172008-04-23 14:10:25 -04001279 * See the syslog(2) manual page for an explanation of the @type values.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 * @type contains the type of action.
Kees Cook00234592010-02-03 15:36:43 -08001281 * @from_file indicates the context of action (if it came from /proc).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * Return 0 if permission is granted.
1283 * @settime:
1284 * Check permission to change the system time.
1285 * struct timespec and timezone are defined in include/linux/time.h
1286 * @ts contains new time
1287 * @tz contains new timezone
1288 * Return 0 if permission is granted.
1289 * @vm_enough_memory:
1290 * Check permissions for allocating a new virtual mapping.
Alan Cox34b4e4a2007-08-22 14:01:28 -07001291 * @mm contains the mm struct it is being added to.
Eric Paris7b41b172008-04-23 14:10:25 -04001292 * @pages contains the number of pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 * Return 0 if permission is granted.
1294 *
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001295 * @secid_to_secctx:
Eric Parisd5630b92010-10-13 16:24:48 -04001296 * Convert secid to security context. If secdata is NULL the length of
1297 * the result will be returned in seclen, but no secdata will be returned.
1298 * This does mean that the length could change between calls to check the
1299 * length and the next call which actually allocates and returns the secdata.
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001300 * @secid contains the security ID.
1301 * @secdata contains the pointer that stores the converted security context.
Eric Parisd5630b92010-10-13 16:24:48 -04001302 * @seclen pointer which contains the length of the data
David Howells63cb3442008-01-15 23:47:35 +00001303 * @secctx_to_secid:
Eric Paris7b41b172008-04-23 14:10:25 -04001304 * Convert security context to secid.
1305 * @secid contains the pointer to the generated security ID.
1306 * @secdata contains the security context.
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001307 *
1308 * @release_secctx:
1309 * Release the security context.
1310 * @secdata contains the security context.
1311 * @seclen contains the length of the security context.
1312 *
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001313 * Security hooks for Audit
1314 *
1315 * @audit_rule_init:
1316 * Allocate and initialize an LSM audit rule structure.
1317 * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
1318 * @op contains the operator the rule uses.
1319 * @rulestr contains the context where the rule will be applied to.
1320 * @lsmrule contains a pointer to receive the result.
1321 * Return 0 if @lsmrule has been successfully set,
1322 * -EINVAL in case of an invalid rule.
1323 *
1324 * @audit_rule_known:
1325 * Specifies whether given @rule contains any fields related to current LSM.
1326 * @rule contains the audit rule of interest.
1327 * Return 1 in case of relation found, 0 otherwise.
1328 *
1329 * @audit_rule_match:
1330 * Determine if given @secid matches a rule previously approved
1331 * by @audit_rule_known.
1332 * @secid contains the security id in question.
1333 * @field contains the field which relates to current LSM.
1334 * @op contains the operator that will be used for matching.
1335 * @rule points to the audit rule that will be checked against.
1336 * @actx points to the audit context associated with the check.
1337 * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1338 *
1339 * @audit_rule_free:
1340 * Deallocate the LSM audit rule structure previously allocated by
1341 * audit_rule_init.
1342 * @rule contains the allocated rule
1343 *
David P. Quigley1ee65e32009-09-03 14:25:57 -04001344 * @inode_notifysecctx:
1345 * Notify the security module of what the security context of an inode
1346 * should be. Initializes the incore security context managed by the
1347 * security module for this inode. Example usage: NFS client invokes
1348 * this hook to initialize the security context in its incore inode to the
1349 * value provided by the server for the file when the server returned the
1350 * file's attributes to the client.
1351 *
1352 * Must be called with inode->i_mutex locked.
1353 *
1354 * @inode we wish to set the security context of.
1355 * @ctx contains the string which we wish to set in the inode.
1356 * @ctxlen contains the length of @ctx.
1357 *
1358 * @inode_setsecctx:
1359 * Change the security context of an inode. Updates the
1360 * incore security context managed by the security module and invokes the
1361 * fs code as needed (via __vfs_setxattr_noperm) to update any backing
1362 * xattrs that represent the context. Example usage: NFS server invokes
1363 * this hook to change the security context in its incore inode and on the
1364 * backing filesystem to a value provided by the client on a SETATTR
1365 * operation.
1366 *
1367 * Must be called with inode->i_mutex locked.
1368 *
1369 * @dentry contains the inode we wish to set the security context of.
1370 * @ctx contains the string which we wish to set in the inode.
1371 * @ctxlen contains the length of @ctx.
1372 *
1373 * @inode_getsecctx:
Vsevolod Alekseev11be0b32011-11-05 02:35:28 -07001374 * Returns a string containing all relevant security context information
David P. Quigley1ee65e32009-09-03 14:25:57 -04001375 *
rongqing.li@windriver.comfc9ff9b2011-09-06 11:35:36 +08001376 * @inode we wish to get the security context of.
David P. Quigley1ee65e32009-09-03 14:25:57 -04001377 * @ctx is a pointer in which to place the allocated security context.
1378 * @ctxlen points to the place to put the length of @ctx.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 * This is the main security structure.
1380 */
1381struct security_operations {
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001382 char name[SECURITY_NAME_MAX + 1];
1383
Stephen Smalley48a23702012-11-05 08:15:34 -05001384 int (*binder_set_context_mgr) (struct task_struct *mgr);
1385 int (*binder_transaction) (struct task_struct *from, struct task_struct *to);
1386 int (*binder_transfer_binder) (struct task_struct *from, struct task_struct *to);
1387 int (*binder_transfer_file) (struct task_struct *from, struct task_struct *to, struct file *file);
1388
Ingo Molnar9e488582009-05-07 19:26:19 +10001389 int (*ptrace_access_check) (struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001390 int (*ptrace_traceme) (struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -04001391 int (*capget) (struct task_struct *target,
1392 kernel_cap_t *effective,
1393 kernel_cap_t *inheritable, kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001394 int (*capset) (struct cred *new,
1395 const struct cred *old,
1396 const kernel_cap_t *effective,
1397 const kernel_cap_t *inheritable,
1398 const kernel_cap_t *permitted);
Eric Paris6a9de492012-01-03 12:25:14 -05001399 int (*capable) (const struct cred *cred, struct user_namespace *ns,
1400 int cap, int audit);
Eric Paris7b41b172008-04-23 14:10:25 -04001401 int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1402 int (*quota_on) (struct dentry *dentry);
Eric Paris12b30522010-11-15 18:36:29 -05001403 int (*syslog) (int type);
Richard Cochran1e6d7672011-02-01 13:50:58 +00001404 int (*settime) (const struct timespec *ts, const struct timezone *tz);
Alan Cox34b4e4a2007-08-22 14:01:28 -07001405 int (*vm_enough_memory) (struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
David Howellsa6f76f22008-11-14 10:39:24 +11001407 int (*bprm_set_creds) (struct linux_binprm *bprm);
Eric Paris7b41b172008-04-23 14:10:25 -04001408 int (*bprm_check_security) (struct linux_binprm *bprm);
1409 int (*bprm_secureexec) (struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001410 void (*bprm_committing_creds) (struct linux_binprm *bprm);
1411 void (*bprm_committed_creds) (struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Eric Paris7b41b172008-04-23 14:10:25 -04001413 int (*sb_alloc_security) (struct super_block *sb);
1414 void (*sb_free_security) (struct super_block *sb);
1415 int (*sb_copy_data) (char *orig, char *copy);
Eric Parisff36fe22011-03-03 16:09:14 -05001416 int (*sb_remount) (struct super_block *sb, void *data);
James Morris12204e22008-12-19 10:44:42 +11001417 int (*sb_kern_mount) (struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001418 int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
David Howells726c3342006-06-23 02:02:58 -07001419 int (*sb_statfs) (struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001420 int (*sb_mount) (char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 char *type, unsigned long flags, void *data);
Eric Paris7b41b172008-04-23 14:10:25 -04001422 int (*sb_umount) (struct vfsmount *mnt, int flags);
Al Virob5266eb2008-03-22 17:48:24 -04001423 int (*sb_pivotroot) (struct path *old_path,
1424 struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001425 int (*sb_set_mnt_opts) (struct super_block *sb,
1426 struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001427 void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1428 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001429 int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001431#ifdef CONFIG_SECURITY_PATH
1432 int (*path_unlink) (struct path *dir, struct dentry *dentry);
Al Viro4572bef2011-11-21 14:56:21 -05001433 int (*path_mkdir) (struct path *dir, struct dentry *dentry, umode_t mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001434 int (*path_rmdir) (struct path *dir, struct dentry *dentry);
Al Viro04fc66e2011-11-21 14:58:38 -05001435 int (*path_mknod) (struct path *dir, struct dentry *dentry, umode_t mode,
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001436 unsigned int dev);
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001437 int (*path_truncate) (struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001438 int (*path_symlink) (struct path *dir, struct dentry *dentry,
1439 const char *old_name);
1440 int (*path_link) (struct dentry *old_dentry, struct path *new_dir,
1441 struct dentry *new_dentry);
1442 int (*path_rename) (struct path *old_dir, struct dentry *old_dentry,
1443 struct path *new_dir, struct dentry *new_dentry);
Al Virocdcf1162011-12-08 10:51:53 -05001444 int (*path_chmod) (struct path *path, umode_t mode);
Tetsuo Handa89eda062009-10-04 21:49:47 +09001445 int (*path_chown) (struct path *path, uid_t uid, gid_t gid);
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09001446 int (*path_chroot) (struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001447#endif
1448
Eric Paris7b41b172008-04-23 14:10:25 -04001449 int (*inode_alloc_security) (struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 void (*inode_free_security) (struct inode *inode);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07001451 int (*inode_init_security) (struct inode *inode, struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05001452 const struct qstr *qstr, char **name,
1453 void **value, size_t *len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 int (*inode_create) (struct inode *dir,
Al Viro4acdaf22011-07-26 01:42:34 -04001455 struct dentry *dentry, umode_t mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 int (*inode_link) (struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001457 struct inode *dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1459 int (*inode_symlink) (struct inode *dir,
Eric Paris7b41b172008-04-23 14:10:25 -04001460 struct dentry *dentry, const char *old_name);
Al Viro18bb1db2011-07-26 01:41:39 -04001461 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, umode_t mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1463 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
Al Viro1a67aaf2011-07-26 01:52:52 -04001464 umode_t mode, dev_t dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001466 struct inode *new_dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 int (*inode_readlink) (struct dentry *dentry);
1468 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
Al Viroe74f71e2011-06-20 19:38:15 -04001469 int (*inode_permission) (struct inode *inode, int mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1471 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001472 int (*inode_setxattr) (struct dentry *dentry, const char *name,
1473 const void *value, size_t size, int flags);
1474 void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
1475 const void *value, size_t size, int flags);
1476 int (*inode_getxattr) (struct dentry *dentry, const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 int (*inode_listxattr) (struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001478 int (*inode_removexattr) (struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001479 int (*inode_need_killpriv) (struct dentry *dentry);
1480 int (*inode_killpriv) (struct dentry *dentry);
Eric Paris7b41b172008-04-23 14:10:25 -04001481 int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
1482 int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
1483 int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
1484 void (*inode_getsecid) (const struct inode *inode, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Eric Paris7b41b172008-04-23 14:10:25 -04001486 int (*file_permission) (struct file *file, int mask);
1487 int (*file_alloc_security) (struct file *file);
1488 void (*file_free_security) (struct file *file);
1489 int (*file_ioctl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001491 int (*file_mmap) (struct file *file,
Eric Parised032182007-06-28 15:55:21 -04001492 unsigned long reqprot, unsigned long prot,
1493 unsigned long flags, unsigned long addr,
1494 unsigned long addr_only);
Eric Paris7b41b172008-04-23 14:10:25 -04001495 int (*file_mprotect) (struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 unsigned long reqprot,
1497 unsigned long prot);
Eric Paris7b41b172008-04-23 14:10:25 -04001498 int (*file_lock) (struct file *file, unsigned int cmd);
1499 int (*file_fcntl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001501 int (*file_set_fowner) (struct file *file);
1502 int (*file_send_sigiotask) (struct task_struct *tsk,
1503 struct fown_struct *fown, int sig);
1504 int (*file_receive) (struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001505 int (*dentry_open) (struct file *file, const struct cred *cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 int (*task_create) (unsigned long clone_flags);
Kees Cook1a2a4d02011-12-21 12:17:03 -08001508 void (*task_free) (struct task_struct *task);
David Howellsee18d642009-09-02 09:14:21 +01001509 int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp);
David Howellsf1752ee2008-11-14 10:39:17 +11001510 void (*cred_free) (struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001511 int (*cred_prepare)(struct cred *new, const struct cred *old,
1512 gfp_t gfp);
David Howellsee18d642009-09-02 09:14:21 +01001513 void (*cred_transfer)(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001514 int (*kernel_act_as)(struct cred *new, u32 secid);
1515 int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
Eric Parisdd8dbf22009-11-03 16:35:32 +11001516 int (*kernel_module_request)(char *kmod_name);
David Howellsd84f4f92008-11-14 10:39:23 +11001517 int (*task_fix_setuid) (struct cred *new, const struct cred *old,
1518 int flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001519 int (*task_setpgid) (struct task_struct *p, pid_t pgid);
1520 int (*task_getpgid) (struct task_struct *p);
1521 int (*task_getsid) (struct task_struct *p);
1522 void (*task_getsecid) (struct task_struct *p, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001523 int (*task_setnice) (struct task_struct *p, int nice);
1524 int (*task_setioprio) (struct task_struct *p, int ioprio);
1525 int (*task_getioprio) (struct task_struct *p);
Jiri Slaby8fd00b42009-08-26 18:41:16 +02001526 int (*task_setrlimit) (struct task_struct *p, unsigned int resource,
1527 struct rlimit *new_rlim);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001528 int (*task_setscheduler) (struct task_struct *p);
Eric Paris7b41b172008-04-23 14:10:25 -04001529 int (*task_getscheduler) (struct task_struct *p);
1530 int (*task_movememory) (struct task_struct *p);
1531 int (*task_kill) (struct task_struct *p,
1532 struct siginfo *info, int sig, u32 secid);
1533 int (*task_wait) (struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int (*task_prctl) (int option, unsigned long arg2,
1535 unsigned long arg3, unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11001536 unsigned long arg5);
Eric Paris7b41b172008-04-23 14:10:25 -04001537 void (*task_to_inode) (struct task_struct *p, struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Eric Paris7b41b172008-04-23 14:10:25 -04001539 int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001540 void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Eric Paris7b41b172008-04-23 14:10:25 -04001542 int (*msg_msg_alloc_security) (struct msg_msg *msg);
1543 void (*msg_msg_free_security) (struct msg_msg *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Eric Paris7b41b172008-04-23 14:10:25 -04001545 int (*msg_queue_alloc_security) (struct msg_queue *msq);
1546 void (*msg_queue_free_security) (struct msg_queue *msq);
1547 int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
1548 int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
1549 int (*msg_queue_msgsnd) (struct msg_queue *msq,
1550 struct msg_msg *msg, int msqflg);
1551 int (*msg_queue_msgrcv) (struct msg_queue *msq,
1552 struct msg_msg *msg,
1553 struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 long type, int mode);
1555
Eric Paris7b41b172008-04-23 14:10:25 -04001556 int (*shm_alloc_security) (struct shmid_kernel *shp);
1557 void (*shm_free_security) (struct shmid_kernel *shp);
1558 int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
1559 int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
1560 int (*shm_shmat) (struct shmid_kernel *shp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 char __user *shmaddr, int shmflg);
1562
Eric Paris7b41b172008-04-23 14:10:25 -04001563 int (*sem_alloc_security) (struct sem_array *sma);
1564 void (*sem_free_security) (struct sem_array *sma);
1565 int (*sem_associate) (struct sem_array *sma, int semflg);
1566 int (*sem_semctl) (struct sem_array *sma, int cmd);
1567 int (*sem_semop) (struct sem_array *sma,
1568 struct sembuf *sops, unsigned nsops, int alter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Eric Paris7b41b172008-04-23 14:10:25 -04001570 int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1573
Eric Paris7b41b172008-04-23 14:10:25 -04001574 int (*getprocattr) (struct task_struct *p, char *name, char **value);
1575 int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
1576 int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001577 int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001578 void (*release_secctx) (char *secdata, u32 seclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
David P. Quigley1ee65e32009-09-03 14:25:57 -04001580 int (*inode_notifysecctx)(struct inode *inode, void *ctx, u32 ctxlen);
1581 int (*inode_setsecctx)(struct dentry *dentry, void *ctx, u32 ctxlen);
1582 int (*inode_getsecctx)(struct inode *inode, void **ctx, u32 *ctxlen);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584#ifdef CONFIG_SECURITY_NETWORK
David S. Miller3610cda2011-01-05 15:38:53 -08001585 int (*unix_stream_connect) (struct sock *sock, struct sock *other, struct sock *newsk);
Eric Paris7b41b172008-04-23 14:10:25 -04001586 int (*unix_may_send) (struct socket *sock, struct socket *other);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 int (*socket_create) (int family, int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001589 int (*socket_post_create) (struct socket *sock, int family,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001590 int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001591 int (*socket_bind) (struct socket *sock,
1592 struct sockaddr *address, int addrlen);
1593 int (*socket_connect) (struct socket *sock,
1594 struct sockaddr *address, int addrlen);
1595 int (*socket_listen) (struct socket *sock, int backlog);
1596 int (*socket_accept) (struct socket *sock, struct socket *newsock);
Eric Paris7b41b172008-04-23 14:10:25 -04001597 int (*socket_sendmsg) (struct socket *sock,
1598 struct msghdr *msg, int size);
1599 int (*socket_recvmsg) (struct socket *sock,
1600 struct msghdr *msg, int size, int flags);
1601 int (*socket_getsockname) (struct socket *sock);
1602 int (*socket_getpeername) (struct socket *sock);
1603 int (*socket_getsockopt) (struct socket *sock, int level, int optname);
1604 int (*socket_setsockopt) (struct socket *sock, int level, int optname);
1605 int (*socket_shutdown) (struct socket *sock, int how);
1606 int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08001607 int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001608 int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
Al Viro7d877f32005-10-21 03:20:43 -04001609 int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 void (*sk_free_security) (struct sock *sk);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07001611 void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001612 void (*sk_getsecid) (struct sock *sk, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001613 void (*sock_graft) (struct sock *sk, struct socket *parent);
1614 int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
1615 struct request_sock *req);
1616 void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
1617 void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
Eric Paris2606fd12010-10-13 16:24:41 -04001618 int (*secmark_relabel_packet) (u32 secid);
1619 void (*secmark_refcount_inc) (void);
1620 void (*secmark_refcount_dec) (void);
Eric Paris7b41b172008-04-23 14:10:25 -04001621 void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
Paul Moore2b980db2009-08-28 18:12:43 -04001622 int (*tun_dev_create)(void);
1623 void (*tun_dev_post_create)(struct sock *sk);
1624 int (*tun_dev_attach)(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625#endif /* CONFIG_SECURITY_NETWORK */
David Howells29db9192005-10-30 15:02:44 -08001626
Trent Jaegerdf718372005-12-13 23:12:27 -08001627#ifdef CONFIG_SECURITY_NETWORK_XFRM
Paul Moore03e1ad72008-04-12 19:07:52 -07001628 int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001629 struct xfrm_user_sec_ctx *sec_ctx);
Paul Moore03e1ad72008-04-12 19:07:52 -07001630 int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
1631 void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
1632 int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001633 int (*xfrm_state_alloc_security) (struct xfrm_state *x,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001634 struct xfrm_user_sec_ctx *sec_ctx,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001635 u32 secid);
Trent Jaegerdf718372005-12-13 23:12:27 -08001636 void (*xfrm_state_free_security) (struct xfrm_state *x);
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001637 int (*xfrm_state_delete_security) (struct xfrm_state *x);
Eric Paris7b41b172008-04-23 14:10:25 -04001638 int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1639 int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
1640 struct xfrm_policy *xp,
David S. Millere33f7702011-02-22 18:13:15 -08001641 const struct flowi *fl);
Eric Paris7b41b172008-04-23 14:10:25 -04001642 int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
Trent Jaegerdf718372005-12-13 23:12:27 -08001643#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1644
David Howells29db9192005-10-30 15:02:44 -08001645 /* key management security hooks */
1646#ifdef CONFIG_KEYS
David Howellsd84f4f92008-11-14 10:39:23 +11001647 int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001648 void (*key_free) (struct key *key);
1649 int (*key_permission) (key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11001650 const struct cred *cred,
Eric Paris7b41b172008-04-23 14:10:25 -04001651 key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07001652 int (*key_getsecurity)(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08001653#endif /* CONFIG_KEYS */
1654
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001655#ifdef CONFIG_AUDIT
Eric Paris7b41b172008-04-23 14:10:25 -04001656 int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
1657 int (*audit_rule_known) (struct audit_krule *krule);
1658 int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
1659 struct audit_context *actx);
1660 void (*audit_rule_free) (void *lsmrule);
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001661#endif /* CONFIG_AUDIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662};
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664/* prototypes */
Eric Paris7b41b172008-04-23 14:10:25 -04001665extern int security_init(void);
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001666extern int security_module_enable(struct security_operations *ops);
Eric Paris7b41b172008-04-23 14:10:25 -04001667extern int register_security(struct security_operations *ops);
James Morris5dbe3042011-08-30 13:48:53 +10001668extern void __init security_fixup_ops(struct security_operations *ops);
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
James Morris20510f22007-10-16 23:31:32 -07001671/* Security operations */
Stephen Smalley48a23702012-11-05 08:15:34 -05001672int security_binder_set_context_mgr(struct task_struct *mgr);
1673int security_binder_transaction(struct task_struct *from, struct task_struct *to);
1674int security_binder_transfer_binder(struct task_struct *from, struct task_struct *to);
1675int security_binder_transfer_file(struct task_struct *from, struct task_struct *to, struct file *file);
Ingo Molnar9e488582009-05-07 19:26:19 +10001676int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001677int security_ptrace_traceme(struct task_struct *parent);
James Morris20510f22007-10-16 23:31:32 -07001678int security_capget(struct task_struct *target,
Eric Paris7b41b172008-04-23 14:10:25 -04001679 kernel_cap_t *effective,
1680 kernel_cap_t *inheritable,
1681 kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001682int security_capset(struct cred *new, const struct cred *old,
1683 const kernel_cap_t *effective,
1684 const kernel_cap_t *inheritable,
1685 const kernel_cap_t *permitted);
Eric Parisb7e724d2012-01-03 12:25:15 -05001686int security_capable(const struct cred *cred, struct user_namespace *ns,
Serge E. Hallyn34867402011-03-23 16:43:17 -07001687 int cap);
Eric Parisc7eba4a2012-01-03 12:25:15 -05001688int security_capable_noaudit(const struct cred *cred, struct user_namespace *ns,
1689 int cap);
James Morris20510f22007-10-16 23:31:32 -07001690int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1691int security_quota_on(struct dentry *dentry);
Eric Paris12b30522010-11-15 18:36:29 -05001692int security_syslog(int type);
Richard Cochran1e6d7672011-02-01 13:50:58 +00001693int security_settime(const struct timespec *ts, const struct timezone *tz);
James Morris20510f22007-10-16 23:31:32 -07001694int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
David Howellsa6f76f22008-11-14 10:39:24 +11001695int security_bprm_set_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001696int security_bprm_check(struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001697void security_bprm_committing_creds(struct linux_binprm *bprm);
1698void security_bprm_committed_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001699int security_bprm_secureexec(struct linux_binprm *bprm);
1700int security_sb_alloc(struct super_block *sb);
1701void security_sb_free(struct super_block *sb);
Eric Parise0007522008-03-05 10:31:54 -05001702int security_sb_copy_data(char *orig, char *copy);
Eric Parisff36fe22011-03-03 16:09:14 -05001703int security_sb_remount(struct super_block *sb, void *data);
James Morris12204e22008-12-19 10:44:42 +11001704int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001705int security_sb_show_options(struct seq_file *m, struct super_block *sb);
James Morris20510f22007-10-16 23:31:32 -07001706int security_sb_statfs(struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001707int security_sb_mount(char *dev_name, struct path *path,
Eric Paris7b41b172008-04-23 14:10:25 -04001708 char *type, unsigned long flags, void *data);
James Morris20510f22007-10-16 23:31:32 -07001709int security_sb_umount(struct vfsmount *mnt, int flags);
Al Virob5266eb2008-03-22 17:48:24 -04001710int security_sb_pivotroot(struct path *old_path, struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001711int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001712void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1713 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001714int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001715
James Morris20510f22007-10-16 23:31:32 -07001716int security_inode_alloc(struct inode *inode);
1717void security_inode_free(struct inode *inode);
1718int security_inode_init_security(struct inode *inode, struct inode *dir,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04001719 const struct qstr *qstr,
1720 initxattrs initxattrs, void *fs_data);
1721int security_old_inode_init_security(struct inode *inode, struct inode *dir,
1722 const struct qstr *qstr, char **name,
1723 void **value, size_t *len);
Al Viro4acdaf22011-07-26 01:42:34 -04001724int security_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode);
James Morris20510f22007-10-16 23:31:32 -07001725int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1726 struct dentry *new_dentry);
1727int security_inode_unlink(struct inode *dir, struct dentry *dentry);
1728int security_inode_symlink(struct inode *dir, struct dentry *dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001729 const char *old_name);
Al Viro18bb1db2011-07-26 01:41:39 -04001730int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
James Morris20510f22007-10-16 23:31:32 -07001731int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
Al Viro1a67aaf2011-07-26 01:52:52 -04001732int security_inode_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev);
James Morris20510f22007-10-16 23:31:32 -07001733int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001734 struct inode *new_dir, struct dentry *new_dentry);
James Morris20510f22007-10-16 23:31:32 -07001735int security_inode_readlink(struct dentry *dentry);
1736int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
Al Virob77b0642008-07-17 09:37:02 -04001737int security_inode_permission(struct inode *inode, int mask);
James Morris20510f22007-10-16 23:31:32 -07001738int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1739int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001740int security_inode_setxattr(struct dentry *dentry, const char *name,
1741 const void *value, size_t size, int flags);
1742void security_inode_post_setxattr(struct dentry *dentry, const char *name,
1743 const void *value, size_t size, int flags);
1744int security_inode_getxattr(struct dentry *dentry, const char *name);
James Morris20510f22007-10-16 23:31:32 -07001745int security_inode_listxattr(struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001746int security_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001747int security_inode_need_killpriv(struct dentry *dentry);
1748int security_inode_killpriv(struct dentry *dentry);
David P. Quigley42492592008-02-04 22:29:39 -08001749int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
James Morris20510f22007-10-16 23:31:32 -07001750int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1751int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001752void security_inode_getsecid(const struct inode *inode, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001753int security_file_permission(struct file *file, int mask);
1754int security_file_alloc(struct file *file);
1755void security_file_free(struct file *file);
1756int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1757int security_file_mmap(struct file *file, unsigned long reqprot,
1758 unsigned long prot, unsigned long flags,
1759 unsigned long addr, unsigned long addr_only);
1760int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
Eric Paris7b41b172008-04-23 14:10:25 -04001761 unsigned long prot);
James Morris20510f22007-10-16 23:31:32 -07001762int security_file_lock(struct file *file, unsigned int cmd);
1763int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
1764int security_file_set_fowner(struct file *file);
1765int security_file_send_sigiotask(struct task_struct *tsk,
Eric Paris7b41b172008-04-23 14:10:25 -04001766 struct fown_struct *fown, int sig);
James Morris20510f22007-10-16 23:31:32 -07001767int security_file_receive(struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001768int security_dentry_open(struct file *file, const struct cred *cred);
James Morris20510f22007-10-16 23:31:32 -07001769int security_task_create(unsigned long clone_flags);
Kees Cook1a2a4d02011-12-21 12:17:03 -08001770void security_task_free(struct task_struct *task);
David Howellsee18d642009-09-02 09:14:21 +01001771int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
David Howellsf1752ee2008-11-14 10:39:17 +11001772void security_cred_free(struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001773int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
David Howellsee18d642009-09-02 09:14:21 +01001774void security_transfer_creds(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001775int security_kernel_act_as(struct cred *new, u32 secid);
1776int security_kernel_create_files_as(struct cred *new, struct inode *inode);
Eric Parisdd8dbf22009-11-03 16:35:32 +11001777int security_kernel_module_request(char *kmod_name);
David Howellsd84f4f92008-11-14 10:39:23 +11001778int security_task_fix_setuid(struct cred *new, const struct cred *old,
1779 int flags);
James Morris20510f22007-10-16 23:31:32 -07001780int security_task_setpgid(struct task_struct *p, pid_t pgid);
1781int security_task_getpgid(struct task_struct *p);
1782int security_task_getsid(struct task_struct *p);
1783void security_task_getsecid(struct task_struct *p, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001784int security_task_setnice(struct task_struct *p, int nice);
1785int security_task_setioprio(struct task_struct *p, int ioprio);
1786int security_task_getioprio(struct task_struct *p);
Jiri Slaby8fd00b42009-08-26 18:41:16 +02001787int security_task_setrlimit(struct task_struct *p, unsigned int resource,
1788 struct rlimit *new_rlim);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001789int security_task_setscheduler(struct task_struct *p);
James Morris20510f22007-10-16 23:31:32 -07001790int security_task_getscheduler(struct task_struct *p);
1791int security_task_movememory(struct task_struct *p);
1792int security_task_kill(struct task_struct *p, struct siginfo *info,
1793 int sig, u32 secid);
1794int security_task_wait(struct task_struct *p);
1795int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +11001796 unsigned long arg4, unsigned long arg5);
James Morris20510f22007-10-16 23:31:32 -07001797void security_task_to_inode(struct task_struct *p, struct inode *inode);
1798int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001799void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001800int security_msg_msg_alloc(struct msg_msg *msg);
1801void security_msg_msg_free(struct msg_msg *msg);
1802int security_msg_queue_alloc(struct msg_queue *msq);
1803void security_msg_queue_free(struct msg_queue *msq);
1804int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
1805int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
1806int security_msg_queue_msgsnd(struct msg_queue *msq,
Eric Paris7b41b172008-04-23 14:10:25 -04001807 struct msg_msg *msg, int msqflg);
James Morris20510f22007-10-16 23:31:32 -07001808int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
Eric Paris7b41b172008-04-23 14:10:25 -04001809 struct task_struct *target, long type, int mode);
James Morris20510f22007-10-16 23:31:32 -07001810int security_shm_alloc(struct shmid_kernel *shp);
1811void security_shm_free(struct shmid_kernel *shp);
1812int security_shm_associate(struct shmid_kernel *shp, int shmflg);
1813int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
1814int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
1815int security_sem_alloc(struct sem_array *sma);
1816void security_sem_free(struct sem_array *sma);
1817int security_sem_associate(struct sem_array *sma, int semflg);
1818int security_sem_semctl(struct sem_array *sma, int cmd);
1819int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
1820 unsigned nsops, int alter);
Eric Paris7b41b172008-04-23 14:10:25 -04001821void security_d_instantiate(struct dentry *dentry, struct inode *inode);
James Morris20510f22007-10-16 23:31:32 -07001822int security_getprocattr(struct task_struct *p, char *name, char **value);
1823int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
1824int security_netlink_send(struct sock *sk, struct sk_buff *skb);
James Morris20510f22007-10-16 23:31:32 -07001825int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001826int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001827void security_release_secctx(char *secdata, u32 seclen);
1828
David P. Quigley1ee65e32009-09-03 14:25:57 -04001829int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen);
1830int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen);
1831int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832#else /* CONFIG_SECURITY */
Eric Parise0007522008-03-05 10:31:54 -05001833struct security_mnt_opts {
1834};
1835
1836static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
1837{
1838}
1839
1840static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
1841{
1842}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844/*
1845 * This is the default capabilities functionality. Most of these functions
1846 * are just stubbed out, but a few must call the proper capable code.
1847 */
1848
1849static inline int security_init(void)
1850{
1851 return 0;
1852}
1853
Stephen Smalley48a23702012-11-05 08:15:34 -05001854static inline int security_binder_set_context_mgr(struct task_struct *mgr)
1855{
1856 return 0;
1857}
1858
1859static inline int security_binder_transaction(struct task_struct *from, struct task_struct *to)
1860{
1861 return 0;
1862}
1863
1864static inline int security_binder_transfer_binder(struct task_struct *from, struct task_struct *to)
1865{
1866 return 0;
1867}
1868
1869static inline int security_binder_transfer_file(struct task_struct *from, struct task_struct *to, struct file *file)
1870{
1871 return 0;
1872}
1873
Ingo Molnar9e488582009-05-07 19:26:19 +10001874static inline int security_ptrace_access_check(struct task_struct *child,
David Howells5cd9c582008-08-14 11:37:28 +01001875 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
Ingo Molnar9e488582009-05-07 19:26:19 +10001877 return cap_ptrace_access_check(child, mode);
David Howells5cd9c582008-08-14 11:37:28 +01001878}
1879
Alexander Beregalov5e186b52008-08-17 05:34:20 +04001880static inline int security_ptrace_traceme(struct task_struct *parent)
David Howells5cd9c582008-08-14 11:37:28 +01001881{
1882 return cap_ptrace_traceme(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
Eric Paris7b41b172008-04-23 14:10:25 -04001885static inline int security_capget(struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 kernel_cap_t *effective,
1887 kernel_cap_t *inheritable,
1888 kernel_cap_t *permitted)
1889{
Eric Paris7b41b172008-04-23 14:10:25 -04001890 return cap_capget(target, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
David Howellsd84f4f92008-11-14 10:39:23 +11001893static inline int security_capset(struct cred *new,
1894 const struct cred *old,
1895 const kernel_cap_t *effective,
1896 const kernel_cap_t *inheritable,
1897 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
David Howellsd84f4f92008-11-14 10:39:23 +11001899 return cap_capset(new, old, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Eric Parisb7e724d2012-01-03 12:25:15 -05001902static inline int security_capable(const struct cred *cred,
1903 struct user_namespace *ns, int cap)
Chris Wright12b59892006-03-25 03:07:41 -08001904{
Eric Paris6a9de492012-01-03 12:25:14 -05001905 return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT);
Eric Paris06112162008-11-11 22:02:50 +11001906}
1907
Eric Parisc7eba4a2012-01-03 12:25:15 -05001908static inline int security_capable_noaudit(const struct cred *cred,
1909 struct user_namespace *ns, int cap) {
1910 return cap_capable(cred, ns, cap, SECURITY_CAP_NOAUDIT);
Chris Wright12b59892006-03-25 03:07:41 -08001911}
1912
Eric Paris7b41b172008-04-23 14:10:25 -04001913static inline int security_quotactl(int cmds, int type, int id,
1914 struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
1916 return 0;
1917}
1918
Eric Paris7b41b172008-04-23 14:10:25 -04001919static inline int security_quota_on(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 return 0;
1922}
1923
Eric Paris12b30522010-11-15 18:36:29 -05001924static inline int security_syslog(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Eric Paris12b30522010-11-15 18:36:29 -05001926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927}
1928
Richard Cochran1e6d7672011-02-01 13:50:58 +00001929static inline int security_settime(const struct timespec *ts,
1930 const struct timezone *tz)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
1932 return cap_settime(ts, tz);
1933}
1934
Alan Cox34b4e4a2007-08-22 14:01:28 -07001935static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1936{
1937 return cap_vm_enough_memory(mm, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
David Howellsa6f76f22008-11-14 10:39:24 +11001940static inline int security_bprm_set_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
David Howellsa6f76f22008-11-14 10:39:24 +11001942 return cap_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
Eric Paris7b41b172008-04-23 14:10:25 -04001945static inline int security_bprm_check(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
1947 return 0;
1948}
1949
David Howellsa6f76f22008-11-14 10:39:24 +11001950static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1951{
1952}
1953
1954static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1955{
1956}
1957
Eric Paris7b41b172008-04-23 14:10:25 -04001958static inline int security_bprm_secureexec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
1960 return cap_bprm_secureexec(bprm);
1961}
1962
Eric Paris7b41b172008-04-23 14:10:25 -04001963static inline int security_sb_alloc(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964{
1965 return 0;
1966}
1967
Eric Paris7b41b172008-04-23 14:10:25 -04001968static inline void security_sb_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{ }
1970
Eric Paris7b41b172008-04-23 14:10:25 -04001971static inline int security_sb_copy_data(char *orig, char *copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 return 0;
1974}
1975
Eric Parisff36fe22011-03-03 16:09:14 -05001976static inline int security_sb_remount(struct super_block *sb, void *data)
1977{
1978 return 0;
1979}
1980
James Morris12204e22008-12-19 10:44:42 +11001981static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
1983 return 0;
1984}
1985
Eric Paris2069f452008-07-04 09:47:13 +10001986static inline int security_sb_show_options(struct seq_file *m,
1987 struct super_block *sb)
1988{
1989 return 0;
1990}
1991
Eric Paris7b41b172008-04-23 14:10:25 -04001992static inline int security_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 return 0;
1995}
1996
Eric Paris7b41b172008-04-23 14:10:25 -04001997static inline int security_sb_mount(char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 char *type, unsigned long flags,
1999 void *data)
2000{
2001 return 0;
2002}
2003
Eric Paris7b41b172008-04-23 14:10:25 -04002004static inline int security_sb_umount(struct vfsmount *mnt, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
2006 return 0;
2007}
2008
Eric Paris7b41b172008-04-23 14:10:25 -04002009static inline int security_sb_pivotroot(struct path *old_path,
2010 struct path *new_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
2012 return 0;
2013}
2014
Eric Parise0007522008-03-05 10:31:54 -05002015static inline int security_sb_set_mnt_opts(struct super_block *sb,
2016 struct security_mnt_opts *opts)
2017{
2018 return 0;
2019}
2020
2021static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
2022 struct super_block *newsb)
2023{ }
2024
2025static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
2026{
2027 return 0;
2028}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Eric Paris7b41b172008-04-23 14:10:25 -04002030static inline int security_inode_alloc(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
2032 return 0;
2033}
2034
Eric Paris7b41b172008-04-23 14:10:25 -04002035static inline void security_inode_free(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{ }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002037
Eric Paris7b41b172008-04-23 14:10:25 -04002038static inline int security_inode_init_security(struct inode *inode,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002039 struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05002040 const struct qstr *qstr,
Andrew Morton1933ca82011-11-15 15:11:44 -08002041 const initxattrs initxattrs,
Mimi Zohar9d8f13b2011-06-06 15:29:25 -04002042 void *fs_data)
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002043{
Mimi Zohar1e39f382011-08-15 09:09:16 -04002044 return 0;
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002045}
Eric Paris7b41b172008-04-23 14:10:25 -04002046
Mimi Zohar1e39f382011-08-15 09:09:16 -04002047static inline int security_old_inode_init_security(struct inode *inode,
2048 struct inode *dir,
2049 const struct qstr *qstr,
2050 char **name, void **value,
2051 size_t *len)
Mimi Zohare1c9b232011-08-11 00:22:51 -04002052{
Jan Kara30e05322012-01-03 13:14:29 +01002053 return -EOPNOTSUPP;
Mimi Zohare1c9b232011-08-11 00:22:51 -04002054}
2055
Eric Paris7b41b172008-04-23 14:10:25 -04002056static inline int security_inode_create(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 struct dentry *dentry,
Al Viro4acdaf22011-07-26 01:42:34 -04002058 umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
2060 return 0;
2061}
2062
Eric Paris7b41b172008-04-23 14:10:25 -04002063static inline int security_inode_link(struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct inode *dir,
2065 struct dentry *new_dentry)
2066{
2067 return 0;
2068}
2069
Eric Paris7b41b172008-04-23 14:10:25 -04002070static inline int security_inode_unlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 struct dentry *dentry)
2072{
2073 return 0;
2074}
2075
Eric Paris7b41b172008-04-23 14:10:25 -04002076static inline int security_inode_symlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 struct dentry *dentry,
2078 const char *old_name)
2079{
2080 return 0;
2081}
2082
Eric Paris7b41b172008-04-23 14:10:25 -04002083static inline int security_inode_mkdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct dentry *dentry,
2085 int mode)
2086{
2087 return 0;
2088}
2089
Eric Paris7b41b172008-04-23 14:10:25 -04002090static inline int security_inode_rmdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 struct dentry *dentry)
2092{
2093 return 0;
2094}
2095
Eric Paris7b41b172008-04-23 14:10:25 -04002096static inline int security_inode_mknod(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 struct dentry *dentry,
2098 int mode, dev_t dev)
2099{
2100 return 0;
2101}
2102
Eric Paris7b41b172008-04-23 14:10:25 -04002103static inline int security_inode_rename(struct inode *old_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct dentry *old_dentry,
2105 struct inode *new_dir,
2106 struct dentry *new_dentry)
2107{
2108 return 0;
2109}
2110
Eric Paris7b41b172008-04-23 14:10:25 -04002111static inline int security_inode_readlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 return 0;
2114}
2115
Eric Paris7b41b172008-04-23 14:10:25 -04002116static inline int security_inode_follow_link(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 struct nameidata *nd)
2118{
2119 return 0;
2120}
2121
Al Virob77b0642008-07-17 09:37:02 -04002122static inline int security_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 return 0;
2125}
2126
Eric Paris7b41b172008-04-23 14:10:25 -04002127static inline int security_inode_setattr(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct iattr *attr)
2129{
2130 return 0;
2131}
2132
Eric Paris7b41b172008-04-23 14:10:25 -04002133static inline int security_inode_getattr(struct vfsmount *mnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 struct dentry *dentry)
2135{
2136 return 0;
2137}
2138
David Howells8f0cfa52008-04-29 00:59:41 -07002139static inline int security_inode_setxattr(struct dentry *dentry,
2140 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141{
2142 return cap_inode_setxattr(dentry, name, value, size, flags);
2143}
2144
David Howells8f0cfa52008-04-29 00:59:41 -07002145static inline void security_inode_post_setxattr(struct dentry *dentry,
2146 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{ }
2148
David Howells8f0cfa52008-04-29 00:59:41 -07002149static inline int security_inode_getxattr(struct dentry *dentry,
2150 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151{
2152 return 0;
2153}
2154
Eric Paris7b41b172008-04-23 14:10:25 -04002155static inline int security_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 return 0;
2158}
2159
David Howells8f0cfa52008-04-29 00:59:41 -07002160static inline int security_inode_removexattr(struct dentry *dentry,
2161 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162{
2163 return cap_inode_removexattr(dentry, name);
2164}
2165
Serge E. Hallynb5376772007-10-16 23:31:36 -07002166static inline int security_inode_need_killpriv(struct dentry *dentry)
2167{
2168 return cap_inode_need_killpriv(dentry);
2169}
2170
2171static inline int security_inode_killpriv(struct dentry *dentry)
2172{
2173 return cap_inode_killpriv(dentry);
2174}
2175
David P. Quigley42492592008-02-04 22:29:39 -08002176static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
2178 return -EOPNOTSUPP;
2179}
2180
2181static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2182{
2183 return -EOPNOTSUPP;
2184}
2185
2186static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2187{
2188 return 0;
2189}
2190
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002191static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2192{
2193 *secid = 0;
2194}
2195
Eric Paris7b41b172008-04-23 14:10:25 -04002196static inline int security_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
2198 return 0;
2199}
2200
Eric Paris7b41b172008-04-23 14:10:25 -04002201static inline int security_file_alloc(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
2203 return 0;
2204}
2205
Eric Paris7b41b172008-04-23 14:10:25 -04002206static inline void security_file_free(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{ }
2208
Eric Paris7b41b172008-04-23 14:10:25 -04002209static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2210 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 return 0;
2213}
2214
Eric Paris7b41b172008-04-23 14:10:25 -04002215static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2216 unsigned long prot,
2217 unsigned long flags,
2218 unsigned long addr,
2219 unsigned long addr_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Eric Paris7c738752009-07-31 12:53:58 -04002221 return cap_file_mmap(file, reqprot, prot, flags, addr, addr_only);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
Eric Paris7b41b172008-04-23 14:10:25 -04002224static inline int security_file_mprotect(struct vm_area_struct *vma,
2225 unsigned long reqprot,
2226 unsigned long prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
2228 return 0;
2229}
2230
Eric Paris7b41b172008-04-23 14:10:25 -04002231static inline int security_file_lock(struct file *file, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 return 0;
2234}
2235
Eric Paris7b41b172008-04-23 14:10:25 -04002236static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2237 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
2239 return 0;
2240}
2241
Eric Paris7b41b172008-04-23 14:10:25 -04002242static inline int security_file_set_fowner(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 return 0;
2245}
2246
Eric Paris7b41b172008-04-23 14:10:25 -04002247static inline int security_file_send_sigiotask(struct task_struct *tsk,
2248 struct fown_struct *fown,
2249 int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250{
2251 return 0;
2252}
2253
Eric Paris7b41b172008-04-23 14:10:25 -04002254static inline int security_file_receive(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 return 0;
2257}
2258
David Howells745ca242008-11-14 10:39:22 +11002259static inline int security_dentry_open(struct file *file,
2260 const struct cred *cred)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002261{
2262 return 0;
2263}
2264
Eric Paris7b41b172008-04-23 14:10:25 -04002265static inline int security_task_create(unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
2267 return 0;
2268}
2269
Kees Cook1a2a4d02011-12-21 12:17:03 -08002270static inline void security_task_free(struct task_struct *task)
2271{ }
2272
David Howells945af7c2009-09-04 09:19:48 +01002273static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
2274{
2275 return 0;
2276}
David Howellsee18d642009-09-02 09:14:21 +01002277
David Howellsd84f4f92008-11-14 10:39:23 +11002278static inline void security_cred_free(struct cred *cred)
2279{ }
2280
2281static inline int security_prepare_creds(struct cred *new,
2282 const struct cred *old,
2283 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
2285 return 0;
2286}
2287
David Howellsee18d642009-09-02 09:14:21 +01002288static inline void security_transfer_creds(struct cred *new,
2289 const struct cred *old)
2290{
2291}
2292
David Howells3a3b7ce2008-11-14 10:39:28 +11002293static inline int security_kernel_act_as(struct cred *cred, u32 secid)
2294{
2295 return 0;
2296}
2297
2298static inline int security_kernel_create_files_as(struct cred *cred,
2299 struct inode *inode)
2300{
2301 return 0;
2302}
2303
Eric Parisdd8dbf22009-11-03 16:35:32 +11002304static inline int security_kernel_module_request(char *kmod_name)
Eric Paris91884992009-08-13 09:44:57 -04002305{
2306 return 0;
2307}
2308
David Howellsd84f4f92008-11-14 10:39:23 +11002309static inline int security_task_fix_setuid(struct cred *new,
2310 const struct cred *old,
2311 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
David Howellsd84f4f92008-11-14 10:39:23 +11002313 return cap_task_fix_setuid(new, old, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
Eric Paris7b41b172008-04-23 14:10:25 -04002316static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
2318 return 0;
2319}
2320
Eric Paris7b41b172008-04-23 14:10:25 -04002321static inline int security_task_getpgid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
2323 return 0;
2324}
2325
Eric Paris7b41b172008-04-23 14:10:25 -04002326static inline int security_task_getsid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327{
2328 return 0;
2329}
2330
Eric Paris7b41b172008-04-23 14:10:25 -04002331static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002332{
2333 *secid = 0;
2334}
David Quigleyf9008e42006-06-30 01:55:46 -07002335
Eric Paris7b41b172008-04-23 14:10:25 -04002336static inline int security_task_setnice(struct task_struct *p, int nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002338 return cap_task_setnice(p, nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339}
2340
Eric Paris7b41b172008-04-23 14:10:25 -04002341static inline int security_task_setioprio(struct task_struct *p, int ioprio)
James Morris03e68062006-06-23 02:03:58 -07002342{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002343 return cap_task_setioprio(p, ioprio);
James Morris03e68062006-06-23 02:03:58 -07002344}
2345
Eric Paris7b41b172008-04-23 14:10:25 -04002346static inline int security_task_getioprio(struct task_struct *p)
David Quigleya1836a42006-06-30 01:55:49 -07002347{
2348 return 0;
2349}
2350
Jiri Slaby8fd00b42009-08-26 18:41:16 +02002351static inline int security_task_setrlimit(struct task_struct *p,
2352 unsigned int resource,
Eric Paris7b41b172008-04-23 14:10:25 -04002353 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
2355 return 0;
2356}
2357
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002358static inline int security_task_setscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002360 return cap_task_setscheduler(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Eric Paris7b41b172008-04-23 14:10:25 -04002363static inline int security_task_getscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
2365 return 0;
2366}
2367
Eric Paris7b41b172008-04-23 14:10:25 -04002368static inline int security_task_movememory(struct task_struct *p)
David Quigley35601542006-06-23 02:04:01 -07002369{
2370 return 0;
2371}
2372
Eric Paris7b41b172008-04-23 14:10:25 -04002373static inline int security_task_kill(struct task_struct *p,
2374 struct siginfo *info, int sig,
2375 u32 secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Serge Hallynaedb60a2008-02-29 15:14:57 +00002377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
Eric Paris7b41b172008-04-23 14:10:25 -04002380static inline int security_task_wait(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381{
2382 return 0;
2383}
2384
Eric Paris7b41b172008-04-23 14:10:25 -04002385static inline int security_task_prctl(int option, unsigned long arg2,
2386 unsigned long arg3,
2387 unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11002388 unsigned long arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
David Howellsd84f4f92008-11-14 10:39:23 +11002390 return cap_task_prctl(option, arg2, arg3, arg3, arg5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391}
2392
2393static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2394{ }
2395
Eric Paris7b41b172008-04-23 14:10:25 -04002396static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2397 short flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
2399 return 0;
2400}
2401
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002402static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2403{
2404 *secid = 0;
2405}
2406
Eric Paris7b41b172008-04-23 14:10:25 -04002407static inline int security_msg_msg_alloc(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408{
2409 return 0;
2410}
2411
Eric Paris7b41b172008-04-23 14:10:25 -04002412static inline void security_msg_msg_free(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{ }
2414
Eric Paris7b41b172008-04-23 14:10:25 -04002415static inline int security_msg_queue_alloc(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
2417 return 0;
2418}
2419
Eric Paris7b41b172008-04-23 14:10:25 -04002420static inline void security_msg_queue_free(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{ }
2422
Eric Paris7b41b172008-04-23 14:10:25 -04002423static inline int security_msg_queue_associate(struct msg_queue *msq,
2424 int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425{
2426 return 0;
2427}
2428
Eric Paris7b41b172008-04-23 14:10:25 -04002429static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
2431 return 0;
2432}
2433
Eric Paris7b41b172008-04-23 14:10:25 -04002434static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2435 struct msg_msg *msg, int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
2437 return 0;
2438}
2439
Eric Paris7b41b172008-04-23 14:10:25 -04002440static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2441 struct msg_msg *msg,
2442 struct task_struct *target,
2443 long type, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 return 0;
2446}
2447
Eric Paris7b41b172008-04-23 14:10:25 -04002448static inline int security_shm_alloc(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
2450 return 0;
2451}
2452
Eric Paris7b41b172008-04-23 14:10:25 -04002453static inline void security_shm_free(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{ }
2455
Eric Paris7b41b172008-04-23 14:10:25 -04002456static inline int security_shm_associate(struct shmid_kernel *shp,
2457 int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458{
2459 return 0;
2460}
2461
Eric Paris7b41b172008-04-23 14:10:25 -04002462static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
2464 return 0;
2465}
2466
Eric Paris7b41b172008-04-23 14:10:25 -04002467static inline int security_shm_shmat(struct shmid_kernel *shp,
2468 char __user *shmaddr, int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 return 0;
2471}
2472
Eric Paris7b41b172008-04-23 14:10:25 -04002473static inline int security_sem_alloc(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
2475 return 0;
2476}
2477
Eric Paris7b41b172008-04-23 14:10:25 -04002478static inline void security_sem_free(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{ }
2480
Eric Paris7b41b172008-04-23 14:10:25 -04002481static inline int security_sem_associate(struct sem_array *sma, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
2483 return 0;
2484}
2485
Eric Paris7b41b172008-04-23 14:10:25 -04002486static inline int security_sem_semctl(struct sem_array *sma, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
2488 return 0;
2489}
2490
Eric Paris7b41b172008-04-23 14:10:25 -04002491static inline int security_sem_semop(struct sem_array *sma,
2492 struct sembuf *sops, unsigned nsops,
2493 int alter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 return 0;
2496}
2497
Eric Paris7b41b172008-04-23 14:10:25 -04002498static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{ }
2500
Al Viro04ff9702007-03-12 16:17:58 +00002501static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
2503 return -EINVAL;
2504}
2505
2506static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2507{
2508 return -EINVAL;
2509}
2510
Eric Paris7b41b172008-04-23 14:10:25 -04002511static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Eric Paris7b41b172008-04-23 14:10:25 -04002513 return cap_netlink_send(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514}
2515
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002516static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2517{
2518 return -EOPNOTSUPP;
2519}
2520
David Howells7bf570d2008-04-29 20:52:51 +01002521static inline int security_secctx_to_secid(const char *secdata,
David Howells63cb3442008-01-15 23:47:35 +00002522 u32 seclen,
2523 u32 *secid)
2524{
2525 return -EOPNOTSUPP;
2526}
2527
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002528static inline void security_release_secctx(char *secdata, u32 seclen)
2529{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002530}
David P. Quigley1ee65e32009-09-03 14:25:57 -04002531
2532static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
2533{
2534 return -EOPNOTSUPP;
2535}
2536static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
2537{
2538 return -EOPNOTSUPP;
2539}
2540static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
2541{
2542 return -EOPNOTSUPP;
2543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544#endif /* CONFIG_SECURITY */
2545
2546#ifdef CONFIG_SECURITY_NETWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
David S. Miller3610cda2011-01-05 15:38:53 -08002548int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
James Morris20510f22007-10-16 23:31:32 -07002549int security_unix_may_send(struct socket *sock, struct socket *other);
2550int security_socket_create(int family, int type, int protocol, int kern);
2551int security_socket_post_create(struct socket *sock, int family,
2552 int type, int protocol, int kern);
2553int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2554int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2555int security_socket_listen(struct socket *sock, int backlog);
2556int security_socket_accept(struct socket *sock, struct socket *newsock);
James Morris20510f22007-10-16 23:31:32 -07002557int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2558int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2559 int size, int flags);
2560int security_socket_getsockname(struct socket *sock);
2561int security_socket_getpeername(struct socket *sock);
2562int security_socket_getsockopt(struct socket *sock, int level, int optname);
2563int security_socket_setsockopt(struct socket *sock, int level, int optname);
2564int security_socket_shutdown(struct socket *sock, int how);
2565int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2566int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2567 int __user *optlen, unsigned len);
2568int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2569int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2570void security_sk_free(struct sock *sk);
2571void security_sk_clone(const struct sock *sk, struct sock *newsk);
2572void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2573void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2574void security_sock_graft(struct sock*sk, struct socket *parent);
2575int security_inet_conn_request(struct sock *sk,
2576 struct sk_buff *skb, struct request_sock *req);
2577void security_inet_csk_clone(struct sock *newsk,
2578 const struct request_sock *req);
2579void security_inet_conn_established(struct sock *sk,
2580 struct sk_buff *skb);
Eric Paris2606fd12010-10-13 16:24:41 -04002581int security_secmark_relabel_packet(u32 secid);
2582void security_secmark_refcount_inc(void);
2583void security_secmark_refcount_dec(void);
Paul Moore2b980db2009-08-28 18:12:43 -04002584int security_tun_dev_create(void);
2585void security_tun_dev_post_create(struct sock *sk);
2586int security_tun_dev_attach(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588#else /* CONFIG_SECURITY_NETWORK */
David S. Miller3610cda2011-01-05 15:38:53 -08002589static inline int security_unix_stream_connect(struct sock *sock,
2590 struct sock *other,
Eric Paris7b41b172008-04-23 14:10:25 -04002591 struct sock *newsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
2593 return 0;
2594}
2595
Eric Paris7b41b172008-04-23 14:10:25 -04002596static inline int security_unix_may_send(struct socket *sock,
2597 struct socket *other)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
2599 return 0;
2600}
2601
Eric Paris7b41b172008-04-23 14:10:25 -04002602static inline int security_socket_create(int family, int type,
2603 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
2605 return 0;
2606}
2607
Eric Paris7b41b172008-04-23 14:10:25 -04002608static inline int security_socket_post_create(struct socket *sock,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002609 int family,
2610 int type,
2611 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612{
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
Eric Paris7b41b172008-04-23 14:10:25 -04002616static inline int security_socket_bind(struct socket *sock,
2617 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 int addrlen)
2619{
2620 return 0;
2621}
2622
Eric Paris7b41b172008-04-23 14:10:25 -04002623static inline int security_socket_connect(struct socket *sock,
2624 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 int addrlen)
2626{
2627 return 0;
2628}
2629
Eric Paris7b41b172008-04-23 14:10:25 -04002630static inline int security_socket_listen(struct socket *sock, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
2632 return 0;
2633}
2634
Eric Paris7b41b172008-04-23 14:10:25 -04002635static inline int security_socket_accept(struct socket *sock,
2636 struct socket *newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
2638 return 0;
2639}
2640
Eric Paris7b41b172008-04-23 14:10:25 -04002641static inline int security_socket_sendmsg(struct socket *sock,
2642 struct msghdr *msg, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
2644 return 0;
2645}
2646
Eric Paris7b41b172008-04-23 14:10:25 -04002647static inline int security_socket_recvmsg(struct socket *sock,
2648 struct msghdr *msg, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 int flags)
2650{
2651 return 0;
2652}
2653
Eric Paris7b41b172008-04-23 14:10:25 -04002654static inline int security_socket_getsockname(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655{
2656 return 0;
2657}
2658
Eric Paris7b41b172008-04-23 14:10:25 -04002659static inline int security_socket_getpeername(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
2661 return 0;
2662}
2663
Eric Paris7b41b172008-04-23 14:10:25 -04002664static inline int security_socket_getsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 int level, int optname)
2666{
2667 return 0;
2668}
2669
Eric Paris7b41b172008-04-23 14:10:25 -04002670static inline int security_socket_setsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 int level, int optname)
2672{
2673 return 0;
2674}
2675
Eric Paris7b41b172008-04-23 14:10:25 -04002676static inline int security_socket_shutdown(struct socket *sock, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
2678 return 0;
2679}
Eric Paris7b41b172008-04-23 14:10:25 -04002680static inline int security_sock_rcv_skb(struct sock *sk,
2681 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
2683 return 0;
2684}
2685
Catherine Zhang2c7946a2006-03-20 22:41:23 -08002686static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2687 int __user *optlen, unsigned len)
2688{
2689 return -ENOPROTOOPT;
2690}
2691
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002692static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 return -ENOPROTOOPT;
2695}
2696
Al Virodd0fc662005-10-07 07:46:04 +01002697static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698{
2699 return 0;
2700}
2701
2702static inline void security_sk_free(struct sock *sk)
2703{
2704}
Trent Jaegerdf718372005-12-13 23:12:27 -08002705
Venkat Yekkirala892c1412006-08-04 23:08:56 -07002706static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
2707{
2708}
2709
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002710static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
Trent Jaegerdf718372005-12-13 23:12:27 -08002711{
Trent Jaegerdf718372005-12-13 23:12:27 -08002712}
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002713
2714static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2715{
2716}
2717
Eric Paris7b41b172008-04-23 14:10:25 -04002718static inline void security_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002719{
2720}
2721
2722static inline int security_inet_conn_request(struct sock *sk,
2723 struct sk_buff *skb, struct request_sock *req)
2724{
2725 return 0;
2726}
2727
2728static inline void security_inet_csk_clone(struct sock *newsk,
2729 const struct request_sock *req)
2730{
2731}
Venkat Yekkirala6b877692006-11-08 17:04:09 -06002732
2733static inline void security_inet_conn_established(struct sock *sk,
2734 struct sk_buff *skb)
2735{
2736}
Paul Moore2b980db2009-08-28 18:12:43 -04002737
Eric Paris2606fd12010-10-13 16:24:41 -04002738static inline int security_secmark_relabel_packet(u32 secid)
2739{
2740 return 0;
2741}
2742
2743static inline void security_secmark_refcount_inc(void)
2744{
2745}
2746
2747static inline void security_secmark_refcount_dec(void)
2748{
2749}
2750
Paul Moore2b980db2009-08-28 18:12:43 -04002751static inline int security_tun_dev_create(void)
2752{
2753 return 0;
2754}
2755
2756static inline void security_tun_dev_post_create(struct sock *sk)
2757{
2758}
2759
2760static inline int security_tun_dev_attach(struct sock *sk)
2761{
2762 return 0;
2763}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764#endif /* CONFIG_SECURITY_NETWORK */
2765
Trent Jaegerdf718372005-12-13 23:12:27 -08002766#ifdef CONFIG_SECURITY_NETWORK_XFRM
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002767
Paul Moore03e1ad72008-04-12 19:07:52 -07002768int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2769int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2770void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2771int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
James Morris20510f22007-10-16 23:31:32 -07002772int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2773int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2774 struct xfrm_sec_ctx *polsec, u32 secid);
2775int security_xfrm_state_delete(struct xfrm_state *x);
2776void security_xfrm_state_free(struct xfrm_state *x);
Paul Moore03e1ad72008-04-12 19:07:52 -07002777int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
James Morris20510f22007-10-16 23:31:32 -07002778int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
David S. Millere33f7702011-02-22 18:13:15 -08002779 struct xfrm_policy *xp,
2780 const struct flowi *fl);
James Morris20510f22007-10-16 23:31:32 -07002781int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2782void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
Trent Jaegerdf718372005-12-13 23:12:27 -08002783
Trent Jaegerdf718372005-12-13 23:12:27 -08002784#else /* CONFIG_SECURITY_NETWORK_XFRM */
James Morris20510f22007-10-16 23:31:32 -07002785
Paul Moore03e1ad72008-04-12 19:07:52 -07002786static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -08002787{
2788 return 0;
2789}
2790
Paul Moore03e1ad72008-04-12 19:07:52 -07002791static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
Trent Jaegerdf718372005-12-13 23:12:27 -08002792{
2793 return 0;
2794}
2795
Paul Moore03e1ad72008-04-12 19:07:52 -07002796static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -08002797{
2798}
2799
Paul Moore03e1ad72008-04-12 19:07:52 -07002800static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002801{
2802 return 0;
2803}
2804
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002805static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2806 struct xfrm_user_sec_ctx *sec_ctx)
2807{
2808 return 0;
2809}
2810
2811static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2812 struct xfrm_sec_ctx *polsec, u32 secid)
Trent Jaegerdf718372005-12-13 23:12:27 -08002813{
2814 return 0;
2815}
2816
2817static inline void security_xfrm_state_free(struct xfrm_state *x)
2818{
2819}
2820
David S. Miller6f68dc32006-06-08 23:58:52 -07002821static inline int security_xfrm_state_delete(struct xfrm_state *x)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002822{
2823 return 0;
2824}
2825
Paul Moore03e1ad72008-04-12 19:07:52 -07002826static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
Trent Jaegerdf718372005-12-13 23:12:27 -08002827{
2828 return 0;
2829}
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002830
2831static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
David S. Millere33f7702011-02-22 18:13:15 -08002832 struct xfrm_policy *xp, const struct flowi *fl)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002833{
2834 return 1;
2835}
2836
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002837static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002838{
2839 return 0;
2840}
2841
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002842static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2843{
2844}
2845
Trent Jaegerdf718372005-12-13 23:12:27 -08002846#endif /* CONFIG_SECURITY_NETWORK_XFRM */
2847
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002848#ifdef CONFIG_SECURITY_PATH
2849int security_path_unlink(struct path *dir, struct dentry *dentry);
Al Viro4572bef2011-11-21 14:56:21 -05002850int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002851int security_path_rmdir(struct path *dir, struct dentry *dentry);
Al Viro04fc66e2011-11-21 14:58:38 -05002852int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode,
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002853 unsigned int dev);
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002854int security_path_truncate(struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002855int security_path_symlink(struct path *dir, struct dentry *dentry,
2856 const char *old_name);
2857int security_path_link(struct dentry *old_dentry, struct path *new_dir,
2858 struct dentry *new_dentry);
2859int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
2860 struct path *new_dir, struct dentry *new_dentry);
Al Virocdcf1162011-12-08 10:51:53 -05002861int security_path_chmod(struct path *path, umode_t mode);
Tetsuo Handa89eda062009-10-04 21:49:47 +09002862int security_path_chown(struct path *path, uid_t uid, gid_t gid);
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09002863int security_path_chroot(struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002864#else /* CONFIG_SECURITY_PATH */
2865static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
2866{
2867 return 0;
2868}
2869
2870static inline int security_path_mkdir(struct path *dir, struct dentry *dentry,
Al Viro4572bef2011-11-21 14:56:21 -05002871 umode_t mode)
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002872{
2873 return 0;
2874}
2875
2876static inline int security_path_rmdir(struct path *dir, struct dentry *dentry)
2877{
2878 return 0;
2879}
2880
2881static inline int security_path_mknod(struct path *dir, struct dentry *dentry,
Al Viro04fc66e2011-11-21 14:58:38 -05002882 umode_t mode, unsigned int dev)
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002883{
2884 return 0;
2885}
2886
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002887static inline int security_path_truncate(struct path *path)
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002888{
2889 return 0;
2890}
2891
2892static inline int security_path_symlink(struct path *dir, struct dentry *dentry,
2893 const char *old_name)
2894{
2895 return 0;
2896}
2897
2898static inline int security_path_link(struct dentry *old_dentry,
2899 struct path *new_dir,
2900 struct dentry *new_dentry)
2901{
2902 return 0;
2903}
2904
2905static inline int security_path_rename(struct path *old_dir,
2906 struct dentry *old_dentry,
2907 struct path *new_dir,
2908 struct dentry *new_dentry)
2909{
2910 return 0;
2911}
Tetsuo Handa89eda062009-10-04 21:49:47 +09002912
Al Virocdcf1162011-12-08 10:51:53 -05002913static inline int security_path_chmod(struct path *path, umode_t mode)
Tetsuo Handa89eda062009-10-04 21:49:47 +09002914{
2915 return 0;
2916}
2917
2918static inline int security_path_chown(struct path *path, uid_t uid, gid_t gid)
2919{
2920 return 0;
2921}
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09002922
2923static inline int security_path_chroot(struct path *path)
2924{
2925 return 0;
2926}
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002927#endif /* CONFIG_SECURITY_PATH */
2928
David Howells29db9192005-10-30 15:02:44 -08002929#ifdef CONFIG_KEYS
2930#ifdef CONFIG_SECURITY
David Howells29db9192005-10-30 15:02:44 -08002931
David Howellsd84f4f92008-11-14 10:39:23 +11002932int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
James Morris20510f22007-10-16 23:31:32 -07002933void security_key_free(struct key *key);
2934int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002935 const struct cred *cred, key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07002936int security_key_getsecurity(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08002937
2938#else
2939
Michael LeMayd7200242006-06-22 14:47:17 -07002940static inline int security_key_alloc(struct key *key,
David Howellsd84f4f92008-11-14 10:39:23 +11002941 const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07002942 unsigned long flags)
David Howells29db9192005-10-30 15:02:44 -08002943{
2944 return 0;
2945}
2946
2947static inline void security_key_free(struct key *key)
2948{
2949}
2950
2951static inline int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002952 const struct cred *cred,
David Howells29db9192005-10-30 15:02:44 -08002953 key_perm_t perm)
2954{
2955 return 0;
2956}
2957
David Howells70a5bb72008-04-29 01:01:26 -07002958static inline int security_key_getsecurity(struct key *key, char **_buffer)
2959{
2960 *_buffer = NULL;
2961 return 0;
2962}
2963
David Howells29db9192005-10-30 15:02:44 -08002964#endif
2965#endif /* CONFIG_KEYS */
2966
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02002967#ifdef CONFIG_AUDIT
2968#ifdef CONFIG_SECURITY
2969int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2970int security_audit_rule_known(struct audit_krule *krule);
2971int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2972 struct audit_context *actx);
2973void security_audit_rule_free(void *lsmrule);
2974
2975#else
2976
2977static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2978 void **lsmrule)
2979{
2980 return 0;
2981}
2982
2983static inline int security_audit_rule_known(struct audit_krule *krule)
2984{
2985 return 0;
2986}
2987
2988static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2989 void *lsmrule, struct audit_context *actx)
2990{
2991 return 0;
2992}
2993
2994static inline void security_audit_rule_free(void *lsmrule)
2995{ }
2996
2997#endif /* CONFIG_SECURITY */
2998#endif /* CONFIG_AUDIT */
2999
Eric Parisda318942008-08-22 11:35:57 -04003000#ifdef CONFIG_SECURITYFS
3001
Al Viro52ef0c02011-07-26 04:30:04 -04003002extern struct dentry *securityfs_create_file(const char *name, umode_t mode,
Eric Parisda318942008-08-22 11:35:57 -04003003 struct dentry *parent, void *data,
3004 const struct file_operations *fops);
3005extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
3006extern void securityfs_remove(struct dentry *dentry);
3007
3008#else /* CONFIG_SECURITYFS */
3009
3010static inline struct dentry *securityfs_create_dir(const char *name,
3011 struct dentry *parent)
3012{
3013 return ERR_PTR(-ENODEV);
3014}
3015
3016static inline struct dentry *securityfs_create_file(const char *name,
Al Viro52ef0c02011-07-26 04:30:04 -04003017 umode_t mode,
Eric Parisda318942008-08-22 11:35:57 -04003018 struct dentry *parent,
3019 void *data,
3020 const struct file_operations *fops)
3021{
3022 return ERR_PTR(-ENODEV);
3023}
3024
3025static inline void securityfs_remove(struct dentry *dentry)
3026{}
3027
3028#endif
3029
Pekka Enberg3d544f42009-03-24 11:59:23 +02003030#ifdef CONFIG_SECURITY
3031
3032static inline char *alloc_secdata(void)
3033{
3034 return (char *)get_zeroed_page(GFP_KERNEL);
3035}
3036
3037static inline void free_secdata(void *secdata)
3038{
3039 free_page((unsigned long)secdata);
3040}
3041
3042#else
3043
3044static inline char *alloc_secdata(void)
3045{
3046 return (char *)1;
3047}
3048
3049static inline void free_secdata(void *secdata)
3050{ }
3051#endif /* CONFIG_SECURITY */
3052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053#endif /* ! __LINUX_SECURITY_H */
3054