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