blob: d11ac43ecc49b2ea1e0cd77b4b8e46cc855a6bbb [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
25#include <linux/fs.h>
Eric Parisc4ec54b2009-12-17 21:24:34 -050026#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/binfmts.h>
Eric Paris2a7dba32011-02-01 11:05:39 -050028#include <linux/dcache.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/signal.h>
30#include <linux/resource.h>
31#include <linux/sem.h>
32#include <linux/shm.h>
Eric Parisa2551df2009-07-31 12:54:11 -040033#include <linux/mm.h> /* PAGE_ALIGN */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/msg.h>
35#include <linux/sched.h>
David Howells29db9192005-10-30 15:02:44 -080036#include <linux/key.h>
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -070037#include <linux/xfrm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090038#include <linux/slab.h>
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -070039#include <net/flow.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +020041/* Maximum number of letters for an LSM name string */
42#define SECURITY_NAME_MAX 10
43
Eric Paris06112162008-11-11 22:02:50 +110044/* If capable should audit the security request */
45#define SECURITY_CAP_NOAUDIT 0
46#define SECURITY_CAP_AUDIT 1
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048struct ctl_table;
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +020049struct audit_krule;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
52 * These functions are in security/capability.c and are used
53 * as the default capabilities functions
54 */
David Howells3699c532009-01-06 22:27:01 +000055extern int cap_capable(struct task_struct *tsk, const struct cred *cred,
56 int cap, int audit);
Eric Paris7b41b172008-04-23 14:10:25 -040057extern int cap_settime(struct timespec *ts, struct timezone *tz);
Ingo Molnar9e488582009-05-07 19:26:19 +100058extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +010059extern int cap_ptrace_traceme(struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -040060extern 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 +110061extern int cap_capset(struct cred *new, const struct cred *old,
62 const kernel_cap_t *effective,
63 const kernel_cap_t *inheritable,
64 const kernel_cap_t *permitted);
David Howellsa6f76f22008-11-14 10:39:24 +110065extern int cap_bprm_set_creds(struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066extern int cap_bprm_secureexec(struct linux_binprm *bprm);
David Howells8f0cfa52008-04-29 00:59:41 -070067extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
68 const void *value, size_t size, int flags);
69extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -070070extern int cap_inode_need_killpriv(struct dentry *dentry);
71extern int cap_inode_killpriv(struct dentry *dentry);
Eric Paris7c738752009-07-31 12:53:58 -040072extern int cap_file_mmap(struct file *file, unsigned long reqprot,
73 unsigned long prot, unsigned long flags,
74 unsigned long addr, unsigned long addr_only);
David Howellsd84f4f92008-11-14 10:39:23 +110075extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070076extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +110077 unsigned long arg4, unsigned long arg5);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +090078extern int cap_task_setscheduler(struct task_struct *p);
Eric Paris7b41b172008-04-23 14:10:25 -040079extern int cap_task_setioprio(struct task_struct *p, int ioprio);
80extern int cap_task_setnice(struct task_struct *p, int nice);
James Morris20510f22007-10-16 23:31:32 -070081extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83struct msghdr;
84struct sk_buff;
85struct sock;
86struct sockaddr;
87struct socket;
Trent Jaegerdf718372005-12-13 23:12:27 -080088struct flowi;
89struct dst_entry;
90struct xfrm_selector;
91struct xfrm_policy;
92struct xfrm_state;
93struct xfrm_user_sec_ctx;
Eric Paris2069f452008-07-04 09:47:13 +100094struct seq_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
Darrel Goeddelc7bdb542006-06-27 13:26:11 -070097extern int cap_netlink_recv(struct sk_buff *skb, int cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
wzt.wzt@gmail.com189b3b12010-02-23 23:15:28 +080099void reset_security_ops(void);
100
David Howells6e141542009-12-15 19:27:45 +0000101#ifdef CONFIG_MMU
Eric Parised032182007-06-28 15:55:21 -0400102extern unsigned long mmap_min_addr;
Eric Parisa2551df2009-07-31 12:54:11 -0400103extern unsigned long dac_mmap_min_addr;
David Howells6e141542009-12-15 19:27:45 +0000104#else
105#define dac_mmap_min_addr 0UL
106#endif
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Values used in the task_security_ops calls
110 */
111/* setuid or setgid, id0 == uid or gid */
112#define LSM_SETID_ID 1
113
114/* setreuid or setregid, id0 == real, id1 == eff */
115#define LSM_SETID_RE 2
116
117/* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
118#define LSM_SETID_RES 4
119
120/* setfsuid or setfsgid, id0 == fsuid or fsgid */
121#define LSM_SETID_FS 8
122
123/* forward declares to avoid warnings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124struct sched_param;
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700125struct request_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
David Howellsa6f76f22008-11-14 10:39:24 +1100127/* bprm->unsafe reasons */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define LSM_UNSAFE_SHARE 1
129#define LSM_UNSAFE_PTRACE 2
130#define LSM_UNSAFE_PTRACE_CAP 4
131
David Howells6e141542009-12-15 19:27:45 +0000132#ifdef CONFIG_MMU
Eric Paris47d439e2009-08-07 14:53:57 -0400133/*
134 * If a hint addr is less than mmap_min_addr change hint to be as
135 * low as possible but still greater than mmap_min_addr
136 */
137static inline unsigned long round_hint_to_min(unsigned long hint)
138{
139 hint &= PAGE_MASK;
140 if (((void *)hint != NULL) &&
141 (hint < mmap_min_addr))
142 return PAGE_ALIGN(mmap_min_addr);
143 return hint;
144}
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700145extern int mmap_min_addr_handler(struct ctl_table *table, int write,
Eric Paris47d439e2009-08-07 14:53:57 -0400146 void __user *buffer, size_t *lenp, loff_t *ppos);
David Howells6e141542009-12-15 19:27:45 +0000147#endif
Eric Paris47d439e2009-08-07 14:53:57 -0400148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149#ifdef CONFIG_SECURITY
150
Eric Parise0007522008-03-05 10:31:54 -0500151struct security_mnt_opts {
152 char **mnt_opts;
153 int *mnt_opts_flags;
154 int num_mnt_opts;
155};
156
157static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
158{
159 opts->mnt_opts = NULL;
160 opts->mnt_opts_flags = NULL;
161 opts->num_mnt_opts = 0;
162}
163
164static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
165{
166 int i;
167 if (opts->mnt_opts)
Eric Paris7b41b172008-04-23 14:10:25 -0400168 for (i = 0; i < opts->num_mnt_opts; i++)
Eric Parise0007522008-03-05 10:31:54 -0500169 kfree(opts->mnt_opts[i]);
170 kfree(opts->mnt_opts);
171 opts->mnt_opts = NULL;
172 kfree(opts->mnt_opts_flags);
173 opts->mnt_opts_flags = NULL;
174 opts->num_mnt_opts = 0;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/**
178 * struct security_operations - main security structure
179 *
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +0200180 * Security module identifier.
181 *
182 * @name:
183 * A string that acts as a unique identifeir for the LSM with max number
184 * of characters = SECURITY_NAME_MAX.
185 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 * Security hooks for program execution operations.
187 *
David Howellsa6f76f22008-11-14 10:39:24 +1100188 * @bprm_set_creds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * Save security information in the bprm->security field, typically based
190 * on information about the bprm->file, for later use by the apply_creds
191 * hook. This hook may also optionally check permissions (e.g. for
192 * transitions between security domains).
193 * This hook may be called multiple times during a single execve, e.g. for
194 * interpreters. The hook can tell whether it has already been called by
195 * checking to see if @bprm->security is non-NULL. If so, then the hook
196 * may decide either to retain the security information saved earlier or
197 * to replace it.
198 * @bprm contains the linux_binprm structure.
199 * Return 0 if the hook is successful and permission is granted.
200 * @bprm_check_security:
David Howellsa6f76f22008-11-14 10:39:24 +1100201 * This hook mediates the point when a search for a binary handler will
202 * begin. It allows a check the @bprm->security value which is set in the
203 * preceding set_creds call. The primary difference from set_creds is
204 * that the argv list and envp list are reliably available in @bprm. This
205 * hook may be called multiple times during a single execve; and in each
206 * pass set_creds is called first.
Eric Paris7b41b172008-04-23 14:10:25 -0400207 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * Return 0 if the hook is successful and permission is granted.
David Howellsa6f76f22008-11-14 10:39:24 +1100209 * @bprm_committing_creds:
210 * Prepare to install the new security attributes of a process being
211 * transformed by an execve operation, based on the old credentials
212 * pointed to by @current->cred and the information set in @bprm->cred by
213 * the bprm_set_creds hook. @bprm points to the linux_binprm structure.
214 * This hook is a good place to perform state changes on the process such
215 * as closing open file descriptors to which access will no longer be
216 * granted when the attributes are changed. This is called immediately
217 * before commit_creds().
218 * @bprm_committed_creds:
219 * Tidy up after the installation of the new security attributes of a
220 * process being transformed by an execve operation. The new credentials
221 * have, by this point, been set to @current->cred. @bprm points to the
222 * linux_binprm structure. This hook is a good place to perform state
223 * changes on the process such as clearing out non-inheritable signal
224 * state. This is called immediately after commit_creds().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * @bprm_secureexec:
Eric Paris7b41b172008-04-23 14:10:25 -0400226 * Return a boolean value (0 or 1) indicating whether a "secure exec"
227 * is required. The flag is passed in the auxiliary table
228 * on the initial stack to the ELF interpreter to indicate whether libc
229 * should enable secure mode.
230 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 *
232 * Security hooks for filesystem operations.
233 *
234 * @sb_alloc_security:
235 * Allocate and attach a security structure to the sb->s_security field.
236 * The s_security field is initialized to NULL when the structure is
237 * allocated.
238 * @sb contains the super_block structure to be modified.
239 * Return 0 if operation was successful.
240 * @sb_free_security:
241 * Deallocate and clear the sb->s_security field.
242 * @sb contains the super_block structure to be modified.
243 * @sb_statfs:
David Howells726c3342006-06-23 02:02:58 -0700244 * Check permission before obtaining filesystem statistics for the @mnt
245 * mountpoint.
246 * @dentry is a handle on the superblock for the filesystem.
Eric Paris7b41b172008-04-23 14:10:25 -0400247 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * @sb_mount:
249 * Check permission before an object specified by @dev_name is mounted on
250 * the mount point named by @nd. For an ordinary mount, @dev_name
251 * identifies a device if the file system type requires a device. For a
252 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
253 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
254 * pathname of the object being mounted.
255 * @dev_name contains the name for object being mounted.
Al Virob5266eb2008-03-22 17:48:24 -0400256 * @path contains the path for mount point object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * @type contains the filesystem type.
258 * @flags contains the mount flags.
259 * @data contains the filesystem-specific data.
260 * Return 0 if permission is granted.
261 * @sb_copy_data:
262 * Allow mount option data to be copied prior to parsing by the filesystem,
263 * so that the security module can extract security-specific mount
264 * options cleanly (a filesystem may modify the data e.g. with strsep()).
265 * This also allows the original mount data to be stripped of security-
266 * specific options to avoid having to make filesystems aware of them.
267 * @type the type of filesystem being mounted.
268 * @orig the original mount data copied from userspace.
269 * @copy copied data which will be passed to the security module.
270 * Returns 0 if the copy was successful.
Eric Parisff36fe22011-03-03 16:09:14 -0500271 * @sb_remount:
272 * Extracts security system specifc mount options and verifys no changes
273 * are being made to those options.
274 * @sb superblock being remounted
275 * @data contains the filesystem-specific data.
276 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * @sb_umount:
278 * Check permission before the @mnt file system is unmounted.
279 * @mnt contains the mounted file system.
280 * @flags contains the unmount flags, e.g. MNT_FORCE.
281 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * @sb_pivotroot:
283 * Check permission before pivoting the root filesystem.
Al Virob5266eb2008-03-22 17:48:24 -0400284 * @old_path contains the path for the new location of the current root (put_old).
Eric Paris7b41b172008-04-23 14:10:25 -0400285 * @new_path contains the path for the new root (new_root).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * Return 0 if permission is granted.
Eric Parisc9180a52007-11-30 13:00:35 -0500287 * @sb_set_mnt_opts:
288 * Set the security relevant mount options used for a superblock
289 * @sb the superblock to set security mount options for
Eric Parise0007522008-03-05 10:31:54 -0500290 * @opts binary data structure containing all lsm mount data
Eric Parisc9180a52007-11-30 13:00:35 -0500291 * @sb_clone_mnt_opts:
292 * Copy all security options from a given superblock to another
293 * @oldsb old superblock which contain information to clone
294 * @newsb new superblock which needs filled in
Eric Parise0007522008-03-05 10:31:54 -0500295 * @sb_parse_opts_str:
296 * Parse a string of security data filling in the opts structure
297 * @options string containing all mount options known by the LSM
298 * @opts binary data structure usable by the LSM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 *
300 * Security hooks for inode operations.
301 *
302 * @inode_alloc_security:
303 * Allocate and attach a security structure to @inode->i_security. The
304 * i_security field is initialized to NULL when the inode structure is
305 * allocated.
306 * @inode contains the inode structure.
307 * Return 0 if operation was successful.
308 * @inode_free_security:
309 * @inode contains the inode structure.
310 * Deallocate the inode security structure and set @inode->i_security to
Eric Paris7b41b172008-04-23 14:10:25 -0400311 * NULL.
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700312 * @inode_init_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400313 * Obtain the security attribute name suffix and value to set on a newly
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700314 * created inode and set up the incore security field for the new inode.
315 * This hook is called by the fs code as part of the inode creation
316 * transaction and provides for atomic labeling of the inode, unlike
317 * the post_create/mkdir/... hooks called by the VFS. The hook function
318 * is expected to allocate the name and value via kmalloc, with the caller
319 * being responsible for calling kfree after using them.
320 * If the security module does not use security attributes or does
321 * not wish to put a security attribute on this particular inode,
322 * then it should return -EOPNOTSUPP to skip this processing.
323 * @inode contains the inode structure of the newly created inode.
324 * @dir contains the inode structure of the parent directory.
Eric Paris2a7dba32011-02-01 11:05:39 -0500325 * @qstr contains the last path component of the new object
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700326 * @name will be set to the allocated name suffix (e.g. selinux).
327 * @value will be set to the allocated attribute value.
328 * @len will be set to the length of the value.
329 * Returns 0 if @name and @value have been successfully set,
330 * -EOPNOTSUPP if no security attribute is needed, or
331 * -ENOMEM on memory allocation failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * @inode_create:
333 * Check permission to create a regular file.
334 * @dir contains inode structure of the parent of the new file.
335 * @dentry contains the dentry structure for the file to be created.
336 * @mode contains the file mode of the file to be created.
337 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * @inode_link:
339 * Check permission before creating a new hard link to a file.
340 * @old_dentry contains the dentry structure for an existing link to the file.
341 * @dir contains the inode structure of the parent directory of the new link.
342 * @new_dentry contains the dentry structure for the new link.
343 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900344 * @path_link:
345 * Check permission before creating a new hard link to a file.
346 * @old_dentry contains the dentry structure for an existing link
347 * to the file.
348 * @new_dir contains the path structure of the parent directory of
349 * the new link.
350 * @new_dentry contains the dentry structure for the new link.
351 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * @inode_unlink:
Eric Paris7b41b172008-04-23 14:10:25 -0400353 * Check the permission to remove a hard link to a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * @dir contains the inode structure of parent directory of the file.
355 * @dentry contains the dentry structure for file to be unlinked.
356 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900357 * @path_unlink:
358 * Check the permission to remove a hard link to a file.
359 * @dir contains the path structure of parent directory of the file.
360 * @dentry contains the dentry structure for file to be unlinked.
361 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 * @inode_symlink:
363 * Check the permission to create a symbolic link to a file.
364 * @dir contains the inode structure of parent directory of the symbolic link.
365 * @dentry contains the dentry structure of the symbolic link.
366 * @old_name contains the pathname of file.
367 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900368 * @path_symlink:
369 * Check the permission to create a symbolic link to a file.
370 * @dir contains the path structure of parent directory of
371 * the symbolic link.
372 * @dentry contains the dentry structure of the symbolic link.
373 * @old_name contains the pathname of file.
374 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * @inode_mkdir:
376 * Check permissions to create a new directory in the existing directory
Eric Paris7b41b172008-04-23 14:10:25 -0400377 * associated with inode strcture @dir.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 * @dir containst the inode structure of parent of the directory to be created.
379 * @dentry contains the dentry structure of new directory.
380 * @mode contains the mode of new directory.
381 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900382 * @path_mkdir:
383 * Check permissions to create a new directory in the existing directory
384 * associated with path strcture @path.
385 * @dir containst the path structure of parent of the directory
386 * to be created.
387 * @dentry contains the dentry structure of new directory.
388 * @mode contains the mode of new directory.
389 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * @inode_rmdir:
391 * Check the permission to remove a directory.
392 * @dir contains the inode structure of parent of the directory to be removed.
393 * @dentry contains the dentry structure of directory to be removed.
394 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900395 * @path_rmdir:
396 * Check the permission to remove a directory.
397 * @dir contains the path structure of parent of the directory to be
398 * removed.
399 * @dentry contains the dentry structure of directory to be removed.
400 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * @inode_mknod:
402 * Check permissions when creating a special file (or a socket or a fifo
403 * file created via the mknod system call). Note that if mknod operation
404 * is being done for a regular file, then the create hook will be called
405 * and not this hook.
406 * @dir contains the inode structure of parent of the new file.
407 * @dentry contains the dentry structure of the new file.
408 * @mode contains the mode of the new file.
Michael Opdenacker59c51592007-05-09 08:57:56 +0200409 * @dev contains the device number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900411 * @path_mknod:
412 * Check permissions when creating a file. Note that this hook is called
413 * even if mknod operation is being done for a regular file.
414 * @dir contains the path 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.
417 * @dev contains the undecoded device number. Use new_decode_dev() to get
418 * the decoded device number.
419 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * @inode_rename:
421 * Check for permission to rename a file or directory.
422 * @old_dir contains the inode structure for parent of the old link.
423 * @old_dentry contains the dentry structure of the old link.
424 * @new_dir contains the inode structure for parent of the new link.
425 * @new_dentry contains the dentry structure of the new link.
426 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900427 * @path_rename:
428 * Check for permission to rename a file or directory.
429 * @old_dir contains the path structure for parent of the old link.
430 * @old_dentry contains the dentry structure of the old link.
431 * @new_dir contains the path structure for parent of the new link.
432 * @new_dentry contains the dentry structure of the new link.
433 * Return 0 if permission is granted.
Tetsuo Handa89eda062009-10-04 21:49:47 +0900434 * @path_chmod:
435 * Check for permission to change DAC's permission of a file or directory.
436 * @dentry contains the dentry structure.
437 * @mnt contains the vfsmnt structure.
438 * @mode contains DAC's mode.
439 * Return 0 if permission is granted.
440 * @path_chown:
441 * Check for permission to change owner/group of a file or directory.
442 * @path contains the path structure.
443 * @uid contains new owner's ID.
444 * @gid contains new group's ID.
445 * Return 0 if permission is granted.
Tetsuo Handa8b8efb42009-10-04 21:49:48 +0900446 * @path_chroot:
447 * Check for permission to change root directory.
448 * @path contains the path structure.
449 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * @inode_readlink:
451 * Check the permission to read the symbolic link.
452 * @dentry contains the dentry structure for the file link.
453 * Return 0 if permission is granted.
454 * @inode_follow_link:
455 * Check permission to follow a symbolic link when looking up a pathname.
456 * @dentry contains the dentry structure for the link.
457 * @nd contains the nameidata structure for the parent directory.
458 * Return 0 if permission is granted.
459 * @inode_permission:
460 * Check permission before accessing an inode. This hook is called by the
461 * existing Linux permission function, so a security module can use it to
462 * provide additional checking for existing Linux permission checks.
463 * Notice that this hook is called when a file is opened (as well as many
464 * other operations), whereas the file_security_ops permission hook is
465 * called when the actual read/write operations are performed.
466 * @inode contains the inode structure to check.
467 * @mask contains the permission mask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * Return 0 if permission is granted.
469 * @inode_setattr:
470 * Check permission before setting file attributes. Note that the kernel
471 * call to notify_change is performed from several locations, whenever
472 * file attributes change (such as when a file is truncated, chown/chmod
473 * operations, transferring disk quotas, etc).
474 * @dentry contains the dentry structure for the file.
475 * @attr is the iattr structure containing the new file attributes.
476 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900477 * @path_truncate:
478 * Check permission before truncating a file.
479 * @path contains the path structure for the file.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900480 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * @inode_getattr:
482 * Check permission before obtaining file attributes.
483 * @mnt is the vfsmount where the dentry was looked up
484 * @dentry contains the dentry structure for the file.
485 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * @inode_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400487 * Check permission before setting the extended attributes
488 * @value identified by @name for @dentry.
489 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * @inode_post_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400491 * Update inode security field after successful setxattr operation.
492 * @value identified by @name for @dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * @inode_getxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400494 * Check permission before obtaining the extended attributes
495 * identified by @name for @dentry.
496 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * @inode_listxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400498 * Check permission before obtaining the list of extended attribute
499 * names for @dentry.
500 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 * @inode_removexattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400502 * Check permission before removing the extended attribute
503 * identified by @name for @dentry.
504 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * @inode_getsecurity:
David P. Quigley42492592008-02-04 22:29:39 -0800506 * Retrieve a copy of the extended attribute representation of the
507 * security label associated with @name for @inode via @buffer. Note that
508 * @name is the remainder of the attribute name after the security prefix
509 * has been removed. @alloc is used to specify of the call should return a
510 * value via the buffer or just the value length Return size of buffer on
511 * success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * @inode_setsecurity:
513 * Set the security label associated with @name for @inode from the
514 * extended attribute value @value. @size indicates the size of the
515 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
Eric Paris7b41b172008-04-23 14:10:25 -0400516 * Note that @name is the remainder of the attribute name after the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * security. prefix has been removed.
518 * Return 0 on success.
519 * @inode_listsecurity:
520 * Copy the extended attribute names for the security labels
521 * associated with @inode into @buffer. The maximum size of @buffer
522 * is specified by @buffer_size. @buffer may be NULL to request
523 * the size of the buffer required.
524 * Returns number of bytes used/required on success.
Serge E. Hallynb5376772007-10-16 23:31:36 -0700525 * @inode_need_killpriv:
526 * Called when an inode has been changed.
527 * @dentry is the dentry being changed.
528 * Return <0 on error to abort the inode change operation.
529 * Return 0 if inode_killpriv does not need to be called.
530 * Return >0 if inode_killpriv does need to be called.
531 * @inode_killpriv:
532 * The setuid bit is being removed. Remove similar security labels.
533 * Called with the dentry->d_inode->i_mutex held.
534 * @dentry is the dentry being changed.
535 * Return 0 on success. If error is returned, then the operation
536 * causing setuid bit removal is failed.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200537 * @inode_getsecid:
538 * Get the secid associated with the node.
539 * @inode contains a pointer to the inode.
540 * @secid contains a pointer to the location where result will be saved.
541 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 *
543 * Security hooks for file operations
544 *
545 * @file_permission:
546 * Check file permissions before accessing an open file. This hook is
547 * called by various operations that read or write files. A security
548 * module can use this hook to perform additional checking on these
549 * operations, e.g. to revalidate permissions on use to support privilege
550 * bracketing or policy changes. Notice that this hook is used when the
551 * actual read/write operations are performed, whereas the
552 * inode_security_ops hook is called when a file is opened (as well as
553 * many other operations).
554 * Caveat: Although this hook can be used to revalidate permissions for
555 * various system call operations that read or write files, it does not
556 * address the revalidation of permissions for memory-mapped files.
557 * Security modules must handle this separately if they need such
558 * revalidation.
559 * @file contains the file structure being accessed.
560 * @mask contains the requested permissions.
561 * Return 0 if permission is granted.
562 * @file_alloc_security:
563 * Allocate and attach a security structure to the file->f_security field.
564 * The security field is initialized to NULL when the structure is first
565 * created.
566 * @file contains the file structure to secure.
567 * Return 0 if the hook is successful and permission is granted.
568 * @file_free_security:
569 * Deallocate and free any security structures stored in file->f_security.
570 * @file contains the file structure being modified.
571 * @file_ioctl:
572 * @file contains the file structure.
573 * @cmd contains the operation to perform.
574 * @arg contains the operational arguments.
575 * Check permission for an ioctl operation on @file. Note that @arg can
576 * sometimes represents a user space pointer; in other cases, it may be a
577 * simple integer value. When @arg represents a user space pointer, it
578 * should never be used by the security module.
579 * Return 0 if permission is granted.
580 * @file_mmap :
581 * Check permissions for a mmap operation. The @file may be NULL, e.g.
582 * if mapping anonymous memory.
583 * @file contains the file structure for file to map (may be NULL).
584 * @reqprot contains the protection requested by the application.
585 * @prot contains the protection that will be applied by the kernel.
586 * @flags contains the operational flags.
587 * Return 0 if permission is granted.
588 * @file_mprotect:
589 * Check permissions before changing memory access permissions.
590 * @vma contains the memory region to modify.
591 * @reqprot contains the protection requested by the application.
592 * @prot contains the protection that will be applied by the kernel.
593 * Return 0 if permission is granted.
594 * @file_lock:
595 * Check permission before performing file locking operations.
596 * Note: this hook mediates both flock and fcntl style locks.
597 * @file contains the file structure.
598 * @cmd contains the posix-translated lock operation to perform
599 * (e.g. F_RDLCK, F_WRLCK).
600 * Return 0 if permission is granted.
601 * @file_fcntl:
602 * Check permission before allowing the file operation specified by @cmd
603 * from being performed on the file @file. Note that @arg can sometimes
604 * represents a user space pointer; in other cases, it may be a simple
605 * integer value. When @arg represents a user space pointer, it should
606 * never be used by the security module.
607 * @file contains the file structure.
608 * @cmd contains the operation to be performed.
609 * @arg contains the operational arguments.
610 * Return 0 if permission is granted.
611 * @file_set_fowner:
612 * Save owner security information (typically from current->security) in
613 * file->f_security for later use by the send_sigiotask hook.
614 * @file contains the file structure to update.
615 * Return 0 on success.
616 * @file_send_sigiotask:
617 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
618 * process @tsk. Note that this hook is sometimes called from interrupt.
619 * Note that the fown_struct, @fown, is never outside the context of a
620 * struct file, so the file structure (and associated security information)
621 * can always be obtained:
Robert P. J. Dayb385a142007-02-10 01:46:25 -0800622 * container_of(fown, struct file, f_owner)
Eric Paris7b41b172008-04-23 14:10:25 -0400623 * @tsk contains the structure of task receiving signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 * @fown contains the file owner information.
625 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
626 * Return 0 if permission is granted.
627 * @file_receive:
628 * This hook allows security modules to control the ability of a process
629 * to receive an open file descriptor via socket IPC.
630 * @file contains the file structure being received.
631 * Return 0 if permission is granted.
632 *
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900633 * Security hook for dentry
634 *
635 * @dentry_open
636 * Save open-time permission checking state for later use upon
637 * file_permission, and recheck access if anything has changed
638 * since inode_permission.
639 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 * Security hooks for task operations.
641 *
642 * @task_create:
643 * Check permission before creating a child process. See the clone(2)
644 * manual page for definitions of the @clone_flags.
645 * @clone_flags contains the flags indicating what should be shared.
646 * Return 0 if permission is granted.
David Howellsee18d642009-09-02 09:14:21 +0100647 * @cred_alloc_blank:
648 * @cred points to the credentials.
649 * @gfp indicates the atomicity of any memory allocations.
650 * Only allocate sufficient memory and attach to @cred such that
651 * cred_transfer() will not get ENOMEM.
David Howellsf1752ee2008-11-14 10:39:17 +1100652 * @cred_free:
653 * @cred points to the credentials.
654 * Deallocate and clear the cred->security field in a set of credentials.
David Howellsd84f4f92008-11-14 10:39:23 +1100655 * @cred_prepare:
656 * @new points to the new credentials.
657 * @old points to the original credentials.
658 * @gfp indicates the atomicity of any memory allocations.
659 * Prepare a new set of credentials by copying the data from the old set.
David Howellsee18d642009-09-02 09:14:21 +0100660 * @cred_transfer:
661 * @new points to the new credentials.
662 * @old points to the original credentials.
663 * Transfer data from original creds to new creds
David Howells3a3b7ce2008-11-14 10:39:28 +1100664 * @kernel_act_as:
665 * Set the credentials for a kernel service to act as (subjective context).
666 * @new points to the credentials to be modified.
667 * @secid specifies the security ID to be set
668 * The current task must be the one that nominated @secid.
669 * Return 0 if successful.
670 * @kernel_create_files_as:
671 * Set the file creation context in a set of credentials to be the same as
672 * the objective context of the specified inode.
673 * @new points to the credentials to be modified.
674 * @inode points to the inode to use as a reference.
675 * The current task must be the one that nominated @inode.
676 * Return 0 if successful.
Eric Paris91884992009-08-13 09:44:57 -0400677 * @kernel_module_request:
678 * Ability to trigger the kernel to automatically upcall to userspace for
679 * userspace to load a kernel module with the given name.
Eric Parisdd8dbf22009-11-03 16:35:32 +1100680 * @kmod_name name of the module requested by the kernel
James Morrisf322abf2009-08-14 11:19:29 +1000681 * Return 0 if successful.
David Howellsd84f4f92008-11-14 10:39:23 +1100682 * @task_fix_setuid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * Update the module's state after setting one or more of the user
684 * identity attributes of the current process. The @flags parameter
685 * indicates which of the set*uid system calls invoked this hook. If
David Howellsd84f4f92008-11-14 10:39:23 +1100686 * @new is the set of credentials that will be installed. Modifications
687 * should be made to this rather than to @current->cred.
688 * @old is the set of credentials that are being replaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * @flags contains one of the LSM_SETID_* values.
690 * Return 0 on success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * @task_setpgid:
692 * Check permission before setting the process group identifier of the
693 * process @p to @pgid.
694 * @p contains the task_struct for process being modified.
695 * @pgid contains the new pgid.
696 * Return 0 if permission is granted.
697 * @task_getpgid:
698 * Check permission before getting the process group identifier of the
699 * process @p.
700 * @p contains the task_struct for the process.
701 * Return 0 if permission is granted.
702 * @task_getsid:
703 * Check permission before getting the session identifier of the process
704 * @p.
705 * @p contains the task_struct for the process.
706 * Return 0 if permission is granted.
David Quigleyf9008e42006-06-30 01:55:46 -0700707 * @task_getsecid:
708 * Retrieve the security identifier of the process @p.
709 * @p contains the task_struct for the process and place is into @secid.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200710 * In case of failure, @secid will be set to zero.
711 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 * @task_setnice:
713 * Check permission before setting the nice value of @p to @nice.
714 * @p contains the task_struct of process.
715 * @nice contains the new nice value.
716 * Return 0 if permission is granted.
James Morris03e68062006-06-23 02:03:58 -0700717 * @task_setioprio
718 * Check permission before setting the ioprio value of @p to @ioprio.
719 * @p contains the task_struct of process.
720 * @ioprio contains the new ioprio value
721 * Return 0 if permission is granted.
David Quigleya1836a42006-06-30 01:55:49 -0700722 * @task_getioprio
723 * Check permission before getting the ioprio value of @p.
724 * @p contains the task_struct of process.
725 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 * @task_setrlimit:
727 * Check permission before setting the resource limits of the current
728 * process for @resource to @new_rlim. The old resource limit values can
729 * be examined by dereferencing (current->signal->rlim + resource).
730 * @resource contains the resource whose limit is being set.
731 * @new_rlim contains the new limits for @resource.
732 * Return 0 if permission is granted.
733 * @task_setscheduler:
734 * Check permission before setting scheduling policy and/or parameters of
735 * process @p based on @policy and @lp.
736 * @p contains the task_struct for process.
737 * @policy contains the scheduling policy.
738 * @lp contains the scheduling parameters.
739 * Return 0 if permission is granted.
740 * @task_getscheduler:
741 * Check permission before obtaining scheduling information for process
742 * @p.
743 * @p contains the task_struct for process.
744 * Return 0 if permission is granted.
David Quigley35601542006-06-23 02:04:01 -0700745 * @task_movememory
746 * Check permission before moving memory owned by process @p.
747 * @p contains the task_struct for process.
748 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * @task_kill:
750 * Check permission before sending signal @sig to @p. @info can be NULL,
751 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
752 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
753 * from the kernel and should typically be permitted.
754 * SIGIO signals are handled separately by the send_sigiotask hook in
755 * file_security_ops.
756 * @p contains the task_struct for process.
757 * @info contains the signal information.
758 * @sig contains the signal value.
David Quigleyf9008e42006-06-30 01:55:46 -0700759 * @secid contains the sid of the process where the signal originated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 * Return 0 if permission is granted.
761 * @task_wait:
762 * Check permission before allowing a process to reap a child process @p
763 * and collect its status information.
764 * @p contains the task_struct for process.
765 * Return 0 if permission is granted.
766 * @task_prctl:
767 * Check permission before performing a process control operation on the
768 * current process.
769 * @option contains the operation.
770 * @arg2 contains a argument.
771 * @arg3 contains a argument.
772 * @arg4 contains a argument.
773 * @arg5 contains a argument.
David Howellsd84f4f92008-11-14 10:39:23 +1100774 * Return -ENOSYS if no-one wanted to handle this op, any other value to
775 * cause prctl() to return immediately with that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 * @task_to_inode:
Eric Paris7b41b172008-04-23 14:10:25 -0400777 * Set the security attributes for an inode based on an associated task's
778 * security attributes, e.g. for /proc/pid inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 * @p contains the task_struct for the task.
780 * @inode contains the inode structure for the inode.
781 *
782 * Security hooks for Netlink messaging.
783 *
784 * @netlink_send:
785 * Save security information for a netlink message so that permission
786 * checking can be performed when the message is processed. The security
787 * information can be saved using the eff_cap field of the
Eric Paris7b41b172008-04-23 14:10:25 -0400788 * netlink_skb_parms structure. Also may be used to provide fine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * grained control over message transmission.
790 * @sk associated sock of task sending the message.,
791 * @skb contains the sk_buff structure for the netlink message.
792 * Return 0 if the information was successfully saved and message
793 * is allowed to be transmitted.
794 * @netlink_recv:
795 * Check permission before processing the received netlink message in
796 * @skb.
797 * @skb contains the sk_buff structure for the netlink message.
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700798 * @cap indicates the capability required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 * Return 0 if permission is granted.
800 *
801 * Security hooks for Unix domain networking.
802 *
803 * @unix_stream_connect:
804 * Check permissions before establishing a Unix domain stream connection
805 * between @sock and @other.
David S. Miller3610cda2011-01-05 15:38:53 -0800806 * @sock contains the sock structure.
807 * @other contains the peer sock structure.
808 * @newsk contains the new sock structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * Return 0 if permission is granted.
810 * @unix_may_send:
811 * Check permissions before connecting or sending datagrams from @sock to
812 * @other.
813 * @sock contains the socket structure.
814 * @sock contains the peer socket structure.
815 * Return 0 if permission is granted.
816 *
817 * The @unix_stream_connect and @unix_may_send hooks were necessary because
818 * Linux provides an alternative to the conventional file name space for Unix
819 * domain sockets. Whereas binding and connecting to sockets in the file name
820 * space is mediated by the typical file permissions (and caught by the mknod
821 * and permission hooks in inode_security_ops), binding and connecting to
822 * sockets in the abstract name space is completely unmediated. Sufficient
823 * control of Unix domain sockets in the abstract name space isn't possible
824 * using only the socket layer hooks, since we need to know the actual target
825 * socket, which is not looked up until we are inside the af_unix code.
826 *
827 * Security hooks for socket operations.
828 *
829 * @socket_create:
830 * Check permissions prior to creating a new socket.
831 * @family contains the requested protocol family.
832 * @type contains the requested communications type.
833 * @protocol contains the requested protocol.
834 * @kern set to 1 if a kernel socket.
835 * Return 0 if permission is granted.
836 * @socket_post_create:
837 * This hook allows a module to update or allocate a per-socket security
838 * structure. Note that the security field was not added directly to the
839 * socket structure, but rather, the socket security information is stored
840 * in the associated inode. Typically, the inode alloc_security hook will
841 * allocate and and attach security information to
842 * sock->inode->i_security. This hook may be used to update the
843 * sock->inode->i_security field with additional information that wasn't
844 * available when the inode was allocated.
845 * @sock contains the newly created socket structure.
846 * @family contains the requested protocol family.
847 * @type contains the requested communications type.
848 * @protocol contains the requested protocol.
849 * @kern set to 1 if a kernel socket.
850 * @socket_bind:
851 * Check permission before socket protocol layer bind operation is
852 * performed and the socket @sock is bound to the address specified in the
853 * @address parameter.
854 * @sock contains the socket structure.
855 * @address contains the address to bind to.
856 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400857 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 * @socket_connect:
859 * Check permission before socket protocol layer connect operation
860 * attempts to connect socket @sock to a remote address, @address.
861 * @sock contains the socket structure.
862 * @address contains the address of remote endpoint.
863 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400864 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 * @socket_listen:
866 * Check permission before socket protocol layer listen operation.
867 * @sock contains the socket structure.
868 * @backlog contains the maximum length for the pending connection queue.
869 * Return 0 if permission is granted.
870 * @socket_accept:
871 * Check permission before accepting a new connection. Note that the new
872 * socket, @newsock, has been created and some information copied to it,
873 * but the accept operation has not actually been performed.
874 * @sock contains the listening socket structure.
875 * @newsock contains the newly created server socket for connection.
876 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 * @socket_sendmsg:
878 * Check permission before transmitting a message to another socket.
879 * @sock contains the socket structure.
880 * @msg contains the message to be transmitted.
881 * @size contains the size of message.
882 * Return 0 if permission is granted.
883 * @socket_recvmsg:
884 * Check permission before receiving a message from a socket.
885 * @sock contains the socket structure.
886 * @msg contains the message structure.
887 * @size contains the size of message structure.
888 * @flags contains the operational flags.
Eric Paris7b41b172008-04-23 14:10:25 -0400889 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 * @socket_getsockname:
891 * Check permission before the local address (name) of the socket object
892 * @sock is retrieved.
893 * @sock contains the socket structure.
894 * Return 0 if permission is granted.
895 * @socket_getpeername:
896 * Check permission before the remote address (name) of a socket object
897 * @sock is retrieved.
898 * @sock contains the socket structure.
899 * Return 0 if permission is granted.
900 * @socket_getsockopt:
901 * Check permissions before retrieving the options associated with socket
902 * @sock.
903 * @sock contains the socket structure.
904 * @level contains the protocol level to retrieve option from.
905 * @optname contains the name of option to retrieve.
906 * Return 0 if permission is granted.
907 * @socket_setsockopt:
908 * Check permissions before setting the options associated with socket
909 * @sock.
910 * @sock contains the socket structure.
911 * @level contains the protocol level to set options for.
912 * @optname contains the name of the option to set.
Eric Paris7b41b172008-04-23 14:10:25 -0400913 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * @socket_shutdown:
915 * Checks permission before all or part of a connection on the socket
916 * @sock is shut down.
917 * @sock contains the socket structure.
918 * @how contains the flag indicating how future sends and receives are handled.
919 * Return 0 if permission is granted.
920 * @socket_sock_rcv_skb:
921 * Check permissions on incoming network packets. This hook is distinct
922 * from Netfilter's IP input hooks since it is the first time that the
923 * incoming sk_buff @skb has been associated with a particular socket, @sk.
Tetsuo Handa0ed73182010-01-06 09:23:54 +0900924 * Must not sleep inside this hook because some callers hold spinlocks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 * @sk contains the sock (not socket) associated with the incoming sk_buff.
926 * @skb contains the incoming network data.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200927 * @socket_getpeersec_stream:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 * This hook allows the security module to provide peer socket security
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200929 * state for unix or connected tcp sockets to userspace via getsockopt
930 * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
931 * socket is associated with an ipsec SA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 * @sock is the local socket.
933 * @optval userspace memory where the security state is to be copied.
934 * @optlen userspace int where the module should copy the actual length
935 * of the security state.
936 * @len as input is the maximum length to copy to userspace provided
937 * by the caller.
938 * Return 0 if all is well, otherwise, typical getsockopt return
939 * values.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200940 * @socket_getpeersec_dgram:
Eric Paris7b41b172008-04-23 14:10:25 -0400941 * This hook allows the security module to provide peer socket security
942 * state for udp sockets on a per-packet basis to userspace via
943 * getsockopt SO_GETPEERSEC. The application must first have indicated
944 * the IP_PASSSEC option via getsockopt. It can then retrieve the
945 * security state returned by this hook for a packet via the SCM_SECURITY
946 * ancillary message type.
947 * @skb is the skbuff for the packet being queried
948 * @secdata is a pointer to a buffer in which to copy the security data
949 * @seclen is the maximum length for @secdata
950 * Return 0 on success, error on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 * @sk_alloc_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400952 * Allocate and attach a security structure to the sk->sk_security field,
953 * which is used to copy security attributes between local stream sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * @sk_free_security:
955 * Deallocate security structure.
Venkat Yekkirala892c1412006-08-04 23:08:56 -0700956 * @sk_clone_security:
957 * Clone/copy security structure.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700958 * @sk_getsecid:
959 * Retrieve the LSM-specific secid for the sock to enable caching of network
Trent Jaegerdf718372005-12-13 23:12:27 -0800960 * authorizations.
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700961 * @sock_graft:
962 * Sets the socket's isec sid to the sock's sid.
963 * @inet_conn_request:
964 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
965 * @inet_csk_clone:
966 * Sets the new child socket's sid to the openreq sid.
Venkat Yekkirala6b877692006-11-08 17:04:09 -0600967 * @inet_conn_established:
Eric Paris7b41b172008-04-23 14:10:25 -0400968 * Sets the connection's peersid to the secmark on skb.
Eric Paris2606fd12010-10-13 16:24:41 -0400969 * @secmark_relabel_packet:
970 * check if the process should be allowed to relabel packets to the given secid
971 * @security_secmark_refcount_inc
972 * tells the LSM to increment the number of secmark labeling rules loaded
973 * @security_secmark_refcount_dec
974 * tells the LSM to decrement the number of secmark labeling rules loaded
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700975 * @req_classify_flow:
976 * Sets the flow's sid to the openreq sid.
Paul Moore2b980db2009-08-28 18:12:43 -0400977 * @tun_dev_create:
978 * Check permissions prior to creating a new TUN device.
979 * @tun_dev_post_create:
980 * This hook allows a module to update or allocate a per-socket security
981 * structure.
982 * @sk contains the newly created sock structure.
983 * @tun_dev_attach:
984 * Check permissions prior to attaching to a persistent TUN device. This
985 * hook can also be used by the module to update any security state
986 * associated with the TUN device's sock structure.
987 * @sk contains the existing sock structure.
Trent Jaegerdf718372005-12-13 23:12:27 -0800988 *
989 * Security hooks for XFRM operations.
990 *
991 * @xfrm_policy_alloc_security:
Paul Moore03e1ad72008-04-12 19:07:52 -0700992 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
993 * Database used by the XFRM system.
Trent Jaegerdf718372005-12-13 23:12:27 -0800994 * @sec_ctx contains the security context information being provided by
995 * the user-level policy update program (e.g., setkey).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -0700996 * Allocate a security structure to the xp->security field; the security
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -0600997 * field is initialized to NULL when the xfrm_policy is allocated.
Trent Jaegerdf718372005-12-13 23:12:27 -0800998 * Return 0 if operation was successful (memory to allocate, legal context)
999 * @xfrm_policy_clone_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001000 * @old_ctx contains an existing xfrm_sec_ctx.
1001 * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
1002 * Allocate a security structure in new_ctxp that contains the
1003 * information from the old_ctx structure.
Trent Jaegerdf718372005-12-13 23:12:27 -08001004 * Return 0 if operation was successful (memory to allocate).
1005 * @xfrm_policy_free_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001006 * @ctx contains the xfrm_sec_ctx
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001007 * Deallocate xp->security.
1008 * @xfrm_policy_delete_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001009 * @ctx contains the xfrm_sec_ctx.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001010 * Authorize deletion of xp->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001011 * @xfrm_state_alloc_security:
1012 * @x contains the xfrm_state being added to the Security Association
1013 * Database by the XFRM system.
1014 * @sec_ctx contains the security context information being provided by
1015 * the user-level SA generation program (e.g., setkey or racoon).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001016 * @secid contains the secid from which to take the mls portion of the context.
1017 * Allocate a security structure to the x->security field; the security
1018 * field is initialized to NULL when the xfrm_state is allocated. Set the
1019 * context to correspond to either sec_ctx or polsec, with the mls portion
1020 * taken from secid in the latter case.
Trent Jaegerdf718372005-12-13 23:12:27 -08001021 * Return 0 if operation was successful (memory to allocate, legal context).
1022 * @xfrm_state_free_security:
1023 * @x contains the xfrm_state.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001024 * Deallocate x->security.
1025 * @xfrm_state_delete_security:
1026 * @x contains the xfrm_state.
1027 * Authorize deletion of x->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001028 * @xfrm_policy_lookup:
Paul Moore03e1ad72008-04-12 19:07:52 -07001029 * @ctx contains the xfrm_sec_ctx for which the access control is being
Trent Jaegerdf718372005-12-13 23:12:27 -08001030 * checked.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001031 * @fl_secid contains the flow security label that is used to authorize
Trent Jaegerdf718372005-12-13 23:12:27 -08001032 * access to the policy xp.
1033 * @dir contains the direction of the flow (input or output).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001034 * Check permission when a flow selects a xfrm_policy for processing
Trent Jaegerdf718372005-12-13 23:12:27 -08001035 * XFRMs on a packet. The hook is called when selecting either a
1036 * per-socket policy or a generic xfrm policy.
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05001037 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
1038 * on other errors.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001039 * @xfrm_state_pol_flow_match:
1040 * @x contains the state to match.
1041 * @xp contains the policy to check for a match.
1042 * @fl contains the flow to check for a match.
1043 * Return 1 if there is a match.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001044 * @xfrm_decode_session:
1045 * @skb points to skb to decode.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001046 * @secid points to the flow key secid to set.
1047 * @ckall says if all xfrms used should be checked for same secid.
1048 * Return 0 if ckall is zero or all xfrms used have the same secid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 *
David Howells29db9192005-10-30 15:02:44 -08001050 * Security hooks affecting all Key Management operations
1051 *
1052 * @key_alloc:
1053 * Permit allocation of a key and assign security data. Note that key does
1054 * not have a serial number assigned at this point.
1055 * @key points to the key.
David Howells7e047ef2006-06-26 00:24:50 -07001056 * @flags is the allocation flags
David Howells29db9192005-10-30 15:02:44 -08001057 * Return 0 if permission is granted, -ve error otherwise.
1058 * @key_free:
1059 * Notification of destruction; free security data.
1060 * @key points to the key.
1061 * No return value.
1062 * @key_permission:
1063 * See whether a specific operational right is granted to a process on a
Eric Paris7b41b172008-04-23 14:10:25 -04001064 * key.
David Howells29db9192005-10-30 15:02:44 -08001065 * @key_ref refers to the key (key pointer + possession attribute bit).
David Howellsd84f4f92008-11-14 10:39:23 +11001066 * @cred points to the credentials to provide the context against which to
Eric Paris7b41b172008-04-23 14:10:25 -04001067 * evaluate the security data on the key.
David Howells29db9192005-10-30 15:02:44 -08001068 * @perm describes the combination of permissions required of this key.
Tetsuo Handaad9c2b02010-11-30 11:06:47 +09001069 * Return 0 if permission is granted, -ve error otherwise.
David Howells70a5bb72008-04-29 01:01:26 -07001070 * @key_getsecurity:
1071 * Get a textual representation of the security context attached to a key
1072 * for the purposes of honouring KEYCTL_GETSECURITY. This function
1073 * allocates the storage for the NUL-terminated string and the caller
1074 * should free it.
1075 * @key points to the key to be queried.
1076 * @_buffer points to a pointer that should be set to point to the
1077 * resulting string (if no label or an error occurs).
1078 * Return the length of the string (including terminating NUL) or -ve if
1079 * an error.
1080 * May also return 0 (and a NULL buffer pointer) if there is no label.
David Howells29db9192005-10-30 15:02:44 -08001081 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 * Security hooks affecting all System V IPC operations.
1083 *
1084 * @ipc_permission:
1085 * Check permissions for access to IPC
1086 * @ipcp contains the kernel IPC permission structure
1087 * @flag contains the desired (requested) permission set
1088 * Return 0 if permission is granted.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001089 * @ipc_getsecid:
1090 * Get the secid associated with the ipc object.
1091 * @ipcp contains the kernel IPC permission structure.
1092 * @secid contains a pointer to the location where result will be saved.
1093 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 *
1095 * Security hooks for individual messages held in System V IPC message queues
1096 * @msg_msg_alloc_security:
1097 * Allocate and attach a security structure to the msg->security field.
1098 * The security field is initialized to NULL when the structure is first
1099 * created.
1100 * @msg contains the message structure to be modified.
1101 * Return 0 if operation was successful and permission is granted.
1102 * @msg_msg_free_security:
1103 * Deallocate the security structure for this message.
1104 * @msg contains the message structure to be modified.
1105 *
1106 * Security hooks for System V IPC Message Queues
1107 *
1108 * @msg_queue_alloc_security:
1109 * Allocate and attach a security structure to the
1110 * msq->q_perm.security field. The security field is initialized to
1111 * NULL when the structure is first created.
1112 * @msq contains the message queue structure to be modified.
1113 * Return 0 if operation was successful and permission is granted.
1114 * @msg_queue_free_security:
1115 * Deallocate security structure for this message queue.
1116 * @msq contains the message queue structure to be modified.
1117 * @msg_queue_associate:
1118 * Check permission when a message queue is requested through the
1119 * msgget system call. This hook is only called when returning the
1120 * message queue identifier for an existing message queue, not when a
1121 * new message queue is created.
1122 * @msq contains the message queue to act upon.
1123 * @msqflg contains the operation control flags.
1124 * Return 0 if permission is granted.
1125 * @msg_queue_msgctl:
1126 * Check permission when a message control operation specified by @cmd
1127 * is to be performed on the message queue @msq.
1128 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1129 * @msq contains the message queue to act upon. May be NULL.
1130 * @cmd contains the operation to be performed.
Eric Paris7b41b172008-04-23 14:10:25 -04001131 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 * @msg_queue_msgsnd:
1133 * Check permission before a message, @msg, is enqueued on the message
1134 * queue, @msq.
1135 * @msq contains the message queue to send message to.
1136 * @msg contains the message to be enqueued.
1137 * @msqflg contains operational flags.
1138 * Return 0 if permission is granted.
1139 * @msg_queue_msgrcv:
1140 * Check permission before a message, @msg, is removed from the message
Eric Paris7b41b172008-04-23 14:10:25 -04001141 * queue, @msq. The @target task structure contains a pointer to the
1142 * process that will be receiving the message (not equal to the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 * process when inline receives are being performed).
1144 * @msq contains the message queue to retrieve message from.
1145 * @msg contains the message destination.
1146 * @target contains the task structure for recipient process.
1147 * @type contains the type of message requested.
1148 * @mode contains the operational flags.
1149 * Return 0 if permission is granted.
1150 *
1151 * Security hooks for System V Shared Memory Segments
1152 *
1153 * @shm_alloc_security:
1154 * Allocate and attach a security structure to the shp->shm_perm.security
1155 * field. The security field is initialized to NULL when the structure is
1156 * first created.
1157 * @shp contains the shared memory structure to be modified.
1158 * Return 0 if operation was successful and permission is granted.
1159 * @shm_free_security:
1160 * Deallocate the security struct for this memory segment.
1161 * @shp contains the shared memory structure to be modified.
1162 * @shm_associate:
1163 * Check permission when a shared memory region is requested through the
1164 * shmget system call. This hook is only called when returning the shared
1165 * memory region identifier for an existing region, not when a new shared
1166 * memory region is created.
1167 * @shp contains the shared memory structure to be modified.
1168 * @shmflg contains the operation control flags.
1169 * Return 0 if permission is granted.
1170 * @shm_shmctl:
1171 * Check permission when a shared memory control operation specified by
1172 * @cmd is to be performed on the shared memory region @shp.
1173 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1174 * @shp contains shared memory structure to be modified.
1175 * @cmd contains the operation to be performed.
1176 * Return 0 if permission is granted.
1177 * @shm_shmat:
1178 * Check permissions prior to allowing the shmat system call to attach the
1179 * shared memory segment @shp to the data segment of the calling process.
1180 * The attaching address is specified by @shmaddr.
1181 * @shp contains the shared memory structure to be modified.
1182 * @shmaddr contains the address to attach memory region to.
1183 * @shmflg contains the operational flags.
1184 * Return 0 if permission is granted.
1185 *
1186 * Security hooks for System V Semaphores
1187 *
1188 * @sem_alloc_security:
1189 * Allocate and attach a security structure to the sma->sem_perm.security
1190 * field. The security field is initialized to NULL when the structure is
1191 * first created.
1192 * @sma contains the semaphore structure
1193 * Return 0 if operation was successful and permission is granted.
1194 * @sem_free_security:
1195 * deallocate security struct for this semaphore
1196 * @sma contains the semaphore structure.
1197 * @sem_associate:
1198 * Check permission when a semaphore is requested through the semget
1199 * system call. This hook is only called when returning the semaphore
1200 * identifier for an existing semaphore, not when a new one must be
1201 * created.
1202 * @sma contains the semaphore structure.
1203 * @semflg contains the operation control flags.
1204 * Return 0 if permission is granted.
1205 * @sem_semctl:
1206 * Check permission when a semaphore operation specified by @cmd is to be
Eric Paris7b41b172008-04-23 14:10:25 -04001207 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 * IPC_INFO or SEM_INFO.
1209 * @sma contains the semaphore structure. May be NULL.
1210 * @cmd contains the operation to be performed.
1211 * Return 0 if permission is granted.
1212 * @sem_semop
1213 * Check permissions before performing operations on members of the
Eric Paris7b41b172008-04-23 14:10:25 -04001214 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1215 * may be modified.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 * @sma contains the semaphore structure.
1217 * @sops contains the operations to perform.
1218 * @nsops contains the number of operations to perform.
1219 * @alter contains the flag indicating whether changes are to be made.
1220 * Return 0 if permission is granted.
1221 *
Ingo Molnar9e488582009-05-07 19:26:19 +10001222 * @ptrace_access_check:
David Howells5cd9c582008-08-14 11:37:28 +01001223 * Check permission before allowing the current process to trace the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 * @child process.
1225 * Security modules may also want to perform a process tracing check
1226 * during an execve in the set_security or apply_creds hooks of
David Howellsd84f4f92008-11-14 10:39:23 +11001227 * tracing check during an execve in the bprm_set_creds hook of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * binprm_security_ops if the process is being traced and its security
1229 * attributes would be changed by the execve.
David Howells5cd9c582008-08-14 11:37:28 +01001230 * @child contains the task_struct structure for the target process.
Stephen Smalley006ebb42008-05-19 08:32:49 -04001231 * @mode contains the PTRACE_MODE flags indicating the form of access.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * Return 0 if permission is granted.
David Howells5cd9c582008-08-14 11:37:28 +01001233 * @ptrace_traceme:
1234 * Check that the @parent process has sufficient permission to trace the
1235 * current process before allowing the current process to present itself
1236 * to the @parent process for tracing.
Ingo Molnar9e488582009-05-07 19:26:19 +10001237 * The parent process will still have to undergo the ptrace_access_check
David Howells5cd9c582008-08-14 11:37:28 +01001238 * checks before it is allowed to trace this one.
1239 * @parent contains the task_struct structure for debugger process.
1240 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 * @capget:
1242 * Get the @effective, @inheritable, and @permitted capability sets for
1243 * the @target process. The hook may also perform permission checking to
1244 * determine if the current process is allowed to see the capability sets
1245 * of the @target process.
1246 * @target contains the task_struct structure for target process.
1247 * @effective contains the effective capability set.
1248 * @inheritable contains the inheritable capability set.
1249 * @permitted contains the permitted capability set.
1250 * Return 0 if the capability sets were successfully obtained.
David Howellsd84f4f92008-11-14 10:39:23 +11001251 * @capset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 * Set the @effective, @inheritable, and @permitted capability sets for
David Howells1cdcbec2008-11-14 10:39:14 +11001253 * the current process.
David Howellsd84f4f92008-11-14 10:39:23 +11001254 * @new contains the new credentials structure for target process.
1255 * @old contains the current credentials structure for target process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 * @effective contains the effective capability set.
1257 * @inheritable contains the inheritable capability set.
1258 * @permitted contains the permitted capability set.
David Howellsd84f4f92008-11-14 10:39:23 +11001259 * Return 0 and update @new if permission is granted.
Chris Wright12b59892006-03-25 03:07:41 -08001260 * @capable:
David Howells3699c532009-01-06 22:27:01 +00001261 * Check whether the @tsk process has the @cap capability in the indicated
1262 * credentials.
Chris Wright12b59892006-03-25 03:07:41 -08001263 * @tsk contains the task_struct for the process.
David Howells3699c532009-01-06 22:27:01 +00001264 * @cred contains the credentials to use.
Chris Wright12b59892006-03-25 03:07:41 -08001265 * @cap contains the capability <include/linux/capability.h>.
David Howells3699c532009-01-06 22:27:01 +00001266 * @audit: Whether to write an audit message or not
Chris Wright12b59892006-03-25 03:07:41 -08001267 * Return 0 if the capability is granted for @tsk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 * @syslog:
1269 * Check permission before accessing the kernel message ring or changing
1270 * logging to the console.
Eric Paris7b41b172008-04-23 14:10:25 -04001271 * See the syslog(2) manual page for an explanation of the @type values.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * @type contains the type of action.
Kees Cook00234592010-02-03 15:36:43 -08001273 * @from_file indicates the context of action (if it came from /proc).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 * Return 0 if permission is granted.
1275 * @settime:
1276 * Check permission to change the system time.
1277 * struct timespec and timezone are defined in include/linux/time.h
1278 * @ts contains new time
1279 * @tz contains new timezone
1280 * Return 0 if permission is granted.
1281 * @vm_enough_memory:
1282 * Check permissions for allocating a new virtual mapping.
Alan Cox34b4e4a2007-08-22 14:01:28 -07001283 * @mm contains the mm struct it is being added to.
Eric Paris7b41b172008-04-23 14:10:25 -04001284 * @pages contains the number of pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 * Return 0 if permission is granted.
1286 *
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001287 * @secid_to_secctx:
Eric Parisd5630b92010-10-13 16:24:48 -04001288 * Convert secid to security context. If secdata is NULL the length of
1289 * the result will be returned in seclen, but no secdata will be returned.
1290 * This does mean that the length could change between calls to check the
1291 * length and the next call which actually allocates and returns the secdata.
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001292 * @secid contains the security ID.
1293 * @secdata contains the pointer that stores the converted security context.
Eric Parisd5630b92010-10-13 16:24:48 -04001294 * @seclen pointer which contains the length of the data
David Howells63cb3442008-01-15 23:47:35 +00001295 * @secctx_to_secid:
Eric Paris7b41b172008-04-23 14:10:25 -04001296 * Convert security context to secid.
1297 * @secid contains the pointer to the generated security ID.
1298 * @secdata contains the security context.
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001299 *
1300 * @release_secctx:
1301 * Release the security context.
1302 * @secdata contains the security context.
1303 * @seclen contains the length of the security context.
1304 *
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001305 * Security hooks for Audit
1306 *
1307 * @audit_rule_init:
1308 * Allocate and initialize an LSM audit rule structure.
1309 * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
1310 * @op contains the operator the rule uses.
1311 * @rulestr contains the context where the rule will be applied to.
1312 * @lsmrule contains a pointer to receive the result.
1313 * Return 0 if @lsmrule has been successfully set,
1314 * -EINVAL in case of an invalid rule.
1315 *
1316 * @audit_rule_known:
1317 * Specifies whether given @rule contains any fields related to current LSM.
1318 * @rule contains the audit rule of interest.
1319 * Return 1 in case of relation found, 0 otherwise.
1320 *
1321 * @audit_rule_match:
1322 * Determine if given @secid matches a rule previously approved
1323 * by @audit_rule_known.
1324 * @secid contains the security id in question.
1325 * @field contains the field which relates to current LSM.
1326 * @op contains the operator that will be used for matching.
1327 * @rule points to the audit rule that will be checked against.
1328 * @actx points to the audit context associated with the check.
1329 * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1330 *
1331 * @audit_rule_free:
1332 * Deallocate the LSM audit rule structure previously allocated by
1333 * audit_rule_init.
1334 * @rule contains the allocated rule
1335 *
David P. Quigley1ee65e32009-09-03 14:25:57 -04001336 * @inode_notifysecctx:
1337 * Notify the security module of what the security context of an inode
1338 * should be. Initializes the incore security context managed by the
1339 * security module for this inode. Example usage: NFS client invokes
1340 * this hook to initialize the security context in its incore inode to the
1341 * value provided by the server for the file when the server returned the
1342 * file's attributes to the client.
1343 *
1344 * Must be called with inode->i_mutex locked.
1345 *
1346 * @inode we wish to set the security context of.
1347 * @ctx contains the string which we wish to set in the inode.
1348 * @ctxlen contains the length of @ctx.
1349 *
1350 * @inode_setsecctx:
1351 * Change the security context of an inode. Updates the
1352 * incore security context managed by the security module and invokes the
1353 * fs code as needed (via __vfs_setxattr_noperm) to update any backing
1354 * xattrs that represent the context. Example usage: NFS server invokes
1355 * this hook to change the security context in its incore inode and on the
1356 * backing filesystem to a value provided by the client on a SETATTR
1357 * operation.
1358 *
1359 * Must be called with inode->i_mutex locked.
1360 *
1361 * @dentry contains the inode we wish to set the security context of.
1362 * @ctx contains the string which we wish to set in the inode.
1363 * @ctxlen contains the length of @ctx.
1364 *
1365 * @inode_getsecctx:
1366 * Returns a string containing all relavent security context information
1367 *
1368 * @inode we wish to set the security context of.
1369 * @ctx is a pointer in which to place the allocated security context.
1370 * @ctxlen points to the place to put the length of @ctx.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * This is the main security structure.
1372 */
1373struct security_operations {
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001374 char name[SECURITY_NAME_MAX + 1];
1375
Ingo Molnar9e488582009-05-07 19:26:19 +10001376 int (*ptrace_access_check) (struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001377 int (*ptrace_traceme) (struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -04001378 int (*capget) (struct task_struct *target,
1379 kernel_cap_t *effective,
1380 kernel_cap_t *inheritable, kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001381 int (*capset) (struct cred *new,
1382 const struct cred *old,
1383 const kernel_cap_t *effective,
1384 const kernel_cap_t *inheritable,
1385 const kernel_cap_t *permitted);
David Howells3699c532009-01-06 22:27:01 +00001386 int (*capable) (struct task_struct *tsk, const struct cred *cred,
1387 int cap, int audit);
Eric Paris7b41b172008-04-23 14:10:25 -04001388 int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1389 int (*quota_on) (struct dentry *dentry);
Eric Paris12b30522010-11-15 18:36:29 -05001390 int (*syslog) (int type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 int (*settime) (struct timespec *ts, struct timezone *tz);
Alan Cox34b4e4a2007-08-22 14:01:28 -07001392 int (*vm_enough_memory) (struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
David Howellsa6f76f22008-11-14 10:39:24 +11001394 int (*bprm_set_creds) (struct linux_binprm *bprm);
Eric Paris7b41b172008-04-23 14:10:25 -04001395 int (*bprm_check_security) (struct linux_binprm *bprm);
1396 int (*bprm_secureexec) (struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001397 void (*bprm_committing_creds) (struct linux_binprm *bprm);
1398 void (*bprm_committed_creds) (struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Eric Paris7b41b172008-04-23 14:10:25 -04001400 int (*sb_alloc_security) (struct super_block *sb);
1401 void (*sb_free_security) (struct super_block *sb);
1402 int (*sb_copy_data) (char *orig, char *copy);
Eric Parisff36fe22011-03-03 16:09:14 -05001403 int (*sb_remount) (struct super_block *sb, void *data);
James Morris12204e22008-12-19 10:44:42 +11001404 int (*sb_kern_mount) (struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001405 int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
David Howells726c3342006-06-23 02:02:58 -07001406 int (*sb_statfs) (struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001407 int (*sb_mount) (char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 char *type, unsigned long flags, void *data);
Eric Paris7b41b172008-04-23 14:10:25 -04001409 int (*sb_umount) (struct vfsmount *mnt, int flags);
Al Virob5266eb2008-03-22 17:48:24 -04001410 int (*sb_pivotroot) (struct path *old_path,
1411 struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001412 int (*sb_set_mnt_opts) (struct super_block *sb,
1413 struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001414 void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1415 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001416 int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001418#ifdef CONFIG_SECURITY_PATH
1419 int (*path_unlink) (struct path *dir, struct dentry *dentry);
1420 int (*path_mkdir) (struct path *dir, struct dentry *dentry, int mode);
1421 int (*path_rmdir) (struct path *dir, struct dentry *dentry);
1422 int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode,
1423 unsigned int dev);
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001424 int (*path_truncate) (struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001425 int (*path_symlink) (struct path *dir, struct dentry *dentry,
1426 const char *old_name);
1427 int (*path_link) (struct dentry *old_dentry, struct path *new_dir,
1428 struct dentry *new_dentry);
1429 int (*path_rename) (struct path *old_dir, struct dentry *old_dentry,
1430 struct path *new_dir, struct dentry *new_dentry);
Tetsuo Handa89eda062009-10-04 21:49:47 +09001431 int (*path_chmod) (struct dentry *dentry, struct vfsmount *mnt,
1432 mode_t mode);
1433 int (*path_chown) (struct path *path, uid_t uid, gid_t gid);
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09001434 int (*path_chroot) (struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001435#endif
1436
Eric Paris7b41b172008-04-23 14:10:25 -04001437 int (*inode_alloc_security) (struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 void (*inode_free_security) (struct inode *inode);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07001439 int (*inode_init_security) (struct inode *inode, struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05001440 const struct qstr *qstr, char **name,
1441 void **value, size_t *len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 int (*inode_create) (struct inode *dir,
Eric Paris7b41b172008-04-23 14:10:25 -04001443 struct dentry *dentry, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 int (*inode_link) (struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001445 struct inode *dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1447 int (*inode_symlink) (struct inode *dir,
Eric Paris7b41b172008-04-23 14:10:25 -04001448 struct dentry *dentry, const char *old_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1451 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001452 int mode, dev_t dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001454 struct inode *new_dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int (*inode_readlink) (struct dentry *dentry);
1456 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
Al Virob77b0642008-07-17 09:37:02 -04001457 int (*inode_permission) (struct inode *inode, int mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1459 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001460 int (*inode_setxattr) (struct dentry *dentry, const char *name,
1461 const void *value, size_t size, int flags);
1462 void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
1463 const void *value, size_t size, int flags);
1464 int (*inode_getxattr) (struct dentry *dentry, const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 int (*inode_listxattr) (struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001466 int (*inode_removexattr) (struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001467 int (*inode_need_killpriv) (struct dentry *dentry);
1468 int (*inode_killpriv) (struct dentry *dentry);
Eric Paris7b41b172008-04-23 14:10:25 -04001469 int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
1470 int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
1471 int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
1472 void (*inode_getsecid) (const struct inode *inode, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Eric Paris7b41b172008-04-23 14:10:25 -04001474 int (*file_permission) (struct file *file, int mask);
1475 int (*file_alloc_security) (struct file *file);
1476 void (*file_free_security) (struct file *file);
1477 int (*file_ioctl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001479 int (*file_mmap) (struct file *file,
Eric Parised032182007-06-28 15:55:21 -04001480 unsigned long reqprot, unsigned long prot,
1481 unsigned long flags, unsigned long addr,
1482 unsigned long addr_only);
Eric Paris7b41b172008-04-23 14:10:25 -04001483 int (*file_mprotect) (struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 unsigned long reqprot,
1485 unsigned long prot);
Eric Paris7b41b172008-04-23 14:10:25 -04001486 int (*file_lock) (struct file *file, unsigned int cmd);
1487 int (*file_fcntl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001489 int (*file_set_fowner) (struct file *file);
1490 int (*file_send_sigiotask) (struct task_struct *tsk,
1491 struct fown_struct *fown, int sig);
1492 int (*file_receive) (struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001493 int (*dentry_open) (struct file *file, const struct cred *cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 int (*task_create) (unsigned long clone_flags);
David Howellsee18d642009-09-02 09:14:21 +01001496 int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp);
David Howellsf1752ee2008-11-14 10:39:17 +11001497 void (*cred_free) (struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001498 int (*cred_prepare)(struct cred *new, const struct cred *old,
1499 gfp_t gfp);
David Howellsee18d642009-09-02 09:14:21 +01001500 void (*cred_transfer)(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001501 int (*kernel_act_as)(struct cred *new, u32 secid);
1502 int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
Eric Parisdd8dbf22009-11-03 16:35:32 +11001503 int (*kernel_module_request)(char *kmod_name);
David Howellsd84f4f92008-11-14 10:39:23 +11001504 int (*task_fix_setuid) (struct cred *new, const struct cred *old,
1505 int flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001506 int (*task_setpgid) (struct task_struct *p, pid_t pgid);
1507 int (*task_getpgid) (struct task_struct *p);
1508 int (*task_getsid) (struct task_struct *p);
1509 void (*task_getsecid) (struct task_struct *p, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001510 int (*task_setnice) (struct task_struct *p, int nice);
1511 int (*task_setioprio) (struct task_struct *p, int ioprio);
1512 int (*task_getioprio) (struct task_struct *p);
Jiri Slaby8fd00b42009-08-26 18:41:16 +02001513 int (*task_setrlimit) (struct task_struct *p, unsigned int resource,
1514 struct rlimit *new_rlim);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001515 int (*task_setscheduler) (struct task_struct *p);
Eric Paris7b41b172008-04-23 14:10:25 -04001516 int (*task_getscheduler) (struct task_struct *p);
1517 int (*task_movememory) (struct task_struct *p);
1518 int (*task_kill) (struct task_struct *p,
1519 struct siginfo *info, int sig, u32 secid);
1520 int (*task_wait) (struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 int (*task_prctl) (int option, unsigned long arg2,
1522 unsigned long arg3, unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11001523 unsigned long arg5);
Eric Paris7b41b172008-04-23 14:10:25 -04001524 void (*task_to_inode) (struct task_struct *p, struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Eric Paris7b41b172008-04-23 14:10:25 -04001526 int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001527 void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Eric Paris7b41b172008-04-23 14:10:25 -04001529 int (*msg_msg_alloc_security) (struct msg_msg *msg);
1530 void (*msg_msg_free_security) (struct msg_msg *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Eric Paris7b41b172008-04-23 14:10:25 -04001532 int (*msg_queue_alloc_security) (struct msg_queue *msq);
1533 void (*msg_queue_free_security) (struct msg_queue *msq);
1534 int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
1535 int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
1536 int (*msg_queue_msgsnd) (struct msg_queue *msq,
1537 struct msg_msg *msg, int msqflg);
1538 int (*msg_queue_msgrcv) (struct msg_queue *msq,
1539 struct msg_msg *msg,
1540 struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 long type, int mode);
1542
Eric Paris7b41b172008-04-23 14:10:25 -04001543 int (*shm_alloc_security) (struct shmid_kernel *shp);
1544 void (*shm_free_security) (struct shmid_kernel *shp);
1545 int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
1546 int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
1547 int (*shm_shmat) (struct shmid_kernel *shp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 char __user *shmaddr, int shmflg);
1549
Eric Paris7b41b172008-04-23 14:10:25 -04001550 int (*sem_alloc_security) (struct sem_array *sma);
1551 void (*sem_free_security) (struct sem_array *sma);
1552 int (*sem_associate) (struct sem_array *sma, int semflg);
1553 int (*sem_semctl) (struct sem_array *sma, int cmd);
1554 int (*sem_semop) (struct sem_array *sma,
1555 struct sembuf *sops, unsigned nsops, int alter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Eric Paris7b41b172008-04-23 14:10:25 -04001557 int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
1558 int (*netlink_recv) (struct sk_buff *skb, int cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1561
Eric Paris7b41b172008-04-23 14:10:25 -04001562 int (*getprocattr) (struct task_struct *p, char *name, char **value);
1563 int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
1564 int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001565 int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001566 void (*release_secctx) (char *secdata, u32 seclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
David P. Quigley1ee65e32009-09-03 14:25:57 -04001568 int (*inode_notifysecctx)(struct inode *inode, void *ctx, u32 ctxlen);
1569 int (*inode_setsecctx)(struct dentry *dentry, void *ctx, u32 ctxlen);
1570 int (*inode_getsecctx)(struct inode *inode, void **ctx, u32 *ctxlen);
1571
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572#ifdef CONFIG_SECURITY_NETWORK
David S. Miller3610cda2011-01-05 15:38:53 -08001573 int (*unix_stream_connect) (struct sock *sock, struct sock *other, struct sock *newsk);
Eric Paris7b41b172008-04-23 14:10:25 -04001574 int (*unix_may_send) (struct socket *sock, struct socket *other);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 int (*socket_create) (int family, int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001577 int (*socket_post_create) (struct socket *sock, int family,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001578 int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001579 int (*socket_bind) (struct socket *sock,
1580 struct sockaddr *address, int addrlen);
1581 int (*socket_connect) (struct socket *sock,
1582 struct sockaddr *address, int addrlen);
1583 int (*socket_listen) (struct socket *sock, int backlog);
1584 int (*socket_accept) (struct socket *sock, struct socket *newsock);
Eric Paris7b41b172008-04-23 14:10:25 -04001585 int (*socket_sendmsg) (struct socket *sock,
1586 struct msghdr *msg, int size);
1587 int (*socket_recvmsg) (struct socket *sock,
1588 struct msghdr *msg, int size, int flags);
1589 int (*socket_getsockname) (struct socket *sock);
1590 int (*socket_getpeername) (struct socket *sock);
1591 int (*socket_getsockopt) (struct socket *sock, int level, int optname);
1592 int (*socket_setsockopt) (struct socket *sock, int level, int optname);
1593 int (*socket_shutdown) (struct socket *sock, int how);
1594 int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08001595 int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001596 int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
Al Viro7d877f32005-10-21 03:20:43 -04001597 int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 void (*sk_free_security) (struct sock *sk);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07001599 void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001600 void (*sk_getsecid) (struct sock *sk, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001601 void (*sock_graft) (struct sock *sk, struct socket *parent);
1602 int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
1603 struct request_sock *req);
1604 void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
1605 void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
Eric Paris2606fd12010-10-13 16:24:41 -04001606 int (*secmark_relabel_packet) (u32 secid);
1607 void (*secmark_refcount_inc) (void);
1608 void (*secmark_refcount_dec) (void);
Eric Paris7b41b172008-04-23 14:10:25 -04001609 void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
Paul Moore2b980db2009-08-28 18:12:43 -04001610 int (*tun_dev_create)(void);
1611 void (*tun_dev_post_create)(struct sock *sk);
1612 int (*tun_dev_attach)(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613#endif /* CONFIG_SECURITY_NETWORK */
David Howells29db9192005-10-30 15:02:44 -08001614
Trent Jaegerdf718372005-12-13 23:12:27 -08001615#ifdef CONFIG_SECURITY_NETWORK_XFRM
Paul Moore03e1ad72008-04-12 19:07:52 -07001616 int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001617 struct xfrm_user_sec_ctx *sec_ctx);
Paul Moore03e1ad72008-04-12 19:07:52 -07001618 int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
1619 void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
1620 int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001621 int (*xfrm_state_alloc_security) (struct xfrm_state *x,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001622 struct xfrm_user_sec_ctx *sec_ctx,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001623 u32 secid);
Trent Jaegerdf718372005-12-13 23:12:27 -08001624 void (*xfrm_state_free_security) (struct xfrm_state *x);
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001625 int (*xfrm_state_delete_security) (struct xfrm_state *x);
Eric Paris7b41b172008-04-23 14:10:25 -04001626 int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1627 int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
1628 struct xfrm_policy *xp,
1629 struct flowi *fl);
1630 int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
Trent Jaegerdf718372005-12-13 23:12:27 -08001631#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1632
David Howells29db9192005-10-30 15:02:44 -08001633 /* key management security hooks */
1634#ifdef CONFIG_KEYS
David Howellsd84f4f92008-11-14 10:39:23 +11001635 int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001636 void (*key_free) (struct key *key);
1637 int (*key_permission) (key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11001638 const struct cred *cred,
Eric Paris7b41b172008-04-23 14:10:25 -04001639 key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07001640 int (*key_getsecurity)(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08001641#endif /* CONFIG_KEYS */
1642
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001643#ifdef CONFIG_AUDIT
Eric Paris7b41b172008-04-23 14:10:25 -04001644 int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
1645 int (*audit_rule_known) (struct audit_krule *krule);
1646 int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
1647 struct audit_context *actx);
1648 void (*audit_rule_free) (void *lsmrule);
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001649#endif /* CONFIG_AUDIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650};
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652/* prototypes */
Eric Paris7b41b172008-04-23 14:10:25 -04001653extern int security_init(void);
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001654extern int security_module_enable(struct security_operations *ops);
Eric Paris7b41b172008-04-23 14:10:25 -04001655extern int register_security(struct security_operations *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
James Morris20510f22007-10-16 23:31:32 -07001657/* Security operations */
Ingo Molnar9e488582009-05-07 19:26:19 +10001658int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001659int security_ptrace_traceme(struct task_struct *parent);
James Morris20510f22007-10-16 23:31:32 -07001660int security_capget(struct task_struct *target,
Eric Paris7b41b172008-04-23 14:10:25 -04001661 kernel_cap_t *effective,
1662 kernel_cap_t *inheritable,
1663 kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001664int security_capset(struct cred *new, const struct cred *old,
1665 const kernel_cap_t *effective,
1666 const kernel_cap_t *inheritable,
1667 const kernel_cap_t *permitted);
David Howells3699c532009-01-06 22:27:01 +00001668int security_capable(int cap);
1669int security_real_capable(struct task_struct *tsk, int cap);
1670int security_real_capable_noaudit(struct task_struct *tsk, int cap);
James Morris20510f22007-10-16 23:31:32 -07001671int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1672int security_quota_on(struct dentry *dentry);
Eric Paris12b30522010-11-15 18:36:29 -05001673int security_syslog(int type);
James Morris20510f22007-10-16 23:31:32 -07001674int security_settime(struct timespec *ts, struct timezone *tz);
1675int security_vm_enough_memory(long pages);
1676int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
Alan Cox731572d2008-10-29 14:01:20 -07001677int security_vm_enough_memory_kern(long pages);
David Howellsa6f76f22008-11-14 10:39:24 +11001678int security_bprm_set_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001679int security_bprm_check(struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001680void security_bprm_committing_creds(struct linux_binprm *bprm);
1681void security_bprm_committed_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001682int security_bprm_secureexec(struct linux_binprm *bprm);
1683int security_sb_alloc(struct super_block *sb);
1684void security_sb_free(struct super_block *sb);
Eric Parise0007522008-03-05 10:31:54 -05001685int security_sb_copy_data(char *orig, char *copy);
Eric Parisff36fe22011-03-03 16:09:14 -05001686int security_sb_remount(struct super_block *sb, void *data);
James Morris12204e22008-12-19 10:44:42 +11001687int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001688int security_sb_show_options(struct seq_file *m, struct super_block *sb);
James Morris20510f22007-10-16 23:31:32 -07001689int security_sb_statfs(struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001690int security_sb_mount(char *dev_name, struct path *path,
Eric Paris7b41b172008-04-23 14:10:25 -04001691 char *type, unsigned long flags, void *data);
James Morris20510f22007-10-16 23:31:32 -07001692int security_sb_umount(struct vfsmount *mnt, int flags);
Al Virob5266eb2008-03-22 17:48:24 -04001693int security_sb_pivotroot(struct path *old_path, struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001694int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001695void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1696 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001697int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001698
James Morris20510f22007-10-16 23:31:32 -07001699int security_inode_alloc(struct inode *inode);
1700void security_inode_free(struct inode *inode);
1701int security_inode_init_security(struct inode *inode, struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05001702 const struct qstr *qstr, char **name,
1703 void **value, size_t *len);
James Morris20510f22007-10-16 23:31:32 -07001704int security_inode_create(struct inode *dir, struct dentry *dentry, int mode);
1705int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1706 struct dentry *new_dentry);
1707int security_inode_unlink(struct inode *dir, struct dentry *dentry);
1708int security_inode_symlink(struct inode *dir, struct dentry *dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001709 const char *old_name);
James Morris20510f22007-10-16 23:31:32 -07001710int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode);
1711int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
1712int security_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
1713int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001714 struct inode *new_dir, struct dentry *new_dentry);
James Morris20510f22007-10-16 23:31:32 -07001715int security_inode_readlink(struct dentry *dentry);
1716int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
Al Virob77b0642008-07-17 09:37:02 -04001717int security_inode_permission(struct inode *inode, int mask);
Nick Piggin31e6b012011-01-07 17:49:52 +11001718int security_inode_exec_permission(struct inode *inode, unsigned int flags);
James Morris20510f22007-10-16 23:31:32 -07001719int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1720int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001721int security_inode_setxattr(struct dentry *dentry, const char *name,
1722 const void *value, size_t size, int flags);
1723void security_inode_post_setxattr(struct dentry *dentry, const char *name,
1724 const void *value, size_t size, int flags);
1725int security_inode_getxattr(struct dentry *dentry, const char *name);
James Morris20510f22007-10-16 23:31:32 -07001726int security_inode_listxattr(struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001727int security_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001728int security_inode_need_killpriv(struct dentry *dentry);
1729int security_inode_killpriv(struct dentry *dentry);
David P. Quigley42492592008-02-04 22:29:39 -08001730int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
James Morris20510f22007-10-16 23:31:32 -07001731int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1732int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001733void security_inode_getsecid(const struct inode *inode, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001734int security_file_permission(struct file *file, int mask);
1735int security_file_alloc(struct file *file);
1736void security_file_free(struct file *file);
1737int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1738int security_file_mmap(struct file *file, unsigned long reqprot,
1739 unsigned long prot, unsigned long flags,
1740 unsigned long addr, unsigned long addr_only);
1741int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
Eric Paris7b41b172008-04-23 14:10:25 -04001742 unsigned long prot);
James Morris20510f22007-10-16 23:31:32 -07001743int security_file_lock(struct file *file, unsigned int cmd);
1744int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
1745int security_file_set_fowner(struct file *file);
1746int security_file_send_sigiotask(struct task_struct *tsk,
Eric Paris7b41b172008-04-23 14:10:25 -04001747 struct fown_struct *fown, int sig);
James Morris20510f22007-10-16 23:31:32 -07001748int security_file_receive(struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001749int security_dentry_open(struct file *file, const struct cred *cred);
James Morris20510f22007-10-16 23:31:32 -07001750int security_task_create(unsigned long clone_flags);
David Howellsee18d642009-09-02 09:14:21 +01001751int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
David Howellsf1752ee2008-11-14 10:39:17 +11001752void security_cred_free(struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001753int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
David Howellsee18d642009-09-02 09:14:21 +01001754void security_transfer_creds(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001755int security_kernel_act_as(struct cred *new, u32 secid);
1756int security_kernel_create_files_as(struct cred *new, struct inode *inode);
Eric Parisdd8dbf22009-11-03 16:35:32 +11001757int security_kernel_module_request(char *kmod_name);
David Howellsd84f4f92008-11-14 10:39:23 +11001758int security_task_fix_setuid(struct cred *new, const struct cred *old,
1759 int flags);
James Morris20510f22007-10-16 23:31:32 -07001760int security_task_setpgid(struct task_struct *p, pid_t pgid);
1761int security_task_getpgid(struct task_struct *p);
1762int security_task_getsid(struct task_struct *p);
1763void security_task_getsecid(struct task_struct *p, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001764int security_task_setnice(struct task_struct *p, int nice);
1765int security_task_setioprio(struct task_struct *p, int ioprio);
1766int security_task_getioprio(struct task_struct *p);
Jiri Slaby8fd00b42009-08-26 18:41:16 +02001767int security_task_setrlimit(struct task_struct *p, unsigned int resource,
1768 struct rlimit *new_rlim);
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09001769int security_task_setscheduler(struct task_struct *p);
James Morris20510f22007-10-16 23:31:32 -07001770int security_task_getscheduler(struct task_struct *p);
1771int security_task_movememory(struct task_struct *p);
1772int security_task_kill(struct task_struct *p, struct siginfo *info,
1773 int sig, u32 secid);
1774int security_task_wait(struct task_struct *p);
1775int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +11001776 unsigned long arg4, unsigned long arg5);
James Morris20510f22007-10-16 23:31:32 -07001777void security_task_to_inode(struct task_struct *p, struct inode *inode);
1778int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001779void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001780int security_msg_msg_alloc(struct msg_msg *msg);
1781void security_msg_msg_free(struct msg_msg *msg);
1782int security_msg_queue_alloc(struct msg_queue *msq);
1783void security_msg_queue_free(struct msg_queue *msq);
1784int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
1785int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
1786int security_msg_queue_msgsnd(struct msg_queue *msq,
Eric Paris7b41b172008-04-23 14:10:25 -04001787 struct msg_msg *msg, int msqflg);
James Morris20510f22007-10-16 23:31:32 -07001788int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
Eric Paris7b41b172008-04-23 14:10:25 -04001789 struct task_struct *target, long type, int mode);
James Morris20510f22007-10-16 23:31:32 -07001790int security_shm_alloc(struct shmid_kernel *shp);
1791void security_shm_free(struct shmid_kernel *shp);
1792int security_shm_associate(struct shmid_kernel *shp, int shmflg);
1793int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
1794int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
1795int security_sem_alloc(struct sem_array *sma);
1796void security_sem_free(struct sem_array *sma);
1797int security_sem_associate(struct sem_array *sma, int semflg);
1798int security_sem_semctl(struct sem_array *sma, int cmd);
1799int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
1800 unsigned nsops, int alter);
Eric Paris7b41b172008-04-23 14:10:25 -04001801void security_d_instantiate(struct dentry *dentry, struct inode *inode);
James Morris20510f22007-10-16 23:31:32 -07001802int security_getprocattr(struct task_struct *p, char *name, char **value);
1803int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
1804int security_netlink_send(struct sock *sk, struct sk_buff *skb);
1805int security_netlink_recv(struct sk_buff *skb, int cap);
1806int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001807int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001808void security_release_secctx(char *secdata, u32 seclen);
1809
David P. Quigley1ee65e32009-09-03 14:25:57 -04001810int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen);
1811int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen);
1812int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813#else /* CONFIG_SECURITY */
Eric Parise0007522008-03-05 10:31:54 -05001814struct security_mnt_opts {
1815};
1816
1817static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
1818{
1819}
1820
1821static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
1822{
1823}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
1825/*
1826 * This is the default capabilities functionality. Most of these functions
1827 * are just stubbed out, but a few must call the proper capable code.
1828 */
1829
1830static inline int security_init(void)
1831{
1832 return 0;
1833}
1834
Ingo Molnar9e488582009-05-07 19:26:19 +10001835static inline int security_ptrace_access_check(struct task_struct *child,
David Howells5cd9c582008-08-14 11:37:28 +01001836 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
Ingo Molnar9e488582009-05-07 19:26:19 +10001838 return cap_ptrace_access_check(child, mode);
David Howells5cd9c582008-08-14 11:37:28 +01001839}
1840
Alexander Beregalov5e186b52008-08-17 05:34:20 +04001841static inline int security_ptrace_traceme(struct task_struct *parent)
David Howells5cd9c582008-08-14 11:37:28 +01001842{
1843 return cap_ptrace_traceme(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
Eric Paris7b41b172008-04-23 14:10:25 -04001846static inline int security_capget(struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 kernel_cap_t *effective,
1848 kernel_cap_t *inheritable,
1849 kernel_cap_t *permitted)
1850{
Eric Paris7b41b172008-04-23 14:10:25 -04001851 return cap_capget(target, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
David Howellsd84f4f92008-11-14 10:39:23 +11001854static inline int security_capset(struct cred *new,
1855 const struct cred *old,
1856 const kernel_cap_t *effective,
1857 const kernel_cap_t *inheritable,
1858 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
David Howellsd84f4f92008-11-14 10:39:23 +11001860 return cap_capset(new, old, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861}
1862
David Howells3699c532009-01-06 22:27:01 +00001863static inline int security_capable(int cap)
Chris Wright12b59892006-03-25 03:07:41 -08001864{
David Howells3699c532009-01-06 22:27:01 +00001865 return cap_capable(current, current_cred(), cap, SECURITY_CAP_AUDIT);
Eric Paris06112162008-11-11 22:02:50 +11001866}
1867
David Howells3699c532009-01-06 22:27:01 +00001868static inline int security_real_capable(struct task_struct *tsk, int cap)
Eric Paris06112162008-11-11 22:02:50 +11001869{
David Howells3699c532009-01-06 22:27:01 +00001870 int ret;
1871
1872 rcu_read_lock();
1873 ret = cap_capable(tsk, __task_cred(tsk), cap, SECURITY_CAP_AUDIT);
1874 rcu_read_unlock();
1875 return ret;
1876}
1877
1878static inline
1879int security_real_capable_noaudit(struct task_struct *tsk, int cap)
1880{
1881 int ret;
1882
1883 rcu_read_lock();
1884 ret = cap_capable(tsk, __task_cred(tsk), cap,
1885 SECURITY_CAP_NOAUDIT);
1886 rcu_read_unlock();
1887 return ret;
Chris Wright12b59892006-03-25 03:07:41 -08001888}
1889
Eric Paris7b41b172008-04-23 14:10:25 -04001890static inline int security_quotactl(int cmds, int type, int id,
1891 struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
1893 return 0;
1894}
1895
Eric Paris7b41b172008-04-23 14:10:25 -04001896static inline int security_quota_on(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 return 0;
1899}
1900
Eric Paris12b30522010-11-15 18:36:29 -05001901static inline int security_syslog(int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902{
Eric Paris12b30522010-11-15 18:36:29 -05001903 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
1905
1906static inline int security_settime(struct timespec *ts, struct timezone *tz)
1907{
1908 return cap_settime(ts, tz);
1909}
1910
1911static inline int security_vm_enough_memory(long pages)
1912{
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001913 WARN_ON(current->mm == NULL);
Alan Cox731572d2008-10-29 14:01:20 -07001914 return cap_vm_enough_memory(current->mm, pages);
1915}
1916
Alan Cox34b4e4a2007-08-22 14:01:28 -07001917static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1918{
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001919 WARN_ON(mm == NULL);
Alan Cox34b4e4a2007-08-22 14:01:28 -07001920 return cap_vm_enough_memory(mm, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001923static inline int security_vm_enough_memory_kern(long pages)
1924{
1925 /* If current->mm is a kernel thread then we will pass NULL,
1926 for this specific case that is fine */
1927 return cap_vm_enough_memory(current->mm, pages);
1928}
1929
David Howellsa6f76f22008-11-14 10:39:24 +11001930static inline int security_bprm_set_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931{
David Howellsa6f76f22008-11-14 10:39:24 +11001932 return cap_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
Eric Paris7b41b172008-04-23 14:10:25 -04001935static inline int security_bprm_check(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
1937 return 0;
1938}
1939
David Howellsa6f76f22008-11-14 10:39:24 +11001940static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1941{
1942}
1943
1944static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1945{
1946}
1947
Eric Paris7b41b172008-04-23 14:10:25 -04001948static inline int security_bprm_secureexec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 return cap_bprm_secureexec(bprm);
1951}
1952
Eric Paris7b41b172008-04-23 14:10:25 -04001953static inline int security_sb_alloc(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954{
1955 return 0;
1956}
1957
Eric Paris7b41b172008-04-23 14:10:25 -04001958static inline void security_sb_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{ }
1960
Eric Paris7b41b172008-04-23 14:10:25 -04001961static inline int security_sb_copy_data(char *orig, char *copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962{
1963 return 0;
1964}
1965
Eric Parisff36fe22011-03-03 16:09:14 -05001966static inline int security_sb_remount(struct super_block *sb, void *data)
1967{
1968 return 0;
1969}
1970
James Morris12204e22008-12-19 10:44:42 +11001971static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 return 0;
1974}
1975
Eric Paris2069f452008-07-04 09:47:13 +10001976static inline int security_sb_show_options(struct seq_file *m,
1977 struct super_block *sb)
1978{
1979 return 0;
1980}
1981
Eric Paris7b41b172008-04-23 14:10:25 -04001982static inline int security_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{
1984 return 0;
1985}
1986
Eric Paris7b41b172008-04-23 14:10:25 -04001987static inline int security_sb_mount(char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 char *type, unsigned long flags,
1989 void *data)
1990{
1991 return 0;
1992}
1993
Eric Paris7b41b172008-04-23 14:10:25 -04001994static inline int security_sb_umount(struct vfsmount *mnt, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 return 0;
1997}
1998
Eric Paris7b41b172008-04-23 14:10:25 -04001999static inline int security_sb_pivotroot(struct path *old_path,
2000 struct path *new_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
2002 return 0;
2003}
2004
Eric Parise0007522008-03-05 10:31:54 -05002005static inline int security_sb_set_mnt_opts(struct super_block *sb,
2006 struct security_mnt_opts *opts)
2007{
2008 return 0;
2009}
2010
2011static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
2012 struct super_block *newsb)
2013{ }
2014
2015static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
2016{
2017 return 0;
2018}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Eric Paris7b41b172008-04-23 14:10:25 -04002020static inline int security_inode_alloc(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
2022 return 0;
2023}
2024
Eric Paris7b41b172008-04-23 14:10:25 -04002025static inline void security_inode_free(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{ }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002027
Eric Paris7b41b172008-04-23 14:10:25 -04002028static inline int security_inode_init_security(struct inode *inode,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002029 struct inode *dir,
Eric Paris2a7dba32011-02-01 11:05:39 -05002030 const struct qstr *qstr,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002031 char **name,
2032 void **value,
2033 size_t *len)
2034{
2035 return -EOPNOTSUPP;
2036}
Eric Paris7b41b172008-04-23 14:10:25 -04002037
2038static inline int security_inode_create(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct dentry *dentry,
2040 int mode)
2041{
2042 return 0;
2043}
2044
Eric Paris7b41b172008-04-23 14:10:25 -04002045static inline int security_inode_link(struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 struct inode *dir,
2047 struct dentry *new_dentry)
2048{
2049 return 0;
2050}
2051
Eric Paris7b41b172008-04-23 14:10:25 -04002052static inline int security_inode_unlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 struct dentry *dentry)
2054{
2055 return 0;
2056}
2057
Eric Paris7b41b172008-04-23 14:10:25 -04002058static inline int security_inode_symlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 struct dentry *dentry,
2060 const char *old_name)
2061{
2062 return 0;
2063}
2064
Eric Paris7b41b172008-04-23 14:10:25 -04002065static inline int security_inode_mkdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 struct dentry *dentry,
2067 int mode)
2068{
2069 return 0;
2070}
2071
Eric Paris7b41b172008-04-23 14:10:25 -04002072static inline int security_inode_rmdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct dentry *dentry)
2074{
2075 return 0;
2076}
2077
Eric Paris7b41b172008-04-23 14:10:25 -04002078static inline int security_inode_mknod(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 struct dentry *dentry,
2080 int mode, dev_t dev)
2081{
2082 return 0;
2083}
2084
Eric Paris7b41b172008-04-23 14:10:25 -04002085static inline int security_inode_rename(struct inode *old_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 struct dentry *old_dentry,
2087 struct inode *new_dir,
2088 struct dentry *new_dentry)
2089{
2090 return 0;
2091}
2092
Eric Paris7b41b172008-04-23 14:10:25 -04002093static inline int security_inode_readlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 return 0;
2096}
2097
Eric Paris7b41b172008-04-23 14:10:25 -04002098static inline int security_inode_follow_link(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct nameidata *nd)
2100{
2101 return 0;
2102}
2103
Al Virob77b0642008-07-17 09:37:02 -04002104static inline int security_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 return 0;
2107}
2108
Nick Piggin31e6b012011-01-07 17:49:52 +11002109static inline int security_inode_exec_permission(struct inode *inode,
2110 unsigned int flags)
2111{
2112 return 0;
2113}
2114
Eric Paris7b41b172008-04-23 14:10:25 -04002115static inline int security_inode_setattr(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 struct iattr *attr)
2117{
2118 return 0;
2119}
2120
Eric Paris7b41b172008-04-23 14:10:25 -04002121static inline int security_inode_getattr(struct vfsmount *mnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 struct dentry *dentry)
2123{
2124 return 0;
2125}
2126
David Howells8f0cfa52008-04-29 00:59:41 -07002127static inline int security_inode_setxattr(struct dentry *dentry,
2128 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 return cap_inode_setxattr(dentry, name, value, size, flags);
2131}
2132
David Howells8f0cfa52008-04-29 00:59:41 -07002133static inline void security_inode_post_setxattr(struct dentry *dentry,
2134 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{ }
2136
David Howells8f0cfa52008-04-29 00:59:41 -07002137static inline int security_inode_getxattr(struct dentry *dentry,
2138 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
2140 return 0;
2141}
2142
Eric Paris7b41b172008-04-23 14:10:25 -04002143static inline int security_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 return 0;
2146}
2147
David Howells8f0cfa52008-04-29 00:59:41 -07002148static inline int security_inode_removexattr(struct dentry *dentry,
2149 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 return cap_inode_removexattr(dentry, name);
2152}
2153
Serge E. Hallynb5376772007-10-16 23:31:36 -07002154static inline int security_inode_need_killpriv(struct dentry *dentry)
2155{
2156 return cap_inode_need_killpriv(dentry);
2157}
2158
2159static inline int security_inode_killpriv(struct dentry *dentry)
2160{
2161 return cap_inode_killpriv(dentry);
2162}
2163
David P. Quigley42492592008-02-04 22:29:39 -08002164static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 return -EOPNOTSUPP;
2167}
2168
2169static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2170{
2171 return -EOPNOTSUPP;
2172}
2173
2174static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2175{
2176 return 0;
2177}
2178
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002179static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2180{
2181 *secid = 0;
2182}
2183
Eric Paris7b41b172008-04-23 14:10:25 -04002184static inline int security_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
2186 return 0;
2187}
2188
Eric Paris7b41b172008-04-23 14:10:25 -04002189static inline int security_file_alloc(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190{
2191 return 0;
2192}
2193
Eric Paris7b41b172008-04-23 14:10:25 -04002194static inline void security_file_free(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{ }
2196
Eric Paris7b41b172008-04-23 14:10:25 -04002197static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2198 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 return 0;
2201}
2202
Eric Paris7b41b172008-04-23 14:10:25 -04002203static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2204 unsigned long prot,
2205 unsigned long flags,
2206 unsigned long addr,
2207 unsigned long addr_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
Eric Paris7c738752009-07-31 12:53:58 -04002209 return cap_file_mmap(file, reqprot, prot, flags, addr, addr_only);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210}
2211
Eric Paris7b41b172008-04-23 14:10:25 -04002212static inline int security_file_mprotect(struct vm_area_struct *vma,
2213 unsigned long reqprot,
2214 unsigned long prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 return 0;
2217}
2218
Eric Paris7b41b172008-04-23 14:10:25 -04002219static inline int security_file_lock(struct file *file, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 return 0;
2222}
2223
Eric Paris7b41b172008-04-23 14:10:25 -04002224static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2225 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
2227 return 0;
2228}
2229
Eric Paris7b41b172008-04-23 14:10:25 -04002230static inline int security_file_set_fowner(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 return 0;
2233}
2234
Eric Paris7b41b172008-04-23 14:10:25 -04002235static inline int security_file_send_sigiotask(struct task_struct *tsk,
2236 struct fown_struct *fown,
2237 int sig)
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_receive(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243{
2244 return 0;
2245}
2246
David Howells745ca242008-11-14 10:39:22 +11002247static inline int security_dentry_open(struct file *file,
2248 const struct cred *cred)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002249{
2250 return 0;
2251}
2252
Eric Paris7b41b172008-04-23 14:10:25 -04002253static inline int security_task_create(unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 return 0;
2256}
2257
David Howells945af7c2009-09-04 09:19:48 +01002258static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
2259{
2260 return 0;
2261}
David Howellsee18d642009-09-02 09:14:21 +01002262
David Howellsd84f4f92008-11-14 10:39:23 +11002263static inline void security_cred_free(struct cred *cred)
2264{ }
2265
2266static inline int security_prepare_creds(struct cred *new,
2267 const struct cred *old,
2268 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 return 0;
2271}
2272
David Howellsee18d642009-09-02 09:14:21 +01002273static inline void security_transfer_creds(struct cred *new,
2274 const struct cred *old)
2275{
2276}
2277
David Howells3a3b7ce2008-11-14 10:39:28 +11002278static inline int security_kernel_act_as(struct cred *cred, u32 secid)
2279{
2280 return 0;
2281}
2282
2283static inline int security_kernel_create_files_as(struct cred *cred,
2284 struct inode *inode)
2285{
2286 return 0;
2287}
2288
Eric Parisdd8dbf22009-11-03 16:35:32 +11002289static inline int security_kernel_module_request(char *kmod_name)
Eric Paris91884992009-08-13 09:44:57 -04002290{
2291 return 0;
2292}
2293
David Howellsd84f4f92008-11-14 10:39:23 +11002294static inline int security_task_fix_setuid(struct cred *new,
2295 const struct cred *old,
2296 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
David Howellsd84f4f92008-11-14 10:39:23 +11002298 return cap_task_fix_setuid(new, old, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299}
2300
Eric Paris7b41b172008-04-23 14:10:25 -04002301static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302{
2303 return 0;
2304}
2305
Eric Paris7b41b172008-04-23 14:10:25 -04002306static inline int security_task_getpgid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
2308 return 0;
2309}
2310
Eric Paris7b41b172008-04-23 14:10:25 -04002311static inline int security_task_getsid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312{
2313 return 0;
2314}
2315
Eric Paris7b41b172008-04-23 14:10:25 -04002316static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002317{
2318 *secid = 0;
2319}
David Quigleyf9008e42006-06-30 01:55:46 -07002320
Eric Paris7b41b172008-04-23 14:10:25 -04002321static inline int security_task_setnice(struct task_struct *p, int nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002323 return cap_task_setnice(p, nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
Eric Paris7b41b172008-04-23 14:10:25 -04002326static inline int security_task_setioprio(struct task_struct *p, int ioprio)
James Morris03e68062006-06-23 02:03:58 -07002327{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002328 return cap_task_setioprio(p, ioprio);
James Morris03e68062006-06-23 02:03:58 -07002329}
2330
Eric Paris7b41b172008-04-23 14:10:25 -04002331static inline int security_task_getioprio(struct task_struct *p)
David Quigleya1836a42006-06-30 01:55:49 -07002332{
2333 return 0;
2334}
2335
Jiri Slaby8fd00b42009-08-26 18:41:16 +02002336static inline int security_task_setrlimit(struct task_struct *p,
2337 unsigned int resource,
Eric Paris7b41b172008-04-23 14:10:25 -04002338 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 return 0;
2341}
2342
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002343static inline int security_task_setscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
KOSAKI Motohirob0ae1982010-10-15 04:21:18 +09002345 return cap_task_setscheduler(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347
Eric Paris7b41b172008-04-23 14:10:25 -04002348static inline int security_task_getscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 return 0;
2351}
2352
Eric Paris7b41b172008-04-23 14:10:25 -04002353static inline int security_task_movememory(struct task_struct *p)
David Quigley35601542006-06-23 02:04:01 -07002354{
2355 return 0;
2356}
2357
Eric Paris7b41b172008-04-23 14:10:25 -04002358static inline int security_task_kill(struct task_struct *p,
2359 struct siginfo *info, int sig,
2360 u32 secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Serge Hallynaedb60a2008-02-29 15:14:57 +00002362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363}
2364
Eric Paris7b41b172008-04-23 14:10:25 -04002365static inline int security_task_wait(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
2367 return 0;
2368}
2369
Eric Paris7b41b172008-04-23 14:10:25 -04002370static inline int security_task_prctl(int option, unsigned long arg2,
2371 unsigned long arg3,
2372 unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11002373 unsigned long arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
David Howellsd84f4f92008-11-14 10:39:23 +11002375 return cap_task_prctl(option, arg2, arg3, arg3, arg5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
2378static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2379{ }
2380
Eric Paris7b41b172008-04-23 14:10:25 -04002381static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2382 short flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383{
2384 return 0;
2385}
2386
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002387static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2388{
2389 *secid = 0;
2390}
2391
Eric Paris7b41b172008-04-23 14:10:25 -04002392static inline int security_msg_msg_alloc(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
2394 return 0;
2395}
2396
Eric Paris7b41b172008-04-23 14:10:25 -04002397static inline void security_msg_msg_free(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{ }
2399
Eric Paris7b41b172008-04-23 14:10:25 -04002400static inline int security_msg_queue_alloc(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
2402 return 0;
2403}
2404
Eric Paris7b41b172008-04-23 14:10:25 -04002405static inline void security_msg_queue_free(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{ }
2407
Eric Paris7b41b172008-04-23 14:10:25 -04002408static inline int security_msg_queue_associate(struct msg_queue *msq,
2409 int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
2411 return 0;
2412}
2413
Eric Paris7b41b172008-04-23 14:10:25 -04002414static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
2416 return 0;
2417}
2418
Eric Paris7b41b172008-04-23 14:10:25 -04002419static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2420 struct msg_msg *msg, int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
2422 return 0;
2423}
2424
Eric Paris7b41b172008-04-23 14:10:25 -04002425static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2426 struct msg_msg *msg,
2427 struct task_struct *target,
2428 long type, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
2430 return 0;
2431}
2432
Eric Paris7b41b172008-04-23 14:10:25 -04002433static inline int security_shm_alloc(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434{
2435 return 0;
2436}
2437
Eric Paris7b41b172008-04-23 14:10:25 -04002438static inline void security_shm_free(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{ }
2440
Eric Paris7b41b172008-04-23 14:10:25 -04002441static inline int security_shm_associate(struct shmid_kernel *shp,
2442 int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
2444 return 0;
2445}
2446
Eric Paris7b41b172008-04-23 14:10:25 -04002447static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
2449 return 0;
2450}
2451
Eric Paris7b41b172008-04-23 14:10:25 -04002452static inline int security_shm_shmat(struct shmid_kernel *shp,
2453 char __user *shmaddr, int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
2455 return 0;
2456}
2457
Eric Paris7b41b172008-04-23 14:10:25 -04002458static inline int security_sem_alloc(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 return 0;
2461}
2462
Eric Paris7b41b172008-04-23 14:10:25 -04002463static inline void security_sem_free(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{ }
2465
Eric Paris7b41b172008-04-23 14:10:25 -04002466static inline int security_sem_associate(struct sem_array *sma, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
2468 return 0;
2469}
2470
Eric Paris7b41b172008-04-23 14:10:25 -04002471static inline int security_sem_semctl(struct sem_array *sma, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
2473 return 0;
2474}
2475
Eric Paris7b41b172008-04-23 14:10:25 -04002476static inline int security_sem_semop(struct sem_array *sma,
2477 struct sembuf *sops, unsigned nsops,
2478 int alter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
2480 return 0;
2481}
2482
Eric Paris7b41b172008-04-23 14:10:25 -04002483static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484{ }
2485
Al Viro04ff9702007-03-12 16:17:58 +00002486static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
2488 return -EINVAL;
2489}
2490
2491static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2492{
2493 return -EINVAL;
2494}
2495
Eric Paris7b41b172008-04-23 14:10:25 -04002496static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Eric Paris7b41b172008-04-23 14:10:25 -04002498 return cap_netlink_send(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499}
2500
Eric Paris7b41b172008-04-23 14:10:25 -04002501static inline int security_netlink_recv(struct sk_buff *skb, int cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
Eric Paris7b41b172008-04-23 14:10:25 -04002503 return cap_netlink_recv(skb, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002506static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2507{
2508 return -EOPNOTSUPP;
2509}
2510
David Howells7bf570d2008-04-29 20:52:51 +01002511static inline int security_secctx_to_secid(const char *secdata,
David Howells63cb3442008-01-15 23:47:35 +00002512 u32 seclen,
2513 u32 *secid)
2514{
2515 return -EOPNOTSUPP;
2516}
2517
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002518static inline void security_release_secctx(char *secdata, u32 seclen)
2519{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002520}
David P. Quigley1ee65e32009-09-03 14:25:57 -04002521
2522static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
2523{
2524 return -EOPNOTSUPP;
2525}
2526static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
2527{
2528 return -EOPNOTSUPP;
2529}
2530static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
2531{
2532 return -EOPNOTSUPP;
2533}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#endif /* CONFIG_SECURITY */
2535
2536#ifdef CONFIG_SECURITY_NETWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537
David S. Miller3610cda2011-01-05 15:38:53 -08002538int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
James Morris20510f22007-10-16 23:31:32 -07002539int security_unix_may_send(struct socket *sock, struct socket *other);
2540int security_socket_create(int family, int type, int protocol, int kern);
2541int security_socket_post_create(struct socket *sock, int family,
2542 int type, int protocol, int kern);
2543int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2544int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2545int security_socket_listen(struct socket *sock, int backlog);
2546int security_socket_accept(struct socket *sock, struct socket *newsock);
James Morris20510f22007-10-16 23:31:32 -07002547int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2548int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2549 int size, int flags);
2550int security_socket_getsockname(struct socket *sock);
2551int security_socket_getpeername(struct socket *sock);
2552int security_socket_getsockopt(struct socket *sock, int level, int optname);
2553int security_socket_setsockopt(struct socket *sock, int level, int optname);
2554int security_socket_shutdown(struct socket *sock, int how);
2555int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2556int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2557 int __user *optlen, unsigned len);
2558int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2559int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2560void security_sk_free(struct sock *sk);
2561void security_sk_clone(const struct sock *sk, struct sock *newsk);
2562void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2563void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2564void security_sock_graft(struct sock*sk, struct socket *parent);
2565int security_inet_conn_request(struct sock *sk,
2566 struct sk_buff *skb, struct request_sock *req);
2567void security_inet_csk_clone(struct sock *newsk,
2568 const struct request_sock *req);
2569void security_inet_conn_established(struct sock *sk,
2570 struct sk_buff *skb);
Eric Paris2606fd12010-10-13 16:24:41 -04002571int security_secmark_relabel_packet(u32 secid);
2572void security_secmark_refcount_inc(void);
2573void security_secmark_refcount_dec(void);
Paul Moore2b980db2009-08-28 18:12:43 -04002574int security_tun_dev_create(void);
2575void security_tun_dev_post_create(struct sock *sk);
2576int security_tun_dev_attach(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578#else /* CONFIG_SECURITY_NETWORK */
David S. Miller3610cda2011-01-05 15:38:53 -08002579static inline int security_unix_stream_connect(struct sock *sock,
2580 struct sock *other,
Eric Paris7b41b172008-04-23 14:10:25 -04002581 struct sock *newsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
2583 return 0;
2584}
2585
Eric Paris7b41b172008-04-23 14:10:25 -04002586static inline int security_unix_may_send(struct socket *sock,
2587 struct socket *other)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
2589 return 0;
2590}
2591
Eric Paris7b41b172008-04-23 14:10:25 -04002592static inline int security_socket_create(int family, int type,
2593 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
2595 return 0;
2596}
2597
Eric Paris7b41b172008-04-23 14:10:25 -04002598static inline int security_socket_post_create(struct socket *sock,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002599 int family,
2600 int type,
2601 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
Eric Paris7b41b172008-04-23 14:10:25 -04002606static inline int security_socket_bind(struct socket *sock,
2607 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 int addrlen)
2609{
2610 return 0;
2611}
2612
Eric Paris7b41b172008-04-23 14:10:25 -04002613static inline int security_socket_connect(struct socket *sock,
2614 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 int addrlen)
2616{
2617 return 0;
2618}
2619
Eric Paris7b41b172008-04-23 14:10:25 -04002620static inline int security_socket_listen(struct socket *sock, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
2622 return 0;
2623}
2624
Eric Paris7b41b172008-04-23 14:10:25 -04002625static inline int security_socket_accept(struct socket *sock,
2626 struct socket *newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627{
2628 return 0;
2629}
2630
Eric Paris7b41b172008-04-23 14:10:25 -04002631static inline int security_socket_sendmsg(struct socket *sock,
2632 struct msghdr *msg, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633{
2634 return 0;
2635}
2636
Eric Paris7b41b172008-04-23 14:10:25 -04002637static inline int security_socket_recvmsg(struct socket *sock,
2638 struct msghdr *msg, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 int flags)
2640{
2641 return 0;
2642}
2643
Eric Paris7b41b172008-04-23 14:10:25 -04002644static inline int security_socket_getsockname(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
2646 return 0;
2647}
2648
Eric Paris7b41b172008-04-23 14:10:25 -04002649static inline int security_socket_getpeername(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
2651 return 0;
2652}
2653
Eric Paris7b41b172008-04-23 14:10:25 -04002654static inline int security_socket_getsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int level, int optname)
2656{
2657 return 0;
2658}
2659
Eric Paris7b41b172008-04-23 14:10:25 -04002660static inline int security_socket_setsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 int level, int optname)
2662{
2663 return 0;
2664}
2665
Eric Paris7b41b172008-04-23 14:10:25 -04002666static inline int security_socket_shutdown(struct socket *sock, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 return 0;
2669}
Eric Paris7b41b172008-04-23 14:10:25 -04002670static inline int security_sock_rcv_skb(struct sock *sk,
2671 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
2673 return 0;
2674}
2675
Catherine Zhang2c7946a2006-03-20 22:41:23 -08002676static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2677 int __user *optlen, unsigned len)
2678{
2679 return -ENOPROTOOPT;
2680}
2681
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002682static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683{
2684 return -ENOPROTOOPT;
2685}
2686
Al Virodd0fc662005-10-07 07:46:04 +01002687static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
2689 return 0;
2690}
2691
2692static inline void security_sk_free(struct sock *sk)
2693{
2694}
Trent Jaegerdf718372005-12-13 23:12:27 -08002695
Venkat Yekkirala892c1412006-08-04 23:08:56 -07002696static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
2697{
2698}
2699
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002700static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
Trent Jaegerdf718372005-12-13 23:12:27 -08002701{
Trent Jaegerdf718372005-12-13 23:12:27 -08002702}
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002703
2704static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2705{
2706}
2707
Eric Paris7b41b172008-04-23 14:10:25 -04002708static inline void security_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002709{
2710}
2711
2712static inline int security_inet_conn_request(struct sock *sk,
2713 struct sk_buff *skb, struct request_sock *req)
2714{
2715 return 0;
2716}
2717
2718static inline void security_inet_csk_clone(struct sock *newsk,
2719 const struct request_sock *req)
2720{
2721}
Venkat Yekkirala6b877692006-11-08 17:04:09 -06002722
2723static inline void security_inet_conn_established(struct sock *sk,
2724 struct sk_buff *skb)
2725{
2726}
Paul Moore2b980db2009-08-28 18:12:43 -04002727
Eric Paris2606fd12010-10-13 16:24:41 -04002728static inline int security_secmark_relabel_packet(u32 secid)
2729{
2730 return 0;
2731}
2732
2733static inline void security_secmark_refcount_inc(void)
2734{
2735}
2736
2737static inline void security_secmark_refcount_dec(void)
2738{
2739}
2740
Paul Moore2b980db2009-08-28 18:12:43 -04002741static inline int security_tun_dev_create(void)
2742{
2743 return 0;
2744}
2745
2746static inline void security_tun_dev_post_create(struct sock *sk)
2747{
2748}
2749
2750static inline int security_tun_dev_attach(struct sock *sk)
2751{
2752 return 0;
2753}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754#endif /* CONFIG_SECURITY_NETWORK */
2755
Trent Jaegerdf718372005-12-13 23:12:27 -08002756#ifdef CONFIG_SECURITY_NETWORK_XFRM
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002757
Paul Moore03e1ad72008-04-12 19:07:52 -07002758int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2759int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2760void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2761int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
James Morris20510f22007-10-16 23:31:32 -07002762int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2763int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2764 struct xfrm_sec_ctx *polsec, u32 secid);
2765int security_xfrm_state_delete(struct xfrm_state *x);
2766void security_xfrm_state_free(struct xfrm_state *x);
Paul Moore03e1ad72008-04-12 19:07:52 -07002767int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
James Morris20510f22007-10-16 23:31:32 -07002768int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2769 struct xfrm_policy *xp, struct flowi *fl);
2770int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2771void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
Trent Jaegerdf718372005-12-13 23:12:27 -08002772
Trent Jaegerdf718372005-12-13 23:12:27 -08002773#else /* CONFIG_SECURITY_NETWORK_XFRM */
James Morris20510f22007-10-16 23:31:32 -07002774
Paul Moore03e1ad72008-04-12 19:07:52 -07002775static 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 -08002776{
2777 return 0;
2778}
2779
Paul Moore03e1ad72008-04-12 19:07:52 -07002780static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
Trent Jaegerdf718372005-12-13 23:12:27 -08002781{
2782 return 0;
2783}
2784
Paul Moore03e1ad72008-04-12 19:07:52 -07002785static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -08002786{
2787}
2788
Paul Moore03e1ad72008-04-12 19:07:52 -07002789static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002790{
2791 return 0;
2792}
2793
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002794static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2795 struct xfrm_user_sec_ctx *sec_ctx)
2796{
2797 return 0;
2798}
2799
2800static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2801 struct xfrm_sec_ctx *polsec, u32 secid)
Trent Jaegerdf718372005-12-13 23:12:27 -08002802{
2803 return 0;
2804}
2805
2806static inline void security_xfrm_state_free(struct xfrm_state *x)
2807{
2808}
2809
David S. Miller6f68dc32006-06-08 23:58:52 -07002810static inline int security_xfrm_state_delete(struct xfrm_state *x)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002811{
2812 return 0;
2813}
2814
Paul Moore03e1ad72008-04-12 19:07:52 -07002815static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
Trent Jaegerdf718372005-12-13 23:12:27 -08002816{
2817 return 0;
2818}
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002819
2820static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2821 struct xfrm_policy *xp, struct flowi *fl)
2822{
2823 return 1;
2824}
2825
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002826static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002827{
2828 return 0;
2829}
2830
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002831static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2832{
2833}
2834
Trent Jaegerdf718372005-12-13 23:12:27 -08002835#endif /* CONFIG_SECURITY_NETWORK_XFRM */
2836
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002837#ifdef CONFIG_SECURITY_PATH
2838int security_path_unlink(struct path *dir, struct dentry *dentry);
2839int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode);
2840int security_path_rmdir(struct path *dir, struct dentry *dentry);
2841int security_path_mknod(struct path *dir, struct dentry *dentry, int mode,
2842 unsigned int dev);
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002843int security_path_truncate(struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002844int security_path_symlink(struct path *dir, struct dentry *dentry,
2845 const char *old_name);
2846int security_path_link(struct dentry *old_dentry, struct path *new_dir,
2847 struct dentry *new_dentry);
2848int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
2849 struct path *new_dir, struct dentry *new_dentry);
Tetsuo Handa89eda062009-10-04 21:49:47 +09002850int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt,
2851 mode_t mode);
2852int security_path_chown(struct path *path, uid_t uid, gid_t gid);
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09002853int security_path_chroot(struct path *path);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002854#else /* CONFIG_SECURITY_PATH */
2855static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
2856{
2857 return 0;
2858}
2859
2860static inline int security_path_mkdir(struct path *dir, struct dentry *dentry,
2861 int mode)
2862{
2863 return 0;
2864}
2865
2866static inline int security_path_rmdir(struct path *dir, struct dentry *dentry)
2867{
2868 return 0;
2869}
2870
2871static inline int security_path_mknod(struct path *dir, struct dentry *dentry,
2872 int mode, unsigned int dev)
2873{
2874 return 0;
2875}
2876
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002877static inline int security_path_truncate(struct path *path)
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002878{
2879 return 0;
2880}
2881
2882static inline int security_path_symlink(struct path *dir, struct dentry *dentry,
2883 const char *old_name)
2884{
2885 return 0;
2886}
2887
2888static inline int security_path_link(struct dentry *old_dentry,
2889 struct path *new_dir,
2890 struct dentry *new_dentry)
2891{
2892 return 0;
2893}
2894
2895static inline int security_path_rename(struct path *old_dir,
2896 struct dentry *old_dentry,
2897 struct path *new_dir,
2898 struct dentry *new_dentry)
2899{
2900 return 0;
2901}
Tetsuo Handa89eda062009-10-04 21:49:47 +09002902
2903static inline int security_path_chmod(struct dentry *dentry,
2904 struct vfsmount *mnt,
2905 mode_t mode)
2906{
2907 return 0;
2908}
2909
2910static inline int security_path_chown(struct path *path, uid_t uid, gid_t gid)
2911{
2912 return 0;
2913}
Tetsuo Handa8b8efb42009-10-04 21:49:48 +09002914
2915static inline int security_path_chroot(struct path *path)
2916{
2917 return 0;
2918}
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002919#endif /* CONFIG_SECURITY_PATH */
2920
David Howells29db9192005-10-30 15:02:44 -08002921#ifdef CONFIG_KEYS
2922#ifdef CONFIG_SECURITY
David Howells29db9192005-10-30 15:02:44 -08002923
David Howellsd84f4f92008-11-14 10:39:23 +11002924int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
James Morris20510f22007-10-16 23:31:32 -07002925void security_key_free(struct key *key);
2926int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002927 const struct cred *cred, key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07002928int security_key_getsecurity(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08002929
2930#else
2931
Michael LeMayd7200242006-06-22 14:47:17 -07002932static inline int security_key_alloc(struct key *key,
David Howellsd84f4f92008-11-14 10:39:23 +11002933 const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07002934 unsigned long flags)
David Howells29db9192005-10-30 15:02:44 -08002935{
2936 return 0;
2937}
2938
2939static inline void security_key_free(struct key *key)
2940{
2941}
2942
2943static inline int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002944 const struct cred *cred,
David Howells29db9192005-10-30 15:02:44 -08002945 key_perm_t perm)
2946{
2947 return 0;
2948}
2949
David Howells70a5bb72008-04-29 01:01:26 -07002950static inline int security_key_getsecurity(struct key *key, char **_buffer)
2951{
2952 *_buffer = NULL;
2953 return 0;
2954}
2955
David Howells29db9192005-10-30 15:02:44 -08002956#endif
2957#endif /* CONFIG_KEYS */
2958
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02002959#ifdef CONFIG_AUDIT
2960#ifdef CONFIG_SECURITY
2961int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2962int security_audit_rule_known(struct audit_krule *krule);
2963int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2964 struct audit_context *actx);
2965void security_audit_rule_free(void *lsmrule);
2966
2967#else
2968
2969static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2970 void **lsmrule)
2971{
2972 return 0;
2973}
2974
2975static inline int security_audit_rule_known(struct audit_krule *krule)
2976{
2977 return 0;
2978}
2979
2980static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2981 void *lsmrule, struct audit_context *actx)
2982{
2983 return 0;
2984}
2985
2986static inline void security_audit_rule_free(void *lsmrule)
2987{ }
2988
2989#endif /* CONFIG_SECURITY */
2990#endif /* CONFIG_AUDIT */
2991
Eric Parisda318942008-08-22 11:35:57 -04002992#ifdef CONFIG_SECURITYFS
2993
2994extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
2995 struct dentry *parent, void *data,
2996 const struct file_operations *fops);
2997extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
2998extern void securityfs_remove(struct dentry *dentry);
2999
3000#else /* CONFIG_SECURITYFS */
3001
3002static inline struct dentry *securityfs_create_dir(const char *name,
3003 struct dentry *parent)
3004{
3005 return ERR_PTR(-ENODEV);
3006}
3007
3008static inline struct dentry *securityfs_create_file(const char *name,
3009 mode_t mode,
3010 struct dentry *parent,
3011 void *data,
3012 const struct file_operations *fops)
3013{
3014 return ERR_PTR(-ENODEV);
3015}
3016
3017static inline void securityfs_remove(struct dentry *dentry)
3018{}
3019
3020#endif
3021
Pekka Enberg3d544f42009-03-24 11:59:23 +02003022#ifdef CONFIG_SECURITY
3023
3024static inline char *alloc_secdata(void)
3025{
3026 return (char *)get_zeroed_page(GFP_KERNEL);
3027}
3028
3029static inline void free_secdata(void *secdata)
3030{
3031 free_page((unsigned long)secdata);
3032}
3033
3034#else
3035
3036static inline char *alloc_secdata(void)
3037{
3038 return (char *)1;
3039}
3040
3041static inline void free_secdata(void *secdata)
3042{ }
3043#endif /* CONFIG_SECURITY */
3044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045#endif /* ! __LINUX_SECURITY_H */
3046