Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx
[deliverable/linux.git] / include / linux / security.h
CommitLineData
1da177e4
LT
1/*
2 * Linux Security plug
3 *
4 * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
5 * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
7 * Copyright (C) 2001 James Morris <jmorris@intercode.com.au>
8 * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group)
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * Due to this file being licensed under the GPL there is controversy over
16 * whether this permits you to write a module that #includes this file
17 * without placing your module under the GPL. Please consult a lawyer for
18 * advice before doing this.
19 *
20 */
21
22#ifndef __LINUX_SECURITY_H
23#define __LINUX_SECURITY_H
24
25#include <linux/fs.h>
c4ec54b4 26#include <linux/fsnotify.h>
1da177e4 27#include <linux/binfmts.h>
2a7dba39 28#include <linux/dcache.h>
1da177e4
LT
29#include <linux/signal.h>
30#include <linux/resource.h>
31#include <linux/sem.h>
32#include <linux/shm.h>
a2551df7 33#include <linux/mm.h> /* PAGE_ALIGN */
1da177e4
LT
34#include <linux/msg.h>
35#include <linux/sched.h>
29db9190 36#include <linux/key.h>
e0d1caa7 37#include <linux/xfrm.h>
5a0e3ad6 38#include <linux/slab.h>
beb8d13b 39#include <net/flow.h>
1da177e4 40
076c54c5
AD
41/* Maximum number of letters for an LSM name string */
42#define SECURITY_NAME_MAX 10
43
06112163
EP
44/* If capable should audit the security request */
45#define SECURITY_CAP_NOAUDIT 0
46#define SECURITY_CAP_AUDIT 1
47
1da177e4 48struct ctl_table;
03d37d25 49struct audit_krule;
1da177e4
LT
50
51/*
52 * These functions are in security/capability.c and are used
53 * as the default capabilities functions
54 */
3699c53c
DH
55extern int cap_capable(struct task_struct *tsk, const struct cred *cred,
56 int cap, int audit);
1e6d7679 57extern int cap_settime(const struct timespec *ts, const struct timezone *tz);
9e48858f 58extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
5cd9c58f 59extern int cap_ptrace_traceme(struct task_struct *parent);
7b41b173 60extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
d84f4f99
DH
61extern 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);
a6f76f23 65extern int cap_bprm_set_creds(struct linux_binprm *bprm);
1da177e4 66extern int cap_bprm_secureexec(struct linux_binprm *bprm);
8f0cfa52
DH
67extern 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);
b5376771
SH
70extern int cap_inode_need_killpriv(struct dentry *dentry);
71extern int cap_inode_killpriv(struct dentry *dentry);
7c73875e
EP
72extern 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);
d84f4f99 75extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
3898b1b4 76extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
d84f4f99 77 unsigned long arg4, unsigned long arg5);
b0ae1981 78extern int cap_task_setscheduler(struct task_struct *p);
7b41b173
EP
79extern int cap_task_setioprio(struct task_struct *p, int ioprio);
80extern int cap_task_setnice(struct task_struct *p, int nice);
20510f2f 81extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
1da177e4
LT
82
83struct msghdr;
84struct sk_buff;
85struct sock;
86struct sockaddr;
87struct socket;
df71837d
TJ
88struct flowi;
89struct dst_entry;
90struct xfrm_selector;
91struct xfrm_policy;
92struct xfrm_state;
93struct xfrm_user_sec_ctx;
2069f457 94struct seq_file;
1da177e4
LT
95
96extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
c7bdb545 97extern int cap_netlink_recv(struct sk_buff *skb, int cap);
1da177e4 98
189b3b1c 99void reset_security_ops(void);
100
6e141546 101#ifdef CONFIG_MMU
ed032189 102extern unsigned long mmap_min_addr;
a2551df7 103extern unsigned long dac_mmap_min_addr;
6e141546
DH
104#else
105#define dac_mmap_min_addr 0UL
106#endif
107
1da177e4
LT
108/*
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 */
1da177e4 124struct sched_param;
4237c75c 125struct request_sock;
1da177e4 126
a6f76f23 127/* bprm->unsafe reasons */
1da177e4
LT
128#define LSM_UNSAFE_SHARE 1
129#define LSM_UNSAFE_PTRACE 2
130#define LSM_UNSAFE_PTRACE_CAP 4
131
6e141546 132#ifdef CONFIG_MMU
47d439e9
EP
133/*
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}
8d65af78 145extern int mmap_min_addr_handler(struct ctl_table *table, int write,
47d439e9 146 void __user *buffer, size_t *lenp, loff_t *ppos);
6e141546 147#endif
47d439e9 148
1da177e4
LT
149#ifdef CONFIG_SECURITY
150
e0007529
EP
151struct 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)
7b41b173 168 for (i = 0; i < opts->num_mnt_opts; i++)
e0007529
EP
169 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
1da177e4
LT
177/**
178 * struct security_operations - main security structure
179 *
076c54c5
AD
180 * 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 *
1da177e4
LT
186 * Security hooks for program execution operations.
187 *
a6f76f23 188 * @bprm_set_creds:
1da177e4
LT
189 * 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:
a6f76f23
DH
201 * 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.
7b41b173 207 * @bprm contains the linux_binprm structure.
1da177e4 208 * Return 0 if the hook is successful and permission is granted.
a6f76f23
DH
209 * @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().
1da177e4 225 * @bprm_secureexec:
7b41b173
EP
226 * 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.
1da177e4
LT
231 *
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:
726c3342
DH
244 * Check permission before obtaining filesystem statistics for the @mnt
245 * mountpoint.
246 * @dentry is a handle on the superblock for the filesystem.
7b41b173 247 * Return 0 if permission is granted.
1da177e4
LT
248 * @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.
b5266eb4 256 * @path contains the path for mount point object.
1da177e4
LT
257 * @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.
ff36fe2c
EP
271 * @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.
1da177e4
LT
277 * @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.
1da177e4
LT
282 * @sb_pivotroot:
283 * Check permission before pivoting the root filesystem.
b5266eb4 284 * @old_path contains the path for the new location of the current root (put_old).
7b41b173 285 * @new_path contains the path for the new root (new_root).
1da177e4 286 * Return 0 if permission is granted.
c9180a57
EP
287 * @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
e0007529 290 * @opts binary data structure containing all lsm mount data
c9180a57
EP
291 * @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
e0007529
EP
295 * @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
1da177e4
LT
299 *
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
7b41b173 311 * NULL.
5e41ff9e 312 * @inode_init_security:
7b41b173 313 * Obtain the security attribute name suffix and value to set on a newly
5e41ff9e
SS
314 * 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.
2a7dba39 325 * @qstr contains the last path component of the new object
5e41ff9e
SS
326 * @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.
1da177e4
LT
332 * @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.
1da177e4
LT
338 * @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.
be6d3e56
KT
344 * @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.
1da177e4 352 * @inode_unlink:
7b41b173 353 * Check the permission to remove a hard link to a file.
1da177e4
LT
354 * @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.
be6d3e56
KT
357 * @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.
1da177e4
LT
362 * @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.
be6d3e56
KT
368 * @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.
1da177e4
LT
375 * @inode_mkdir:
376 * Check permissions to create a new directory in the existing directory
7b41b173 377 * associated with inode strcture @dir.
1da177e4
LT
378 * @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.
be6d3e56
KT
382 * @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.
1da177e4
LT
390 * @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.
be6d3e56
KT
395 * @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.
1da177e4
LT
401 * @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.
59c51591 409 * @dev contains the device number.
1da177e4 410 * Return 0 if permission is granted.
be6d3e56
KT
411 * @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.
1da177e4
LT
420 * @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.
be6d3e56
KT
427 * @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.
89eda068
TH
434 * @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.
8b8efb44
TH
446 * @path_chroot:
447 * Check for permission to change root directory.
448 * @path contains the path structure.
449 * Return 0 if permission is granted.
1da177e4
LT
450 * @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.
1da177e4
LT
468 * 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.
be6d3e56
KT
477 * @path_truncate:
478 * Check permission before truncating a file.
479 * @path contains the path structure for the file.
be6d3e56 480 * Return 0 if permission is granted.
1da177e4
LT
481 * @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.
1da177e4 486 * @inode_setxattr:
7b41b173
EP
487 * Check permission before setting the extended attributes
488 * @value identified by @name for @dentry.
489 * Return 0 if permission is granted.
1da177e4 490 * @inode_post_setxattr:
7b41b173
EP
491 * Update inode security field after successful setxattr operation.
492 * @value identified by @name for @dentry.
1da177e4 493 * @inode_getxattr:
7b41b173
EP
494 * Check permission before obtaining the extended attributes
495 * identified by @name for @dentry.
496 * Return 0 if permission is granted.
1da177e4 497 * @inode_listxattr:
7b41b173
EP
498 * Check permission before obtaining the list of extended attribute
499 * names for @dentry.
500 * Return 0 if permission is granted.
1da177e4 501 * @inode_removexattr:
7b41b173
EP
502 * Check permission before removing the extended attribute
503 * identified by @name for @dentry.
504 * Return 0 if permission is granted.
1da177e4 505 * @inode_getsecurity:
42492594
DQ
506 * 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.
1da177e4
LT
512 * @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.
7b41b173 516 * Note that @name is the remainder of the attribute name after the
1da177e4
LT
517 * 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.
b5376771
SH
525 * @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.
8a076191
AD
537 * @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.
1da177e4
LT
542 *
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:
b385a144 622 * container_of(fown, struct file, f_owner)
7b41b173 623 * @tsk contains the structure of task receiving signal.
1da177e4
LT
624 * @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 *
788e7dd4
YN
633 * 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 *
1da177e4
LT
640 * 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.
ee18d64c
DH
647 * @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.
f1752eec
DH
652 * @cred_free:
653 * @cred points to the credentials.
654 * Deallocate and clear the cred->security field in a set of credentials.
d84f4f99
DH
655 * @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.
ee18d64c
DH
660 * @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
3a3b7ce9
DH
664 * @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.
9188499c
EP
677 * @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.
dd8dbf2e 680 * @kmod_name name of the module requested by the kernel
f322abf8 681 * Return 0 if successful.
d84f4f99 682 * @task_fix_setuid:
1da177e4
LT
683 * 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
d84f4f99
DH
686 * @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
1da177e4
LT
689 * @flags contains one of the LSM_SETID_* values.
690 * Return 0 on success.
1da177e4
LT
691 * @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.
f9008e4c
DQ
707 * @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.
8a076191
AD
710 * In case of failure, @secid will be set to zero.
711 *
1da177e4
LT
712 * @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.
03e68060
JM
717 * @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.
a1836a42
DQ
722 * @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.
1da177e4
LT
726 * @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.
35601547
DQ
745 * @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.
1da177e4
LT
749 * @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.
f9008e4c 759 * @secid contains the sid of the process where the signal originated
1da177e4
LT
760 * 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.
d84f4f99
DH
774 * Return -ENOSYS if no-one wanted to handle this op, any other value to
775 * cause prctl() to return immediately with that value.
1da177e4 776 * @task_to_inode:
7b41b173
EP
777 * Set the security attributes for an inode based on an associated task's
778 * security attributes, e.g. for /proc/pid inodes.
1da177e4
LT
779 * @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
7b41b173 788 * netlink_skb_parms structure. Also may be used to provide fine
1da177e4
LT
789 * 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.
c7bdb545 798 * @cap indicates the capability required
1da177e4
LT
799 * 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.
3610cda5
DM
806 * @sock contains the sock structure.
807 * @other contains the peer sock structure.
808 * @newsk contains the new sock structure.
1da177e4
LT
809 * 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.
7b41b173 857 * Return 0 if permission is granted.
1da177e4
LT
858 * @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.
7b41b173 864 * Return 0 if permission is granted.
1da177e4
LT
865 * @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.
1da177e4
LT
877 * @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.
7b41b173 889 * Return 0 if permission is granted.
1da177e4
LT
890 * @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.
7b41b173 913 * Return 0 if permission is granted.
1da177e4
LT
914 * @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.
0ed73185 924 * Must not sleep inside this hook because some callers hold spinlocks.
1da177e4
LT
925 * @sk contains the sock (not socket) associated with the incoming sk_buff.
926 * @skb contains the incoming network data.
6da34bae 927 * @socket_getpeersec_stream:
1da177e4 928 * This hook allows the security module to provide peer socket security
6da34bae
SH
929 * 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.
1da177e4
LT
932 * @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.
6da34bae 940 * @socket_getpeersec_dgram:
7b41b173
EP
941 * 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.
1da177e4 951 * @sk_alloc_security:
7b41b173
EP
952 * Allocate and attach a security structure to the sk->sk_security field,
953 * which is used to copy security attributes between local stream sockets.
1da177e4
LT
954 * @sk_free_security:
955 * Deallocate security structure.
892c141e
VY
956 * @sk_clone_security:
957 * Clone/copy security structure.
beb8d13b
VY
958 * @sk_getsecid:
959 * Retrieve the LSM-specific secid for the sock to enable caching of network
df71837d 960 * authorizations.
4237c75c
VY
961 * @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.
6b877699 967 * @inet_conn_established:
7b41b173 968 * Sets the connection's peersid to the secmark on skb.
2606fd1f
EP
969 * @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
4237c75c
VY
975 * @req_classify_flow:
976 * Sets the flow's sid to the openreq sid.
2b980dbd
PM
977 * @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.
df71837d
TJ
988 *
989 * Security hooks for XFRM operations.
990 *
991 * @xfrm_policy_alloc_security:
03e1ad7b
PM
992 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
993 * Database used by the XFRM system.
df71837d
TJ
994 * @sec_ctx contains the security context information being provided by
995 * the user-level policy update program (e.g., setkey).
e0d1caa7 996 * Allocate a security structure to the xp->security field; the security
c1a856c9 997 * field is initialized to NULL when the xfrm_policy is allocated.
df71837d
TJ
998 * Return 0 if operation was successful (memory to allocate, legal context)
999 * @xfrm_policy_clone_security:
03e1ad7b
PM
1000 * @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.
df71837d
TJ
1004 * Return 0 if operation was successful (memory to allocate).
1005 * @xfrm_policy_free_security:
03e1ad7b 1006 * @ctx contains the xfrm_sec_ctx
c8c05a8e
CZ
1007 * Deallocate xp->security.
1008 * @xfrm_policy_delete_security:
03e1ad7b 1009 * @ctx contains the xfrm_sec_ctx.
c8c05a8e 1010 * Authorize deletion of xp->security.
df71837d
TJ
1011 * @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).
e0d1caa7
VY
1016 * @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.
df71837d
TJ
1021 * Return 0 if operation was successful (memory to allocate, legal context).
1022 * @xfrm_state_free_security:
1023 * @x contains the xfrm_state.
c8c05a8e
CZ
1024 * Deallocate x->security.
1025 * @xfrm_state_delete_security:
1026 * @x contains the xfrm_state.
1027 * Authorize deletion of x->security.
df71837d 1028 * @xfrm_policy_lookup:
03e1ad7b 1029 * @ctx contains the xfrm_sec_ctx for which the access control is being
df71837d 1030 * checked.
e0d1caa7 1031 * @fl_secid contains the flow security label that is used to authorize
df71837d
TJ
1032 * access to the policy xp.
1033 * @dir contains the direction of the flow (input or output).
e0d1caa7 1034 * Check permission when a flow selects a xfrm_policy for processing
df71837d
TJ
1035 * XFRMs on a packet. The hook is called when selecting either a
1036 * per-socket policy or a generic xfrm policy.
5b368e61
VY
1037 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
1038 * on other errors.
e0d1caa7
VY
1039 * @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.
e0d1caa7
VY
1044 * @xfrm_decode_session:
1045 * @skb points to skb to decode.
beb8d13b
VY
1046 * @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.
1da177e4 1049 *
29db9190
DH
1050 * 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.
7e047ef5 1056 * @flags is the allocation flags
29db9190
DH
1057 * 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
7b41b173 1064 * key.
29db9190 1065 * @key_ref refers to the key (key pointer + possession attribute bit).
d84f4f99 1066 * @cred points to the credentials to provide the context against which to
7b41b173 1067 * evaluate the security data on the key.
29db9190 1068 * @perm describes the combination of permissions required of this key.
ad9c2b04 1069 * Return 0 if permission is granted, -ve error otherwise.
70a5bb72
DH
1070 * @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.
29db9190 1081 *
1da177e4
LT
1082 * 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.
8a076191
AD
1089 * @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.
1da177e4
LT
1094 *
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.
7b41b173 1131 * Return 0 if permission is granted.
1da177e4
LT
1132 * @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
7b41b173
EP
1141 * queue, @msq. The @target task structure contains a pointer to the
1142 * process that will be receiving the message (not equal to the current
1da177e4
LT
1143 * 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
7b41b173 1207 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
1da177e4
LT
1208 * 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
7b41b173
EP
1214 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1215 * may be modified.
1da177e4
LT
1216 * @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 *
9e48858f 1222 * @ptrace_access_check:
5cd9c58f 1223 * Check permission before allowing the current process to trace the
1da177e4
LT
1224 * @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
d84f4f99 1227 * tracing check during an execve in the bprm_set_creds hook of
1da177e4
LT
1228 * binprm_security_ops if the process is being traced and its security
1229 * attributes would be changed by the execve.
5cd9c58f 1230 * @child contains the task_struct structure for the target process.
006ebb40 1231 * @mode contains the PTRACE_MODE flags indicating the form of access.
1da177e4 1232 * Return 0 if permission is granted.
5cd9c58f
DH
1233 * @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.
9e48858f 1237 * The parent process will still have to undergo the ptrace_access_check
5cd9c58f
DH
1238 * 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.
1da177e4
LT
1241 * @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.
d84f4f99 1251 * @capset:
1da177e4 1252 * Set the @effective, @inheritable, and @permitted capability sets for
1cdcbec1 1253 * the current process.
d84f4f99
DH
1254 * @new contains the new credentials structure for target process.
1255 * @old contains the current credentials structure for target process.
1da177e4
LT
1256 * @effective contains the effective capability set.
1257 * @inheritable contains the inheritable capability set.
1258 * @permitted contains the permitted capability set.
d84f4f99 1259 * Return 0 and update @new if permission is granted.
12b5989b 1260 * @capable:
3699c53c
DH
1261 * Check whether the @tsk process has the @cap capability in the indicated
1262 * credentials.
12b5989b 1263 * @tsk contains the task_struct for the process.
3699c53c 1264 * @cred contains the credentials to use.
12b5989b 1265 * @cap contains the capability <include/linux/capability.h>.
3699c53c 1266 * @audit: Whether to write an audit message or not
12b5989b 1267 * Return 0 if the capability is granted for @tsk.
1da177e4
LT
1268 * @syslog:
1269 * Check permission before accessing the kernel message ring or changing
1270 * logging to the console.
7b41b173 1271 * See the syslog(2) manual page for an explanation of the @type values.
1da177e4 1272 * @type contains the type of action.
00234592 1273 * @from_file indicates the context of action (if it came from /proc).
1da177e4
LT
1274 * 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.
34b4e4aa 1283 * @mm contains the mm struct it is being added to.
7b41b173 1284 * @pages contains the number of pages.
1da177e4
LT
1285 * Return 0 if permission is granted.
1286 *
dc49c1f9 1287 * @secid_to_secctx:
d5630b9d
EP
1288 * 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.
dc49c1f9
CZ
1292 * @secid contains the security ID.
1293 * @secdata contains the pointer that stores the converted security context.
d5630b9d 1294 * @seclen pointer which contains the length of the data
63cb3449 1295 * @secctx_to_secid:
7b41b173
EP
1296 * Convert security context to secid.
1297 * @secid contains the pointer to the generated security ID.
1298 * @secdata contains the security context.
dc49c1f9
CZ
1299 *
1300 * @release_secctx:
1301 * Release the security context.
1302 * @secdata contains the security context.
1303 * @seclen contains the length of the security context.
1304 *
03d37d25
AD
1305 * 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 *
1ee65e37
DQ
1336 * @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.
1da177e4
LT
1371 * This is the main security structure.
1372 */
1373struct security_operations {
076c54c5
AD
1374 char name[SECURITY_NAME_MAX + 1];
1375
9e48858f 1376 int (*ptrace_access_check) (struct task_struct *child, unsigned int mode);
5cd9c58f 1377 int (*ptrace_traceme) (struct task_struct *parent);
7b41b173
EP
1378 int (*capget) (struct task_struct *target,
1379 kernel_cap_t *effective,
1380 kernel_cap_t *inheritable, kernel_cap_t *permitted);
d84f4f99
DH
1381 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);
3699c53c
DH
1386 int (*capable) (struct task_struct *tsk, const struct cred *cred,
1387 int cap, int audit);
7b41b173
EP
1388 int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1389 int (*quota_on) (struct dentry *dentry);
12b3052c 1390 int (*syslog) (int type);
1e6d7679 1391 int (*settime) (const struct timespec *ts, const struct timezone *tz);
34b4e4aa 1392 int (*vm_enough_memory) (struct mm_struct *mm, long pages);
1da177e4 1393
a6f76f23 1394 int (*bprm_set_creds) (struct linux_binprm *bprm);
7b41b173
EP
1395 int (*bprm_check_security) (struct linux_binprm *bprm);
1396 int (*bprm_secureexec) (struct linux_binprm *bprm);
a6f76f23
DH
1397 void (*bprm_committing_creds) (struct linux_binprm *bprm);
1398 void (*bprm_committed_creds) (struct linux_binprm *bprm);
7b41b173
EP
1399
1400 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);
ff36fe2c 1403 int (*sb_remount) (struct super_block *sb, void *data);
12204e24 1404 int (*sb_kern_mount) (struct super_block *sb, int flags, void *data);
2069f457 1405 int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
726c3342 1406 int (*sb_statfs) (struct dentry *dentry);
b5266eb4 1407 int (*sb_mount) (char *dev_name, struct path *path,
1da177e4 1408 char *type, unsigned long flags, void *data);
7b41b173 1409 int (*sb_umount) (struct vfsmount *mnt, int flags);
b5266eb4
AV
1410 int (*sb_pivotroot) (struct path *old_path,
1411 struct path *new_path);
e0007529
EP
1412 int (*sb_set_mnt_opts) (struct super_block *sb,
1413 struct security_mnt_opts *opts);
c9180a57
EP
1414 void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1415 struct super_block *newsb);
e0007529 1416 int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
1da177e4 1417
be6d3e56
KT
1418#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);
ea0d3ab2 1424 int (*path_truncate) (struct path *path);
be6d3e56
KT
1425 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);
89eda068
TH
1431 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);
8b8efb44 1434 int (*path_chroot) (struct path *path);
be6d3e56
KT
1435#endif
1436
7b41b173 1437 int (*inode_alloc_security) (struct inode *inode);
1da177e4 1438 void (*inode_free_security) (struct inode *inode);
5e41ff9e 1439 int (*inode_init_security) (struct inode *inode, struct inode *dir,
2a7dba39
EP
1440 const struct qstr *qstr, char **name,
1441 void **value, size_t *len);
1da177e4 1442 int (*inode_create) (struct inode *dir,
7b41b173 1443 struct dentry *dentry, int mode);
1da177e4 1444 int (*inode_link) (struct dentry *old_dentry,
7b41b173 1445 struct inode *dir, struct dentry *new_dentry);
1da177e4
LT
1446 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1447 int (*inode_symlink) (struct inode *dir,
7b41b173 1448 struct dentry *dentry, const char *old_name);
1da177e4 1449 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
1da177e4
LT
1450 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1451 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
7b41b173 1452 int mode, dev_t dev);
1da177e4 1453 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
7b41b173 1454 struct inode *new_dir, struct dentry *new_dentry);
1da177e4
LT
1455 int (*inode_readlink) (struct dentry *dentry);
1456 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
b77b0646 1457 int (*inode_permission) (struct inode *inode, int mask);
1da177e4
LT
1458 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1459 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
8f0cfa52
DH
1460 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);
1da177e4 1465 int (*inode_listxattr) (struct dentry *dentry);
8f0cfa52 1466 int (*inode_removexattr) (struct dentry *dentry, const char *name);
b5376771
SH
1467 int (*inode_need_killpriv) (struct dentry *dentry);
1468 int (*inode_killpriv) (struct dentry *dentry);
7b41b173
EP
1469 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);
1473
1474 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,
1da177e4 1478 unsigned long arg);
7b41b173 1479 int (*file_mmap) (struct file *file,
ed032189
EP
1480 unsigned long reqprot, unsigned long prot,
1481 unsigned long flags, unsigned long addr,
1482 unsigned long addr_only);
7b41b173 1483 int (*file_mprotect) (struct vm_area_struct *vma,
1da177e4
LT
1484 unsigned long reqprot,
1485 unsigned long prot);
7b41b173
EP
1486 int (*file_lock) (struct file *file, unsigned int cmd);
1487 int (*file_fcntl) (struct file *file, unsigned int cmd,
1da177e4 1488 unsigned long arg);
7b41b173
EP
1489 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);
745ca247 1493 int (*dentry_open) (struct file *file, const struct cred *cred);
1da177e4
LT
1494
1495 int (*task_create) (unsigned long clone_flags);
ee18d64c 1496 int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp);
f1752eec 1497 void (*cred_free) (struct cred *cred);
d84f4f99
DH
1498 int (*cred_prepare)(struct cred *new, const struct cred *old,
1499 gfp_t gfp);
ee18d64c 1500 void (*cred_transfer)(struct cred *new, const struct cred *old);
3a3b7ce9
DH
1501 int (*kernel_act_as)(struct cred *new, u32 secid);
1502 int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
dd8dbf2e 1503 int (*kernel_module_request)(char *kmod_name);
d84f4f99
DH
1504 int (*task_fix_setuid) (struct cred *new, const struct cred *old,
1505 int flags);
7b41b173
EP
1506 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);
7b41b173
EP
1510 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);
8fd00b4d
JS
1513 int (*task_setrlimit) (struct task_struct *p, unsigned int resource,
1514 struct rlimit *new_rlim);
b0ae1981 1515 int (*task_setscheduler) (struct task_struct *p);
7b41b173
EP
1516 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);
1da177e4
LT
1521 int (*task_prctl) (int option, unsigned long arg2,
1522 unsigned long arg3, unsigned long arg4,
d84f4f99 1523 unsigned long arg5);
7b41b173 1524 void (*task_to_inode) (struct task_struct *p, struct inode *inode);
1da177e4 1525
7b41b173 1526 int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
8a076191 1527 void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
1da177e4 1528
7b41b173
EP
1529 int (*msg_msg_alloc_security) (struct msg_msg *msg);
1530 void (*msg_msg_free_security) (struct msg_msg *msg);
1531
1532 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,
1da177e4
LT
1541 long type, int mode);
1542
7b41b173
EP
1543 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,
1da177e4
LT
1548 char __user *shmaddr, int shmflg);
1549
7b41b173
EP
1550 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);
1da177e4 1556
7b41b173
EP
1557 int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
1558 int (*netlink_recv) (struct sk_buff *skb, int cap);
1da177e4 1559
1da177e4
LT
1560 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1561
7b41b173
EP
1562 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);
7bf570dc 1565 int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
7b41b173 1566 void (*release_secctx) (char *secdata, u32 seclen);
1da177e4 1567
1ee65e37
DQ
1568 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
1da177e4 1572#ifdef CONFIG_SECURITY_NETWORK
3610cda5 1573 int (*unix_stream_connect) (struct sock *sock, struct sock *other, struct sock *newsk);
7b41b173 1574 int (*unix_may_send) (struct socket *sock, struct socket *other);
1da177e4
LT
1575
1576 int (*socket_create) (int family, int type, int protocol, int kern);
7b41b173 1577 int (*socket_post_create) (struct socket *sock, int family,
7420ed23 1578 int type, int protocol, int kern);
7b41b173
EP
1579 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);
7b41b173
EP
1585 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);
2c7946a7 1595 int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
dc49c1f9 1596 int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
7d877f3b 1597 int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
1da177e4 1598 void (*sk_free_security) (struct sock *sk);
892c141e 1599 void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
beb8d13b 1600 void (*sk_getsecid) (struct sock *sk, u32 *secid);
7b41b173
EP
1601 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);
2606fd1f
EP
1606 int (*secmark_relabel_packet) (u32 secid);
1607 void (*secmark_refcount_inc) (void);
1608 void (*secmark_refcount_dec) (void);
7b41b173 1609 void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
2b980dbd
PM
1610 int (*tun_dev_create)(void);
1611 void (*tun_dev_post_create)(struct sock *sk);
1612 int (*tun_dev_attach)(struct sock *sk);
1da177e4 1613#endif /* CONFIG_SECURITY_NETWORK */
29db9190 1614
df71837d 1615#ifdef CONFIG_SECURITY_NETWORK_XFRM
03e1ad7b 1616 int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
c1a856c9 1617 struct xfrm_user_sec_ctx *sec_ctx);
03e1ad7b
PM
1618 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);
e0d1caa7 1621 int (*xfrm_state_alloc_security) (struct xfrm_state *x,
c1a856c9 1622 struct xfrm_user_sec_ctx *sec_ctx,
e0d1caa7 1623 u32 secid);
df71837d 1624 void (*xfrm_state_free_security) (struct xfrm_state *x);
c8c05a8e 1625 int (*xfrm_state_delete_security) (struct xfrm_state *x);
7b41b173
EP
1626 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,
e33f7704 1629 const struct flowi *fl);
7b41b173 1630 int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
df71837d
TJ
1631#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1632
29db9190
DH
1633 /* key management security hooks */
1634#ifdef CONFIG_KEYS
d84f4f99 1635 int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
7b41b173
EP
1636 void (*key_free) (struct key *key);
1637 int (*key_permission) (key_ref_t key_ref,
d84f4f99 1638 const struct cred *cred,
7b41b173 1639 key_perm_t perm);
70a5bb72 1640 int (*key_getsecurity)(struct key *key, char **_buffer);
29db9190
DH
1641#endif /* CONFIG_KEYS */
1642
03d37d25 1643#ifdef CONFIG_AUDIT
7b41b173
EP
1644 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);
03d37d25 1649#endif /* CONFIG_AUDIT */
1da177e4
LT
1650};
1651
1da177e4 1652/* prototypes */
7b41b173 1653extern int security_init(void);
076c54c5 1654extern int security_module_enable(struct security_operations *ops);
7b41b173 1655extern int register_security(struct security_operations *ops);
1da177e4 1656
20510f2f 1657/* Security operations */
9e48858f 1658int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
5cd9c58f 1659int security_ptrace_traceme(struct task_struct *parent);
20510f2f 1660int security_capget(struct task_struct *target,
7b41b173
EP
1661 kernel_cap_t *effective,
1662 kernel_cap_t *inheritable,
1663 kernel_cap_t *permitted);
d84f4f99
DH
1664int 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);
6037b715 1668int security_capable(const struct cred *cred, int cap);
3699c53c
DH
1669int security_real_capable(struct task_struct *tsk, int cap);
1670int security_real_capable_noaudit(struct task_struct *tsk, int cap);
20510f2f
JM
1671int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1672int security_quota_on(struct dentry *dentry);
12b3052c 1673int security_syslog(int type);
1e6d7679 1674int security_settime(const struct timespec *ts, const struct timezone *tz);
20510f2f
JM
1675int security_vm_enough_memory(long pages);
1676int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
731572d3 1677int security_vm_enough_memory_kern(long pages);
a6f76f23 1678int security_bprm_set_creds(struct linux_binprm *bprm);
20510f2f 1679int security_bprm_check(struct linux_binprm *bprm);
a6f76f23
DH
1680void security_bprm_committing_creds(struct linux_binprm *bprm);
1681void security_bprm_committed_creds(struct linux_binprm *bprm);
20510f2f
JM
1682int security_bprm_secureexec(struct linux_binprm *bprm);
1683int security_sb_alloc(struct super_block *sb);
1684void security_sb_free(struct super_block *sb);
e0007529 1685int security_sb_copy_data(char *orig, char *copy);
ff36fe2c 1686int security_sb_remount(struct super_block *sb, void *data);
12204e24 1687int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
2069f457 1688int security_sb_show_options(struct seq_file *m, struct super_block *sb);
20510f2f 1689int security_sb_statfs(struct dentry *dentry);
b5266eb4 1690int security_sb_mount(char *dev_name, struct path *path,
7b41b173 1691 char *type, unsigned long flags, void *data);
20510f2f 1692int security_sb_umount(struct vfsmount *mnt, int flags);
b5266eb4 1693int security_sb_pivotroot(struct path *old_path, struct path *new_path);
e0007529 1694int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
c9180a57
EP
1695void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1696 struct super_block *newsb);
e0007529 1697int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
c9180a57 1698
20510f2f
JM
1699int security_inode_alloc(struct inode *inode);
1700void security_inode_free(struct inode *inode);
1701int security_inode_init_security(struct inode *inode, struct inode *dir,
2a7dba39
EP
1702 const struct qstr *qstr, char **name,
1703 void **value, size_t *len);
20510f2f
JM
1704int 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,
7b41b173 1709 const char *old_name);
20510f2f
JM
1710int 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,
7b41b173 1714 struct inode *new_dir, struct dentry *new_dentry);
20510f2f
JM
1715int security_inode_readlink(struct dentry *dentry);
1716int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
b77b0646 1717int security_inode_permission(struct inode *inode, int mask);
31e6b01f 1718int security_inode_exec_permission(struct inode *inode, unsigned int flags);
20510f2f
JM
1719int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1720int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
8f0cfa52
DH
1721int 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);
20510f2f 1726int security_inode_listxattr(struct dentry *dentry);
8f0cfa52 1727int security_inode_removexattr(struct dentry *dentry, const char *name);
b5376771
SH
1728int security_inode_need_killpriv(struct dentry *dentry);
1729int security_inode_killpriv(struct dentry *dentry);
42492594 1730int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
20510f2f
JM
1731int 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);
8a076191 1733void security_inode_getsecid(const struct inode *inode, u32 *secid);
20510f2f
JM
1734int 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,
7b41b173 1742 unsigned long prot);
20510f2f
JM
1743int 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,
7b41b173 1747 struct fown_struct *fown, int sig);
20510f2f 1748int security_file_receive(struct file *file);
745ca247 1749int security_dentry_open(struct file *file, const struct cred *cred);
20510f2f 1750int security_task_create(unsigned long clone_flags);
ee18d64c 1751int security_cred_alloc_blank(struct cred *cred, gfp_t gfp);
f1752eec 1752void security_cred_free(struct cred *cred);
d84f4f99 1753int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
ee18d64c 1754void security_transfer_creds(struct cred *new, const struct cred *old);
3a3b7ce9
DH
1755int security_kernel_act_as(struct cred *new, u32 secid);
1756int security_kernel_create_files_as(struct cred *new, struct inode *inode);
dd8dbf2e 1757int security_kernel_module_request(char *kmod_name);
d84f4f99
DH
1758int security_task_fix_setuid(struct cred *new, const struct cred *old,
1759 int flags);
20510f2f
JM
1760int 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);
20510f2f
JM
1764int 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);
8fd00b4d
JS
1767int security_task_setrlimit(struct task_struct *p, unsigned int resource,
1768 struct rlimit *new_rlim);
b0ae1981 1769int security_task_setscheduler(struct task_struct *p);
20510f2f
JM
1770int 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,
d84f4f99 1776 unsigned long arg4, unsigned long arg5);
20510f2f
JM
1777void security_task_to_inode(struct task_struct *p, struct inode *inode);
1778int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
8a076191 1779void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
20510f2f
JM
1780int 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,
7b41b173 1787 struct msg_msg *msg, int msqflg);
20510f2f 1788int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
7b41b173 1789 struct task_struct *target, long type, int mode);
20510f2f
JM
1790int 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);
7b41b173 1801void security_d_instantiate(struct dentry *dentry, struct inode *inode);
20510f2f
JM
1802int 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);
7bf570dc 1807int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
20510f2f
JM
1808void security_release_secctx(char *secdata, u32 seclen);
1809
1ee65e37
DQ
1810int 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);
1da177e4 1813#else /* CONFIG_SECURITY */
e0007529
EP
1814struct 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}
1da177e4
LT
1824
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
9e48858f 1835static inline int security_ptrace_access_check(struct task_struct *child,
5cd9c58f
DH
1836 unsigned int mode)
1837{
9e48858f 1838 return cap_ptrace_access_check(child, mode);
5cd9c58f
DH
1839}
1840
5e186b57 1841static inline int security_ptrace_traceme(struct task_struct *parent)
1da177e4 1842{
5cd9c58f 1843 return cap_ptrace_traceme(parent);
1da177e4
LT
1844}
1845
7b41b173 1846static inline int security_capget(struct task_struct *target,
1da177e4
LT
1847 kernel_cap_t *effective,
1848 kernel_cap_t *inheritable,
1849 kernel_cap_t *permitted)
1850{
7b41b173 1851 return cap_capget(target, effective, inheritable, permitted);
1da177e4
LT
1852}
1853
d84f4f99
DH
1854static 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)
1da177e4 1859{
d84f4f99 1860 return cap_capset(new, old, effective, inheritable, permitted);
1da177e4
LT
1861}
1862
6037b715 1863static inline int security_capable(const struct cred *cred, int cap)
12b5989b 1864{
6037b715 1865 return cap_capable(current, cred, cap, SECURITY_CAP_AUDIT);
06112163
EP
1866}
1867
3699c53c 1868static inline int security_real_capable(struct task_struct *tsk, int cap)
06112163 1869{
3699c53c
DH
1870 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;
12b5989b
CW
1888}
1889
7b41b173
EP
1890static inline int security_quotactl(int cmds, int type, int id,
1891 struct super_block *sb)
1da177e4
LT
1892{
1893 return 0;
1894}
1895
7b41b173 1896static inline int security_quota_on(struct dentry *dentry)
1da177e4
LT
1897{
1898 return 0;
1899}
1900
12b3052c 1901static inline int security_syslog(int type)
1da177e4 1902{
12b3052c 1903 return 0;
1da177e4
LT
1904}
1905
1e6d7679
RC
1906static inline int security_settime(const struct timespec *ts,
1907 const struct timezone *tz)
1da177e4
LT
1908{
1909 return cap_settime(ts, tz);
1910}
1911
1912static inline int security_vm_enough_memory(long pages)
1913{
1b79cd04 1914 WARN_ON(current->mm == NULL);
34b4e4aa
AC
1915 return cap_vm_enough_memory(current->mm, pages);
1916}
1917
1b79cd04 1918static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
731572d3 1919{
1b79cd04
JO
1920 WARN_ON(mm == NULL);
1921 return cap_vm_enough_memory(mm, pages);
731572d3
AC
1922}
1923
1b79cd04 1924static inline int security_vm_enough_memory_kern(long pages)
34b4e4aa 1925{
1b79cd04
JO
1926 /* If current->mm is a kernel thread then we will pass NULL,
1927 for this specific case that is fine */
1928 return cap_vm_enough_memory(current->mm, pages);
1da177e4
LT
1929}
1930
a6f76f23 1931static inline int security_bprm_set_creds(struct linux_binprm *bprm)
7b41b173 1932{
a6f76f23 1933 return cap_bprm_set_creds(bprm);
1da177e4
LT
1934}
1935
a6f76f23 1936static inline int security_bprm_check(struct linux_binprm *bprm)
1da177e4 1937{
a6f76f23 1938 return 0;
1da177e4
LT
1939}
1940
a6f76f23 1941static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1da177e4 1942{
1da177e4
LT
1943}
1944
a6f76f23 1945static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1da177e4 1946{
1da177e4
LT
1947}
1948
7b41b173 1949static inline int security_bprm_secureexec(struct linux_binprm *bprm)
1da177e4
LT
1950{
1951 return cap_bprm_secureexec(bprm);
1952}
1953
7b41b173 1954static inline int security_sb_alloc(struct super_block *sb)
1da177e4
LT
1955{
1956 return 0;
1957}
1958
7b41b173 1959static inline void security_sb_free(struct super_block *sb)
1da177e4
LT
1960{ }
1961
7b41b173 1962static inline int security_sb_copy_data(char *orig, char *copy)
1da177e4
LT
1963{
1964 return 0;
1965}
1966
ff36fe2c
EP
1967static inline int security_sb_remount(struct super_block *sb, void *data)
1968{
1969 return 0;
1970}
1971
12204e24 1972static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
1da177e4
LT
1973{
1974 return 0;
1975}
1976
2069f457
EP
1977static inline int security_sb_show_options(struct seq_file *m,
1978 struct super_block *sb)
1979{
1980 return 0;
1981}
1982
7b41b173 1983static inline int security_sb_statfs(struct dentry *dentry)
1da177e4
LT
1984{
1985 return 0;
1986}
1987
7b41b173 1988static inline int security_sb_mount(char *dev_name, struct path *path,
1da177e4
LT
1989 char *type, unsigned long flags,
1990 void *data)
1991{
1992 return 0;
1993}
1994
7b41b173 1995static inline int security_sb_umount(struct vfsmount *mnt, int flags)
1da177e4
LT
1996{
1997 return 0;
1998}
1999
7b41b173
EP
2000static inline int security_sb_pivotroot(struct path *old_path,
2001 struct path *new_path)
1da177e4
LT
2002{
2003 return 0;
2004}
2005
e0007529
EP
2006static inline int security_sb_set_mnt_opts(struct super_block *sb,
2007 struct security_mnt_opts *opts)
2008{
2009 return 0;
2010}
2011
2012static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
2013 struct super_block *newsb)
2014{ }
2015
2016static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
2017{
2018 return 0;
2019}
1da177e4 2020
7b41b173 2021static inline int security_inode_alloc(struct inode *inode)
1da177e4
LT
2022{
2023 return 0;
2024}
2025
7b41b173 2026static inline void security_inode_free(struct inode *inode)
1da177e4 2027{ }
5e41ff9e 2028
7b41b173 2029static inline int security_inode_init_security(struct inode *inode,
5e41ff9e 2030 struct inode *dir,
2a7dba39 2031 const struct qstr *qstr,
5e41ff9e
SS
2032 char **name,
2033 void **value,
2034 size_t *len)
2035{
2036 return -EOPNOTSUPP;
2037}
7b41b173
EP
2038
2039static inline int security_inode_create(struct inode *dir,
1da177e4
LT
2040 struct dentry *dentry,
2041 int mode)
2042{
2043 return 0;
2044}
2045
7b41b173 2046static inline int security_inode_link(struct dentry *old_dentry,
1da177e4
LT
2047 struct inode *dir,
2048 struct dentry *new_dentry)
2049{
2050 return 0;
2051}
2052
7b41b173 2053static inline int security_inode_unlink(struct inode *dir,
1da177e4
LT
2054 struct dentry *dentry)
2055{
2056 return 0;
2057}
2058
7b41b173 2059static inline int security_inode_symlink(struct inode *dir,
1da177e4
LT
2060 struct dentry *dentry,
2061 const char *old_name)
2062{
2063 return 0;
2064}
2065
7b41b173 2066static inline int security_inode_mkdir(struct inode *dir,
1da177e4
LT
2067 struct dentry *dentry,
2068 int mode)
2069{
2070 return 0;
2071}
2072
7b41b173 2073static inline int security_inode_rmdir(struct inode *dir,
1da177e4
LT
2074 struct dentry *dentry)
2075{
2076 return 0;
2077}
2078
7b41b173 2079static inline int security_inode_mknod(struct inode *dir,
1da177e4
LT
2080 struct dentry *dentry,
2081 int mode, dev_t dev)
2082{
2083 return 0;
2084}
2085
7b41b173 2086static inline int security_inode_rename(struct inode *old_dir,
1da177e4
LT
2087 struct dentry *old_dentry,
2088 struct inode *new_dir,
2089 struct dentry *new_dentry)
2090{
2091 return 0;
2092}
2093
7b41b173 2094static inline int security_inode_readlink(struct dentry *dentry)
1da177e4
LT
2095{
2096 return 0;
2097}
2098
7b41b173 2099static inline int security_inode_follow_link(struct dentry *dentry,
1da177e4
LT
2100 struct nameidata *nd)
2101{
2102 return 0;
2103}
2104
b77b0646 2105static inline int security_inode_permission(struct inode *inode, int mask)
1da177e4
LT
2106{
2107 return 0;
2108}
2109
31e6b01f
NP
2110static inline int security_inode_exec_permission(struct inode *inode,
2111 unsigned int flags)
2112{
2113 return 0;
2114}
2115
7b41b173 2116static inline int security_inode_setattr(struct dentry *dentry,
1da177e4
LT
2117 struct iattr *attr)
2118{
2119 return 0;
2120}
2121
7b41b173 2122static inline int security_inode_getattr(struct vfsmount *mnt,
1da177e4
LT
2123 struct dentry *dentry)
2124{
2125 return 0;
2126}
2127
8f0cfa52
DH
2128static inline int security_inode_setxattr(struct dentry *dentry,
2129 const char *name, const void *value, size_t size, int flags)
1da177e4
LT
2130{
2131 return cap_inode_setxattr(dentry, name, value, size, flags);
2132}
2133
8f0cfa52
DH
2134static inline void security_inode_post_setxattr(struct dentry *dentry,
2135 const char *name, const void *value, size_t size, int flags)
1da177e4
LT
2136{ }
2137
8f0cfa52
DH
2138static inline int security_inode_getxattr(struct dentry *dentry,
2139 const char *name)
1da177e4
LT
2140{
2141 return 0;
2142}
2143
7b41b173 2144static inline int security_inode_listxattr(struct dentry *dentry)
1da177e4
LT
2145{
2146 return 0;
2147}
2148
8f0cfa52
DH
2149static inline int security_inode_removexattr(struct dentry *dentry,
2150 const char *name)
1da177e4
LT
2151{
2152 return cap_inode_removexattr(dentry, name);
2153}
2154
b5376771
SH
2155static inline int security_inode_need_killpriv(struct dentry *dentry)
2156{
2157 return cap_inode_need_killpriv(dentry);
2158}
2159
2160static inline int security_inode_killpriv(struct dentry *dentry)
2161{
2162 return cap_inode_killpriv(dentry);
2163}
2164
42492594 2165static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
1da177e4
LT
2166{
2167 return -EOPNOTSUPP;
2168}
2169
2170static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2171{
2172 return -EOPNOTSUPP;
2173}
2174
2175static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2176{
2177 return 0;
2178}
2179
8a076191
AD
2180static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2181{
2182 *secid = 0;
2183}
2184
7b41b173 2185static inline int security_file_permission(struct file *file, int mask)
1da177e4
LT
2186{
2187 return 0;
2188}
2189
7b41b173 2190static inline int security_file_alloc(struct file *file)
1da177e4
LT
2191{
2192 return 0;
2193}
2194
7b41b173 2195static inline void security_file_free(struct file *file)
1da177e4
LT
2196{ }
2197
7b41b173
EP
2198static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2199 unsigned long arg)
1da177e4
LT
2200{
2201 return 0;
2202}
2203
7b41b173
EP
2204static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2205 unsigned long prot,
2206 unsigned long flags,
2207 unsigned long addr,
2208 unsigned long addr_only)
1da177e4 2209{
7c73875e 2210 return cap_file_mmap(file, reqprot, prot, flags, addr, addr_only);
1da177e4
LT
2211}
2212
7b41b173
EP
2213static inline int security_file_mprotect(struct vm_area_struct *vma,
2214 unsigned long reqprot,
2215 unsigned long prot)
1da177e4
LT
2216{
2217 return 0;
2218}
2219
7b41b173 2220static inline int security_file_lock(struct file *file, unsigned int cmd)
1da177e4
LT
2221{
2222 return 0;
2223}
2224
7b41b173
EP
2225static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2226 unsigned long arg)
1da177e4
LT
2227{
2228 return 0;
2229}
2230
7b41b173 2231static inline int security_file_set_fowner(struct file *file)
1da177e4
LT
2232{
2233 return 0;
2234}
2235
7b41b173
EP
2236static inline int security_file_send_sigiotask(struct task_struct *tsk,
2237 struct fown_struct *fown,
2238 int sig)
1da177e4
LT
2239{
2240 return 0;
2241}
2242
7b41b173 2243static inline int security_file_receive(struct file *file)
1da177e4
LT
2244{
2245 return 0;
2246}
2247
745ca247
DH
2248static inline int security_dentry_open(struct file *file,
2249 const struct cred *cred)
788e7dd4
YN
2250{
2251 return 0;
2252}
2253
7b41b173 2254static inline int security_task_create(unsigned long clone_flags)
1da177e4
LT
2255{
2256 return 0;
2257}
2258
945af7c3
DH
2259static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
2260{
2261 return 0;
2262}
ee18d64c 2263
d84f4f99
DH
2264static inline void security_cred_free(struct cred *cred)
2265{ }
2266
2267static inline int security_prepare_creds(struct cred *new,
2268 const struct cred *old,
2269 gfp_t gfp)
1da177e4
LT
2270{
2271 return 0;
2272}
2273
ee18d64c
DH
2274static inline void security_transfer_creds(struct cred *new,
2275 const struct cred *old)
2276{
2277}
2278
3a3b7ce9
DH
2279static inline int security_kernel_act_as(struct cred *cred, u32 secid)
2280{
2281 return 0;
2282}
2283
2284static inline int security_kernel_create_files_as(struct cred *cred,
2285 struct inode *inode)
2286{
2287 return 0;
2288}
2289
dd8dbf2e 2290static inline int security_kernel_module_request(char *kmod_name)
9188499c
EP
2291{
2292 return 0;
1da177e4
LT
2293}
2294
d84f4f99
DH
2295static inline int security_task_fix_setuid(struct cred *new,
2296 const struct cred *old,
2297 int flags)
1da177e4 2298{
d84f4f99 2299 return cap_task_fix_setuid(new, old, flags);
1da177e4
LT
2300}
2301
7b41b173 2302static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
1da177e4
LT
2303{
2304 return 0;
2305}
2306
7b41b173 2307static inline int security_task_getpgid(struct task_struct *p)
1da177e4
LT
2308{
2309 return 0;
2310}
2311
7b41b173 2312static inline int security_task_getsid(struct task_struct *p)
1da177e4
LT
2313{
2314 return 0;
2315}
2316
7b41b173 2317static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
8a076191
AD
2318{
2319 *secid = 0;
2320}
f9008e4c 2321
7b41b173 2322static inline int security_task_setnice(struct task_struct *p, int nice)
1da177e4 2323{
b5376771 2324 return cap_task_setnice(p, nice);
1da177e4
LT
2325}
2326
7b41b173 2327static inline int security_task_setioprio(struct task_struct *p, int ioprio)
03e68060 2328{
b5376771 2329 return cap_task_setioprio(p, ioprio);
03e68060
JM
2330}
2331
7b41b173 2332static inline int security_task_getioprio(struct task_struct *p)
a1836a42
DQ
2333{
2334 return 0;
2335}
2336
8fd00b4d
JS
2337static inline int security_task_setrlimit(struct task_struct *p,
2338 unsigned int resource,
7b41b173 2339 struct rlimit *new_rlim)
1da177e4
LT
2340{
2341 return 0;
2342}
2343
b0ae1981 2344static inline int security_task_setscheduler(struct task_struct *p)
1da177e4 2345{
b0ae1981 2346 return cap_task_setscheduler(p);
1da177e4
LT
2347}
2348
7b41b173 2349static inline int security_task_getscheduler(struct task_struct *p)
1da177e4
LT
2350{
2351 return 0;
2352}
2353
7b41b173 2354static inline int security_task_movememory(struct task_struct *p)
35601547
DQ
2355{
2356 return 0;
2357}
2358
7b41b173
EP
2359static inline int security_task_kill(struct task_struct *p,
2360 struct siginfo *info, int sig,
2361 u32 secid)
1da177e4 2362{
aedb60a6 2363 return 0;
1da177e4
LT
2364}
2365
7b41b173 2366static inline int security_task_wait(struct task_struct *p)
1da177e4
LT
2367{
2368 return 0;
2369}
2370
7b41b173
EP
2371static inline int security_task_prctl(int option, unsigned long arg2,
2372 unsigned long arg3,
2373 unsigned long arg4,
d84f4f99 2374 unsigned long arg5)
1da177e4 2375{
d84f4f99 2376 return cap_task_prctl(option, arg2, arg3, arg3, arg5);
1da177e4
LT
2377}
2378
2379static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2380{ }
2381
7b41b173
EP
2382static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2383 short flag)
1da177e4
LT
2384{
2385 return 0;
2386}
2387
8a076191
AD
2388static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2389{
2390 *secid = 0;
2391}
2392
7b41b173 2393static inline int security_msg_msg_alloc(struct msg_msg *msg)
1da177e4
LT
2394{
2395 return 0;
2396}
2397
7b41b173 2398static inline void security_msg_msg_free(struct msg_msg *msg)
1da177e4
LT
2399{ }
2400
7b41b173 2401static inline int security_msg_queue_alloc(struct msg_queue *msq)
1da177e4
LT
2402{
2403 return 0;
2404}
2405
7b41b173 2406static inline void security_msg_queue_free(struct msg_queue *msq)
1da177e4
LT
2407{ }
2408
7b41b173
EP
2409static inline int security_msg_queue_associate(struct msg_queue *msq,
2410 int msqflg)
1da177e4
LT
2411{
2412 return 0;
2413}
2414
7b41b173 2415static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
1da177e4
LT
2416{
2417 return 0;
2418}
2419
7b41b173
EP
2420static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2421 struct msg_msg *msg, int msqflg)
1da177e4
LT
2422{
2423 return 0;
2424}
2425
7b41b173
EP
2426static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2427 struct msg_msg *msg,
2428 struct task_struct *target,
2429 long type, int mode)
1da177e4
LT
2430{
2431 return 0;
2432}
2433
7b41b173 2434static inline int security_shm_alloc(struct shmid_kernel *shp)
1da177e4
LT
2435{
2436 return 0;
2437}
2438
7b41b173 2439static inline void security_shm_free(struct shmid_kernel *shp)
1da177e4
LT
2440{ }
2441
7b41b173
EP
2442static inline int security_shm_associate(struct shmid_kernel *shp,
2443 int shmflg)
1da177e4
LT
2444{
2445 return 0;
2446}
2447
7b41b173 2448static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
1da177e4
LT
2449{
2450 return 0;
2451}
2452
7b41b173
EP
2453static inline int security_shm_shmat(struct shmid_kernel *shp,
2454 char __user *shmaddr, int shmflg)
1da177e4
LT
2455{
2456 return 0;
2457}
2458
7b41b173 2459static inline int security_sem_alloc(struct sem_array *sma)
1da177e4
LT
2460{
2461 return 0;
2462}
2463
7b41b173 2464static inline void security_sem_free(struct sem_array *sma)
1da177e4
LT
2465{ }
2466
7b41b173 2467static inline int security_sem_associate(struct sem_array *sma, int semflg)
1da177e4
LT
2468{
2469 return 0;
2470}
2471
7b41b173 2472static inline int security_sem_semctl(struct sem_array *sma, int cmd)
1da177e4
LT
2473{
2474 return 0;
2475}
2476
7b41b173
EP
2477static inline int security_sem_semop(struct sem_array *sma,
2478 struct sembuf *sops, unsigned nsops,
2479 int alter)
1da177e4
LT
2480{
2481 return 0;
2482}
2483
7b41b173 2484static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
1da177e4
LT
2485{ }
2486
04ff9708 2487static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
1da177e4
LT
2488{
2489 return -EINVAL;
2490}
2491
2492static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2493{
2494 return -EINVAL;
2495}
2496
7b41b173 2497static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
1da177e4 2498{
7b41b173 2499 return cap_netlink_send(sk, skb);
1da177e4
LT
2500}
2501
7b41b173 2502static inline int security_netlink_recv(struct sk_buff *skb, int cap)
1da177e4 2503{
7b41b173 2504 return cap_netlink_recv(skb, cap);
1da177e4
LT
2505}
2506
dc49c1f9
CZ
2507static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2508{
2509 return -EOPNOTSUPP;
2510}
2511
7bf570dc 2512static inline int security_secctx_to_secid(const char *secdata,
63cb3449
DH
2513 u32 seclen,
2514 u32 *secid)
2515{
2516 return -EOPNOTSUPP;
2517}
2518
dc49c1f9
CZ
2519static inline void security_release_secctx(char *secdata, u32 seclen)
2520{
dc49c1f9 2521}
1ee65e37
DQ
2522
2523static inline int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
2524{
2525 return -EOPNOTSUPP;
2526}
2527static inline int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
2528{
2529 return -EOPNOTSUPP;
2530}
2531static inline int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
2532{
2533 return -EOPNOTSUPP;
2534}
1da177e4
LT
2535#endif /* CONFIG_SECURITY */
2536
2537#ifdef CONFIG_SECURITY_NETWORK
4237c75c 2538
3610cda5 2539int security_unix_stream_connect(struct sock *sock, struct sock *other, struct sock *newsk);
20510f2f
JM
2540int security_unix_may_send(struct socket *sock, struct socket *other);
2541int security_socket_create(int family, int type, int protocol, int kern);
2542int security_socket_post_create(struct socket *sock, int family,
2543 int type, int protocol, int kern);
2544int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2545int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2546int security_socket_listen(struct socket *sock, int backlog);
2547int security_socket_accept(struct socket *sock, struct socket *newsock);
20510f2f
JM
2548int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2549int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2550 int size, int flags);
2551int security_socket_getsockname(struct socket *sock);
2552int security_socket_getpeername(struct socket *sock);
2553int security_socket_getsockopt(struct socket *sock, int level, int optname);
2554int security_socket_setsockopt(struct socket *sock, int level, int optname);
2555int security_socket_shutdown(struct socket *sock, int how);
2556int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2557int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2558 int __user *optlen, unsigned len);
2559int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2560int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2561void security_sk_free(struct sock *sk);
2562void security_sk_clone(const struct sock *sk, struct sock *newsk);
2563void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2564void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2565void security_sock_graft(struct sock*sk, struct socket *parent);
2566int security_inet_conn_request(struct sock *sk,
2567 struct sk_buff *skb, struct request_sock *req);
2568void security_inet_csk_clone(struct sock *newsk,
2569 const struct request_sock *req);
2570void security_inet_conn_established(struct sock *sk,
2571 struct sk_buff *skb);
2606fd1f
EP
2572int security_secmark_relabel_packet(u32 secid);
2573void security_secmark_refcount_inc(void);
2574void security_secmark_refcount_dec(void);
2b980dbd
PM
2575int security_tun_dev_create(void);
2576void security_tun_dev_post_create(struct sock *sk);
2577int security_tun_dev_attach(struct sock *sk);
6b877699 2578
1da177e4 2579#else /* CONFIG_SECURITY_NETWORK */
3610cda5
DM
2580static inline int security_unix_stream_connect(struct sock *sock,
2581 struct sock *other,
7b41b173 2582 struct sock *newsk)
1da177e4
LT
2583{
2584 return 0;
2585}
2586
7b41b173
EP
2587static inline int security_unix_may_send(struct socket *sock,
2588 struct socket *other)
1da177e4
LT
2589{
2590 return 0;
2591}
2592
7b41b173
EP
2593static inline int security_socket_create(int family, int type,
2594 int protocol, int kern)
1da177e4
LT
2595{
2596 return 0;
2597}
2598
7b41b173 2599static inline int security_socket_post_create(struct socket *sock,
7420ed23
VY
2600 int family,
2601 int type,
2602 int protocol, int kern)
1da177e4 2603{
7420ed23 2604 return 0;
1da177e4
LT
2605}
2606
7b41b173
EP
2607static inline int security_socket_bind(struct socket *sock,
2608 struct sockaddr *address,
1da177e4
LT
2609 int addrlen)
2610{
2611 return 0;
2612}
2613
7b41b173
EP
2614static inline int security_socket_connect(struct socket *sock,
2615 struct sockaddr *address,
1da177e4
LT
2616 int addrlen)
2617{
2618 return 0;
2619}
2620
7b41b173 2621static inline int security_socket_listen(struct socket *sock, int backlog)
1da177e4
LT
2622{
2623 return 0;
2624}
2625
7b41b173
EP
2626static inline int security_socket_accept(struct socket *sock,
2627 struct socket *newsock)
1da177e4
LT
2628{
2629 return 0;
2630}
2631
7b41b173
EP
2632static inline int security_socket_sendmsg(struct socket *sock,
2633 struct msghdr *msg, int size)
1da177e4
LT
2634{
2635 return 0;
2636}
2637
7b41b173
EP
2638static inline int security_socket_recvmsg(struct socket *sock,
2639 struct msghdr *msg, int size,
1da177e4
LT
2640 int flags)
2641{
2642 return 0;
2643}
2644
7b41b173 2645static inline int security_socket_getsockname(struct socket *sock)
1da177e4
LT
2646{
2647 return 0;
2648}
2649
7b41b173 2650static inline int security_socket_getpeername(struct socket *sock)
1da177e4
LT
2651{
2652 return 0;
2653}
2654
7b41b173 2655static inline int security_socket_getsockopt(struct socket *sock,
1da177e4
LT
2656 int level, int optname)
2657{
2658 return 0;
2659}
2660
7b41b173 2661static inline int security_socket_setsockopt(struct socket *sock,
1da177e4
LT
2662 int level, int optname)
2663{
2664 return 0;
2665}
2666
7b41b173 2667static inline int security_socket_shutdown(struct socket *sock, int how)
1da177e4
LT
2668{
2669 return 0;
2670}
7b41b173
EP
2671static inline int security_sock_rcv_skb(struct sock *sk,
2672 struct sk_buff *skb)
1da177e4
LT
2673{
2674 return 0;
2675}
2676
2c7946a7
CZ
2677static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2678 int __user *optlen, unsigned len)
2679{
2680 return -ENOPROTOOPT;
2681}
2682
dc49c1f9 2683static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
1da177e4
LT
2684{
2685 return -ENOPROTOOPT;
2686}
2687
dd0fc66f 2688static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
1da177e4
LT
2689{
2690 return 0;
2691}
2692
2693static inline void security_sk_free(struct sock *sk)
892c141e
VY
2694{
2695}
2696
2697static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
1da177e4
LT
2698{
2699}
df71837d 2700
beb8d13b 2701static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
df71837d 2702{
df71837d 2703}
4237c75c
VY
2704
2705static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2706{
2707}
2708
7b41b173 2709static inline void security_sock_graft(struct sock *sk, struct socket *parent)
4237c75c
VY
2710{
2711}
2712
2713static inline int security_inet_conn_request(struct sock *sk,
2714 struct sk_buff *skb, struct request_sock *req)
2715{
2716 return 0;
2717}
2718
2719static inline void security_inet_csk_clone(struct sock *newsk,
2720 const struct request_sock *req)
2721{
2722}
6b877699
VY
2723
2724static inline void security_inet_conn_established(struct sock *sk,
2725 struct sk_buff *skb)
2726{
2727}
2b980dbd 2728
2606fd1f
EP
2729static inline int security_secmark_relabel_packet(u32 secid)
2730{
2731 return 0;
2732}
2733
2734static inline void security_secmark_refcount_inc(void)
2735{
2736}
2737
2738static inline void security_secmark_refcount_dec(void)
2739{
2740}
2741
2b980dbd
PM
2742static inline int security_tun_dev_create(void)
2743{
2744 return 0;
2745}
2746
2747static inline void security_tun_dev_post_create(struct sock *sk)
2748{
2749}
2750
2751static inline int security_tun_dev_attach(struct sock *sk)
2752{
2753 return 0;
2754}
1da177e4
LT
2755#endif /* CONFIG_SECURITY_NETWORK */
2756
df71837d 2757#ifdef CONFIG_SECURITY_NETWORK_XFRM
beb8d13b 2758
03e1ad7b
PM
2759int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2760int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2761void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2762int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
20510f2f
JM
2763int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2764int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2765 struct xfrm_sec_ctx *polsec, u32 secid);
2766int security_xfrm_state_delete(struct xfrm_state *x);
2767void security_xfrm_state_free(struct xfrm_state *x);
03e1ad7b 2768int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
20510f2f 2769int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
e33f7704
DM
2770 struct xfrm_policy *xp,
2771 const struct flowi *fl);
20510f2f
JM
2772int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2773void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
beb8d13b 2774
df71837d 2775#else /* CONFIG_SECURITY_NETWORK_XFRM */
20510f2f 2776
03e1ad7b 2777static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
df71837d
TJ
2778{
2779 return 0;
2780}
2781
03e1ad7b 2782static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
df71837d
TJ
2783{
2784 return 0;
2785}
2786
03e1ad7b 2787static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
df71837d
TJ
2788{
2789}
2790
03e1ad7b 2791static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
c8c05a8e
CZ
2792{
2793 return 0;
2794}
2795
e0d1caa7
VY
2796static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2797 struct xfrm_user_sec_ctx *sec_ctx)
2798{
2799 return 0;
2800}
2801
2802static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2803 struct xfrm_sec_ctx *polsec, u32 secid)
df71837d
TJ
2804{
2805 return 0;
2806}
2807
2808static inline void security_xfrm_state_free(struct xfrm_state *x)
2809{
2810}
2811
6f68dc37 2812static inline int security_xfrm_state_delete(struct xfrm_state *x)
c8c05a8e
CZ
2813{
2814 return 0;
2815}
2816
03e1ad7b 2817static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
df71837d
TJ
2818{
2819 return 0;
2820}
e0d1caa7
VY
2821
2822static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
e33f7704 2823 struct xfrm_policy *xp, const struct flowi *fl)
e0d1caa7
VY
2824{
2825 return 1;
2826}
2827
beb8d13b 2828static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
e0d1caa7
VY
2829{
2830 return 0;
2831}
2832
beb8d13b
VY
2833static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2834{
2835}
2836
df71837d
TJ
2837#endif /* CONFIG_SECURITY_NETWORK_XFRM */
2838
be6d3e56
KT
2839#ifdef CONFIG_SECURITY_PATH
2840int security_path_unlink(struct path *dir, struct dentry *dentry);
2841int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode);
2842int security_path_rmdir(struct path *dir, struct dentry *dentry);
2843int security_path_mknod(struct path *dir, struct dentry *dentry, int mode,
2844 unsigned int dev);
ea0d3ab2 2845int security_path_truncate(struct path *path);
be6d3e56
KT
2846int security_path_symlink(struct path *dir, struct dentry *dentry,
2847 const char *old_name);
2848int security_path_link(struct dentry *old_dentry, struct path *new_dir,
2849 struct dentry *new_dentry);
2850int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
2851 struct path *new_dir, struct dentry *new_dentry);
89eda068
TH
2852int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt,
2853 mode_t mode);
2854int security_path_chown(struct path *path, uid_t uid, gid_t gid);
8b8efb44 2855int security_path_chroot(struct path *path);
be6d3e56
KT
2856#else /* CONFIG_SECURITY_PATH */
2857static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
2858{
2859 return 0;
2860}
2861
2862static inline int security_path_mkdir(struct path *dir, struct dentry *dentry,
2863 int mode)
2864{
2865 return 0;
2866}
2867
2868static inline int security_path_rmdir(struct path *dir, struct dentry *dentry)
2869{
2870 return 0;
2871}
2872
2873static inline int security_path_mknod(struct path *dir, struct dentry *dentry,
2874 int mode, unsigned int dev)
2875{
2876 return 0;
2877}
2878
ea0d3ab2 2879static inline int security_path_truncate(struct path *path)
be6d3e56
KT
2880{
2881 return 0;
2882}
2883
2884static inline int security_path_symlink(struct path *dir, struct dentry *dentry,
2885 const char *old_name)
2886{
2887 return 0;
2888}
2889
2890static inline int security_path_link(struct dentry *old_dentry,
2891 struct path *new_dir,
2892 struct dentry *new_dentry)
2893{
2894 return 0;
2895}
2896
2897static inline int security_path_rename(struct path *old_dir,
2898 struct dentry *old_dentry,
2899 struct path *new_dir,
2900 struct dentry *new_dentry)
2901{
2902 return 0;
2903}
89eda068
TH
2904
2905static inline int security_path_chmod(struct dentry *dentry,
2906 struct vfsmount *mnt,
2907 mode_t mode)
2908{
2909 return 0;
2910}
2911
2912static inline int security_path_chown(struct path *path, uid_t uid, gid_t gid)
2913{
2914 return 0;
2915}
8b8efb44
TH
2916
2917static inline int security_path_chroot(struct path *path)
2918{
2919 return 0;
2920}
be6d3e56
KT
2921#endif /* CONFIG_SECURITY_PATH */
2922
29db9190
DH
2923#ifdef CONFIG_KEYS
2924#ifdef CONFIG_SECURITY
29db9190 2925
d84f4f99 2926int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
20510f2f
JM
2927void security_key_free(struct key *key);
2928int security_key_permission(key_ref_t key_ref,
d84f4f99 2929 const struct cred *cred, key_perm_t perm);
70a5bb72 2930int security_key_getsecurity(struct key *key, char **_buffer);
29db9190
DH
2931
2932#else
2933
d720024e 2934static inline int security_key_alloc(struct key *key,
d84f4f99 2935 const struct cred *cred,
7e047ef5 2936 unsigned long flags)
29db9190
DH
2937{
2938 return 0;
2939}
2940
2941static inline void security_key_free(struct key *key)
2942{
2943}
2944
2945static inline int security_key_permission(key_ref_t key_ref,
d84f4f99 2946 const struct cred *cred,
29db9190
DH
2947 key_perm_t perm)
2948{
2949 return 0;
2950}
2951
70a5bb72
DH
2952static inline int security_key_getsecurity(struct key *key, char **_buffer)
2953{
2954 *_buffer = NULL;
2955 return 0;
be1d6a5f 2956}
ee18d64c 2957
29db9190
DH
2958#endif
2959#endif /* CONFIG_KEYS */
2960
03d37d25
AD
2961#ifdef CONFIG_AUDIT
2962#ifdef CONFIG_SECURITY
2963int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2964int security_audit_rule_known(struct audit_krule *krule);
2965int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2966 struct audit_context *actx);
2967void security_audit_rule_free(void *lsmrule);
2968
2969#else
2970
2971static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2972 void **lsmrule)
2973{
2974 return 0;
2975}
2976
2977static inline int security_audit_rule_known(struct audit_krule *krule)
2978{
2979 return 0;
2980}
2981
2982static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2983 void *lsmrule, struct audit_context *actx)
2984{
2985 return 0;
2986}
2987
2988static inline void security_audit_rule_free(void *lsmrule)
2989{ }
2990
2991#endif /* CONFIG_SECURITY */
2992#endif /* CONFIG_AUDIT */
2993
da31894e
EP
2994#ifdef CONFIG_SECURITYFS
2995
2996extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
2997 struct dentry *parent, void *data,
2998 const struct file_operations *fops);
2999extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
3000extern void securityfs_remove(struct dentry *dentry);
3001
3002#else /* CONFIG_SECURITYFS */
3003
3004static inline struct dentry *securityfs_create_dir(const char *name,
3005 struct dentry *parent)
3006{
3007 return ERR_PTR(-ENODEV);
3008}
3009
3010static inline struct dentry *securityfs_create_file(const char *name,
3011 mode_t mode,
3012 struct dentry *parent,
3013 void *data,
3014 const struct file_operations *fops)
3015{
3016 return ERR_PTR(-ENODEV);
3017}
3018
3019static inline void securityfs_remove(struct dentry *dentry)
3020{}
3021
3022#endif
3023
3d544f41
PE
3024#ifdef CONFIG_SECURITY
3025
3026static inline char *alloc_secdata(void)
3027{
3028 return (char *)get_zeroed_page(GFP_KERNEL);
3029}
3030
3031static inline void free_secdata(void *secdata)
3032{
3033 free_page((unsigned long)secdata);
3034}
3035
3036#else
3037
3038static inline char *alloc_secdata(void)
3039{
3040 return (char *)1;
3041}
3042
3043static inline void free_secdata(void *secdata)
3044{ }
3045#endif /* CONFIG_SECURITY */
3046
1da177e4
LT
3047#endif /* ! __LINUX_SECURITY_H */
3048
This page took 1.198105 seconds and 5 git commands to generate.