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