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