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