Merge branch 'master' into next
[safe/jmp/linux-2.6] / include / linux / security.h
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>
26 #include <linux/binfmts.h>
27 #include <linux/signal.h>
28 #include <linux/resource.h>
29 #include <linux/sem.h>
30 #include <linux/shm.h>
31 #include <linux/msg.h>
32 #include <linux/sched.h>
33 #include <linux/key.h>
34 #include <linux/xfrm.h>
35 #include <net/flow.h>
36
37 /* Maximum number of letters for an LSM name string */
38 #define SECURITY_NAME_MAX       10
39
40 /* If capable should audit the security request */
41 #define SECURITY_CAP_NOAUDIT 0
42 #define SECURITY_CAP_AUDIT 1
43
44 struct ctl_table;
45 struct audit_krule;
46
47 /*
48  * These functions are in security/capability.c and are used
49  * as the default capabilities functions
50  */
51 extern int cap_capable(struct task_struct *tsk, int cap, int audit);
52 extern int cap_settime(struct timespec *ts, struct timezone *tz);
53 extern int cap_ptrace_may_access(struct task_struct *child, unsigned int mode);
54 extern int cap_ptrace_traceme(struct task_struct *parent);
55 extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
56 extern int cap_capset(struct cred *new, const struct cred *old,
57                       const kernel_cap_t *effective,
58                       const kernel_cap_t *inheritable,
59                       const kernel_cap_t *permitted);
60 extern int cap_bprm_set_creds(struct linux_binprm *bprm);
61 extern int cap_bprm_secureexec(struct linux_binprm *bprm);
62 extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
63                               const void *value, size_t size, int flags);
64 extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
65 extern int cap_inode_need_killpriv(struct dentry *dentry);
66 extern int cap_inode_killpriv(struct dentry *dentry);
67 extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
68 extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
69                           unsigned long arg4, unsigned long arg5);
70 extern int cap_task_setscheduler(struct task_struct *p, int policy, struct sched_param *lp);
71 extern int cap_task_setioprio(struct task_struct *p, int ioprio);
72 extern int cap_task_setnice(struct task_struct *p, int nice);
73 extern int cap_syslog(int type);
74 extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
75
76 struct msghdr;
77 struct sk_buff;
78 struct sock;
79 struct sockaddr;
80 struct socket;
81 struct flowi;
82 struct dst_entry;
83 struct xfrm_selector;
84 struct xfrm_policy;
85 struct xfrm_state;
86 struct xfrm_user_sec_ctx;
87 struct seq_file;
88
89 extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
90 extern int cap_netlink_recv(struct sk_buff *skb, int cap);
91
92 extern unsigned long mmap_min_addr;
93 /*
94  * Values used in the task_security_ops calls
95  */
96 /* setuid or setgid, id0 == uid or gid */
97 #define LSM_SETID_ID    1
98
99 /* setreuid or setregid, id0 == real, id1 == eff */
100 #define LSM_SETID_RE    2
101
102 /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
103 #define LSM_SETID_RES   4
104
105 /* setfsuid or setfsgid, id0 == fsuid or fsgid */
106 #define LSM_SETID_FS    8
107
108 /* forward declares to avoid warnings */
109 struct sched_param;
110 struct request_sock;
111
112 /* bprm->unsafe reasons */
113 #define LSM_UNSAFE_SHARE        1
114 #define LSM_UNSAFE_PTRACE       2
115 #define LSM_UNSAFE_PTRACE_CAP   4
116
117 #ifdef CONFIG_SECURITY
118
119 struct security_mnt_opts {
120         char **mnt_opts;
121         int *mnt_opts_flags;
122         int num_mnt_opts;
123 };
124
125 static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
126 {
127         opts->mnt_opts = NULL;
128         opts->mnt_opts_flags = NULL;
129         opts->num_mnt_opts = 0;
130 }
131
132 static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
133 {
134         int i;
135         if (opts->mnt_opts)
136                 for (i = 0; i < opts->num_mnt_opts; i++)
137                         kfree(opts->mnt_opts[i]);
138         kfree(opts->mnt_opts);
139         opts->mnt_opts = NULL;
140         kfree(opts->mnt_opts_flags);
141         opts->mnt_opts_flags = NULL;
142         opts->num_mnt_opts = 0;
143 }
144
145 /**
146  * struct security_operations - main security structure
147  *
148  * Security module identifier.
149  *
150  * @name:
151  *      A string that acts as a unique identifeir for the LSM with max number
152  *      of characters = SECURITY_NAME_MAX.
153  *
154  * Security hooks for program execution operations.
155  *
156  * @bprm_set_creds:
157  *      Save security information in the bprm->security field, typically based
158  *      on information about the bprm->file, for later use by the apply_creds
159  *      hook.  This hook may also optionally check permissions (e.g. for
160  *      transitions between security domains).
161  *      This hook may be called multiple times during a single execve, e.g. for
162  *      interpreters.  The hook can tell whether it has already been called by
163  *      checking to see if @bprm->security is non-NULL.  If so, then the hook
164  *      may decide either to retain the security information saved earlier or
165  *      to replace it.
166  *      @bprm contains the linux_binprm structure.
167  *      Return 0 if the hook is successful and permission is granted.
168  * @bprm_check_security:
169  *      This hook mediates the point when a search for a binary handler will
170  *      begin.  It allows a check the @bprm->security value which is set in the
171  *      preceding set_creds call.  The primary difference from set_creds is
172  *      that the argv list and envp list are reliably available in @bprm.  This
173  *      hook may be called multiple times during a single execve; and in each
174  *      pass set_creds is called first.
175  *      @bprm contains the linux_binprm structure.
176  *      Return 0 if the hook is successful and permission is granted.
177  * @bprm_committing_creds:
178  *      Prepare to install the new security attributes of a process being
179  *      transformed by an execve operation, based on the old credentials
180  *      pointed to by @current->cred and the information set in @bprm->cred by
181  *      the bprm_set_creds hook.  @bprm points to the linux_binprm structure.
182  *      This hook is a good place to perform state changes on the process such
183  *      as closing open file descriptors to which access will no longer be
184  *      granted when the attributes are changed.  This is called immediately
185  *      before commit_creds().
186  * @bprm_committed_creds:
187  *      Tidy up after the installation of the new security attributes of a
188  *      process being transformed by an execve operation.  The new credentials
189  *      have, by this point, been set to @current->cred.  @bprm points to the
190  *      linux_binprm structure.  This hook is a good place to perform state
191  *      changes on the process such as clearing out non-inheritable signal
192  *      state.  This is called immediately after commit_creds().
193  * @bprm_secureexec:
194  *      Return a boolean value (0 or 1) indicating whether a "secure exec"
195  *      is required.  The flag is passed in the auxiliary table
196  *      on the initial stack to the ELF interpreter to indicate whether libc
197  *      should enable secure mode.
198  *      @bprm contains the linux_binprm structure.
199  *
200  * Security hooks for filesystem operations.
201  *
202  * @sb_alloc_security:
203  *      Allocate and attach a security structure to the sb->s_security field.
204  *      The s_security field is initialized to NULL when the structure is
205  *      allocated.
206  *      @sb contains the super_block structure to be modified.
207  *      Return 0 if operation was successful.
208  * @sb_free_security:
209  *      Deallocate and clear the sb->s_security field.
210  *      @sb contains the super_block structure to be modified.
211  * @sb_statfs:
212  *      Check permission before obtaining filesystem statistics for the @mnt
213  *      mountpoint.
214  *      @dentry is a handle on the superblock for the filesystem.
215  *      Return 0 if permission is granted.
216  * @sb_mount:
217  *      Check permission before an object specified by @dev_name is mounted on
218  *      the mount point named by @nd.  For an ordinary mount, @dev_name
219  *      identifies a device if the file system type requires a device.  For a
220  *      remount (@flags & MS_REMOUNT), @dev_name is irrelevant.  For a
221  *      loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
222  *      pathname of the object being mounted.
223  *      @dev_name contains the name for object being mounted.
224  *      @path contains the path for mount point object.
225  *      @type contains the filesystem type.
226  *      @flags contains the mount flags.
227  *      @data contains the filesystem-specific data.
228  *      Return 0 if permission is granted.
229  * @sb_copy_data:
230  *      Allow mount option data to be copied prior to parsing by the filesystem,
231  *      so that the security module can extract security-specific mount
232  *      options cleanly (a filesystem may modify the data e.g. with strsep()).
233  *      This also allows the original mount data to be stripped of security-
234  *      specific options to avoid having to make filesystems aware of them.
235  *      @type the type of filesystem being mounted.
236  *      @orig the original mount data copied from userspace.
237  *      @copy copied data which will be passed to the security module.
238  *      Returns 0 if the copy was successful.
239  * @sb_check_sb:
240  *      Check permission before the device with superblock @mnt->sb is mounted
241  *      on the mount point named by @nd.
242  *      @mnt contains the vfsmount for device being mounted.
243  *      @path contains the path for the mount point.
244  *      Return 0 if permission is granted.
245  * @sb_umount:
246  *      Check permission before the @mnt file system is unmounted.
247  *      @mnt contains the mounted file system.
248  *      @flags contains the unmount flags, e.g. MNT_FORCE.
249  *      Return 0 if permission is granted.
250  * @sb_umount_close:
251  *      Close any files in the @mnt mounted filesystem that are held open by
252  *      the security module.  This hook is called during an umount operation
253  *      prior to checking whether the filesystem is still busy.
254  *      @mnt contains the mounted filesystem.
255  * @sb_umount_busy:
256  *      Handle a failed umount of the @mnt mounted filesystem, e.g.  re-opening
257  *      any files that were closed by umount_close.  This hook is called during
258  *      an umount operation if the umount fails after a call to the
259  *      umount_close hook.
260  *      @mnt contains the mounted filesystem.
261  * @sb_post_remount:
262  *      Update the security module's state when a filesystem is remounted.
263  *      This hook is only called if the remount was successful.
264  *      @mnt contains the mounted file system.
265  *      @flags contains the new filesystem flags.
266  *      @data contains the filesystem-specific data.
267  * @sb_post_addmount:
268  *      Update the security module's state when a filesystem is mounted.
269  *      This hook is called any time a mount is successfully grafetd to
270  *      the tree.
271  *      @mnt contains the mounted filesystem.
272  *      @mountpoint contains the path for the mount point.
273  * @sb_pivotroot:
274  *      Check permission before pivoting the root filesystem.
275  *      @old_path contains the path for the new location of the current root (put_old).
276  *      @new_path contains the path for the new root (new_root).
277  *      Return 0 if permission is granted.
278  * @sb_post_pivotroot:
279  *      Update module state after a successful pivot.
280  *      @old_path contains the path for the old root.
281  *      @new_path contains the path for the new root.
282  * @sb_set_mnt_opts:
283  *      Set the security relevant mount options used for a superblock
284  *      @sb the superblock to set security mount options for
285  *      @opts binary data structure containing all lsm mount data
286  * @sb_clone_mnt_opts:
287  *      Copy all security options from a given superblock to another
288  *      @oldsb old superblock which contain information to clone
289  *      @newsb new superblock which needs filled in
290  * @sb_parse_opts_str:
291  *      Parse a string of security data filling in the opts structure
292  *      @options string containing all mount options known by the LSM
293  *      @opts binary data structure usable by the LSM
294  *
295  * Security hooks for inode operations.
296  *
297  * @inode_alloc_security:
298  *      Allocate and attach a security structure to @inode->i_security.  The
299  *      i_security field is initialized to NULL when the inode structure is
300  *      allocated.
301  *      @inode contains the inode structure.
302  *      Return 0 if operation was successful.
303  * @inode_free_security:
304  *      @inode contains the inode structure.
305  *      Deallocate the inode security structure and set @inode->i_security to
306  *      NULL.
307  * @inode_init_security:
308  *      Obtain the security attribute name suffix and value to set on a newly
309  *      created inode and set up the incore security field for the new inode.
310  *      This hook is called by the fs code as part of the inode creation
311  *      transaction and provides for atomic labeling of the inode, unlike
312  *      the post_create/mkdir/... hooks called by the VFS.  The hook function
313  *      is expected to allocate the name and value via kmalloc, with the caller
314  *      being responsible for calling kfree after using them.
315  *      If the security module does not use security attributes or does
316  *      not wish to put a security attribute on this particular inode,
317  *      then it should return -EOPNOTSUPP to skip this processing.
318  *      @inode contains the inode structure of the newly created inode.
319  *      @dir contains the inode structure of the parent directory.
320  *      @name will be set to the allocated name suffix (e.g. selinux).
321  *      @value will be set to the allocated attribute value.
322  *      @len will be set to the length of the value.
323  *      Returns 0 if @name and @value have been successfully set,
324  *              -EOPNOTSUPP if no security attribute is needed, or
325  *              -ENOMEM on memory allocation failure.
326  * @inode_create:
327  *      Check permission to create a regular file.
328  *      @dir contains inode structure of the parent of the new file.
329  *      @dentry contains the dentry structure for the file to be created.
330  *      @mode contains the file mode of the file to be created.
331  *      Return 0 if permission is granted.
332  * @inode_link:
333  *      Check permission before creating a new hard link to a file.
334  *      @old_dentry contains the dentry structure for an existing link to the file.
335  *      @dir contains the inode structure of the parent directory of the new link.
336  *      @new_dentry contains the dentry structure for the new link.
337  *      Return 0 if permission is granted.
338  * @inode_unlink:
339  *      Check the permission to remove a hard link to a file.
340  *      @dir contains the inode structure of parent directory of the file.
341  *      @dentry contains the dentry structure for file to be unlinked.
342  *      Return 0 if permission is granted.
343  * @inode_symlink:
344  *      Check the permission to create a symbolic link to a file.
345  *      @dir contains the inode structure of parent directory of the symbolic link.
346  *      @dentry contains the dentry structure of the symbolic link.
347  *      @old_name contains the pathname of file.
348  *      Return 0 if permission is granted.
349  * @inode_mkdir:
350  *      Check permissions to create a new directory in the existing directory
351  *      associated with inode strcture @dir.
352  *      @dir containst the inode structure of parent of the directory to be created.
353  *      @dentry contains the dentry structure of new directory.
354  *      @mode contains the mode of new directory.
355  *      Return 0 if permission is granted.
356  * @inode_rmdir:
357  *      Check the permission to remove a directory.
358  *      @dir contains the inode structure of parent of the directory to be removed.
359  *      @dentry contains the dentry structure of directory to be removed.
360  *      Return 0 if permission is granted.
361  * @inode_mknod:
362  *      Check permissions when creating a special file (or a socket or a fifo
363  *      file created via the mknod system call).  Note that if mknod operation
364  *      is being done for a regular file, then the create hook will be called
365  *      and not this hook.
366  *      @dir contains the inode structure of parent of the new file.
367  *      @dentry contains the dentry structure of the new file.
368  *      @mode contains the mode of the new file.
369  *      @dev contains the device number.
370  *      Return 0 if permission is granted.
371  * @inode_rename:
372  *      Check for permission to rename a file or directory.
373  *      @old_dir contains the inode structure for parent of the old link.
374  *      @old_dentry contains the dentry structure of the old link.
375  *      @new_dir contains the inode structure for parent of the new link.
376  *      @new_dentry contains the dentry structure of the new link.
377  *      Return 0 if permission is granted.
378  * @inode_readlink:
379  *      Check the permission to read the symbolic link.
380  *      @dentry contains the dentry structure for the file link.
381  *      Return 0 if permission is granted.
382  * @inode_follow_link:
383  *      Check permission to follow a symbolic link when looking up a pathname.
384  *      @dentry contains the dentry structure for the link.
385  *      @nd contains the nameidata structure for the parent directory.
386  *      Return 0 if permission is granted.
387  * @inode_permission:
388  *      Check permission before accessing an inode.  This hook is called by the
389  *      existing Linux permission function, so a security module can use it to
390  *      provide additional checking for existing Linux permission checks.
391  *      Notice that this hook is called when a file is opened (as well as many
392  *      other operations), whereas the file_security_ops permission hook is
393  *      called when the actual read/write operations are performed.
394  *      @inode contains the inode structure to check.
395  *      @mask contains the permission mask.
396  *      @nd contains the nameidata (may be NULL).
397  *      Return 0 if permission is granted.
398  * @inode_setattr:
399  *      Check permission before setting file attributes.  Note that the kernel
400  *      call to notify_change is performed from several locations, whenever
401  *      file attributes change (such as when a file is truncated, chown/chmod
402  *      operations, transferring disk quotas, etc).
403  *      @dentry contains the dentry structure for the file.
404  *      @attr is the iattr structure containing the new file attributes.
405  *      Return 0 if permission is granted.
406  * @inode_getattr:
407  *      Check permission before obtaining file attributes.
408  *      @mnt is the vfsmount where the dentry was looked up
409  *      @dentry contains the dentry structure for the file.
410  *      Return 0 if permission is granted.
411  * @inode_delete:
412  *      @inode contains the inode structure for deleted inode.
413  *      This hook is called when a deleted inode is released (i.e. an inode
414  *      with no hard links has its use count drop to zero).  A security module
415  *      can use this hook to release any persistent label associated with the
416  *      inode.
417  * @inode_setxattr:
418  *      Check permission before setting the extended attributes
419  *      @value identified by @name for @dentry.
420  *      Return 0 if permission is granted.
421  * @inode_post_setxattr:
422  *      Update inode security field after successful setxattr operation.
423  *      @value identified by @name for @dentry.
424  * @inode_getxattr:
425  *      Check permission before obtaining the extended attributes
426  *      identified by @name for @dentry.
427  *      Return 0 if permission is granted.
428  * @inode_listxattr:
429  *      Check permission before obtaining the list of extended attribute
430  *      names for @dentry.
431  *      Return 0 if permission is granted.
432  * @inode_removexattr:
433  *      Check permission before removing the extended attribute
434  *      identified by @name for @dentry.
435  *      Return 0 if permission is granted.
436  * @inode_getsecurity:
437  *      Retrieve a copy of the extended attribute representation of the
438  *      security label associated with @name for @inode via @buffer.  Note that
439  *      @name is the remainder of the attribute name after the security prefix
440  *      has been removed. @alloc is used to specify of the call should return a
441  *      value via the buffer or just the value length Return size of buffer on
442  *      success.
443  * @inode_setsecurity:
444  *      Set the security label associated with @name for @inode from the
445  *      extended attribute value @value.  @size indicates the size of the
446  *      @value in bytes.  @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
447  *      Note that @name is the remainder of the attribute name after the
448  *      security. prefix has been removed.
449  *      Return 0 on success.
450  * @inode_listsecurity:
451  *      Copy the extended attribute names for the security labels
452  *      associated with @inode into @buffer.  The maximum size of @buffer
453  *      is specified by @buffer_size.  @buffer may be NULL to request
454  *      the size of the buffer required.
455  *      Returns number of bytes used/required on success.
456  * @inode_need_killpriv:
457  *      Called when an inode has been changed.
458  *      @dentry is the dentry being changed.
459  *      Return <0 on error to abort the inode change operation.
460  *      Return 0 if inode_killpriv does not need to be called.
461  *      Return >0 if inode_killpriv does need to be called.
462  * @inode_killpriv:
463  *      The setuid bit is being removed.  Remove similar security labels.
464  *      Called with the dentry->d_inode->i_mutex held.
465  *      @dentry is the dentry being changed.
466  *      Return 0 on success.  If error is returned, then the operation
467  *      causing setuid bit removal is failed.
468  * @inode_getsecid:
469  *      Get the secid associated with the node.
470  *      @inode contains a pointer to the inode.
471  *      @secid contains a pointer to the location where result will be saved.
472  *      In case of failure, @secid will be set to zero.
473  *
474  * Security hooks for file operations
475  *
476  * @file_permission:
477  *      Check file permissions before accessing an open file.  This hook is
478  *      called by various operations that read or write files.  A security
479  *      module can use this hook to perform additional checking on these
480  *      operations, e.g.  to revalidate permissions on use to support privilege
481  *      bracketing or policy changes.  Notice that this hook is used when the
482  *      actual read/write operations are performed, whereas the
483  *      inode_security_ops hook is called when a file is opened (as well as
484  *      many other operations).
485  *      Caveat:  Although this hook can be used to revalidate permissions for
486  *      various system call operations that read or write files, it does not
487  *      address the revalidation of permissions for memory-mapped files.
488  *      Security modules must handle this separately if they need such
489  *      revalidation.
490  *      @file contains the file structure being accessed.
491  *      @mask contains the requested permissions.
492  *      Return 0 if permission is granted.
493  * @file_alloc_security:
494  *      Allocate and attach a security structure to the file->f_security field.
495  *      The security field is initialized to NULL when the structure is first
496  *      created.
497  *      @file contains the file structure to secure.
498  *      Return 0 if the hook is successful and permission is granted.
499  * @file_free_security:
500  *      Deallocate and free any security structures stored in file->f_security.
501  *      @file contains the file structure being modified.
502  * @file_ioctl:
503  *      @file contains the file structure.
504  *      @cmd contains the operation to perform.
505  *      @arg contains the operational arguments.
506  *      Check permission for an ioctl operation on @file.  Note that @arg can
507  *      sometimes represents a user space pointer; in other cases, it may be a
508  *      simple integer value.  When @arg represents a user space pointer, it
509  *      should never be used by the security module.
510  *      Return 0 if permission is granted.
511  * @file_mmap :
512  *      Check permissions for a mmap operation.  The @file may be NULL, e.g.
513  *      if mapping anonymous memory.
514  *      @file contains the file structure for file to map (may be NULL).
515  *      @reqprot contains the protection requested by the application.
516  *      @prot contains the protection that will be applied by the kernel.
517  *      @flags contains the operational flags.
518  *      Return 0 if permission is granted.
519  * @file_mprotect:
520  *      Check permissions before changing memory access permissions.
521  *      @vma contains the memory region to modify.
522  *      @reqprot contains the protection requested by the application.
523  *      @prot contains the protection that will be applied by the kernel.
524  *      Return 0 if permission is granted.
525  * @file_lock:
526  *      Check permission before performing file locking operations.
527  *      Note: this hook mediates both flock and fcntl style locks.
528  *      @file contains the file structure.
529  *      @cmd contains the posix-translated lock operation to perform
530  *      (e.g. F_RDLCK, F_WRLCK).
531  *      Return 0 if permission is granted.
532  * @file_fcntl:
533  *      Check permission before allowing the file operation specified by @cmd
534  *      from being performed on the file @file.  Note that @arg can sometimes
535  *      represents a user space pointer; in other cases, it may be a simple
536  *      integer value.  When @arg represents a user space pointer, it should
537  *      never be used by the security module.
538  *      @file contains the file structure.
539  *      @cmd contains the operation to be performed.
540  *      @arg contains the operational arguments.
541  *      Return 0 if permission is granted.
542  * @file_set_fowner:
543  *      Save owner security information (typically from current->security) in
544  *      file->f_security for later use by the send_sigiotask hook.
545  *      @file contains the file structure to update.
546  *      Return 0 on success.
547  * @file_send_sigiotask:
548  *      Check permission for the file owner @fown to send SIGIO or SIGURG to the
549  *      process @tsk.  Note that this hook is sometimes called from interrupt.
550  *      Note that the fown_struct, @fown, is never outside the context of a
551  *      struct file, so the file structure (and associated security information)
552  *      can always be obtained:
553  *              container_of(fown, struct file, f_owner)
554  *      @tsk contains the structure of task receiving signal.
555  *      @fown contains the file owner information.
556  *      @sig is the signal that will be sent.  When 0, kernel sends SIGIO.
557  *      Return 0 if permission is granted.
558  * @file_receive:
559  *      This hook allows security modules to control the ability of a process
560  *      to receive an open file descriptor via socket IPC.
561  *      @file contains the file structure being received.
562  *      Return 0 if permission is granted.
563  *
564  * Security hook for dentry
565  *
566  * @dentry_open
567  *      Save open-time permission checking state for later use upon
568  *      file_permission, and recheck access if anything has changed
569  *      since inode_permission.
570  *
571  * Security hooks for task operations.
572  *
573  * @task_create:
574  *      Check permission before creating a child process.  See the clone(2)
575  *      manual page for definitions of the @clone_flags.
576  *      @clone_flags contains the flags indicating what should be shared.
577  *      Return 0 if permission is granted.
578  * @cred_free:
579  *      @cred points to the credentials.
580  *      Deallocate and clear the cred->security field in a set of credentials.
581  * @cred_prepare:
582  *      @new points to the new credentials.
583  *      @old points to the original credentials.
584  *      @gfp indicates the atomicity of any memory allocations.
585  *      Prepare a new set of credentials by copying the data from the old set.
586  * @cred_commit:
587  *      @new points to the new credentials.
588  *      @old points to the original credentials.
589  *      Install a new set of credentials.
590  * @kernel_act_as:
591  *      Set the credentials for a kernel service to act as (subjective context).
592  *      @new points to the credentials to be modified.
593  *      @secid specifies the security ID to be set
594  *      The current task must be the one that nominated @secid.
595  *      Return 0 if successful.
596  * @kernel_create_files_as:
597  *      Set the file creation context in a set of credentials to be the same as
598  *      the objective context of the specified inode.
599  *      @new points to the credentials to be modified.
600  *      @inode points to the inode to use as a reference.
601  *      The current task must be the one that nominated @inode.
602  *      Return 0 if successful.
603  * @task_setuid:
604  *      Check permission before setting one or more of the user identity
605  *      attributes of the current process.  The @flags parameter indicates
606  *      which of the set*uid system calls invoked this hook and how to
607  *      interpret the @id0, @id1, and @id2 parameters.  See the LSM_SETID
608  *      definitions at the beginning of this file for the @flags values and
609  *      their meanings.
610  *      @id0 contains a uid.
611  *      @id1 contains a uid.
612  *      @id2 contains a uid.
613  *      @flags contains one of the LSM_SETID_* values.
614  *      Return 0 if permission is granted.
615  * @task_fix_setuid:
616  *      Update the module's state after setting one or more of the user
617  *      identity attributes of the current process.  The @flags parameter
618  *      indicates which of the set*uid system calls invoked this hook.  If
619  *      @new is the set of credentials that will be installed.  Modifications
620  *      should be made to this rather than to @current->cred.
621  *      @old is the set of credentials that are being replaces
622  *      @flags contains one of the LSM_SETID_* values.
623  *      Return 0 on success.
624  * @task_setgid:
625  *      Check permission before setting one or more of the group identity
626  *      attributes of the current process.  The @flags parameter indicates
627  *      which of the set*gid system calls invoked this hook and how to
628  *      interpret the @id0, @id1, and @id2 parameters.  See the LSM_SETID
629  *      definitions at the beginning of this file for the @flags values and
630  *      their meanings.
631  *      @id0 contains a gid.
632  *      @id1 contains a gid.
633  *      @id2 contains a gid.
634  *      @flags contains one of the LSM_SETID_* values.
635  *      Return 0 if permission is granted.
636  * @task_setpgid:
637  *      Check permission before setting the process group identifier of the
638  *      process @p to @pgid.
639  *      @p contains the task_struct for process being modified.
640  *      @pgid contains the new pgid.
641  *      Return 0 if permission is granted.
642  * @task_getpgid:
643  *      Check permission before getting the process group identifier of the
644  *      process @p.
645  *      @p contains the task_struct for the process.
646  *      Return 0 if permission is granted.
647  * @task_getsid:
648  *      Check permission before getting the session identifier of the process
649  *      @p.
650  *      @p contains the task_struct for the process.
651  *      Return 0 if permission is granted.
652  * @task_getsecid:
653  *      Retrieve the security identifier of the process @p.
654  *      @p contains the task_struct for the process and place is into @secid.
655  *      In case of failure, @secid will be set to zero.
656  *
657  * @task_setgroups:
658  *      Check permission before setting the supplementary group set of the
659  *      current process.
660  *      @group_info contains the new group information.
661  *      Return 0 if permission is granted.
662  * @task_setnice:
663  *      Check permission before setting the nice value of @p to @nice.
664  *      @p contains the task_struct of process.
665  *      @nice contains the new nice value.
666  *      Return 0 if permission is granted.
667  * @task_setioprio
668  *      Check permission before setting the ioprio value of @p to @ioprio.
669  *      @p contains the task_struct of process.
670  *      @ioprio contains the new ioprio value
671  *      Return 0 if permission is granted.
672  * @task_getioprio
673  *      Check permission before getting the ioprio value of @p.
674  *      @p contains the task_struct of process.
675  *      Return 0 if permission is granted.
676  * @task_setrlimit:
677  *      Check permission before setting the resource limits of the current
678  *      process for @resource to @new_rlim.  The old resource limit values can
679  *      be examined by dereferencing (current->signal->rlim + resource).
680  *      @resource contains the resource whose limit is being set.
681  *      @new_rlim contains the new limits for @resource.
682  *      Return 0 if permission is granted.
683  * @task_setscheduler:
684  *      Check permission before setting scheduling policy and/or parameters of
685  *      process @p based on @policy and @lp.
686  *      @p contains the task_struct for process.
687  *      @policy contains the scheduling policy.
688  *      @lp contains the scheduling parameters.
689  *      Return 0 if permission is granted.
690  * @task_getscheduler:
691  *      Check permission before obtaining scheduling information for process
692  *      @p.
693  *      @p contains the task_struct for process.
694  *      Return 0 if permission is granted.
695  * @task_movememory
696  *      Check permission before moving memory owned by process @p.
697  *      @p contains the task_struct for process.
698  *      Return 0 if permission is granted.
699  * @task_kill:
700  *      Check permission before sending signal @sig to @p.  @info can be NULL,
701  *      the constant 1, or a pointer to a siginfo structure.  If @info is 1 or
702  *      SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
703  *      from the kernel and should typically be permitted.
704  *      SIGIO signals are handled separately by the send_sigiotask hook in
705  *      file_security_ops.
706  *      @p contains the task_struct for process.
707  *      @info contains the signal information.
708  *      @sig contains the signal value.
709  *      @secid contains the sid of the process where the signal originated
710  *      Return 0 if permission is granted.
711  * @task_wait:
712  *      Check permission before allowing a process to reap a child process @p
713  *      and collect its status information.
714  *      @p contains the task_struct for process.
715  *      Return 0 if permission is granted.
716  * @task_prctl:
717  *      Check permission before performing a process control operation on the
718  *      current process.
719  *      @option contains the operation.
720  *      @arg2 contains a argument.
721  *      @arg3 contains a argument.
722  *      @arg4 contains a argument.
723  *      @arg5 contains a argument.
724  *      Return -ENOSYS if no-one wanted to handle this op, any other value to
725  *      cause prctl() to return immediately with that value.
726  * @task_to_inode:
727  *      Set the security attributes for an inode based on an associated task's
728  *      security attributes, e.g. for /proc/pid inodes.
729  *      @p contains the task_struct for the task.
730  *      @inode contains the inode structure for the inode.
731  *
732  * Security hooks for Netlink messaging.
733  *
734  * @netlink_send:
735  *      Save security information for a netlink message so that permission
736  *      checking can be performed when the message is processed.  The security
737  *      information can be saved using the eff_cap field of the
738  *      netlink_skb_parms structure.  Also may be used to provide fine
739  *      grained control over message transmission.
740  *      @sk associated sock of task sending the message.,
741  *      @skb contains the sk_buff structure for the netlink message.
742  *      Return 0 if the information was successfully saved and message
743  *      is allowed to be transmitted.
744  * @netlink_recv:
745  *      Check permission before processing the received netlink message in
746  *      @skb.
747  *      @skb contains the sk_buff structure for the netlink message.
748  *      @cap indicates the capability required
749  *      Return 0 if permission is granted.
750  *
751  * Security hooks for Unix domain networking.
752  *
753  * @unix_stream_connect:
754  *      Check permissions before establishing a Unix domain stream connection
755  *      between @sock and @other.
756  *      @sock contains the socket structure.
757  *      @other contains the peer socket structure.
758  *      Return 0 if permission is granted.
759  * @unix_may_send:
760  *      Check permissions before connecting or sending datagrams from @sock to
761  *      @other.
762  *      @sock contains the socket structure.
763  *      @sock contains the peer socket structure.
764  *      Return 0 if permission is granted.
765  *
766  * The @unix_stream_connect and @unix_may_send hooks were necessary because
767  * Linux provides an alternative to the conventional file name space for Unix
768  * domain sockets.  Whereas binding and connecting to sockets in the file name
769  * space is mediated by the typical file permissions (and caught by the mknod
770  * and permission hooks in inode_security_ops), binding and connecting to
771  * sockets in the abstract name space is completely unmediated.  Sufficient
772  * control of Unix domain sockets in the abstract name space isn't possible
773  * using only the socket layer hooks, since we need to know the actual target
774  * socket, which is not looked up until we are inside the af_unix code.
775  *
776  * Security hooks for socket operations.
777  *
778  * @socket_create:
779  *      Check permissions prior to creating a new socket.
780  *      @family contains the requested protocol family.
781  *      @type contains the requested communications type.
782  *      @protocol contains the requested protocol.
783  *      @kern set to 1 if a kernel socket.
784  *      Return 0 if permission is granted.
785  * @socket_post_create:
786  *      This hook allows a module to update or allocate a per-socket security
787  *      structure. Note that the security field was not added directly to the
788  *      socket structure, but rather, the socket security information is stored
789  *      in the associated inode.  Typically, the inode alloc_security hook will
790  *      allocate and and attach security information to
791  *      sock->inode->i_security.  This hook may be used to update the
792  *      sock->inode->i_security field with additional information that wasn't
793  *      available when the inode was allocated.
794  *      @sock contains the newly created socket structure.
795  *      @family contains the requested protocol family.
796  *      @type contains the requested communications type.
797  *      @protocol contains the requested protocol.
798  *      @kern set to 1 if a kernel socket.
799  * @socket_bind:
800  *      Check permission before socket protocol layer bind operation is
801  *      performed and the socket @sock is bound to the address specified in the
802  *      @address parameter.
803  *      @sock contains the socket structure.
804  *      @address contains the address to bind to.
805  *      @addrlen contains the length of address.
806  *      Return 0 if permission is granted.
807  * @socket_connect:
808  *      Check permission before socket protocol layer connect operation
809  *      attempts to connect socket @sock to a remote address, @address.
810  *      @sock contains the socket structure.
811  *      @address contains the address of remote endpoint.
812  *      @addrlen contains the length of address.
813  *      Return 0 if permission is granted.
814  * @socket_listen:
815  *      Check permission before socket protocol layer listen operation.
816  *      @sock contains the socket structure.
817  *      @backlog contains the maximum length for the pending connection queue.
818  *      Return 0 if permission is granted.
819  * @socket_accept:
820  *      Check permission before accepting a new connection.  Note that the new
821  *      socket, @newsock, has been created and some information copied to it,
822  *      but the accept operation has not actually been performed.
823  *      @sock contains the listening socket structure.
824  *      @newsock contains the newly created server socket for connection.
825  *      Return 0 if permission is granted.
826  * @socket_post_accept:
827  *      This hook allows a security module to copy security
828  *      information into the newly created socket's inode.
829  *      @sock contains the listening socket structure.
830  *      @newsock contains the newly created server socket for connection.
831  * @socket_sendmsg:
832  *      Check permission before transmitting a message to another socket.
833  *      @sock contains the socket structure.
834  *      @msg contains the message to be transmitted.
835  *      @size contains the size of message.
836  *      Return 0 if permission is granted.
837  * @socket_recvmsg:
838  *      Check permission before receiving a message from a socket.
839  *      @sock contains the socket structure.
840  *      @msg contains the message structure.
841  *      @size contains the size of message structure.
842  *      @flags contains the operational flags.
843  *      Return 0 if permission is granted.
844  * @socket_getsockname:
845  *      Check permission before the local address (name) of the socket object
846  *      @sock is retrieved.
847  *      @sock contains the socket structure.
848  *      Return 0 if permission is granted.
849  * @socket_getpeername:
850  *      Check permission before the remote address (name) of a socket object
851  *      @sock is retrieved.
852  *      @sock contains the socket structure.
853  *      Return 0 if permission is granted.
854  * @socket_getsockopt:
855  *      Check permissions before retrieving the options associated with socket
856  *      @sock.
857  *      @sock contains the socket structure.
858  *      @level contains the protocol level to retrieve option from.
859  *      @optname contains the name of option to retrieve.
860  *      Return 0 if permission is granted.
861  * @socket_setsockopt:
862  *      Check permissions before setting the options associated with socket
863  *      @sock.
864  *      @sock contains the socket structure.
865  *      @level contains the protocol level to set options for.
866  *      @optname contains the name of the option to set.
867  *      Return 0 if permission is granted.
868  * @socket_shutdown:
869  *      Checks permission before all or part of a connection on the socket
870  *      @sock is shut down.
871  *      @sock contains the socket structure.
872  *      @how contains the flag indicating how future sends and receives are handled.
873  *      Return 0 if permission is granted.
874  * @socket_sock_rcv_skb:
875  *      Check permissions on incoming network packets.  This hook is distinct
876  *      from Netfilter's IP input hooks since it is the first time that the
877  *      incoming sk_buff @skb has been associated with a particular socket, @sk.
878  *      @sk contains the sock (not socket) associated with the incoming sk_buff.
879  *      @skb contains the incoming network data.
880  * @socket_getpeersec_stream:
881  *      This hook allows the security module to provide peer socket security
882  *      state for unix or connected tcp sockets to userspace via getsockopt
883  *      SO_GETPEERSEC.  For tcp sockets this can be meaningful if the
884  *      socket is associated with an ipsec SA.
885  *      @sock is the local socket.
886  *      @optval userspace memory where the security state is to be copied.
887  *      @optlen userspace int where the module should copy the actual length
888  *      of the security state.
889  *      @len as input is the maximum length to copy to userspace provided
890  *      by the caller.
891  *      Return 0 if all is well, otherwise, typical getsockopt return
892  *      values.
893  * @socket_getpeersec_dgram:
894  *      This hook allows the security module to provide peer socket security
895  *      state for udp sockets on a per-packet basis to userspace via
896  *      getsockopt SO_GETPEERSEC.  The application must first have indicated
897  *      the IP_PASSSEC option via getsockopt.  It can then retrieve the
898  *      security state returned by this hook for a packet via the SCM_SECURITY
899  *      ancillary message type.
900  *      @skb is the skbuff for the packet being queried
901  *      @secdata is a pointer to a buffer in which to copy the security data
902  *      @seclen is the maximum length for @secdata
903  *      Return 0 on success, error on failure.
904  * @sk_alloc_security:
905  *      Allocate and attach a security structure to the sk->sk_security field,
906  *      which is used to copy security attributes between local stream sockets.
907  * @sk_free_security:
908  *      Deallocate security structure.
909  * @sk_clone_security:
910  *      Clone/copy security structure.
911  * @sk_getsecid:
912  *      Retrieve the LSM-specific secid for the sock to enable caching of network
913  *      authorizations.
914  * @sock_graft:
915  *      Sets the socket's isec sid to the sock's sid.
916  * @inet_conn_request:
917  *      Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
918  * @inet_csk_clone:
919  *      Sets the new child socket's sid to the openreq sid.
920  * @inet_conn_established:
921  *      Sets the connection's peersid to the secmark on skb.
922  * @req_classify_flow:
923  *      Sets the flow's sid to the openreq sid.
924  *
925  * Security hooks for XFRM operations.
926  *
927  * @xfrm_policy_alloc_security:
928  *      @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
929  *      Database used by the XFRM system.
930  *      @sec_ctx contains the security context information being provided by
931  *      the user-level policy update program (e.g., setkey).
932  *      Allocate a security structure to the xp->security field; the security
933  *      field is initialized to NULL when the xfrm_policy is allocated.
934  *      Return 0 if operation was successful (memory to allocate, legal context)
935  * @xfrm_policy_clone_security:
936  *      @old_ctx contains an existing xfrm_sec_ctx.
937  *      @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
938  *      Allocate a security structure in new_ctxp that contains the
939  *      information from the old_ctx structure.
940  *      Return 0 if operation was successful (memory to allocate).
941  * @xfrm_policy_free_security:
942  *      @ctx contains the xfrm_sec_ctx
943  *      Deallocate xp->security.
944  * @xfrm_policy_delete_security:
945  *      @ctx contains the xfrm_sec_ctx.
946  *      Authorize deletion of xp->security.
947  * @xfrm_state_alloc_security:
948  *      @x contains the xfrm_state being added to the Security Association
949  *      Database by the XFRM system.
950  *      @sec_ctx contains the security context information being provided by
951  *      the user-level SA generation program (e.g., setkey or racoon).
952  *      @secid contains the secid from which to take the mls portion of the context.
953  *      Allocate a security structure to the x->security field; the security
954  *      field is initialized to NULL when the xfrm_state is allocated. Set the
955  *      context to correspond to either sec_ctx or polsec, with the mls portion
956  *      taken from secid in the latter case.
957  *      Return 0 if operation was successful (memory to allocate, legal context).
958  * @xfrm_state_free_security:
959  *      @x contains the xfrm_state.
960  *      Deallocate x->security.
961  * @xfrm_state_delete_security:
962  *      @x contains the xfrm_state.
963  *      Authorize deletion of x->security.
964  * @xfrm_policy_lookup:
965  *      @ctx contains the xfrm_sec_ctx for which the access control is being
966  *      checked.
967  *      @fl_secid contains the flow security label that is used to authorize
968  *      access to the policy xp.
969  *      @dir contains the direction of the flow (input or output).
970  *      Check permission when a flow selects a xfrm_policy for processing
971  *      XFRMs on a packet.  The hook is called when selecting either a
972  *      per-socket policy or a generic xfrm policy.
973  *      Return 0 if permission is granted, -ESRCH otherwise, or -errno
974  *      on other errors.
975  * @xfrm_state_pol_flow_match:
976  *      @x contains the state to match.
977  *      @xp contains the policy to check for a match.
978  *      @fl contains the flow to check for a match.
979  *      Return 1 if there is a match.
980  * @xfrm_decode_session:
981  *      @skb points to skb to decode.
982  *      @secid points to the flow key secid to set.
983  *      @ckall says if all xfrms used should be checked for same secid.
984  *      Return 0 if ckall is zero or all xfrms used have the same secid.
985  *
986  * Security hooks affecting all Key Management operations
987  *
988  * @key_alloc:
989  *      Permit allocation of a key and assign security data. Note that key does
990  *      not have a serial number assigned at this point.
991  *      @key points to the key.
992  *      @flags is the allocation flags
993  *      Return 0 if permission is granted, -ve error otherwise.
994  * @key_free:
995  *      Notification of destruction; free security data.
996  *      @key points to the key.
997  *      No return value.
998  * @key_permission:
999  *      See whether a specific operational right is granted to a process on a
1000  *      key.
1001  *      @key_ref refers to the key (key pointer + possession attribute bit).
1002  *      @cred points to the credentials to provide the context against which to
1003  *      evaluate the security data on the key.
1004  *      @perm describes the combination of permissions required of this key.
1005  *      Return 1 if permission granted, 0 if permission denied and -ve it the
1006  *      normal permissions model should be effected.
1007  * @key_getsecurity:
1008  *      Get a textual representation of the security context attached to a key
1009  *      for the purposes of honouring KEYCTL_GETSECURITY.  This function
1010  *      allocates the storage for the NUL-terminated string and the caller
1011  *      should free it.
1012  *      @key points to the key to be queried.
1013  *      @_buffer points to a pointer that should be set to point to the
1014  *       resulting string (if no label or an error occurs).
1015  *      Return the length of the string (including terminating NUL) or -ve if
1016  *      an error.
1017  *      May also return 0 (and a NULL buffer pointer) if there is no label.
1018  *
1019  * Security hooks affecting all System V IPC operations.
1020  *
1021  * @ipc_permission:
1022  *      Check permissions for access to IPC
1023  *      @ipcp contains the kernel IPC permission structure
1024  *      @flag contains the desired (requested) permission set
1025  *      Return 0 if permission is granted.
1026  * @ipc_getsecid:
1027  *      Get the secid associated with the ipc object.
1028  *      @ipcp contains the kernel IPC permission structure.
1029  *      @secid contains a pointer to the location where result will be saved.
1030  *      In case of failure, @secid will be set to zero.
1031  *
1032  * Security hooks for individual messages held in System V IPC message queues
1033  * @msg_msg_alloc_security:
1034  *      Allocate and attach a security structure to the msg->security field.
1035  *      The security field is initialized to NULL when the structure is first
1036  *      created.
1037  *      @msg contains the message structure to be modified.
1038  *      Return 0 if operation was successful and permission is granted.
1039  * @msg_msg_free_security:
1040  *      Deallocate the security structure for this message.
1041  *      @msg contains the message structure to be modified.
1042  *
1043  * Security hooks for System V IPC Message Queues
1044  *
1045  * @msg_queue_alloc_security:
1046  *      Allocate and attach a security structure to the
1047  *      msq->q_perm.security field. The security field is initialized to
1048  *      NULL when the structure is first created.
1049  *      @msq contains the message queue structure to be modified.
1050  *      Return 0 if operation was successful and permission is granted.
1051  * @msg_queue_free_security:
1052  *      Deallocate security structure for this message queue.
1053  *      @msq contains the message queue structure to be modified.
1054  * @msg_queue_associate:
1055  *      Check permission when a message queue is requested through the
1056  *      msgget system call.  This hook is only called when returning the
1057  *      message queue identifier for an existing message queue, not when a
1058  *      new message queue is created.
1059  *      @msq contains the message queue to act upon.
1060  *      @msqflg contains the operation control flags.
1061  *      Return 0 if permission is granted.
1062  * @msg_queue_msgctl:
1063  *      Check permission when a message control operation specified by @cmd
1064  *      is to be performed on the message queue @msq.
1065  *      The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1066  *      @msq contains the message queue to act upon.  May be NULL.
1067  *      @cmd contains the operation to be performed.
1068  *      Return 0 if permission is granted.
1069  * @msg_queue_msgsnd:
1070  *      Check permission before a message, @msg, is enqueued on the message
1071  *      queue, @msq.
1072  *      @msq contains the message queue to send message to.
1073  *      @msg contains the message to be enqueued.
1074  *      @msqflg contains operational flags.
1075  *      Return 0 if permission is granted.
1076  * @msg_queue_msgrcv:
1077  *      Check permission before a message, @msg, is removed from the message
1078  *      queue, @msq.  The @target task structure contains a pointer to the
1079  *      process that will be receiving the message (not equal to the current
1080  *      process when inline receives are being performed).
1081  *      @msq contains the message queue to retrieve message from.
1082  *      @msg contains the message destination.
1083  *      @target contains the task structure for recipient process.
1084  *      @type contains the type of message requested.
1085  *      @mode contains the operational flags.
1086  *      Return 0 if permission is granted.
1087  *
1088  * Security hooks for System V Shared Memory Segments
1089  *
1090  * @shm_alloc_security:
1091  *      Allocate and attach a security structure to the shp->shm_perm.security
1092  *      field.  The security field is initialized to NULL when the structure is
1093  *      first created.
1094  *      @shp contains the shared memory structure to be modified.
1095  *      Return 0 if operation was successful and permission is granted.
1096  * @shm_free_security:
1097  *      Deallocate the security struct for this memory segment.
1098  *      @shp contains the shared memory structure to be modified.
1099  * @shm_associate:
1100  *      Check permission when a shared memory region is requested through the
1101  *      shmget system call.  This hook is only called when returning the shared
1102  *      memory region identifier for an existing region, not when a new shared
1103  *      memory region is created.
1104  *      @shp contains the shared memory structure to be modified.
1105  *      @shmflg contains the operation control flags.
1106  *      Return 0 if permission is granted.
1107  * @shm_shmctl:
1108  *      Check permission when a shared memory control operation specified by
1109  *      @cmd is to be performed on the shared memory region @shp.
1110  *      The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1111  *      @shp contains shared memory structure to be modified.
1112  *      @cmd contains the operation to be performed.
1113  *      Return 0 if permission is granted.
1114  * @shm_shmat:
1115  *      Check permissions prior to allowing the shmat system call to attach the
1116  *      shared memory segment @shp to the data segment of the calling process.
1117  *      The attaching address is specified by @shmaddr.
1118  *      @shp contains the shared memory structure to be modified.
1119  *      @shmaddr contains the address to attach memory region to.
1120  *      @shmflg contains the operational flags.
1121  *      Return 0 if permission is granted.
1122  *
1123  * Security hooks for System V Semaphores
1124  *
1125  * @sem_alloc_security:
1126  *      Allocate and attach a security structure to the sma->sem_perm.security
1127  *      field.  The security field is initialized to NULL when the structure is
1128  *      first created.
1129  *      @sma contains the semaphore structure
1130  *      Return 0 if operation was successful and permission is granted.
1131  * @sem_free_security:
1132  *      deallocate security struct for this semaphore
1133  *      @sma contains the semaphore structure.
1134  * @sem_associate:
1135  *      Check permission when a semaphore is requested through the semget
1136  *      system call.  This hook is only called when returning the semaphore
1137  *      identifier for an existing semaphore, not when a new one must be
1138  *      created.
1139  *      @sma contains the semaphore structure.
1140  *      @semflg contains the operation control flags.
1141  *      Return 0 if permission is granted.
1142  * @sem_semctl:
1143  *      Check permission when a semaphore operation specified by @cmd is to be
1144  *      performed on the semaphore @sma.  The @sma may be NULL, e.g. for
1145  *      IPC_INFO or SEM_INFO.
1146  *      @sma contains the semaphore structure.  May be NULL.
1147  *      @cmd contains the operation to be performed.
1148  *      Return 0 if permission is granted.
1149  * @sem_semop
1150  *      Check permissions before performing operations on members of the
1151  *      semaphore set @sma.  If the @alter flag is nonzero, the semaphore set
1152  *      may be modified.
1153  *      @sma contains the semaphore structure.
1154  *      @sops contains the operations to perform.
1155  *      @nsops contains the number of operations to perform.
1156  *      @alter contains the flag indicating whether changes are to be made.
1157  *      Return 0 if permission is granted.
1158  *
1159  * @ptrace_may_access:
1160  *      Check permission before allowing the current process to trace the
1161  *      @child process.
1162  *      Security modules may also want to perform a process tracing check
1163  *      during an execve in the set_security or apply_creds hooks of
1164  *      tracing check during an execve in the bprm_set_creds hook of
1165  *      binprm_security_ops if the process is being traced and its security
1166  *      attributes would be changed by the execve.
1167  *      @child contains the task_struct structure for the target process.
1168  *      @mode contains the PTRACE_MODE flags indicating the form of access.
1169  *      Return 0 if permission is granted.
1170  * @ptrace_traceme:
1171  *      Check that the @parent process has sufficient permission to trace the
1172  *      current process before allowing the current process to present itself
1173  *      to the @parent process for tracing.
1174  *      The parent process will still have to undergo the ptrace_may_access
1175  *      checks before it is allowed to trace this one.
1176  *      @parent contains the task_struct structure for debugger process.
1177  *      Return 0 if permission is granted.
1178  * @capget:
1179  *      Get the @effective, @inheritable, and @permitted capability sets for
1180  *      the @target process.  The hook may also perform permission checking to
1181  *      determine if the current process is allowed to see the capability sets
1182  *      of the @target process.
1183  *      @target contains the task_struct structure for target process.
1184  *      @effective contains the effective capability set.
1185  *      @inheritable contains the inheritable capability set.
1186  *      @permitted contains the permitted capability set.
1187  *      Return 0 if the capability sets were successfully obtained.
1188  * @capset:
1189  *      Set the @effective, @inheritable, and @permitted capability sets for
1190  *      the current process.
1191  *      @new contains the new credentials structure for target process.
1192  *      @old contains the current credentials structure for target process.
1193  *      @effective contains the effective capability set.
1194  *      @inheritable contains the inheritable capability set.
1195  *      @permitted contains the permitted capability set.
1196  *      Return 0 and update @new if permission is granted.
1197  * @capable:
1198  *      Check whether the @tsk process has the @cap capability.
1199  *      @tsk contains the task_struct for the process.
1200  *      @cap contains the capability <include/linux/capability.h>.
1201  *      Return 0 if the capability is granted for @tsk.
1202  * @acct:
1203  *      Check permission before enabling or disabling process accounting.  If
1204  *      accounting is being enabled, then @file refers to the open file used to
1205  *      store accounting records.  If accounting is being disabled, then @file
1206  *      is NULL.
1207  *      @file contains the file structure for the accounting file (may be NULL).
1208  *      Return 0 if permission is granted.
1209  * @sysctl:
1210  *      Check permission before accessing the @table sysctl variable in the
1211  *      manner specified by @op.
1212  *      @table contains the ctl_table structure for the sysctl variable.
1213  *      @op contains the operation (001 = search, 002 = write, 004 = read).
1214  *      Return 0 if permission is granted.
1215  * @syslog:
1216  *      Check permission before accessing the kernel message ring or changing
1217  *      logging to the console.
1218  *      See the syslog(2) manual page for an explanation of the @type values.
1219  *      @type contains the type of action.
1220  *      Return 0 if permission is granted.
1221  * @settime:
1222  *      Check permission to change the system time.
1223  *      struct timespec and timezone are defined in include/linux/time.h
1224  *      @ts contains new time
1225  *      @tz contains new timezone
1226  *      Return 0 if permission is granted.
1227  * @vm_enough_memory:
1228  *      Check permissions for allocating a new virtual mapping.
1229  *      @mm contains the mm struct it is being added to.
1230  *      @pages contains the number of pages.
1231  *      Return 0 if permission is granted.
1232  *
1233  * @secid_to_secctx:
1234  *      Convert secid to security context.
1235  *      @secid contains the security ID.
1236  *      @secdata contains the pointer that stores the converted security context.
1237  * @secctx_to_secid:
1238  *      Convert security context to secid.
1239  *      @secid contains the pointer to the generated security ID.
1240  *      @secdata contains the security context.
1241  *
1242  * @release_secctx:
1243  *      Release the security context.
1244  *      @secdata contains the security context.
1245  *      @seclen contains the length of the security context.
1246  *
1247  * Security hooks for Audit
1248  *
1249  * @audit_rule_init:
1250  *      Allocate and initialize an LSM audit rule structure.
1251  *      @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
1252  *      @op contains the operator the rule uses.
1253  *      @rulestr contains the context where the rule will be applied to.
1254  *      @lsmrule contains a pointer to receive the result.
1255  *      Return 0 if @lsmrule has been successfully set,
1256  *      -EINVAL in case of an invalid rule.
1257  *
1258  * @audit_rule_known:
1259  *      Specifies whether given @rule contains any fields related to current LSM.
1260  *      @rule contains the audit rule of interest.
1261  *      Return 1 in case of relation found, 0 otherwise.
1262  *
1263  * @audit_rule_match:
1264  *      Determine if given @secid matches a rule previously approved
1265  *      by @audit_rule_known.
1266  *      @secid contains the security id in question.
1267  *      @field contains the field which relates to current LSM.
1268  *      @op contains the operator that will be used for matching.
1269  *      @rule points to the audit rule that will be checked against.
1270  *      @actx points to the audit context associated with the check.
1271  *      Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1272  *
1273  * @audit_rule_free:
1274  *      Deallocate the LSM audit rule structure previously allocated by
1275  *      audit_rule_init.
1276  *      @rule contains the allocated rule
1277  *
1278  * This is the main security structure.
1279  */
1280 struct security_operations {
1281         char name[SECURITY_NAME_MAX + 1];
1282
1283         int (*ptrace_may_access) (struct task_struct *child, unsigned int mode);
1284         int (*ptrace_traceme) (struct task_struct *parent);
1285         int (*capget) (struct task_struct *target,
1286                        kernel_cap_t *effective,
1287                        kernel_cap_t *inheritable, kernel_cap_t *permitted);
1288         int (*capset) (struct cred *new,
1289                        const struct cred *old,
1290                        const kernel_cap_t *effective,
1291                        const kernel_cap_t *inheritable,
1292                        const kernel_cap_t *permitted);
1293         int (*capable) (struct task_struct *tsk, int cap, int audit);
1294         int (*acct) (struct file *file);
1295         int (*sysctl) (struct ctl_table *table, int op);
1296         int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1297         int (*quota_on) (struct dentry *dentry);
1298         int (*syslog) (int type);
1299         int (*settime) (struct timespec *ts, struct timezone *tz);
1300         int (*vm_enough_memory) (struct mm_struct *mm, long pages);
1301
1302         int (*bprm_set_creds) (struct linux_binprm *bprm);
1303         int (*bprm_check_security) (struct linux_binprm *bprm);
1304         int (*bprm_secureexec) (struct linux_binprm *bprm);
1305         void (*bprm_committing_creds) (struct linux_binprm *bprm);
1306         void (*bprm_committed_creds) (struct linux_binprm *bprm);
1307
1308         int (*sb_alloc_security) (struct super_block *sb);
1309         void (*sb_free_security) (struct super_block *sb);
1310         int (*sb_copy_data) (char *orig, char *copy);
1311         int (*sb_kern_mount) (struct super_block *sb, void *data);
1312         int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
1313         int (*sb_statfs) (struct dentry *dentry);
1314         int (*sb_mount) (char *dev_name, struct path *path,
1315                          char *type, unsigned long flags, void *data);
1316         int (*sb_check_sb) (struct vfsmount *mnt, struct path *path);
1317         int (*sb_umount) (struct vfsmount *mnt, int flags);
1318         void (*sb_umount_close) (struct vfsmount *mnt);
1319         void (*sb_umount_busy) (struct vfsmount *mnt);
1320         void (*sb_post_remount) (struct vfsmount *mnt,
1321                                  unsigned long flags, void *data);
1322         void (*sb_post_addmount) (struct vfsmount *mnt,
1323                                   struct path *mountpoint);
1324         int (*sb_pivotroot) (struct path *old_path,
1325                              struct path *new_path);
1326         void (*sb_post_pivotroot) (struct path *old_path,
1327                                    struct path *new_path);
1328         int (*sb_set_mnt_opts) (struct super_block *sb,
1329                                 struct security_mnt_opts *opts);
1330         void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1331                                    struct super_block *newsb);
1332         int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
1333
1334         int (*inode_alloc_security) (struct inode *inode);
1335         void (*inode_free_security) (struct inode *inode);
1336         int (*inode_init_security) (struct inode *inode, struct inode *dir,
1337                                     char **name, void **value, size_t *len);
1338         int (*inode_create) (struct inode *dir,
1339                              struct dentry *dentry, int mode);
1340         int (*inode_link) (struct dentry *old_dentry,
1341                            struct inode *dir, struct dentry *new_dentry);
1342         int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1343         int (*inode_symlink) (struct inode *dir,
1344                               struct dentry *dentry, const char *old_name);
1345         int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
1346         int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1347         int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
1348                             int mode, dev_t dev);
1349         int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
1350                              struct inode *new_dir, struct dentry *new_dentry);
1351         int (*inode_readlink) (struct dentry *dentry);
1352         int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
1353         int (*inode_permission) (struct inode *inode, int mask);
1354         int (*inode_setattr)    (struct dentry *dentry, struct iattr *attr);
1355         int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
1356         void (*inode_delete) (struct inode *inode);
1357         int (*inode_setxattr) (struct dentry *dentry, const char *name,
1358                                const void *value, size_t size, int flags);
1359         void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
1360                                      const void *value, size_t size, int flags);
1361         int (*inode_getxattr) (struct dentry *dentry, const char *name);
1362         int (*inode_listxattr) (struct dentry *dentry);
1363         int (*inode_removexattr) (struct dentry *dentry, const char *name);
1364         int (*inode_need_killpriv) (struct dentry *dentry);
1365         int (*inode_killpriv) (struct dentry *dentry);
1366         int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
1367         int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
1368         int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
1369         void (*inode_getsecid) (const struct inode *inode, u32 *secid);
1370
1371         int (*file_permission) (struct file *file, int mask);
1372         int (*file_alloc_security) (struct file *file);
1373         void (*file_free_security) (struct file *file);
1374         int (*file_ioctl) (struct file *file, unsigned int cmd,
1375                            unsigned long arg);
1376         int (*file_mmap) (struct file *file,
1377                           unsigned long reqprot, unsigned long prot,
1378                           unsigned long flags, unsigned long addr,
1379                           unsigned long addr_only);
1380         int (*file_mprotect) (struct vm_area_struct *vma,
1381                               unsigned long reqprot,
1382                               unsigned long prot);
1383         int (*file_lock) (struct file *file, unsigned int cmd);
1384         int (*file_fcntl) (struct file *file, unsigned int cmd,
1385                            unsigned long arg);
1386         int (*file_set_fowner) (struct file *file);
1387         int (*file_send_sigiotask) (struct task_struct *tsk,
1388                                     struct fown_struct *fown, int sig);
1389         int (*file_receive) (struct file *file);
1390         int (*dentry_open) (struct file *file, const struct cred *cred);
1391
1392         int (*task_create) (unsigned long clone_flags);
1393         void (*cred_free) (struct cred *cred);
1394         int (*cred_prepare)(struct cred *new, const struct cred *old,
1395                             gfp_t gfp);
1396         void (*cred_commit)(struct cred *new, const struct cred *old);
1397         int (*kernel_act_as)(struct cred *new, u32 secid);
1398         int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
1399         int (*task_setuid) (uid_t id0, uid_t id1, uid_t id2, int flags);
1400         int (*task_fix_setuid) (struct cred *new, const struct cred *old,
1401                                 int flags);
1402         int (*task_setgid) (gid_t id0, gid_t id1, gid_t id2, int flags);
1403         int (*task_setpgid) (struct task_struct *p, pid_t pgid);
1404         int (*task_getpgid) (struct task_struct *p);
1405         int (*task_getsid) (struct task_struct *p);
1406         void (*task_getsecid) (struct task_struct *p, u32 *secid);
1407         int (*task_setgroups) (struct group_info *group_info);
1408         int (*task_setnice) (struct task_struct *p, int nice);
1409         int (*task_setioprio) (struct task_struct *p, int ioprio);
1410         int (*task_getioprio) (struct task_struct *p);
1411         int (*task_setrlimit) (unsigned int resource, struct rlimit *new_rlim);
1412         int (*task_setscheduler) (struct task_struct *p, int policy,
1413                                   struct sched_param *lp);
1414         int (*task_getscheduler) (struct task_struct *p);
1415         int (*task_movememory) (struct task_struct *p);
1416         int (*task_kill) (struct task_struct *p,
1417                           struct siginfo *info, int sig, u32 secid);
1418         int (*task_wait) (struct task_struct *p);
1419         int (*task_prctl) (int option, unsigned long arg2,
1420                            unsigned long arg3, unsigned long arg4,
1421                            unsigned long arg5);
1422         void (*task_to_inode) (struct task_struct *p, struct inode *inode);
1423
1424         int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
1425         void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
1426
1427         int (*msg_msg_alloc_security) (struct msg_msg *msg);
1428         void (*msg_msg_free_security) (struct msg_msg *msg);
1429
1430         int (*msg_queue_alloc_security) (struct msg_queue *msq);
1431         void (*msg_queue_free_security) (struct msg_queue *msq);
1432         int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
1433         int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
1434         int (*msg_queue_msgsnd) (struct msg_queue *msq,
1435                                  struct msg_msg *msg, int msqflg);
1436         int (*msg_queue_msgrcv) (struct msg_queue *msq,
1437                                  struct msg_msg *msg,
1438                                  struct task_struct *target,
1439                                  long type, int mode);
1440
1441         int (*shm_alloc_security) (struct shmid_kernel *shp);
1442         void (*shm_free_security) (struct shmid_kernel *shp);
1443         int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
1444         int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
1445         int (*shm_shmat) (struct shmid_kernel *shp,
1446                           char __user *shmaddr, int shmflg);
1447
1448         int (*sem_alloc_security) (struct sem_array *sma);
1449         void (*sem_free_security) (struct sem_array *sma);
1450         int (*sem_associate) (struct sem_array *sma, int semflg);
1451         int (*sem_semctl) (struct sem_array *sma, int cmd);
1452         int (*sem_semop) (struct sem_array *sma,
1453                           struct sembuf *sops, unsigned nsops, int alter);
1454
1455         int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
1456         int (*netlink_recv) (struct sk_buff *skb, int cap);
1457
1458         void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1459
1460         int (*getprocattr) (struct task_struct *p, char *name, char **value);
1461         int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
1462         int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
1463         int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
1464         void (*release_secctx) (char *secdata, u32 seclen);
1465
1466 #ifdef CONFIG_SECURITY_NETWORK
1467         int (*unix_stream_connect) (struct socket *sock,
1468                                     struct socket *other, struct sock *newsk);
1469         int (*unix_may_send) (struct socket *sock, struct socket *other);
1470
1471         int (*socket_create) (int family, int type, int protocol, int kern);
1472         int (*socket_post_create) (struct socket *sock, int family,
1473                                    int type, int protocol, int kern);
1474         int (*socket_bind) (struct socket *sock,
1475                             struct sockaddr *address, int addrlen);
1476         int (*socket_connect) (struct socket *sock,
1477                                struct sockaddr *address, int addrlen);
1478         int (*socket_listen) (struct socket *sock, int backlog);
1479         int (*socket_accept) (struct socket *sock, struct socket *newsock);
1480         void (*socket_post_accept) (struct socket *sock,
1481                                     struct socket *newsock);
1482         int (*socket_sendmsg) (struct socket *sock,
1483                                struct msghdr *msg, int size);
1484         int (*socket_recvmsg) (struct socket *sock,
1485                                struct msghdr *msg, int size, int flags);
1486         int (*socket_getsockname) (struct socket *sock);
1487         int (*socket_getpeername) (struct socket *sock);
1488         int (*socket_getsockopt) (struct socket *sock, int level, int optname);
1489         int (*socket_setsockopt) (struct socket *sock, int level, int optname);
1490         int (*socket_shutdown) (struct socket *sock, int how);
1491         int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
1492         int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
1493         int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
1494         int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
1495         void (*sk_free_security) (struct sock *sk);
1496         void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
1497         void (*sk_getsecid) (struct sock *sk, u32 *secid);
1498         void (*sock_graft) (struct sock *sk, struct socket *parent);
1499         int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
1500                                   struct request_sock *req);
1501         void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
1502         void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
1503         void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
1504 #endif  /* CONFIG_SECURITY_NETWORK */
1505
1506 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1507         int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
1508                         struct xfrm_user_sec_ctx *sec_ctx);
1509         int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
1510         void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
1511         int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
1512         int (*xfrm_state_alloc_security) (struct xfrm_state *x,
1513                 struct xfrm_user_sec_ctx *sec_ctx,
1514                 u32 secid);
1515         void (*xfrm_state_free_security) (struct xfrm_state *x);
1516         int (*xfrm_state_delete_security) (struct xfrm_state *x);
1517         int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1518         int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
1519                                           struct xfrm_policy *xp,
1520                                           struct flowi *fl);
1521         int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
1522 #endif  /* CONFIG_SECURITY_NETWORK_XFRM */
1523
1524         /* key management security hooks */
1525 #ifdef CONFIG_KEYS
1526         int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
1527         void (*key_free) (struct key *key);
1528         int (*key_permission) (key_ref_t key_ref,
1529                                const struct cred *cred,
1530                                key_perm_t perm);
1531         int (*key_getsecurity)(struct key *key, char **_buffer);
1532 #endif  /* CONFIG_KEYS */
1533
1534 #ifdef CONFIG_AUDIT
1535         int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
1536         int (*audit_rule_known) (struct audit_krule *krule);
1537         int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
1538                                  struct audit_context *actx);
1539         void (*audit_rule_free) (void *lsmrule);
1540 #endif /* CONFIG_AUDIT */
1541 };
1542
1543 /* prototypes */
1544 extern int security_init(void);
1545 extern int security_module_enable(struct security_operations *ops);
1546 extern int register_security(struct security_operations *ops);
1547
1548 /* Security operations */
1549 int security_ptrace_may_access(struct task_struct *child, unsigned int mode);
1550 int security_ptrace_traceme(struct task_struct *parent);
1551 int security_capget(struct task_struct *target,
1552                     kernel_cap_t *effective,
1553                     kernel_cap_t *inheritable,
1554                     kernel_cap_t *permitted);
1555 int security_capset(struct cred *new, const struct cred *old,
1556                     const kernel_cap_t *effective,
1557                     const kernel_cap_t *inheritable,
1558                     const kernel_cap_t *permitted);
1559 int security_capable(struct task_struct *tsk, int cap);
1560 int security_capable_noaudit(struct task_struct *tsk, int cap);
1561 int security_acct(struct file *file);
1562 int security_sysctl(struct ctl_table *table, int op);
1563 int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1564 int security_quota_on(struct dentry *dentry);
1565 int security_syslog(int type);
1566 int security_settime(struct timespec *ts, struct timezone *tz);
1567 int security_vm_enough_memory(long pages);
1568 int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
1569 int security_vm_enough_memory_kern(long pages);
1570 int security_bprm_set_creds(struct linux_binprm *bprm);
1571 int security_bprm_check(struct linux_binprm *bprm);
1572 void security_bprm_committing_creds(struct linux_binprm *bprm);
1573 void security_bprm_committed_creds(struct linux_binprm *bprm);
1574 int security_bprm_secureexec(struct linux_binprm *bprm);
1575 int security_sb_alloc(struct super_block *sb);
1576 void security_sb_free(struct super_block *sb);
1577 int security_sb_copy_data(char *orig, char *copy);
1578 int security_sb_kern_mount(struct super_block *sb, void *data);
1579 int security_sb_show_options(struct seq_file *m, struct super_block *sb);
1580 int security_sb_statfs(struct dentry *dentry);
1581 int security_sb_mount(char *dev_name, struct path *path,
1582                       char *type, unsigned long flags, void *data);
1583 int security_sb_check_sb(struct vfsmount *mnt, struct path *path);
1584 int security_sb_umount(struct vfsmount *mnt, int flags);
1585 void security_sb_umount_close(struct vfsmount *mnt);
1586 void security_sb_umount_busy(struct vfsmount *mnt);
1587 void security_sb_post_remount(struct vfsmount *mnt, unsigned long flags, void *data);
1588 void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint);
1589 int security_sb_pivotroot(struct path *old_path, struct path *new_path);
1590 void security_sb_post_pivotroot(struct path *old_path, struct path *new_path);
1591 int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
1592 void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1593                                 struct super_block *newsb);
1594 int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
1595
1596 int security_inode_alloc(struct inode *inode);
1597 void security_inode_free(struct inode *inode);
1598 int security_inode_init_security(struct inode *inode, struct inode *dir,
1599                                   char **name, void **value, size_t *len);
1600 int security_inode_create(struct inode *dir, struct dentry *dentry, int mode);
1601 int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1602                          struct dentry *new_dentry);
1603 int security_inode_unlink(struct inode *dir, struct dentry *dentry);
1604 int security_inode_symlink(struct inode *dir, struct dentry *dentry,
1605                            const char *old_name);
1606 int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode);
1607 int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
1608 int security_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
1609 int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
1610                           struct inode *new_dir, struct dentry *new_dentry);
1611 int security_inode_readlink(struct dentry *dentry);
1612 int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
1613 int security_inode_permission(struct inode *inode, int mask);
1614 int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1615 int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
1616 void security_inode_delete(struct inode *inode);
1617 int security_inode_setxattr(struct dentry *dentry, const char *name,
1618                             const void *value, size_t size, int flags);
1619 void security_inode_post_setxattr(struct dentry *dentry, const char *name,
1620                                   const void *value, size_t size, int flags);
1621 int security_inode_getxattr(struct dentry *dentry, const char *name);
1622 int security_inode_listxattr(struct dentry *dentry);
1623 int security_inode_removexattr(struct dentry *dentry, const char *name);
1624 int security_inode_need_killpriv(struct dentry *dentry);
1625 int security_inode_killpriv(struct dentry *dentry);
1626 int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
1627 int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1628 int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
1629 void security_inode_getsecid(const struct inode *inode, u32 *secid);
1630 int security_file_permission(struct file *file, int mask);
1631 int security_file_alloc(struct file *file);
1632 void security_file_free(struct file *file);
1633 int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1634 int security_file_mmap(struct file *file, unsigned long reqprot,
1635                         unsigned long prot, unsigned long flags,
1636                         unsigned long addr, unsigned long addr_only);
1637 int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
1638                            unsigned long prot);
1639 int security_file_lock(struct file *file, unsigned int cmd);
1640 int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
1641 int security_file_set_fowner(struct file *file);
1642 int security_file_send_sigiotask(struct task_struct *tsk,
1643                                  struct fown_struct *fown, int sig);
1644 int security_file_receive(struct file *file);
1645 int security_dentry_open(struct file *file, const struct cred *cred);
1646 int security_task_create(unsigned long clone_flags);
1647 void security_cred_free(struct cred *cred);
1648 int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
1649 void security_commit_creds(struct cred *new, const struct cred *old);
1650 int security_kernel_act_as(struct cred *new, u32 secid);
1651 int security_kernel_create_files_as(struct cred *new, struct inode *inode);
1652 int security_task_setuid(uid_t id0, uid_t id1, uid_t id2, int flags);
1653 int security_task_fix_setuid(struct cred *new, const struct cred *old,
1654                              int flags);
1655 int security_task_setgid(gid_t id0, gid_t id1, gid_t id2, int flags);
1656 int security_task_setpgid(struct task_struct *p, pid_t pgid);
1657 int security_task_getpgid(struct task_struct *p);
1658 int security_task_getsid(struct task_struct *p);
1659 void security_task_getsecid(struct task_struct *p, u32 *secid);
1660 int security_task_setgroups(struct group_info *group_info);
1661 int security_task_setnice(struct task_struct *p, int nice);
1662 int security_task_setioprio(struct task_struct *p, int ioprio);
1663 int security_task_getioprio(struct task_struct *p);
1664 int security_task_setrlimit(unsigned int resource, struct rlimit *new_rlim);
1665 int security_task_setscheduler(struct task_struct *p,
1666                                 int policy, struct sched_param *lp);
1667 int security_task_getscheduler(struct task_struct *p);
1668 int security_task_movememory(struct task_struct *p);
1669 int security_task_kill(struct task_struct *p, struct siginfo *info,
1670                         int sig, u32 secid);
1671 int security_task_wait(struct task_struct *p);
1672 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
1673                         unsigned long arg4, unsigned long arg5);
1674 void security_task_to_inode(struct task_struct *p, struct inode *inode);
1675 int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
1676 void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
1677 int security_msg_msg_alloc(struct msg_msg *msg);
1678 void security_msg_msg_free(struct msg_msg *msg);
1679 int security_msg_queue_alloc(struct msg_queue *msq);
1680 void security_msg_queue_free(struct msg_queue *msq);
1681 int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
1682 int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
1683 int security_msg_queue_msgsnd(struct msg_queue *msq,
1684                               struct msg_msg *msg, int msqflg);
1685 int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
1686                               struct task_struct *target, long type, int mode);
1687 int security_shm_alloc(struct shmid_kernel *shp);
1688 void security_shm_free(struct shmid_kernel *shp);
1689 int security_shm_associate(struct shmid_kernel *shp, int shmflg);
1690 int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
1691 int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
1692 int security_sem_alloc(struct sem_array *sma);
1693 void security_sem_free(struct sem_array *sma);
1694 int security_sem_associate(struct sem_array *sma, int semflg);
1695 int security_sem_semctl(struct sem_array *sma, int cmd);
1696 int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
1697                         unsigned nsops, int alter);
1698 void security_d_instantiate(struct dentry *dentry, struct inode *inode);
1699 int security_getprocattr(struct task_struct *p, char *name, char **value);
1700 int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
1701 int security_netlink_send(struct sock *sk, struct sk_buff *skb);
1702 int security_netlink_recv(struct sk_buff *skb, int cap);
1703 int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
1704 int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
1705 void security_release_secctx(char *secdata, u32 seclen);
1706
1707 #else /* CONFIG_SECURITY */
1708 struct security_mnt_opts {
1709 };
1710
1711 static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
1712 {
1713 }
1714
1715 static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
1716 {
1717 }
1718
1719 /*
1720  * This is the default capabilities functionality.  Most of these functions
1721  * are just stubbed out, but a few must call the proper capable code.
1722  */
1723
1724 static inline int security_init(void)
1725 {
1726         return 0;
1727 }
1728
1729 static inline int security_ptrace_may_access(struct task_struct *child,
1730                                              unsigned int mode)
1731 {
1732         return cap_ptrace_may_access(child, mode);
1733 }
1734
1735 static inline int security_ptrace_traceme(struct task_struct *parent)
1736 {
1737         return cap_ptrace_traceme(parent);
1738 }
1739
1740 static inline int security_capget(struct task_struct *target,
1741                                    kernel_cap_t *effective,
1742                                    kernel_cap_t *inheritable,
1743                                    kernel_cap_t *permitted)
1744 {
1745         return cap_capget(target, effective, inheritable, permitted);
1746 }
1747
1748 static inline int security_capset(struct cred *new,
1749                                    const struct cred *old,
1750                                    const kernel_cap_t *effective,
1751                                    const kernel_cap_t *inheritable,
1752                                    const kernel_cap_t *permitted)
1753 {
1754         return cap_capset(new, old, effective, inheritable, permitted);
1755 }
1756
1757 static inline int security_capable(struct task_struct *tsk, int cap)
1758 {
1759         return cap_capable(tsk, cap, SECURITY_CAP_AUDIT);
1760 }
1761
1762 static inline int security_capable_noaudit(struct task_struct *tsk, int cap)
1763 {
1764         return cap_capable(tsk, cap, SECURITY_CAP_NOAUDIT);
1765 }
1766
1767 static inline int security_acct(struct file *file)
1768 {
1769         return 0;
1770 }
1771
1772 static inline int security_sysctl(struct ctl_table *table, int op)
1773 {
1774         return 0;
1775 }
1776
1777 static inline int security_quotactl(int cmds, int type, int id,
1778                                      struct super_block *sb)
1779 {
1780         return 0;
1781 }
1782
1783 static inline int security_quota_on(struct dentry *dentry)
1784 {
1785         return 0;
1786 }
1787
1788 static inline int security_syslog(int type)
1789 {
1790         return cap_syslog(type);
1791 }
1792
1793 static inline int security_settime(struct timespec *ts, struct timezone *tz)
1794 {
1795         return cap_settime(ts, tz);
1796 }
1797
1798 static inline int security_vm_enough_memory(long pages)
1799 {
1800         WARN_ON(current->mm == NULL);
1801         return cap_vm_enough_memory(current->mm, pages);
1802 }
1803
1804 static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1805 {
1806         WARN_ON(mm == NULL);
1807         return cap_vm_enough_memory(mm, pages);
1808 }
1809
1810 static inline int security_vm_enough_memory_kern(long pages)
1811 {
1812         /* If current->mm is a kernel thread then we will pass NULL,
1813            for this specific case that is fine */
1814         return cap_vm_enough_memory(current->mm, pages);
1815 }
1816
1817 static inline int security_bprm_set_creds(struct linux_binprm *bprm)
1818 {
1819         return cap_bprm_set_creds(bprm);
1820 }
1821
1822 static inline int security_bprm_check(struct linux_binprm *bprm)
1823 {
1824         return 0;
1825 }
1826
1827 static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1828 {
1829 }
1830
1831 static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1832 {
1833 }
1834
1835 static inline int security_bprm_secureexec(struct linux_binprm *bprm)
1836 {
1837         return cap_bprm_secureexec(bprm);
1838 }
1839
1840 static inline int security_sb_alloc(struct super_block *sb)
1841 {
1842         return 0;
1843 }
1844
1845 static inline void security_sb_free(struct super_block *sb)
1846 { }
1847
1848 static inline int security_sb_copy_data(char *orig, char *copy)
1849 {
1850         return 0;
1851 }
1852
1853 static inline int security_sb_kern_mount(struct super_block *sb, void *data)
1854 {
1855         return 0;
1856 }
1857
1858 static inline int security_sb_show_options(struct seq_file *m,
1859                                            struct super_block *sb)
1860 {
1861         return 0;
1862 }
1863
1864 static inline int security_sb_statfs(struct dentry *dentry)
1865 {
1866         return 0;
1867 }
1868
1869 static inline int security_sb_mount(char *dev_name, struct path *path,
1870                                     char *type, unsigned long flags,
1871                                     void *data)
1872 {
1873         return 0;
1874 }
1875
1876 static inline int security_sb_check_sb(struct vfsmount *mnt,
1877                                        struct path *path)
1878 {
1879         return 0;
1880 }
1881
1882 static inline int security_sb_umount(struct vfsmount *mnt, int flags)
1883 {
1884         return 0;
1885 }
1886
1887 static inline void security_sb_umount_close(struct vfsmount *mnt)
1888 { }
1889
1890 static inline void security_sb_umount_busy(struct vfsmount *mnt)
1891 { }
1892
1893 static inline void security_sb_post_remount(struct vfsmount *mnt,
1894                                              unsigned long flags, void *data)
1895 { }
1896
1897 static inline void security_sb_post_addmount(struct vfsmount *mnt,
1898                                              struct path *mountpoint)
1899 { }
1900
1901 static inline int security_sb_pivotroot(struct path *old_path,
1902                                         struct path *new_path)
1903 {
1904         return 0;
1905 }
1906
1907 static inline void security_sb_post_pivotroot(struct path *old_path,
1908                                               struct path *new_path)
1909 { }
1910
1911 static inline int security_sb_set_mnt_opts(struct super_block *sb,
1912                                            struct security_mnt_opts *opts)
1913 {
1914         return 0;
1915 }
1916
1917 static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1918                                               struct super_block *newsb)
1919 { }
1920
1921 static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
1922 {
1923         return 0;
1924 }
1925
1926 static inline int security_inode_alloc(struct inode *inode)
1927 {
1928         return 0;
1929 }
1930
1931 static inline void security_inode_free(struct inode *inode)
1932 { }
1933
1934 static inline int security_inode_init_security(struct inode *inode,
1935                                                 struct inode *dir,
1936                                                 char **name,
1937                                                 void **value,
1938                                                 size_t *len)
1939 {
1940         return -EOPNOTSUPP;
1941 }
1942
1943 static inline int security_inode_create(struct inode *dir,
1944                                          struct dentry *dentry,
1945                                          int mode)
1946 {
1947         return 0;
1948 }
1949
1950 static inline int security_inode_link(struct dentry *old_dentry,
1951                                        struct inode *dir,
1952                                        struct dentry *new_dentry)
1953 {
1954         return 0;
1955 }
1956
1957 static inline int security_inode_unlink(struct inode *dir,
1958                                          struct dentry *dentry)
1959 {
1960         return 0;
1961 }
1962
1963 static inline int security_inode_symlink(struct inode *dir,
1964                                           struct dentry *dentry,
1965                                           const char *old_name)
1966 {
1967         return 0;
1968 }
1969
1970 static inline int security_inode_mkdir(struct inode *dir,
1971                                         struct dentry *dentry,
1972                                         int mode)
1973 {
1974         return 0;
1975 }
1976
1977 static inline int security_inode_rmdir(struct inode *dir,
1978                                         struct dentry *dentry)
1979 {
1980         return 0;
1981 }
1982
1983 static inline int security_inode_mknod(struct inode *dir,
1984                                         struct dentry *dentry,
1985                                         int mode, dev_t dev)
1986 {
1987         return 0;
1988 }
1989
1990 static inline int security_inode_rename(struct inode *old_dir,
1991                                          struct dentry *old_dentry,
1992                                          struct inode *new_dir,
1993                                          struct dentry *new_dentry)
1994 {
1995         return 0;
1996 }
1997
1998 static inline int security_inode_readlink(struct dentry *dentry)
1999 {
2000         return 0;
2001 }
2002
2003 static inline int security_inode_follow_link(struct dentry *dentry,
2004                                               struct nameidata *nd)
2005 {
2006         return 0;
2007 }
2008
2009 static inline int security_inode_permission(struct inode *inode, int mask)
2010 {
2011         return 0;
2012 }
2013
2014 static inline int security_inode_setattr(struct dentry *dentry,
2015                                           struct iattr *attr)
2016 {
2017         return 0;
2018 }
2019
2020 static inline int security_inode_getattr(struct vfsmount *mnt,
2021                                           struct dentry *dentry)
2022 {
2023         return 0;
2024 }
2025
2026 static inline void security_inode_delete(struct inode *inode)
2027 { }
2028
2029 static inline int security_inode_setxattr(struct dentry *dentry,
2030                 const char *name, const void *value, size_t size, int flags)
2031 {
2032         return cap_inode_setxattr(dentry, name, value, size, flags);
2033 }
2034
2035 static inline void security_inode_post_setxattr(struct dentry *dentry,
2036                 const char *name, const void *value, size_t size, int flags)
2037 { }
2038
2039 static inline int security_inode_getxattr(struct dentry *dentry,
2040                         const char *name)
2041 {
2042         return 0;
2043 }
2044
2045 static inline int security_inode_listxattr(struct dentry *dentry)
2046 {
2047         return 0;
2048 }
2049
2050 static inline int security_inode_removexattr(struct dentry *dentry,
2051                         const char *name)
2052 {
2053         return cap_inode_removexattr(dentry, name);
2054 }
2055
2056 static inline int security_inode_need_killpriv(struct dentry *dentry)
2057 {
2058         return cap_inode_need_killpriv(dentry);
2059 }
2060
2061 static inline int security_inode_killpriv(struct dentry *dentry)
2062 {
2063         return cap_inode_killpriv(dentry);
2064 }
2065
2066 static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
2067 {
2068         return -EOPNOTSUPP;
2069 }
2070
2071 static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2072 {
2073         return -EOPNOTSUPP;
2074 }
2075
2076 static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2077 {
2078         return 0;
2079 }
2080
2081 static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2082 {
2083         *secid = 0;
2084 }
2085
2086 static inline int security_file_permission(struct file *file, int mask)
2087 {
2088         return 0;
2089 }
2090
2091 static inline int security_file_alloc(struct file *file)
2092 {
2093         return 0;
2094 }
2095
2096 static inline void security_file_free(struct file *file)
2097 { }
2098
2099 static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2100                                       unsigned long arg)
2101 {
2102         return 0;
2103 }
2104
2105 static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2106                                      unsigned long prot,
2107                                      unsigned long flags,
2108                                      unsigned long addr,
2109                                      unsigned long addr_only)
2110 {
2111         return 0;
2112 }
2113
2114 static inline int security_file_mprotect(struct vm_area_struct *vma,
2115                                          unsigned long reqprot,
2116                                          unsigned long prot)
2117 {
2118         return 0;
2119 }
2120
2121 static inline int security_file_lock(struct file *file, unsigned int cmd)
2122 {
2123         return 0;
2124 }
2125
2126 static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2127                                       unsigned long arg)
2128 {
2129         return 0;
2130 }
2131
2132 static inline int security_file_set_fowner(struct file *file)
2133 {
2134         return 0;
2135 }
2136
2137 static inline int security_file_send_sigiotask(struct task_struct *tsk,
2138                                                struct fown_struct *fown,
2139                                                int sig)
2140 {
2141         return 0;
2142 }
2143
2144 static inline int security_file_receive(struct file *file)
2145 {
2146         return 0;
2147 }
2148
2149 static inline int security_dentry_open(struct file *file,
2150                                        const struct cred *cred)
2151 {
2152         return 0;
2153 }
2154
2155 static inline int security_task_create(unsigned long clone_flags)
2156 {
2157         return 0;
2158 }
2159
2160 static inline void security_cred_free(struct cred *cred)
2161 { }
2162
2163 static inline int security_prepare_creds(struct cred *new,
2164                                          const struct cred *old,
2165                                          gfp_t gfp)
2166 {
2167         return 0;
2168 }
2169
2170 static inline void security_commit_creds(struct cred *new,
2171                                          const struct cred *old)
2172 {
2173 }
2174
2175 static inline int security_kernel_act_as(struct cred *cred, u32 secid)
2176 {
2177         return 0;
2178 }
2179
2180 static inline int security_kernel_create_files_as(struct cred *cred,
2181                                                   struct inode *inode)
2182 {
2183         return 0;
2184 }
2185
2186 static inline int security_task_setuid(uid_t id0, uid_t id1, uid_t id2,
2187                                        int flags)
2188 {
2189         return 0;
2190 }
2191
2192 static inline int security_task_fix_setuid(struct cred *new,
2193                                            const struct cred *old,
2194                                            int flags)
2195 {
2196         return cap_task_fix_setuid(new, old, flags);
2197 }
2198
2199 static inline int security_task_setgid(gid_t id0, gid_t id1, gid_t id2,
2200                                        int flags)
2201 {
2202         return 0;
2203 }
2204
2205 static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
2206 {
2207         return 0;
2208 }
2209
2210 static inline int security_task_getpgid(struct task_struct *p)
2211 {
2212         return 0;
2213 }
2214
2215 static inline int security_task_getsid(struct task_struct *p)
2216 {
2217         return 0;
2218 }
2219
2220 static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
2221 {
2222         *secid = 0;
2223 }
2224
2225 static inline int security_task_setgroups(struct group_info *group_info)
2226 {
2227         return 0;
2228 }
2229
2230 static inline int security_task_setnice(struct task_struct *p, int nice)
2231 {
2232         return cap_task_setnice(p, nice);
2233 }
2234
2235 static inline int security_task_setioprio(struct task_struct *p, int ioprio)
2236 {
2237         return cap_task_setioprio(p, ioprio);
2238 }
2239
2240 static inline int security_task_getioprio(struct task_struct *p)
2241 {
2242         return 0;
2243 }
2244
2245 static inline int security_task_setrlimit(unsigned int resource,
2246                                           struct rlimit *new_rlim)
2247 {
2248         return 0;
2249 }
2250
2251 static inline int security_task_setscheduler(struct task_struct *p,
2252                                              int policy,
2253                                              struct sched_param *lp)
2254 {
2255         return cap_task_setscheduler(p, policy, lp);
2256 }
2257
2258 static inline int security_task_getscheduler(struct task_struct *p)
2259 {
2260         return 0;
2261 }
2262
2263 static inline int security_task_movememory(struct task_struct *p)
2264 {
2265         return 0;
2266 }
2267
2268 static inline int security_task_kill(struct task_struct *p,
2269                                      struct siginfo *info, int sig,
2270                                      u32 secid)
2271 {
2272         return 0;
2273 }
2274
2275 static inline int security_task_wait(struct task_struct *p)
2276 {
2277         return 0;
2278 }
2279
2280 static inline int security_task_prctl(int option, unsigned long arg2,
2281                                       unsigned long arg3,
2282                                       unsigned long arg4,
2283                                       unsigned long arg5)
2284 {
2285         return cap_task_prctl(option, arg2, arg3, arg3, arg5);
2286 }
2287
2288 static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2289 { }
2290
2291 static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2292                                           short flag)
2293 {
2294         return 0;
2295 }
2296
2297 static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2298 {
2299         *secid = 0;
2300 }
2301
2302 static inline int security_msg_msg_alloc(struct msg_msg *msg)
2303 {
2304         return 0;
2305 }
2306
2307 static inline void security_msg_msg_free(struct msg_msg *msg)
2308 { }
2309
2310 static inline int security_msg_queue_alloc(struct msg_queue *msq)
2311 {
2312         return 0;
2313 }
2314
2315 static inline void security_msg_queue_free(struct msg_queue *msq)
2316 { }
2317
2318 static inline int security_msg_queue_associate(struct msg_queue *msq,
2319                                                int msqflg)
2320 {
2321         return 0;
2322 }
2323
2324 static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2325 {
2326         return 0;
2327 }
2328
2329 static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2330                                             struct msg_msg *msg, int msqflg)
2331 {
2332         return 0;
2333 }
2334
2335 static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2336                                             struct msg_msg *msg,
2337                                             struct task_struct *target,
2338                                             long type, int mode)
2339 {
2340         return 0;
2341 }
2342
2343 static inline int security_shm_alloc(struct shmid_kernel *shp)
2344 {
2345         return 0;
2346 }
2347
2348 static inline void security_shm_free(struct shmid_kernel *shp)
2349 { }
2350
2351 static inline int security_shm_associate(struct shmid_kernel *shp,
2352                                          int shmflg)
2353 {
2354         return 0;
2355 }
2356
2357 static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
2358 {
2359         return 0;
2360 }
2361
2362 static inline int security_shm_shmat(struct shmid_kernel *shp,
2363                                      char __user *shmaddr, int shmflg)
2364 {
2365         return 0;
2366 }
2367
2368 static inline int security_sem_alloc(struct sem_array *sma)
2369 {
2370         return 0;
2371 }
2372
2373 static inline void security_sem_free(struct sem_array *sma)
2374 { }
2375
2376 static inline int security_sem_associate(struct sem_array *sma, int semflg)
2377 {
2378         return 0;
2379 }
2380
2381 static inline int security_sem_semctl(struct sem_array *sma, int cmd)
2382 {
2383         return 0;
2384 }
2385
2386 static inline int security_sem_semop(struct sem_array *sma,
2387                                      struct sembuf *sops, unsigned nsops,
2388                                      int alter)
2389 {
2390         return 0;
2391 }
2392
2393 static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
2394 { }
2395
2396 static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
2397 {
2398         return -EINVAL;
2399 }
2400
2401 static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2402 {
2403         return -EINVAL;
2404 }
2405
2406 static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
2407 {
2408         return cap_netlink_send(sk, skb);
2409 }
2410
2411 static inline int security_netlink_recv(struct sk_buff *skb, int cap)
2412 {
2413         return cap_netlink_recv(skb, cap);
2414 }
2415
2416 static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2417 {
2418         return -EOPNOTSUPP;
2419 }
2420
2421 static inline int security_secctx_to_secid(const char *secdata,
2422                                            u32 seclen,
2423                                            u32 *secid)
2424 {
2425         return -EOPNOTSUPP;
2426 }
2427
2428 static inline void security_release_secctx(char *secdata, u32 seclen)
2429 {
2430 }
2431 #endif  /* CONFIG_SECURITY */
2432
2433 #ifdef CONFIG_SECURITY_NETWORK
2434
2435 int security_unix_stream_connect(struct socket *sock, struct socket *other,
2436                                  struct sock *newsk);
2437 int security_unix_may_send(struct socket *sock,  struct socket *other);
2438 int security_socket_create(int family, int type, int protocol, int kern);
2439 int security_socket_post_create(struct socket *sock, int family,
2440                                 int type, int protocol, int kern);
2441 int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2442 int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2443 int security_socket_listen(struct socket *sock, int backlog);
2444 int security_socket_accept(struct socket *sock, struct socket *newsock);
2445 void security_socket_post_accept(struct socket *sock, struct socket *newsock);
2446 int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2447 int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2448                             int size, int flags);
2449 int security_socket_getsockname(struct socket *sock);
2450 int security_socket_getpeername(struct socket *sock);
2451 int security_socket_getsockopt(struct socket *sock, int level, int optname);
2452 int security_socket_setsockopt(struct socket *sock, int level, int optname);
2453 int security_socket_shutdown(struct socket *sock, int how);
2454 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2455 int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2456                                       int __user *optlen, unsigned len);
2457 int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2458 int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2459 void security_sk_free(struct sock *sk);
2460 void security_sk_clone(const struct sock *sk, struct sock *newsk);
2461 void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2462 void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2463 void security_sock_graft(struct sock*sk, struct socket *parent);
2464 int security_inet_conn_request(struct sock *sk,
2465                         struct sk_buff *skb, struct request_sock *req);
2466 void security_inet_csk_clone(struct sock *newsk,
2467                         const struct request_sock *req);
2468 void security_inet_conn_established(struct sock *sk,
2469                         struct sk_buff *skb);
2470
2471 #else   /* CONFIG_SECURITY_NETWORK */
2472 static inline int security_unix_stream_connect(struct socket *sock,
2473                                                struct socket *other,
2474                                                struct sock *newsk)
2475 {
2476         return 0;
2477 }
2478
2479 static inline int security_unix_may_send(struct socket *sock,
2480                                          struct socket *other)
2481 {
2482         return 0;
2483 }
2484
2485 static inline int security_socket_create(int family, int type,
2486                                          int protocol, int kern)
2487 {
2488         return 0;
2489 }
2490
2491 static inline int security_socket_post_create(struct socket *sock,
2492                                               int family,
2493                                               int type,
2494                                               int protocol, int kern)
2495 {
2496         return 0;
2497 }
2498
2499 static inline int security_socket_bind(struct socket *sock,
2500                                        struct sockaddr *address,
2501                                        int addrlen)
2502 {
2503         return 0;
2504 }
2505
2506 static inline int security_socket_connect(struct socket *sock,
2507                                           struct sockaddr *address,
2508                                           int addrlen)
2509 {
2510         return 0;
2511 }
2512
2513 static inline int security_socket_listen(struct socket *sock, int backlog)
2514 {
2515         return 0;
2516 }
2517
2518 static inline int security_socket_accept(struct socket *sock,
2519                                          struct socket *newsock)
2520 {
2521         return 0;
2522 }
2523
2524 static inline void security_socket_post_accept(struct socket *sock,
2525                                                struct socket *newsock)
2526 {
2527 }
2528
2529 static inline int security_socket_sendmsg(struct socket *sock,
2530                                           struct msghdr *msg, int size)
2531 {
2532         return 0;
2533 }
2534
2535 static inline int security_socket_recvmsg(struct socket *sock,
2536                                           struct msghdr *msg, int size,
2537                                           int flags)
2538 {
2539         return 0;
2540 }
2541
2542 static inline int security_socket_getsockname(struct socket *sock)
2543 {
2544         return 0;
2545 }
2546
2547 static inline int security_socket_getpeername(struct socket *sock)
2548 {
2549         return 0;
2550 }
2551
2552 static inline int security_socket_getsockopt(struct socket *sock,
2553                                              int level, int optname)
2554 {
2555         return 0;
2556 }
2557
2558 static inline int security_socket_setsockopt(struct socket *sock,
2559                                              int level, int optname)
2560 {
2561         return 0;
2562 }
2563
2564 static inline int security_socket_shutdown(struct socket *sock, int how)
2565 {
2566         return 0;
2567 }
2568 static inline int security_sock_rcv_skb(struct sock *sk,
2569                                         struct sk_buff *skb)
2570 {
2571         return 0;
2572 }
2573
2574 static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2575                                                     int __user *optlen, unsigned len)
2576 {
2577         return -ENOPROTOOPT;
2578 }
2579
2580 static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
2581 {
2582         return -ENOPROTOOPT;
2583 }
2584
2585 static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
2586 {
2587         return 0;
2588 }
2589
2590 static inline void security_sk_free(struct sock *sk)
2591 {
2592 }
2593
2594 static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
2595 {
2596 }
2597
2598 static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
2599 {
2600 }
2601
2602 static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2603 {
2604 }
2605
2606 static inline void security_sock_graft(struct sock *sk, struct socket *parent)
2607 {
2608 }
2609
2610 static inline int security_inet_conn_request(struct sock *sk,
2611                         struct sk_buff *skb, struct request_sock *req)
2612 {
2613         return 0;
2614 }
2615
2616 static inline void security_inet_csk_clone(struct sock *newsk,
2617                         const struct request_sock *req)
2618 {
2619 }
2620
2621 static inline void security_inet_conn_established(struct sock *sk,
2622                         struct sk_buff *skb)
2623 {
2624 }
2625 #endif  /* CONFIG_SECURITY_NETWORK */
2626
2627 #ifdef CONFIG_SECURITY_NETWORK_XFRM
2628
2629 int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2630 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2631 void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2632 int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
2633 int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2634 int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2635                                       struct xfrm_sec_ctx *polsec, u32 secid);
2636 int security_xfrm_state_delete(struct xfrm_state *x);
2637 void security_xfrm_state_free(struct xfrm_state *x);
2638 int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
2639 int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2640                                        struct xfrm_policy *xp, struct flowi *fl);
2641 int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2642 void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
2643
2644 #else   /* CONFIG_SECURITY_NETWORK_XFRM */
2645
2646 static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
2647 {
2648         return 0;
2649 }
2650
2651 static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
2652 {
2653         return 0;
2654 }
2655
2656 static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
2657 {
2658 }
2659
2660 static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
2661 {
2662         return 0;
2663 }
2664
2665 static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2666                                         struct xfrm_user_sec_ctx *sec_ctx)
2667 {
2668         return 0;
2669 }
2670
2671 static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2672                                         struct xfrm_sec_ctx *polsec, u32 secid)
2673 {
2674         return 0;
2675 }
2676
2677 static inline void security_xfrm_state_free(struct xfrm_state *x)
2678 {
2679 }
2680
2681 static inline int security_xfrm_state_delete(struct xfrm_state *x)
2682 {
2683         return 0;
2684 }
2685
2686 static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
2687 {
2688         return 0;
2689 }
2690
2691 static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2692                         struct xfrm_policy *xp, struct flowi *fl)
2693 {
2694         return 1;
2695 }
2696
2697 static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
2698 {
2699         return 0;
2700 }
2701
2702 static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2703 {
2704 }
2705
2706 #endif  /* CONFIG_SECURITY_NETWORK_XFRM */
2707
2708 #ifdef CONFIG_KEYS
2709 #ifdef CONFIG_SECURITY
2710
2711 int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
2712 void security_key_free(struct key *key);
2713 int security_key_permission(key_ref_t key_ref,
2714                             const struct cred *cred, key_perm_t perm);
2715 int security_key_getsecurity(struct key *key, char **_buffer);
2716
2717 #else
2718
2719 static inline int security_key_alloc(struct key *key,
2720                                      const struct cred *cred,
2721                                      unsigned long flags)
2722 {
2723         return 0;
2724 }
2725
2726 static inline void security_key_free(struct key *key)
2727 {
2728 }
2729
2730 static inline int security_key_permission(key_ref_t key_ref,
2731                                           const struct cred *cred,
2732                                           key_perm_t perm)
2733 {
2734         return 0;
2735 }
2736
2737 static inline int security_key_getsecurity(struct key *key, char **_buffer)
2738 {
2739         *_buffer = NULL;
2740         return 0;
2741 }
2742
2743 #endif
2744 #endif /* CONFIG_KEYS */
2745
2746 #ifdef CONFIG_AUDIT
2747 #ifdef CONFIG_SECURITY
2748 int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2749 int security_audit_rule_known(struct audit_krule *krule);
2750 int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2751                               struct audit_context *actx);
2752 void security_audit_rule_free(void *lsmrule);
2753
2754 #else
2755
2756 static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2757                                            void **lsmrule)
2758 {
2759         return 0;
2760 }
2761
2762 static inline int security_audit_rule_known(struct audit_krule *krule)
2763 {
2764         return 0;
2765 }
2766
2767 static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2768                                    void *lsmrule, struct audit_context *actx)
2769 {
2770         return 0;
2771 }
2772
2773 static inline void security_audit_rule_free(void *lsmrule)
2774 { }
2775
2776 #endif /* CONFIG_SECURITY */
2777 #endif /* CONFIG_AUDIT */
2778
2779 #ifdef CONFIG_SECURITYFS
2780
2781 extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
2782                                              struct dentry *parent, void *data,
2783                                              const struct file_operations *fops);
2784 extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
2785 extern void securityfs_remove(struct dentry *dentry);
2786
2787 #else /* CONFIG_SECURITYFS */
2788
2789 static inline struct dentry *securityfs_create_dir(const char *name,
2790                                                    struct dentry *parent)
2791 {
2792         return ERR_PTR(-ENODEV);
2793 }
2794
2795 static inline struct dentry *securityfs_create_file(const char *name,
2796                                                     mode_t mode,
2797                                                     struct dentry *parent,
2798                                                     void *data,
2799                                                     const struct file_operations *fops)
2800 {
2801         return ERR_PTR(-ENODEV);
2802 }
2803
2804 static inline void securityfs_remove(struct dentry *dentry)
2805 {}
2806
2807 #endif
2808
2809 #endif /* ! __LINUX_SECURITY_H */
2810