Merge branch 'work.aio' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
[linux-block.git] / include / linux / lsm_hooks.h
CommitLineData
3c4ed7bd
CS
1/*
2 * Linux Security Module interfaces
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 * Copyright (C) 2015 Intel Corporation.
10 * Copyright (C) 2015 Casey Schaufler <casey@schaufler-ca.com>
d291f1a6 11 * Copyright (C) 2016 Mellanox Techonologies
3c4ed7bd
CS
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * Due to this file being licensed under the GPL there is controversy over
19 * whether this permits you to write a module that #includes this file
20 * without placing your module under the GPL. Please consult a lawyer for
21 * advice before doing this.
22 *
23 */
24
25#ifndef __LINUX_LSM_HOOKS_H
26#define __LINUX_LSM_HOOKS_H
27
28#include <linux/security.h>
b1d9e6b0
CS
29#include <linux/init.h>
30#include <linux/rculist.h>
3c4ed7bd 31
fe7bb272 32/**
f00f85a8
KC
33 * union security_list_options - Linux Security Module hook function list
34 *
fe7bb272
CS
35 * Security hooks for program execution operations.
36 *
37 * @bprm_set_creds:
38 * Save security information in the bprm->security field, typically based
39 * on information about the bprm->file, for later use by the apply_creds
40 * hook. This hook may also optionally check permissions (e.g. for
41 * transitions between security domains).
42 * This hook may be called multiple times during a single execve, e.g. for
43 * interpreters. The hook can tell whether it has already been called by
44 * checking to see if @bprm->security is non-NULL. If so, then the hook
45 * may decide either to retain the security information saved earlier or
2af62280
KC
46 * to replace it. The hook must set @bprm->secureexec to 1 if a "secure
47 * exec" has happened as a result of this hook call. The flag is used to
48 * indicate the need for a sanitized execution environment, and is also
49 * passed in the ELF auxiliary table on the initial stack to indicate
50 * whether libc should enable secure mode.
fe7bb272
CS
51 * @bprm contains the linux_binprm structure.
52 * Return 0 if the hook is successful and permission is granted.
53 * @bprm_check_security:
54 * This hook mediates the point when a search for a binary handler will
55 * begin. It allows a check the @bprm->security value which is set in the
56 * preceding set_creds call. The primary difference from set_creds is
57 * that the argv list and envp list are reliably available in @bprm. This
58 * hook may be called multiple times during a single execve; and in each
59 * pass set_creds is called first.
60 * @bprm contains the linux_binprm structure.
61 * Return 0 if the hook is successful and permission is granted.
62 * @bprm_committing_creds:
63 * Prepare to install the new security attributes of a process being
64 * transformed by an execve operation, based on the old credentials
65 * pointed to by @current->cred and the information set in @bprm->cred by
66 * the bprm_set_creds hook. @bprm points to the linux_binprm structure.
67 * This hook is a good place to perform state changes on the process such
68 * as closing open file descriptors to which access will no longer be
69 * granted when the attributes are changed. This is called immediately
70 * before commit_creds().
71 * @bprm_committed_creds:
72 * Tidy up after the installation of the new security attributes of a
73 * process being transformed by an execve operation. The new credentials
74 * have, by this point, been set to @current->cred. @bprm points to the
75 * linux_binprm structure. This hook is a good place to perform state
76 * changes on the process such as clearing out non-inheritable signal
77 * state. This is called immediately after commit_creds().
fe7bb272
CS
78 *
79 * Security hooks for filesystem operations.
80 *
81 * @sb_alloc_security:
82 * Allocate and attach a security structure to the sb->s_security field.
83 * The s_security field is initialized to NULL when the structure is
84 * allocated.
85 * @sb contains the super_block structure to be modified.
86 * Return 0 if operation was successful.
87 * @sb_free_security:
88 * Deallocate and clear the sb->s_security field.
89 * @sb contains the super_block structure to be modified.
90 * @sb_statfs:
91 * Check permission before obtaining filesystem statistics for the @mnt
92 * mountpoint.
93 * @dentry is a handle on the superblock for the filesystem.
94 * Return 0 if permission is granted.
95 * @sb_mount:
96 * Check permission before an object specified by @dev_name is mounted on
97 * the mount point named by @nd. For an ordinary mount, @dev_name
98 * identifies a device if the file system type requires a device. For a
99 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
100 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
101 * pathname of the object being mounted.
102 * @dev_name contains the name for object being mounted.
103 * @path contains the path for mount point object.
104 * @type contains the filesystem type.
105 * @flags contains the mount flags.
106 * @data contains the filesystem-specific data.
107 * Return 0 if permission is granted.
108 * @sb_copy_data:
109 * Allow mount option data to be copied prior to parsing by the filesystem,
110 * so that the security module can extract security-specific mount
111 * options cleanly (a filesystem may modify the data e.g. with strsep()).
112 * This also allows the original mount data to be stripped of security-
113 * specific options to avoid having to make filesystems aware of them.
114 * @type the type of filesystem being mounted.
115 * @orig the original mount data copied from userspace.
116 * @copy copied data which will be passed to the security module.
117 * Returns 0 if the copy was successful.
118 * @sb_remount:
119 * Extracts security system specific mount options and verifies no changes
120 * are being made to those options.
121 * @sb superblock being remounted
122 * @data contains the filesystem-specific data.
123 * Return 0 if permission is granted.
124 * @sb_umount:
125 * Check permission before the @mnt file system is unmounted.
126 * @mnt contains the mounted file system.
127 * @flags contains the unmount flags, e.g. MNT_FORCE.
128 * Return 0 if permission is granted.
129 * @sb_pivotroot:
130 * Check permission before pivoting the root filesystem.
131 * @old_path contains the path for the new location of the
132 * current root (put_old).
133 * @new_path contains the path for the new root (new_root).
134 * Return 0 if permission is granted.
135 * @sb_set_mnt_opts:
136 * Set the security relevant mount options used for a superblock
137 * @sb the superblock to set security mount options for
138 * @opts binary data structure containing all lsm mount data
139 * @sb_clone_mnt_opts:
140 * Copy all security options from a given superblock to another
141 * @oldsb old superblock which contain information to clone
142 * @newsb new superblock which needs filled in
143 * @sb_parse_opts_str:
144 * Parse a string of security data filling in the opts structure
145 * @options string containing all mount options known by the LSM
146 * @opts binary data structure usable by the LSM
147 * @dentry_init_security:
148 * Compute a context for a dentry as the inode is not yet available
149 * since NFSv4 has no label backed by an EA anyway.
150 * @dentry dentry to use in calculating the context.
151 * @mode mode used to determine resource type.
152 * @name name of the last path component used to create file
153 * @ctx pointer to place the pointer to the resulting context in.
154 * @ctxlen point to place the length of the resulting context.
2602625b
VG
155 * @dentry_create_files_as:
156 * Compute a context for a dentry as the inode is not yet available
157 * and set that context in passed in creds so that new files are
158 * created using that context. Context is calculated using the
159 * passed in creds and not the creds of the caller.
160 * @dentry dentry to use in calculating the context.
161 * @mode mode used to determine resource type.
162 * @name name of the last path component used to create file
163 * @old creds which should be used for context calculation
164 * @new creds to modify
fe7bb272
CS
165 *
166 *
167 * Security hooks for inode operations.
168 *
169 * @inode_alloc_security:
170 * Allocate and attach a security structure to @inode->i_security. The
171 * i_security field is initialized to NULL when the inode structure is
172 * allocated.
173 * @inode contains the inode structure.
174 * Return 0 if operation was successful.
175 * @inode_free_security:
176 * @inode contains the inode structure.
177 * Deallocate the inode security structure and set @inode->i_security to
178 * NULL.
179 * @inode_init_security:
180 * Obtain the security attribute name suffix and value to set on a newly
181 * created inode and set up the incore security field for the new inode.
182 * This hook is called by the fs code as part of the inode creation
183 * transaction and provides for atomic labeling of the inode, unlike
184 * the post_create/mkdir/... hooks called by the VFS. The hook function
185 * is expected to allocate the name and value via kmalloc, with the caller
186 * being responsible for calling kfree after using them.
187 * If the security module does not use security attributes or does
188 * not wish to put a security attribute on this particular inode,
189 * then it should return -EOPNOTSUPP to skip this processing.
190 * @inode contains the inode structure of the newly created inode.
191 * @dir contains the inode structure of the parent directory.
192 * @qstr contains the last path component of the new object
193 * @name will be set to the allocated name suffix (e.g. selinux).
194 * @value will be set to the allocated attribute value.
195 * @len will be set to the length of the value.
196 * Returns 0 if @name and @value have been successfully set,
f00f85a8
KC
197 * -EOPNOTSUPP if no security attribute is needed, or
198 * -ENOMEM on memory allocation failure.
fe7bb272
CS
199 * @inode_create:
200 * Check permission to create a regular file.
201 * @dir contains inode structure of the parent of the new file.
202 * @dentry contains the dentry structure for the file to be created.
203 * @mode contains the file mode of the file to be created.
204 * Return 0 if permission is granted.
205 * @inode_link:
206 * Check permission before creating a new hard link to a file.
207 * @old_dentry contains the dentry structure for an existing
208 * link to the file.
209 * @dir contains the inode structure of the parent directory
210 * of the new link.
211 * @new_dentry contains the dentry structure for the new link.
212 * Return 0 if permission is granted.
213 * @path_link:
214 * Check permission before creating a new hard link to a file.
215 * @old_dentry contains the dentry structure for an existing link
216 * to the file.
217 * @new_dir contains the path structure of the parent directory of
218 * the new link.
219 * @new_dentry contains the dentry structure for the new link.
220 * Return 0 if permission is granted.
221 * @inode_unlink:
222 * Check the permission to remove a hard link to a file.
223 * @dir contains the inode structure of parent directory of the file.
224 * @dentry contains the dentry structure for file to be unlinked.
225 * Return 0 if permission is granted.
226 * @path_unlink:
227 * Check the permission to remove a hard link to a file.
228 * @dir contains the path structure of parent directory of the file.
229 * @dentry contains the dentry structure for file to be unlinked.
230 * Return 0 if permission is granted.
231 * @inode_symlink:
232 * Check the permission to create a symbolic link to a file.
233 * @dir contains the inode structure of parent directory of
234 * the symbolic link.
235 * @dentry contains the dentry structure of the symbolic link.
236 * @old_name contains the pathname of file.
237 * Return 0 if permission is granted.
238 * @path_symlink:
239 * Check the permission to create a symbolic link to a file.
240 * @dir contains the path structure of parent directory of
241 * the symbolic link.
242 * @dentry contains the dentry structure of the symbolic link.
243 * @old_name contains the pathname of file.
244 * Return 0 if permission is granted.
245 * @inode_mkdir:
246 * Check permissions to create a new directory in the existing directory
247 * associated with inode structure @dir.
248 * @dir contains the inode structure of parent of the directory
249 * to be created.
250 * @dentry contains the dentry structure of new directory.
251 * @mode contains the mode of new directory.
252 * Return 0 if permission is granted.
253 * @path_mkdir:
254 * Check permissions to create a new directory in the existing directory
255 * associated with path structure @path.
256 * @dir contains the path structure of parent of the directory
257 * to be created.
258 * @dentry contains the dentry structure of new directory.
259 * @mode contains the mode of new directory.
260 * Return 0 if permission is granted.
261 * @inode_rmdir:
262 * Check the permission to remove a directory.
263 * @dir contains the inode structure of parent of the directory
264 * to be removed.
265 * @dentry contains the dentry structure of directory to be removed.
266 * Return 0 if permission is granted.
267 * @path_rmdir:
268 * Check the permission to remove a directory.
269 * @dir contains the path structure of parent of the directory to be
270 * removed.
271 * @dentry contains the dentry structure of directory to be removed.
272 * Return 0 if permission is granted.
273 * @inode_mknod:
274 * Check permissions when creating a special file (or a socket or a fifo
275 * file created via the mknod system call). Note that if mknod operation
276 * is being done for a regular file, then the create hook will be called
277 * and not this hook.
278 * @dir contains the inode structure of parent of the new file.
279 * @dentry contains the dentry structure of the new file.
280 * @mode contains the mode of the new file.
281 * @dev contains the device number.
282 * Return 0 if permission is granted.
283 * @path_mknod:
284 * Check permissions when creating a file. Note that this hook is called
285 * even if mknod operation is being done for a regular file.
286 * @dir contains the path structure of parent of the new file.
287 * @dentry contains the dentry structure of the new file.
288 * @mode contains the mode of the new file.
289 * @dev contains the undecoded device number. Use new_decode_dev() to get
290 * the decoded device number.
291 * Return 0 if permission is granted.
292 * @inode_rename:
293 * Check for permission to rename a file or directory.
294 * @old_dir contains the inode structure for parent of the old link.
295 * @old_dentry contains the dentry structure of the old link.
296 * @new_dir contains the inode structure for parent of the new link.
297 * @new_dentry contains the dentry structure of the new link.
298 * Return 0 if permission is granted.
299 * @path_rename:
300 * Check for permission to rename a file or directory.
301 * @old_dir contains the path structure for parent of the old link.
302 * @old_dentry contains the dentry structure of the old link.
303 * @new_dir contains the path structure for parent of the new link.
304 * @new_dentry contains the dentry structure of the new link.
305 * Return 0 if permission is granted.
306 * @path_chmod:
307 * Check for permission to change DAC's permission of a file or directory.
308 * @dentry contains the dentry structure.
309 * @mnt contains the vfsmnt structure.
310 * @mode contains DAC's mode.
311 * Return 0 if permission is granted.
312 * @path_chown:
313 * Check for permission to change owner/group of a file or directory.
314 * @path contains the path structure.
315 * @uid contains new owner's ID.
316 * @gid contains new group's ID.
317 * Return 0 if permission is granted.
318 * @path_chroot:
319 * Check for permission to change root directory.
320 * @path contains the path structure.
321 * Return 0 if permission is granted.
322 * @inode_readlink:
323 * Check the permission to read the symbolic link.
324 * @dentry contains the dentry structure for the file link.
325 * Return 0 if permission is granted.
326 * @inode_follow_link:
327 * Check permission to follow a symbolic link when looking up a pathname.
328 * @dentry contains the dentry structure for the link.
e22619a2
LT
329 * @inode contains the inode, which itself is not stable in RCU-walk
330 * @rcu indicates whether we are in RCU-walk mode.
fe7bb272
CS
331 * Return 0 if permission is granted.
332 * @inode_permission:
333 * Check permission before accessing an inode. This hook is called by the
334 * existing Linux permission function, so a security module can use it to
335 * provide additional checking for existing Linux permission checks.
336 * Notice that this hook is called when a file is opened (as well as many
337 * other operations), whereas the file_security_ops permission hook is
338 * called when the actual read/write operations are performed.
339 * @inode contains the inode structure to check.
340 * @mask contains the permission mask.
341 * Return 0 if permission is granted.
342 * @inode_setattr:
343 * Check permission before setting file attributes. Note that the kernel
344 * call to notify_change is performed from several locations, whenever
345 * file attributes change (such as when a file is truncated, chown/chmod
346 * operations, transferring disk quotas, etc).
347 * @dentry contains the dentry structure for the file.
348 * @attr is the iattr structure containing the new file attributes.
349 * Return 0 if permission is granted.
350 * @path_truncate:
351 * Check permission before truncating a file.
352 * @path contains the path structure for the file.
353 * Return 0 if permission is granted.
354 * @inode_getattr:
355 * Check permission before obtaining file attributes.
b8aa8453 356 * @path contains the path structure for the file.
fe7bb272
CS
357 * Return 0 if permission is granted.
358 * @inode_setxattr:
359 * Check permission before setting the extended attributes
360 * @value identified by @name for @dentry.
361 * Return 0 if permission is granted.
362 * @inode_post_setxattr:
363 * Update inode security field after successful setxattr operation.
364 * @value identified by @name for @dentry.
365 * @inode_getxattr:
366 * Check permission before obtaining the extended attributes
367 * identified by @name for @dentry.
368 * Return 0 if permission is granted.
369 * @inode_listxattr:
370 * Check permission before obtaining the list of extended attribute
371 * names for @dentry.
372 * Return 0 if permission is granted.
373 * @inode_removexattr:
374 * Check permission before removing the extended attribute
375 * identified by @name for @dentry.
376 * Return 0 if permission is granted.
377 * @inode_getsecurity:
378 * Retrieve a copy of the extended attribute representation of the
379 * security label associated with @name for @inode via @buffer. Note that
380 * @name is the remainder of the attribute name after the security prefix
381 * has been removed. @alloc is used to specify of the call should return a
382 * value via the buffer or just the value length Return size of buffer on
383 * success.
384 * @inode_setsecurity:
385 * Set the security label associated with @name for @inode from the
386 * extended attribute value @value. @size indicates the size of the
387 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
388 * Note that @name is the remainder of the attribute name after the
389 * security. prefix has been removed.
390 * Return 0 on success.
391 * @inode_listsecurity:
392 * Copy the extended attribute names for the security labels
393 * associated with @inode into @buffer. The maximum size of @buffer
394 * is specified by @buffer_size. @buffer may be NULL to request
395 * the size of the buffer required.
396 * Returns number of bytes used/required on success.
397 * @inode_need_killpriv:
398 * Called when an inode has been changed.
399 * @dentry is the dentry being changed.
400 * Return <0 on error to abort the inode change operation.
401 * Return 0 if inode_killpriv does not need to be called.
402 * Return >0 if inode_killpriv does need to be called.
403 * @inode_killpriv:
404 * The setuid bit is being removed. Remove similar security labels.
405 * Called with the dentry->d_inode->i_mutex held.
406 * @dentry is the dentry being changed.
407 * Return 0 on success. If error is returned, then the operation
408 * causing setuid bit removal is failed.
409 * @inode_getsecid:
410 * Get the secid associated with the node.
411 * @inode contains a pointer to the inode.
412 * @secid contains a pointer to the location where result will be saved.
413 * In case of failure, @secid will be set to zero.
d8ad8b49
VG
414 * @inode_copy_up:
415 * A file is about to be copied up from lower layer to upper layer of
416 * overlay filesystem. Security module can prepare a set of new creds
417 * and modify as need be and return new creds. Caller will switch to
418 * new creds temporarily to create new file and release newly allocated
419 * creds.
420 * @src indicates the union dentry of file that is being copied up.
421 * @new pointer to pointer to return newly allocated creds.
422 * Returns 0 on success or a negative error code on error.
121ab822
VG
423 * @inode_copy_up_xattr:
424 * Filter the xattrs being copied up when a unioned file is copied
425 * up from a lower layer to the union/overlay layer.
426 * @name indicates the name of the xattr.
427 * Returns 0 to accept the xattr, 1 to discard the xattr, -EOPNOTSUPP if
428 * security module does not know about attribute or a negative error code
429 * to abort the copy up. Note that the caller is responsible for reading
430 * and writing the xattrs as this hook is merely a filter.
fe7bb272
CS
431 *
432 * Security hooks for file operations
433 *
434 * @file_permission:
435 * Check file permissions before accessing an open file. This hook is
436 * called by various operations that read or write files. A security
437 * module can use this hook to perform additional checking on these
438 * operations, e.g. to revalidate permissions on use to support privilege
439 * bracketing or policy changes. Notice that this hook is used when the
440 * actual read/write operations are performed, whereas the
441 * inode_security_ops hook is called when a file is opened (as well as
442 * many other operations).
443 * Caveat: Although this hook can be used to revalidate permissions for
444 * various system call operations that read or write files, it does not
445 * address the revalidation of permissions for memory-mapped files.
446 * Security modules must handle this separately if they need such
447 * revalidation.
448 * @file contains the file structure being accessed.
449 * @mask contains the requested permissions.
450 * Return 0 if permission is granted.
451 * @file_alloc_security:
452 * Allocate and attach a security structure to the file->f_security field.
453 * The security field is initialized to NULL when the structure is first
454 * created.
455 * @file contains the file structure to secure.
456 * Return 0 if the hook is successful and permission is granted.
457 * @file_free_security:
458 * Deallocate and free any security structures stored in file->f_security.
459 * @file contains the file structure being modified.
460 * @file_ioctl:
461 * @file contains the file structure.
462 * @cmd contains the operation to perform.
463 * @arg contains the operational arguments.
464 * Check permission for an ioctl operation on @file. Note that @arg
465 * sometimes represents a user space pointer; in other cases, it may be a
466 * simple integer value. When @arg represents a user space pointer, it
467 * should never be used by the security module.
468 * Return 0 if permission is granted.
469 * @mmap_addr :
470 * Check permissions for a mmap operation at @addr.
471 * @addr contains virtual address that will be used for the operation.
472 * Return 0 if permission is granted.
473 * @mmap_file :
474 * Check permissions for a mmap operation. The @file may be NULL, e.g.
475 * if mapping anonymous memory.
476 * @file contains the file structure for file to map (may be NULL).
477 * @reqprot contains the protection requested by the application.
478 * @prot contains the protection that will be applied by the kernel.
479 * @flags contains the operational flags.
480 * Return 0 if permission is granted.
481 * @file_mprotect:
482 * Check permissions before changing memory access permissions.
483 * @vma contains the memory region to modify.
484 * @reqprot contains the protection requested by the application.
485 * @prot contains the protection that will be applied by the kernel.
486 * Return 0 if permission is granted.
487 * @file_lock:
488 * Check permission before performing file locking operations.
489 * Note: this hook mediates both flock and fcntl style locks.
490 * @file contains the file structure.
491 * @cmd contains the posix-translated lock operation to perform
492 * (e.g. F_RDLCK, F_WRLCK).
493 * Return 0 if permission is granted.
494 * @file_fcntl:
495 * Check permission before allowing the file operation specified by @cmd
496 * from being performed on the file @file. Note that @arg sometimes
497 * represents a user space pointer; in other cases, it may be a simple
498 * integer value. When @arg represents a user space pointer, it should
499 * never be used by the security module.
500 * @file contains the file structure.
501 * @cmd contains the operation to be performed.
502 * @arg contains the operational arguments.
503 * Return 0 if permission is granted.
504 * @file_set_fowner:
505 * Save owner security information (typically from current->security) in
506 * file->f_security for later use by the send_sigiotask hook.
507 * @file contains the file structure to update.
508 * Return 0 on success.
509 * @file_send_sigiotask:
510 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
511 * process @tsk. Note that this hook is sometimes called from interrupt.
512 * Note that the fown_struct, @fown, is never outside the context of a
513 * struct file, so the file structure (and associated security information)
f00f85a8 514 * can always be obtained: container_of(fown, struct file, f_owner)
fe7bb272
CS
515 * @tsk contains the structure of task receiving signal.
516 * @fown contains the file owner information.
517 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
518 * Return 0 if permission is granted.
519 * @file_receive:
520 * This hook allows security modules to control the ability of a process
521 * to receive an open file descriptor via socket IPC.
522 * @file contains the file structure being received.
523 * Return 0 if permission is granted.
f00f85a8 524 * @file_open:
fe7bb272
CS
525 * Save open-time permission checking state for later use upon
526 * file_permission, and recheck access if anything has changed
527 * since inode_permission.
528 *
529 * Security hooks for task operations.
530 *
e4e55b47
TH
531 * @task_alloc:
532 * @task task being allocated.
533 * @clone_flags contains the flags indicating what should be shared.
534 * Handle allocation of task-related resources.
535 * Returns a zero on success, negative values on failure.
fe7bb272 536 * @task_free:
e4e55b47 537 * @task task about to be freed.
fe7bb272
CS
538 * Handle release of task-related resources. (Note that this can be called
539 * from interrupt context.)
540 * @cred_alloc_blank:
541 * @cred points to the credentials.
542 * @gfp indicates the atomicity of any memory allocations.
543 * Only allocate sufficient memory and attach to @cred such that
544 * cred_transfer() will not get ENOMEM.
545 * @cred_free:
546 * @cred points to the credentials.
547 * Deallocate and clear the cred->security field in a set of credentials.
548 * @cred_prepare:
549 * @new points to the new credentials.
550 * @old points to the original credentials.
551 * @gfp indicates the atomicity of any memory allocations.
552 * Prepare a new set of credentials by copying the data from the old set.
553 * @cred_transfer:
554 * @new points to the new credentials.
555 * @old points to the original credentials.
556 * Transfer data from original creds to new creds
3ec30113
MG
557 * @cred_getsecid:
558 * Retrieve the security identifier of the cred structure @c
559 * @c contains the credentials, secid will be placed into @secid.
560 * In case of failure, @secid will be set to zero.
fe7bb272
CS
561 * @kernel_act_as:
562 * Set the credentials for a kernel service to act as (subjective context).
563 * @new points to the credentials to be modified.
564 * @secid specifies the security ID to be set
565 * The current task must be the one that nominated @secid.
566 * Return 0 if successful.
567 * @kernel_create_files_as:
568 * Set the file creation context in a set of credentials to be the same as
569 * the objective context of the specified inode.
570 * @new points to the credentials to be modified.
571 * @inode points to the inode to use as a reference.
572 * The current task must be the one that nominated @inode.
573 * Return 0 if successful.
fe7bb272
CS
574 * @kernel_module_request:
575 * Ability to trigger the kernel to automatically upcall to userspace for
576 * userspace to load a kernel module with the given name.
577 * @kmod_name name of the module requested by the kernel
578 * Return 0 if successful.
39eeb4fb
MZ
579 * @kernel_read_file:
580 * Read a file specified by userspace.
581 * @file contains the file structure pointing to the file being read
582 * by the kernel.
583 * @id kernel read file identifier
584 * Return 0 if permission is granted.
b44a7dfc
MZ
585 * @kernel_post_read_file:
586 * Read a file specified by userspace.
587 * @file contains the file structure pointing to the file being read
588 * by the kernel.
589 * @buf pointer to buffer containing the file contents.
590 * @size length of the file contents.
bc8ca5b9 591 * @id kernel read file identifier
b44a7dfc 592 * Return 0 if permission is granted.
fe7bb272
CS
593 * @task_fix_setuid:
594 * Update the module's state after setting one or more of the user
595 * identity attributes of the current process. The @flags parameter
596 * indicates which of the set*uid system calls invoked this hook. If
597 * @new is the set of credentials that will be installed. Modifications
598 * should be made to this rather than to @current->cred.
599 * @old is the set of credentials that are being replaces
600 * @flags contains one of the LSM_SETID_* values.
601 * Return 0 on success.
602 * @task_setpgid:
603 * Check permission before setting the process group identifier of the
604 * process @p to @pgid.
605 * @p contains the task_struct for process being modified.
606 * @pgid contains the new pgid.
607 * Return 0 if permission is granted.
608 * @task_getpgid:
609 * Check permission before getting the process group identifier of the
610 * process @p.
611 * @p contains the task_struct for the process.
612 * Return 0 if permission is granted.
613 * @task_getsid:
614 * Check permission before getting the session identifier of the process
615 * @p.
616 * @p contains the task_struct for the process.
617 * Return 0 if permission is granted.
618 * @task_getsecid:
619 * Retrieve the security identifier of the process @p.
620 * @p contains the task_struct for the process and place is into @secid.
621 * In case of failure, @secid will be set to zero.
622 *
623 * @task_setnice:
624 * Check permission before setting the nice value of @p to @nice.
625 * @p contains the task_struct of process.
626 * @nice contains the new nice value.
627 * Return 0 if permission is granted.
628 * @task_setioprio
629 * Check permission before setting the ioprio value of @p to @ioprio.
630 * @p contains the task_struct of process.
631 * @ioprio contains the new ioprio value
632 * Return 0 if permission is granted.
633 * @task_getioprio
634 * Check permission before getting the ioprio value of @p.
635 * @p contains the task_struct of process.
636 * Return 0 if permission is granted.
791ec491
SS
637 * @task_prlimit:
638 * Check permission before getting and/or setting the resource limits of
639 * another task.
640 * @cred points to the cred structure for the current task.
641 * @tcred points to the cred structure for the target task.
642 * @flags contains the LSM_PRLIMIT_* flag bits indicating whether the
643 * resource limits are being read, modified, or both.
644 * Return 0 if permission is granted.
fe7bb272 645 * @task_setrlimit:
791ec491
SS
646 * Check permission before setting the resource limits of process @p
647 * for @resource to @new_rlim. The old resource limit values can
648 * be examined by dereferencing (p->signal->rlim + resource).
649 * @p points to the task_struct for the target task's group leader.
fe7bb272
CS
650 * @resource contains the resource whose limit is being set.
651 * @new_rlim contains the new limits for @resource.
652 * Return 0 if permission is granted.
653 * @task_setscheduler:
654 * Check permission before setting scheduling policy and/or parameters of
655 * process @p based on @policy and @lp.
656 * @p contains the task_struct for process.
657 * @policy contains the scheduling policy.
658 * @lp contains the scheduling parameters.
659 * Return 0 if permission is granted.
660 * @task_getscheduler:
661 * Check permission before obtaining scheduling information for process
662 * @p.
663 * @p contains the task_struct for process.
664 * Return 0 if permission is granted.
665 * @task_movememory
666 * Check permission before moving memory owned by process @p.
667 * @p contains the task_struct for process.
668 * Return 0 if permission is granted.
669 * @task_kill:
670 * Check permission before sending signal @sig to @p. @info can be NULL,
671 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
672 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
673 * from the kernel and should typically be permitted.
674 * SIGIO signals are handled separately by the send_sigiotask hook in
675 * file_security_ops.
676 * @p contains the task_struct for process.
677 * @info contains the signal information.
678 * @sig contains the signal value.
6b4f3d01
SS
679 * @cred contains the cred of the process where the signal originated, or
680 * NULL if the current task is the originator.
fe7bb272 681 * Return 0 if permission is granted.
fe7bb272
CS
682 * @task_prctl:
683 * Check permission before performing a process control operation on the
684 * current process.
685 * @option contains the operation.
686 * @arg2 contains a argument.
687 * @arg3 contains a argument.
688 * @arg4 contains a argument.
689 * @arg5 contains a argument.
690 * Return -ENOSYS if no-one wanted to handle this op, any other value to
691 * cause prctl() to return immediately with that value.
692 * @task_to_inode:
693 * Set the security attributes for an inode based on an associated task's
694 * security attributes, e.g. for /proc/pid inodes.
695 * @p contains the task_struct for the task.
696 * @inode contains the inode structure for the inode.
697 *
698 * Security hooks for Netlink messaging.
699 *
700 * @netlink_send:
701 * Save security information for a netlink message so that permission
702 * checking can be performed when the message is processed. The security
703 * information can be saved using the eff_cap field of the
704 * netlink_skb_parms structure. Also may be used to provide fine
705 * grained control over message transmission.
706 * @sk associated sock of task sending the message.
707 * @skb contains the sk_buff structure for the netlink message.
708 * Return 0 if the information was successfully saved and message
709 * is allowed to be transmitted.
710 *
711 * Security hooks for Unix domain networking.
712 *
713 * @unix_stream_connect:
714 * Check permissions before establishing a Unix domain stream connection
715 * between @sock and @other.
716 * @sock contains the sock structure.
717 * @other contains the peer sock structure.
718 * @newsk contains the new sock structure.
719 * Return 0 if permission is granted.
720 * @unix_may_send:
721 * Check permissions before connecting or sending datagrams from @sock to
722 * @other.
723 * @sock contains the socket structure.
724 * @other contains the peer socket structure.
725 * Return 0 if permission is granted.
726 *
727 * The @unix_stream_connect and @unix_may_send hooks were necessary because
728 * Linux provides an alternative to the conventional file name space for Unix
729 * domain sockets. Whereas binding and connecting to sockets in the file name
730 * space is mediated by the typical file permissions (and caught by the mknod
731 * and permission hooks in inode_security_ops), binding and connecting to
732 * sockets in the abstract name space is completely unmediated. Sufficient
733 * control of Unix domain sockets in the abstract name space isn't possible
734 * using only the socket layer hooks, since we need to know the actual target
735 * socket, which is not looked up until we are inside the af_unix code.
736 *
737 * Security hooks for socket operations.
738 *
739 * @socket_create:
740 * Check permissions prior to creating a new socket.
741 * @family contains the requested protocol family.
742 * @type contains the requested communications type.
743 * @protocol contains the requested protocol.
744 * @kern set to 1 if a kernel socket.
745 * Return 0 if permission is granted.
746 * @socket_post_create:
747 * This hook allows a module to update or allocate a per-socket security
748 * structure. Note that the security field was not added directly to the
749 * socket structure, but rather, the socket security information is stored
750 * in the associated inode. Typically, the inode alloc_security hook will
751 * allocate and and attach security information to
752 * sock->inode->i_security. This hook may be used to update the
753 * sock->inode->i_security field with additional information that wasn't
754 * available when the inode was allocated.
755 * @sock contains the newly created socket structure.
756 * @family contains the requested protocol family.
757 * @type contains the requested communications type.
758 * @protocol contains the requested protocol.
759 * @kern set to 1 if a kernel socket.
aae7cfcb
DH
760 * @socket_socketpair:
761 * Check permissions before creating a fresh pair of sockets.
762 * @socka contains the first socket structure.
763 * @sockb contains the second socket structure.
764 * Return 0 if permission is granted and the connection was established.
fe7bb272
CS
765 * @socket_bind:
766 * Check permission before socket protocol layer bind operation is
767 * performed and the socket @sock is bound to the address specified in the
768 * @address parameter.
769 * @sock contains the socket structure.
770 * @address contains the address to bind to.
771 * @addrlen contains the length of address.
772 * Return 0 if permission is granted.
773 * @socket_connect:
774 * Check permission before socket protocol layer connect operation
775 * attempts to connect socket @sock to a remote address, @address.
776 * @sock contains the socket structure.
777 * @address contains the address of remote endpoint.
778 * @addrlen contains the length of address.
779 * Return 0 if permission is granted.
780 * @socket_listen:
781 * Check permission before socket protocol layer listen operation.
782 * @sock contains the socket structure.
783 * @backlog contains the maximum length for the pending connection queue.
784 * Return 0 if permission is granted.
785 * @socket_accept:
786 * Check permission before accepting a new connection. Note that the new
787 * socket, @newsock, has been created and some information copied to it,
788 * but the accept operation has not actually been performed.
789 * @sock contains the listening socket structure.
790 * @newsock contains the newly created server socket for connection.
791 * Return 0 if permission is granted.
792 * @socket_sendmsg:
793 * Check permission before transmitting a message to another socket.
794 * @sock contains the socket structure.
795 * @msg contains the message to be transmitted.
796 * @size contains the size of message.
797 * Return 0 if permission is granted.
798 * @socket_recvmsg:
799 * Check permission before receiving a message from a socket.
800 * @sock contains the socket structure.
801 * @msg contains the message structure.
802 * @size contains the size of message structure.
803 * @flags contains the operational flags.
804 * Return 0 if permission is granted.
805 * @socket_getsockname:
806 * Check permission before the local address (name) of the socket object
807 * @sock is retrieved.
808 * @sock contains the socket structure.
809 * Return 0 if permission is granted.
810 * @socket_getpeername:
811 * Check permission before the remote address (name) of a socket object
812 * @sock is retrieved.
813 * @sock contains the socket structure.
814 * Return 0 if permission is granted.
815 * @socket_getsockopt:
816 * Check permissions before retrieving the options associated with socket
817 * @sock.
818 * @sock contains the socket structure.
819 * @level contains the protocol level to retrieve option from.
820 * @optname contains the name of option to retrieve.
821 * Return 0 if permission is granted.
822 * @socket_setsockopt:
823 * Check permissions before setting the options associated with socket
824 * @sock.
825 * @sock contains the socket structure.
826 * @level contains the protocol level to set options for.
827 * @optname contains the name of the option to set.
828 * Return 0 if permission is granted.
829 * @socket_shutdown:
830 * Checks permission before all or part of a connection on the socket
831 * @sock is shut down.
832 * @sock contains the socket structure.
833 * @how contains the flag indicating how future sends and receives
834 * are handled.
835 * Return 0 if permission is granted.
836 * @socket_sock_rcv_skb:
837 * Check permissions on incoming network packets. This hook is distinct
838 * from Netfilter's IP input hooks since it is the first time that the
839 * incoming sk_buff @skb has been associated with a particular socket, @sk.
840 * Must not sleep inside this hook because some callers hold spinlocks.
841 * @sk contains the sock (not socket) associated with the incoming sk_buff.
842 * @skb contains the incoming network data.
843 * @socket_getpeersec_stream:
844 * This hook allows the security module to provide peer socket security
845 * state for unix or connected tcp sockets to userspace via getsockopt
846 * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
847 * socket is associated with an ipsec SA.
848 * @sock is the local socket.
849 * @optval userspace memory where the security state is to be copied.
850 * @optlen userspace int where the module should copy the actual length
851 * of the security state.
852 * @len as input is the maximum length to copy to userspace provided
853 * by the caller.
854 * Return 0 if all is well, otherwise, typical getsockopt return
855 * values.
856 * @socket_getpeersec_dgram:
857 * This hook allows the security module to provide peer socket security
858 * state for udp sockets on a per-packet basis to userspace via
859 * getsockopt SO_GETPEERSEC. The application must first have indicated
860 * the IP_PASSSEC option via getsockopt. It can then retrieve the
861 * security state returned by this hook for a packet via the SCM_SECURITY
862 * ancillary message type.
863 * @skb is the skbuff for the packet being queried
864 * @secdata is a pointer to a buffer in which to copy the security data
865 * @seclen is the maximum length for @secdata
866 * Return 0 on success, error on failure.
867 * @sk_alloc_security:
868 * Allocate and attach a security structure to the sk->sk_security field,
869 * which is used to copy security attributes between local stream sockets.
870 * @sk_free_security:
871 * Deallocate security structure.
872 * @sk_clone_security:
873 * Clone/copy security structure.
874 * @sk_getsecid:
875 * Retrieve the LSM-specific secid for the sock to enable caching
876 * of network authorizations.
877 * @sock_graft:
878 * Sets the socket's isec sid to the sock's sid.
879 * @inet_conn_request:
880 * Sets the openreq's sid to socket's sid with MLS portion taken
881 * from peer sid.
882 * @inet_csk_clone:
883 * Sets the new child socket's sid to the openreq sid.
884 * @inet_conn_established:
885 * Sets the connection's peersid to the secmark on skb.
886 * @secmark_relabel_packet:
887 * check if the process should be allowed to relabel packets to
888 * the given secid
889 * @security_secmark_refcount_inc
890 * tells the LSM to increment the number of secmark labeling rules loaded
891 * @security_secmark_refcount_dec
892 * tells the LSM to decrement the number of secmark labeling rules loaded
893 * @req_classify_flow:
894 * Sets the flow's sid to the openreq sid.
895 * @tun_dev_alloc_security:
896 * This hook allows a module to allocate a security structure for a TUN
897 * device.
898 * @security pointer to a security structure pointer.
899 * Returns a zero on success, negative values on failure.
900 * @tun_dev_free_security:
901 * This hook allows a module to free the security structure for a TUN
902 * device.
903 * @security pointer to the TUN device's security structure
904 * @tun_dev_create:
905 * Check permissions prior to creating a new TUN device.
906 * @tun_dev_attach_queue:
907 * Check permissions prior to attaching to a TUN device queue.
908 * @security pointer to the TUN device's security structure.
909 * @tun_dev_attach:
910 * This hook can be used by the module to update any security state
911 * associated with the TUN device's sock structure.
912 * @sk contains the existing sock structure.
913 * @security pointer to the TUN device's security structure.
914 * @tun_dev_open:
915 * This hook can be used by the module to update any security state
916 * associated with the TUN device's security structure.
917 * @security pointer to the TUN devices's security structure.
918 *
72e89f50
RH
919 * Security hooks for SCTP
920 *
921 * @sctp_assoc_request:
922 * Passes the @ep and @chunk->skb of the association INIT packet to
923 * the security module.
924 * @ep pointer to sctp endpoint structure.
925 * @skb pointer to skbuff of association packet.
926 * Return 0 on success, error on failure.
927 * @sctp_bind_connect:
928 * Validiate permissions required for each address associated with sock
929 * @sk. Depending on @optname, the addresses will be treated as either
930 * for a connect or bind service. The @addrlen is calculated on each
931 * ipv4 and ipv6 address using sizeof(struct sockaddr_in) or
932 * sizeof(struct sockaddr_in6).
933 * @sk pointer to sock structure.
934 * @optname name of the option to validate.
935 * @address list containing one or more ipv4/ipv6 addresses.
936 * @addrlen total length of address(s).
937 * Return 0 on success, error on failure.
938 * @sctp_sk_clone:
939 * Called whenever a new socket is created by accept(2) (i.e. a TCP
940 * style socket) or when a socket is 'peeled off' e.g userspace
941 * calls sctp_peeloff(3).
942 * @ep pointer to current sctp endpoint structure.
943 * @sk pointer to current sock structure.
944 * @sk pointer to new sock structure.
945 *
d291f1a6
DJ
946 * Security hooks for Infiniband
947 *
948 * @ib_pkey_access:
949 * Check permission to access a pkey when modifing a QP.
950 * @subnet_prefix the subnet prefix of the port being used.
951 * @pkey the pkey to be accessed.
952 * @sec pointer to a security structure.
47a2b338
DJ
953 * @ib_endport_manage_subnet:
954 * Check permissions to send and receive SMPs on a end port.
955 * @dev_name the IB device name (i.e. mlx4_0).
956 * @port_num the port number.
957 * @sec pointer to a security structure.
d291f1a6
DJ
958 * @ib_alloc_security:
959 * Allocate a security structure for Infiniband objects.
960 * @sec pointer to a security structure pointer.
961 * Returns 0 on success, non-zero on failure
962 * @ib_free_security:
963 * Deallocate an Infiniband security structure.
964 * @sec contains the security structure to be freed.
965 *
fe7bb272
CS
966 * Security hooks for XFRM operations.
967 *
968 * @xfrm_policy_alloc_security:
969 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
970 * Database used by the XFRM system.
971 * @sec_ctx contains the security context information being provided by
972 * the user-level policy update program (e.g., setkey).
973 * Allocate a security structure to the xp->security field; the security
974 * field is initialized to NULL when the xfrm_policy is allocated.
975 * Return 0 if operation was successful (memory to allocate, legal context)
976 * @gfp is to specify the context for the allocation
977 * @xfrm_policy_clone_security:
978 * @old_ctx contains an existing xfrm_sec_ctx.
979 * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
980 * Allocate a security structure in new_ctxp that contains the
981 * information from the old_ctx structure.
982 * Return 0 if operation was successful (memory to allocate).
983 * @xfrm_policy_free_security:
984 * @ctx contains the xfrm_sec_ctx
985 * Deallocate xp->security.
986 * @xfrm_policy_delete_security:
987 * @ctx contains the xfrm_sec_ctx.
988 * Authorize deletion of xp->security.
989 * @xfrm_state_alloc:
990 * @x contains the xfrm_state being added to the Security Association
991 * Database by the XFRM system.
992 * @sec_ctx contains the security context information being provided by
993 * the user-level SA generation program (e.g., setkey or racoon).
994 * Allocate a security structure to the x->security field; the security
995 * field is initialized to NULL when the xfrm_state is allocated. Set the
996 * context to correspond to sec_ctx. Return 0 if operation was successful
997 * (memory to allocate, legal context).
998 * @xfrm_state_alloc_acquire:
999 * @x contains the xfrm_state being added to the Security Association
1000 * Database by the XFRM system.
1001 * @polsec contains the policy's security context.
1002 * @secid contains the secid from which to take the mls portion of the
1003 * context.
1004 * Allocate a security structure to the x->security field; the security
1005 * field is initialized to NULL when the xfrm_state is allocated. Set the
1006 * context to correspond to secid. Return 0 if operation was successful
1007 * (memory to allocate, legal context).
1008 * @xfrm_state_free_security:
1009 * @x contains the xfrm_state.
1010 * Deallocate x->security.
1011 * @xfrm_state_delete_security:
1012 * @x contains the xfrm_state.
1013 * Authorize deletion of x->security.
1014 * @xfrm_policy_lookup:
1015 * @ctx contains the xfrm_sec_ctx for which the access control is being
1016 * checked.
1017 * @fl_secid contains the flow security label that is used to authorize
1018 * access to the policy xp.
1019 * @dir contains the direction of the flow (input or output).
1020 * Check permission when a flow selects a xfrm_policy for processing
1021 * XFRMs on a packet. The hook is called when selecting either a
1022 * per-socket policy or a generic xfrm policy.
1023 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
1024 * on other errors.
1025 * @xfrm_state_pol_flow_match:
1026 * @x contains the state to match.
1027 * @xp contains the policy to check for a match.
1028 * @fl contains the flow to check for a match.
1029 * Return 1 if there is a match.
1030 * @xfrm_decode_session:
1031 * @skb points to skb to decode.
1032 * @secid points to the flow key secid to set.
1033 * @ckall says if all xfrms used should be checked for same secid.
1034 * Return 0 if ckall is zero or all xfrms used have the same secid.
1035 *
1036 * Security hooks affecting all Key Management operations
1037 *
1038 * @key_alloc:
1039 * Permit allocation of a key and assign security data. Note that key does
1040 * not have a serial number assigned at this point.
1041 * @key points to the key.
1042 * @flags is the allocation flags
1043 * Return 0 if permission is granted, -ve error otherwise.
1044 * @key_free:
1045 * Notification of destruction; free security data.
1046 * @key points to the key.
1047 * No return value.
1048 * @key_permission:
1049 * See whether a specific operational right is granted to a process on a
1050 * key.
1051 * @key_ref refers to the key (key pointer + possession attribute bit).
1052 * @cred points to the credentials to provide the context against which to
1053 * evaluate the security data on the key.
1054 * @perm describes the combination of permissions required of this key.
1055 * Return 0 if permission is granted, -ve error otherwise.
1056 * @key_getsecurity:
1057 * Get a textual representation of the security context attached to a key
1058 * for the purposes of honouring KEYCTL_GETSECURITY. This function
1059 * allocates the storage for the NUL-terminated string and the caller
1060 * should free it.
1061 * @key points to the key to be queried.
1062 * @_buffer points to a pointer that should be set to point to the
1063 * resulting string (if no label or an error occurs).
1064 * Return the length of the string (including terminating NUL) or -ve if
1065 * an error.
1066 * May also return 0 (and a NULL buffer pointer) if there is no label.
1067 *
1068 * Security hooks affecting all System V IPC operations.
1069 *
1070 * @ipc_permission:
1071 * Check permissions for access to IPC
1072 * @ipcp contains the kernel IPC permission structure
1073 * @flag contains the desired (requested) permission set
1074 * Return 0 if permission is granted.
1075 * @ipc_getsecid:
1076 * Get the secid associated with the ipc object.
1077 * @ipcp contains the kernel IPC permission structure.
1078 * @secid contains a pointer to the location where result will be saved.
1079 * In case of failure, @secid will be set to zero.
1080 *
1081 * Security hooks for individual messages held in System V IPC message queues
1082 * @msg_msg_alloc_security:
1083 * Allocate and attach a security structure to the msg->security field.
1084 * The security field is initialized to NULL when the structure is first
1085 * created.
1086 * @msg contains the message structure to be modified.
1087 * Return 0 if operation was successful and permission is granted.
1088 * @msg_msg_free_security:
1089 * Deallocate the security structure for this message.
1090 * @msg contains the message structure to be modified.
1091 *
1092 * Security hooks for System V IPC Message Queues
1093 *
1094 * @msg_queue_alloc_security:
1095 * Allocate and attach a security structure to the
1096 * msq->q_perm.security field. The security field is initialized to
1097 * NULL when the structure is first created.
1098 * @msq contains the message queue structure to be modified.
1099 * Return 0 if operation was successful and permission is granted.
1100 * @msg_queue_free_security:
1101 * Deallocate security structure for this message queue.
1102 * @msq contains the message queue structure to be modified.
1103 * @msg_queue_associate:
1104 * Check permission when a message queue is requested through the
1105 * msgget system call. This hook is only called when returning the
1106 * message queue identifier for an existing message queue, not when a
1107 * new message queue is created.
1108 * @msq contains the message queue to act upon.
1109 * @msqflg contains the operation control flags.
1110 * Return 0 if permission is granted.
1111 * @msg_queue_msgctl:
1112 * Check permission when a message control operation specified by @cmd
1113 * is to be performed on the message queue @msq.
1114 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1115 * @msq contains the message queue to act upon. May be NULL.
1116 * @cmd contains the operation to be performed.
1117 * Return 0 if permission is granted.
1118 * @msg_queue_msgsnd:
1119 * Check permission before a message, @msg, is enqueued on the message
1120 * queue, @msq.
1121 * @msq contains the message queue to send message to.
1122 * @msg contains the message to be enqueued.
1123 * @msqflg contains operational flags.
1124 * Return 0 if permission is granted.
1125 * @msg_queue_msgrcv:
1126 * Check permission before a message, @msg, is removed from the message
1127 * queue, @msq. The @target task structure contains a pointer to the
1128 * process that will be receiving the message (not equal to the current
1129 * process when inline receives are being performed).
1130 * @msq contains the message queue to retrieve message from.
1131 * @msg contains the message destination.
1132 * @target contains the task structure for recipient process.
1133 * @type contains the type of message requested.
1134 * @mode contains the operational flags.
1135 * Return 0 if permission is granted.
1136 *
1137 * Security hooks for System V Shared Memory Segments
1138 *
1139 * @shm_alloc_security:
1140 * Allocate and attach a security structure to the shp->shm_perm.security
1141 * field. The security field is initialized to NULL when the structure is
1142 * first created.
1143 * @shp contains the shared memory structure to be modified.
1144 * Return 0 if operation was successful and permission is granted.
1145 * @shm_free_security:
1146 * Deallocate the security struct for this memory segment.
1147 * @shp contains the shared memory structure to be modified.
1148 * @shm_associate:
1149 * Check permission when a shared memory region is requested through the
1150 * shmget system call. This hook is only called when returning the shared
1151 * memory region identifier for an existing region, not when a new shared
1152 * memory region is created.
1153 * @shp contains the shared memory structure to be modified.
1154 * @shmflg contains the operation control flags.
1155 * Return 0 if permission is granted.
1156 * @shm_shmctl:
1157 * Check permission when a shared memory control operation specified by
1158 * @cmd is to be performed on the shared memory region @shp.
1159 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1160 * @shp contains shared memory structure to be modified.
1161 * @cmd contains the operation to be performed.
1162 * Return 0 if permission is granted.
1163 * @shm_shmat:
1164 * Check permissions prior to allowing the shmat system call to attach the
1165 * shared memory segment @shp to the data segment of the calling process.
1166 * The attaching address is specified by @shmaddr.
1167 * @shp contains the shared memory structure to be modified.
1168 * @shmaddr contains the address to attach memory region to.
1169 * @shmflg contains the operational flags.
1170 * Return 0 if permission is granted.
1171 *
1172 * Security hooks for System V Semaphores
1173 *
1174 * @sem_alloc_security:
1175 * Allocate and attach a security structure to the sma->sem_perm.security
1176 * field. The security field is initialized to NULL when the structure is
1177 * first created.
1178 * @sma contains the semaphore structure
1179 * Return 0 if operation was successful and permission is granted.
1180 * @sem_free_security:
1181 * deallocate security struct for this semaphore
1182 * @sma contains the semaphore structure.
1183 * @sem_associate:
1184 * Check permission when a semaphore is requested through the semget
1185 * system call. This hook is only called when returning the semaphore
1186 * identifier for an existing semaphore, not when a new one must be
1187 * created.
1188 * @sma contains the semaphore structure.
1189 * @semflg contains the operation control flags.
1190 * Return 0 if permission is granted.
1191 * @sem_semctl:
1192 * Check permission when a semaphore operation specified by @cmd is to be
1193 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
1194 * IPC_INFO or SEM_INFO.
1195 * @sma contains the semaphore structure. May be NULL.
1196 * @cmd contains the operation to be performed.
1197 * Return 0 if permission is granted.
f00f85a8 1198 * @sem_semop:
fe7bb272
CS
1199 * Check permissions before performing operations on members of the
1200 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1201 * may be modified.
1202 * @sma contains the semaphore structure.
1203 * @sops contains the operations to perform.
1204 * @nsops contains the number of operations to perform.
1205 * @alter contains the flag indicating whether changes are to be made.
1206 * Return 0 if permission is granted.
1207 *
f00f85a8 1208 * @binder_set_context_mgr:
fe7bb272
CS
1209 * Check whether @mgr is allowed to be the binder context manager.
1210 * @mgr contains the task_struct for the task being registered.
1211 * Return 0 if permission is granted.
f00f85a8 1212 * @binder_transaction:
fe7bb272
CS
1213 * Check whether @from is allowed to invoke a binder transaction call
1214 * to @to.
1215 * @from contains the task_struct for the sending task.
1216 * @to contains the task_struct for the receiving task.
f00f85a8 1217 * @binder_transfer_binder:
fe7bb272
CS
1218 * Check whether @from is allowed to transfer a binder reference to @to.
1219 * @from contains the task_struct for the sending task.
1220 * @to contains the task_struct for the receiving task.
f00f85a8 1221 * @binder_transfer_file:
fe7bb272
CS
1222 * Check whether @from is allowed to transfer @file to @to.
1223 * @from contains the task_struct for the sending task.
1224 * @file contains the struct file being transferred.
1225 * @to contains the task_struct for the receiving task.
1226 *
1227 * @ptrace_access_check:
1228 * Check permission before allowing the current process to trace the
1229 * @child process.
1230 * Security modules may also want to perform a process tracing check
1231 * during an execve in the set_security or apply_creds hooks of
1232 * tracing check during an execve in the bprm_set_creds hook of
1233 * binprm_security_ops if the process is being traced and its security
1234 * attributes would be changed by the execve.
1235 * @child contains the task_struct structure for the target process.
1236 * @mode contains the PTRACE_MODE flags indicating the form of access.
1237 * Return 0 if permission is granted.
1238 * @ptrace_traceme:
1239 * Check that the @parent process has sufficient permission to trace the
1240 * current process before allowing the current process to present itself
1241 * to the @parent process for tracing.
1242 * @parent contains the task_struct structure for debugger process.
1243 * Return 0 if permission is granted.
1244 * @capget:
1245 * Get the @effective, @inheritable, and @permitted capability sets for
1246 * the @target process. The hook may also perform permission checking to
1247 * determine if the current process is allowed to see the capability sets
1248 * of the @target process.
1249 * @target contains the task_struct structure for target process.
1250 * @effective contains the effective capability set.
1251 * @inheritable contains the inheritable capability set.
1252 * @permitted contains the permitted capability set.
1253 * Return 0 if the capability sets were successfully obtained.
1254 * @capset:
1255 * Set the @effective, @inheritable, and @permitted capability sets for
1256 * the current process.
1257 * @new contains the new credentials structure for target process.
1258 * @old contains the current credentials structure for target process.
1259 * @effective contains the effective capability set.
1260 * @inheritable contains the inheritable capability set.
1261 * @permitted contains the permitted capability set.
1262 * Return 0 and update @new if permission is granted.
1263 * @capable:
1264 * Check whether the @tsk process has the @cap capability in the indicated
1265 * credentials.
1266 * @cred contains the credentials to use.
1267 * @ns contains the user namespace we want the capability in
1268 * @cap contains the capability <include/linux/capability.h>.
f00f85a8 1269 * @audit contains whether to write an audit message or not
fe7bb272
CS
1270 * Return 0 if the capability is granted for @tsk.
1271 * @syslog:
1272 * Check permission before accessing the kernel message ring or changing
1273 * logging to the console.
1274 * See the syslog(2) manual page for an explanation of the @type values.
1275 * @type contains the type of action.
1276 * @from_file indicates the context of action (if it came from /proc).
1277 * Return 0 if permission is granted.
1278 * @settime:
1279 * Check permission to change the system time.
457db29b
BW
1280 * struct timespec64 is defined in include/linux/time64.h and timezone
1281 * is defined in include/linux/time.h
fe7bb272
CS
1282 * @ts contains new time
1283 * @tz contains new timezone
1284 * Return 0 if permission is granted.
1285 * @vm_enough_memory:
1286 * Check permissions for allocating a new virtual mapping.
1287 * @mm contains the mm struct it is being added to.
1288 * @pages contains the number of pages.
1289 * Return 0 if permission is granted.
1290 *
1291 * @ismaclabel:
1292 * Check if the extended attribute specified by @name
1293 * represents a MAC label. Returns 1 if name is a MAC
1294 * attribute otherwise returns 0.
1295 * @name full extended attribute name to check against
1296 * LSM as a MAC label.
1297 *
1298 * @secid_to_secctx:
1299 * Convert secid to security context. If secdata is NULL the length of
1300 * the result will be returned in seclen, but no secdata will be returned.
1301 * This does mean that the length could change between calls to check the
1302 * length and the next call which actually allocates and returns the
1303 * secdata.
1304 * @secid contains the security ID.
1305 * @secdata contains the pointer that stores the converted security
1306 * context.
1307 * @seclen pointer which contains the length of the data
1308 * @secctx_to_secid:
1309 * Convert security context to secid.
1310 * @secid contains the pointer to the generated security ID.
1311 * @secdata contains the security context.
1312 *
1313 * @release_secctx:
1314 * Release the security context.
1315 * @secdata contains the security context.
1316 * @seclen contains the length of the security context.
1317 *
1318 * Security hooks for Audit
1319 *
1320 * @audit_rule_init:
1321 * Allocate and initialize an LSM audit rule structure.
1322 * @field contains the required Audit action.
1323 * Fields flags are defined in include/linux/audit.h
1324 * @op contains the operator the rule uses.
1325 * @rulestr contains the context where the rule will be applied to.
1326 * @lsmrule contains a pointer to receive the result.
1327 * Return 0 if @lsmrule has been successfully set,
1328 * -EINVAL in case of an invalid rule.
1329 *
1330 * @audit_rule_known:
1331 * Specifies whether given @rule contains any fields related to
1332 * current LSM.
1333 * @rule contains the audit rule of interest.
1334 * Return 1 in case of relation found, 0 otherwise.
1335 *
1336 * @audit_rule_match:
1337 * Determine if given @secid matches a rule previously approved
1338 * by @audit_rule_known.
1339 * @secid contains the security id in question.
1340 * @field contains the field which relates to current LSM.
1341 * @op contains the operator that will be used for matching.
1342 * @rule points to the audit rule that will be checked against.
1343 * @actx points to the audit context associated with the check.
1344 * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1345 *
1346 * @audit_rule_free:
1347 * Deallocate the LSM audit rule structure previously allocated by
1348 * audit_rule_init.
1349 * @rule contains the allocated rule
1350 *
6f3be9f5
AG
1351 * @inode_invalidate_secctx:
1352 * Notify the security module that it must revalidate the security context
1353 * of an inode.
1354 *
fe7bb272
CS
1355 * @inode_notifysecctx:
1356 * Notify the security module of what the security context of an inode
1357 * should be. Initializes the incore security context managed by the
1358 * security module for this inode. Example usage: NFS client invokes
1359 * this hook to initialize the security context in its incore inode to the
1360 * value provided by the server for the file when the server returned the
1361 * file's attributes to the client.
1362 *
1363 * Must be called with inode->i_mutex locked.
1364 *
1365 * @inode we wish to set the security context of.
1366 * @ctx contains the string which we wish to set in the inode.
1367 * @ctxlen contains the length of @ctx.
1368 *
1369 * @inode_setsecctx:
1370 * Change the security context of an inode. Updates the
1371 * incore security context managed by the security module and invokes the
1372 * fs code as needed (via __vfs_setxattr_noperm) to update any backing
1373 * xattrs that represent the context. Example usage: NFS server invokes
1374 * this hook to change the security context in its incore inode and on the
1375 * backing filesystem to a value provided by the client on a SETATTR
1376 * operation.
1377 *
1378 * Must be called with inode->i_mutex locked.
1379 *
1380 * @dentry contains the inode we wish to set the security context of.
1381 * @ctx contains the string which we wish to set in the inode.
1382 * @ctxlen contains the length of @ctx.
1383 *
1384 * @inode_getsecctx:
1385 * On success, returns 0 and fills out @ctx and @ctxlen with the security
1386 * context for the given @inode.
1387 *
1388 * @inode we wish to get the security context of.
1389 * @ctx is a pointer in which to place the allocated security context.
1390 * @ctxlen points to the place to put the length of @ctx.
afdb09c7
CF
1391 *
1392 * Security hooks for using the eBPF maps and programs functionalities through
1393 * eBPF syscalls.
1394 *
1395 * @bpf:
1396 * Do a initial check for all bpf syscalls after the attribute is copied
1397 * into the kernel. The actual security module can implement their own
1398 * rules to check the specific cmd they need.
1399 *
1400 * @bpf_map:
1401 * Do a check when the kernel generate and return a file descriptor for
1402 * eBPF maps.
1403 *
1404 * @map: bpf map that we want to access
1405 * @mask: the access flags
1406 *
1407 * @bpf_prog:
1408 * Do a check when the kernel generate and return a file descriptor for
1409 * eBPF programs.
1410 *
1411 * @prog: bpf prog that userspace want to use.
1412 *
1413 * @bpf_map_alloc_security:
1414 * Initialize the security field inside bpf map.
1415 *
1416 * @bpf_map_free_security:
1417 * Clean up the security information stored inside bpf map.
1418 *
1419 * @bpf_prog_alloc_security:
1420 * Initialize the security field inside bpf program.
1421 *
1422 * @bpf_prog_free_security:
1423 * Clean up the security information stored inside bpf prog.
1424 *
fe7bb272 1425 */
b1d9e6b0 1426union security_list_options {
3c4ed7bd
CS
1427 int (*binder_set_context_mgr)(struct task_struct *mgr);
1428 int (*binder_transaction)(struct task_struct *from,
1429 struct task_struct *to);
1430 int (*binder_transfer_binder)(struct task_struct *from,
1431 struct task_struct *to);
1432 int (*binder_transfer_file)(struct task_struct *from,
1433 struct task_struct *to,
1434 struct file *file);
1435
1436 int (*ptrace_access_check)(struct task_struct *child,
1437 unsigned int mode);
1438 int (*ptrace_traceme)(struct task_struct *parent);
1439 int (*capget)(struct task_struct *target, kernel_cap_t *effective,
1440 kernel_cap_t *inheritable, kernel_cap_t *permitted);
1441 int (*capset)(struct cred *new, const struct cred *old,
1442 const kernel_cap_t *effective,
1443 const kernel_cap_t *inheritable,
1444 const kernel_cap_t *permitted);
1445 int (*capable)(const struct cred *cred, struct user_namespace *ns,
1446 int cap, int audit);
1447 int (*quotactl)(int cmds, int type, int id, struct super_block *sb);
1448 int (*quota_on)(struct dentry *dentry);
1449 int (*syslog)(int type);
457db29b 1450 int (*settime)(const struct timespec64 *ts, const struct timezone *tz);
3c4ed7bd
CS
1451 int (*vm_enough_memory)(struct mm_struct *mm, long pages);
1452
1453 int (*bprm_set_creds)(struct linux_binprm *bprm);
1454 int (*bprm_check_security)(struct linux_binprm *bprm);
3c4ed7bd
CS
1455 void (*bprm_committing_creds)(struct linux_binprm *bprm);
1456 void (*bprm_committed_creds)(struct linux_binprm *bprm);
1457
1458 int (*sb_alloc_security)(struct super_block *sb);
1459 void (*sb_free_security)(struct super_block *sb);
1460 int (*sb_copy_data)(char *orig, char *copy);
1461 int (*sb_remount)(struct super_block *sb, void *data);
1462 int (*sb_kern_mount)(struct super_block *sb, int flags, void *data);
1463 int (*sb_show_options)(struct seq_file *m, struct super_block *sb);
1464 int (*sb_statfs)(struct dentry *dentry);
8a04c43b 1465 int (*sb_mount)(const char *dev_name, const struct path *path,
3c4ed7bd
CS
1466 const char *type, unsigned long flags, void *data);
1467 int (*sb_umount)(struct vfsmount *mnt, int flags);
3b73b68c 1468 int (*sb_pivotroot)(const struct path *old_path, const struct path *new_path);
3c4ed7bd
CS
1469 int (*sb_set_mnt_opts)(struct super_block *sb,
1470 struct security_mnt_opts *opts,
1471 unsigned long kern_flags,
1472 unsigned long *set_kern_flags);
1473 int (*sb_clone_mnt_opts)(const struct super_block *oldsb,
0b4d3452
SM
1474 struct super_block *newsb,
1475 unsigned long kern_flags,
1476 unsigned long *set_kern_flags);
3c4ed7bd
CS
1477 int (*sb_parse_opts_str)(char *options, struct security_mnt_opts *opts);
1478 int (*dentry_init_security)(struct dentry *dentry, int mode,
4f3ccd76 1479 const struct qstr *name, void **ctx,
3c4ed7bd 1480 u32 *ctxlen);
2602625b
VG
1481 int (*dentry_create_files_as)(struct dentry *dentry, int mode,
1482 struct qstr *name,
1483 const struct cred *old,
1484 struct cred *new);
3c4ed7bd
CS
1485
1486
1487#ifdef CONFIG_SECURITY_PATH
989f74e0 1488 int (*path_unlink)(const struct path *dir, struct dentry *dentry);
d3607752 1489 int (*path_mkdir)(const struct path *dir, struct dentry *dentry,
3c4ed7bd 1490 umode_t mode);
989f74e0 1491 int (*path_rmdir)(const struct path *dir, struct dentry *dentry);
d3607752 1492 int (*path_mknod)(const struct path *dir, struct dentry *dentry,
3c4ed7bd 1493 umode_t mode, unsigned int dev);
81f4c506 1494 int (*path_truncate)(const struct path *path);
d3607752 1495 int (*path_symlink)(const struct path *dir, struct dentry *dentry,
3c4ed7bd 1496 const char *old_name);
3ccee46a 1497 int (*path_link)(struct dentry *old_dentry, const struct path *new_dir,
3c4ed7bd 1498 struct dentry *new_dentry);
3ccee46a
AV
1499 int (*path_rename)(const struct path *old_dir, struct dentry *old_dentry,
1500 const struct path *new_dir,
3c4ed7bd 1501 struct dentry *new_dentry);
be01f9f2 1502 int (*path_chmod)(const struct path *path, umode_t mode);
7fd25dac 1503 int (*path_chown)(const struct path *path, kuid_t uid, kgid_t gid);
77b286c0 1504 int (*path_chroot)(const struct path *path);
3c4ed7bd
CS
1505#endif
1506
1507 int (*inode_alloc_security)(struct inode *inode);
1508 void (*inode_free_security)(struct inode *inode);
1509 int (*inode_init_security)(struct inode *inode, struct inode *dir,
1510 const struct qstr *qstr,
1511 const char **name, void **value,
1512 size_t *len);
1513 int (*inode_create)(struct inode *dir, struct dentry *dentry,
1514 umode_t mode);
1515 int (*inode_link)(struct dentry *old_dentry, struct inode *dir,
1516 struct dentry *new_dentry);
1517 int (*inode_unlink)(struct inode *dir, struct dentry *dentry);
1518 int (*inode_symlink)(struct inode *dir, struct dentry *dentry,
1519 const char *old_name);
1520 int (*inode_mkdir)(struct inode *dir, struct dentry *dentry,
1521 umode_t mode);
1522 int (*inode_rmdir)(struct inode *dir, struct dentry *dentry);
1523 int (*inode_mknod)(struct inode *dir, struct dentry *dentry,
1524 umode_t mode, dev_t dev);
1525 int (*inode_rename)(struct inode *old_dir, struct dentry *old_dentry,
1526 struct inode *new_dir,
1527 struct dentry *new_dentry);
1528 int (*inode_readlink)(struct dentry *dentry);
e22619a2
LT
1529 int (*inode_follow_link)(struct dentry *dentry, struct inode *inode,
1530 bool rcu);
3c4ed7bd
CS
1531 int (*inode_permission)(struct inode *inode, int mask);
1532 int (*inode_setattr)(struct dentry *dentry, struct iattr *attr);
1533 int (*inode_getattr)(const struct path *path);
1534 int (*inode_setxattr)(struct dentry *dentry, const char *name,
1535 const void *value, size_t size, int flags);
1536 void (*inode_post_setxattr)(struct dentry *dentry, const char *name,
1537 const void *value, size_t size,
1538 int flags);
1539 int (*inode_getxattr)(struct dentry *dentry, const char *name);
1540 int (*inode_listxattr)(struct dentry *dentry);
1541 int (*inode_removexattr)(struct dentry *dentry, const char *name);
1542 int (*inode_need_killpriv)(struct dentry *dentry);
1543 int (*inode_killpriv)(struct dentry *dentry);
ea861dfd 1544 int (*inode_getsecurity)(struct inode *inode, const char *name,
3c4ed7bd
CS
1545 void **buffer, bool alloc);
1546 int (*inode_setsecurity)(struct inode *inode, const char *name,
1547 const void *value, size_t size,
1548 int flags);
1549 int (*inode_listsecurity)(struct inode *inode, char *buffer,
1550 size_t buffer_size);
d6335d77 1551 void (*inode_getsecid)(struct inode *inode, u32 *secid);
d8ad8b49 1552 int (*inode_copy_up)(struct dentry *src, struct cred **new);
121ab822 1553 int (*inode_copy_up_xattr)(const char *name);
3c4ed7bd
CS
1554
1555 int (*file_permission)(struct file *file, int mask);
1556 int (*file_alloc_security)(struct file *file);
1557 void (*file_free_security)(struct file *file);
1558 int (*file_ioctl)(struct file *file, unsigned int cmd,
1559 unsigned long arg);
1560 int (*mmap_addr)(unsigned long addr);
1561 int (*mmap_file)(struct file *file, unsigned long reqprot,
1562 unsigned long prot, unsigned long flags);
1563 int (*file_mprotect)(struct vm_area_struct *vma, unsigned long reqprot,
1564 unsigned long prot);
1565 int (*file_lock)(struct file *file, unsigned int cmd);
1566 int (*file_fcntl)(struct file *file, unsigned int cmd,
1567 unsigned long arg);
1568 void (*file_set_fowner)(struct file *file);
1569 int (*file_send_sigiotask)(struct task_struct *tsk,
1570 struct fown_struct *fown, int sig);
1571 int (*file_receive)(struct file *file);
1572 int (*file_open)(struct file *file, const struct cred *cred);
1573
e4e55b47 1574 int (*task_alloc)(struct task_struct *task, unsigned long clone_flags);
3c4ed7bd
CS
1575 void (*task_free)(struct task_struct *task);
1576 int (*cred_alloc_blank)(struct cred *cred, gfp_t gfp);
1577 void (*cred_free)(struct cred *cred);
1578 int (*cred_prepare)(struct cred *new, const struct cred *old,
1579 gfp_t gfp);
1580 void (*cred_transfer)(struct cred *new, const struct cred *old);
3ec30113 1581 void (*cred_getsecid)(const struct cred *c, u32 *secid);
3c4ed7bd
CS
1582 int (*kernel_act_as)(struct cred *new, u32 secid);
1583 int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
3c4ed7bd 1584 int (*kernel_module_request)(char *kmod_name);
39eeb4fb 1585 int (*kernel_read_file)(struct file *file, enum kernel_read_file_id id);
bc8ca5b9
MZ
1586 int (*kernel_post_read_file)(struct file *file, char *buf, loff_t size,
1587 enum kernel_read_file_id id);
3c4ed7bd
CS
1588 int (*task_fix_setuid)(struct cred *new, const struct cred *old,
1589 int flags);
1590 int (*task_setpgid)(struct task_struct *p, pid_t pgid);
1591 int (*task_getpgid)(struct task_struct *p);
1592 int (*task_getsid)(struct task_struct *p);
1593 void (*task_getsecid)(struct task_struct *p, u32 *secid);
1594 int (*task_setnice)(struct task_struct *p, int nice);
1595 int (*task_setioprio)(struct task_struct *p, int ioprio);
1596 int (*task_getioprio)(struct task_struct *p);
791ec491
SS
1597 int (*task_prlimit)(const struct cred *cred, const struct cred *tcred,
1598 unsigned int flags);
3c4ed7bd
CS
1599 int (*task_setrlimit)(struct task_struct *p, unsigned int resource,
1600 struct rlimit *new_rlim);
1601 int (*task_setscheduler)(struct task_struct *p);
1602 int (*task_getscheduler)(struct task_struct *p);
1603 int (*task_movememory)(struct task_struct *p);
1604 int (*task_kill)(struct task_struct *p, struct siginfo *info,
6b4f3d01 1605 int sig, const struct cred *cred);
3c4ed7bd
CS
1606 int (*task_prctl)(int option, unsigned long arg2, unsigned long arg3,
1607 unsigned long arg4, unsigned long arg5);
1608 void (*task_to_inode)(struct task_struct *p, struct inode *inode);
1609
1610 int (*ipc_permission)(struct kern_ipc_perm *ipcp, short flag);
1611 void (*ipc_getsecid)(struct kern_ipc_perm *ipcp, u32 *secid);
1612
1613 int (*msg_msg_alloc_security)(struct msg_msg *msg);
1614 void (*msg_msg_free_security)(struct msg_msg *msg);
1615
d8c6e854
EB
1616 int (*msg_queue_alloc_security)(struct kern_ipc_perm *msq);
1617 void (*msg_queue_free_security)(struct kern_ipc_perm *msq);
1618 int (*msg_queue_associate)(struct kern_ipc_perm *msq, int msqflg);
1619 int (*msg_queue_msgctl)(struct kern_ipc_perm *msq, int cmd);
1620 int (*msg_queue_msgsnd)(struct kern_ipc_perm *msq, struct msg_msg *msg,
3c4ed7bd 1621 int msqflg);
d8c6e854 1622 int (*msg_queue_msgrcv)(struct kern_ipc_perm *msq, struct msg_msg *msg,
3c4ed7bd
CS
1623 struct task_struct *target, long type,
1624 int mode);
1625
7191adff
EB
1626 int (*shm_alloc_security)(struct kern_ipc_perm *shp);
1627 void (*shm_free_security)(struct kern_ipc_perm *shp);
1628 int (*shm_associate)(struct kern_ipc_perm *shp, int shmflg);
1629 int (*shm_shmctl)(struct kern_ipc_perm *shp, int cmd);
1630 int (*shm_shmat)(struct kern_ipc_perm *shp, char __user *shmaddr,
3c4ed7bd
CS
1631 int shmflg);
1632
aefad959
EB
1633 int (*sem_alloc_security)(struct kern_ipc_perm *sma);
1634 void (*sem_free_security)(struct kern_ipc_perm *sma);
1635 int (*sem_associate)(struct kern_ipc_perm *sma, int semflg);
1636 int (*sem_semctl)(struct kern_ipc_perm *sma, int cmd);
1637 int (*sem_semop)(struct kern_ipc_perm *sma, struct sembuf *sops,
3c4ed7bd
CS
1638 unsigned nsops, int alter);
1639
1640 int (*netlink_send)(struct sock *sk, struct sk_buff *skb);
1641
1642 void (*d_instantiate)(struct dentry *dentry, struct inode *inode);
1643
1644 int (*getprocattr)(struct task_struct *p, char *name, char **value);
b21507e2 1645 int (*setprocattr)(const char *name, void *value, size_t size);
3c4ed7bd
CS
1646 int (*ismaclabel)(const char *name);
1647 int (*secid_to_secctx)(u32 secid, char **secdata, u32 *seclen);
1648 int (*secctx_to_secid)(const char *secdata, u32 seclen, u32 *secid);
1649 void (*release_secctx)(char *secdata, u32 seclen);
1650
6f3be9f5 1651 void (*inode_invalidate_secctx)(struct inode *inode);
3c4ed7bd
CS
1652 int (*inode_notifysecctx)(struct inode *inode, void *ctx, u32 ctxlen);
1653 int (*inode_setsecctx)(struct dentry *dentry, void *ctx, u32 ctxlen);
1654 int (*inode_getsecctx)(struct inode *inode, void **ctx, u32 *ctxlen);
1655
1656#ifdef CONFIG_SECURITY_NETWORK
1657 int (*unix_stream_connect)(struct sock *sock, struct sock *other,
1658 struct sock *newsk);
1659 int (*unix_may_send)(struct socket *sock, struct socket *other);
1660
1661 int (*socket_create)(int family, int type, int protocol, int kern);
1662 int (*socket_post_create)(struct socket *sock, int family, int type,
1663 int protocol, int kern);
aae7cfcb 1664 int (*socket_socketpair)(struct socket *socka, struct socket *sockb);
3c4ed7bd
CS
1665 int (*socket_bind)(struct socket *sock, struct sockaddr *address,
1666 int addrlen);
1667 int (*socket_connect)(struct socket *sock, struct sockaddr *address,
1668 int addrlen);
1669 int (*socket_listen)(struct socket *sock, int backlog);
1670 int (*socket_accept)(struct socket *sock, struct socket *newsock);
1671 int (*socket_sendmsg)(struct socket *sock, struct msghdr *msg,
1672 int size);
1673 int (*socket_recvmsg)(struct socket *sock, struct msghdr *msg,
1674 int size, int flags);
1675 int (*socket_getsockname)(struct socket *sock);
1676 int (*socket_getpeername)(struct socket *sock);
1677 int (*socket_getsockopt)(struct socket *sock, int level, int optname);
1678 int (*socket_setsockopt)(struct socket *sock, int level, int optname);
1679 int (*socket_shutdown)(struct socket *sock, int how);
1680 int (*socket_sock_rcv_skb)(struct sock *sk, struct sk_buff *skb);
1681 int (*socket_getpeersec_stream)(struct socket *sock,
1682 char __user *optval,
1683 int __user *optlen, unsigned len);
1684 int (*socket_getpeersec_dgram)(struct socket *sock,
1685 struct sk_buff *skb, u32 *secid);
1686 int (*sk_alloc_security)(struct sock *sk, int family, gfp_t priority);
1687 void (*sk_free_security)(struct sock *sk);
1688 void (*sk_clone_security)(const struct sock *sk, struct sock *newsk);
1689 void (*sk_getsecid)(struct sock *sk, u32 *secid);
1690 void (*sock_graft)(struct sock *sk, struct socket *parent);
1691 int (*inet_conn_request)(struct sock *sk, struct sk_buff *skb,
1692 struct request_sock *req);
1693 void (*inet_csk_clone)(struct sock *newsk,
1694 const struct request_sock *req);
1695 void (*inet_conn_established)(struct sock *sk, struct sk_buff *skb);
1696 int (*secmark_relabel_packet)(u32 secid);
1697 void (*secmark_refcount_inc)(void);
1698 void (*secmark_refcount_dec)(void);
1699 void (*req_classify_flow)(const struct request_sock *req,
1700 struct flowi *fl);
1701 int (*tun_dev_alloc_security)(void **security);
1702 void (*tun_dev_free_security)(void *security);
1703 int (*tun_dev_create)(void);
1704 int (*tun_dev_attach_queue)(void *security);
1705 int (*tun_dev_attach)(struct sock *sk, void *security);
1706 int (*tun_dev_open)(void *security);
72e89f50
RH
1707 int (*sctp_assoc_request)(struct sctp_endpoint *ep,
1708 struct sk_buff *skb);
1709 int (*sctp_bind_connect)(struct sock *sk, int optname,
1710 struct sockaddr *address, int addrlen);
1711 void (*sctp_sk_clone)(struct sctp_endpoint *ep, struct sock *sk,
1712 struct sock *newsk);
3c4ed7bd
CS
1713#endif /* CONFIG_SECURITY_NETWORK */
1714
d291f1a6
DJ
1715#ifdef CONFIG_SECURITY_INFINIBAND
1716 int (*ib_pkey_access)(void *sec, u64 subnet_prefix, u16 pkey);
47a2b338
DJ
1717 int (*ib_endport_manage_subnet)(void *sec, const char *dev_name,
1718 u8 port_num);
d291f1a6
DJ
1719 int (*ib_alloc_security)(void **sec);
1720 void (*ib_free_security)(void *sec);
1721#endif /* CONFIG_SECURITY_INFINIBAND */
1722
3c4ed7bd
CS
1723#ifdef CONFIG_SECURITY_NETWORK_XFRM
1724 int (*xfrm_policy_alloc_security)(struct xfrm_sec_ctx **ctxp,
1725 struct xfrm_user_sec_ctx *sec_ctx,
1726 gfp_t gfp);
1727 int (*xfrm_policy_clone_security)(struct xfrm_sec_ctx *old_ctx,
1728 struct xfrm_sec_ctx **new_ctx);
1729 void (*xfrm_policy_free_security)(struct xfrm_sec_ctx *ctx);
1730 int (*xfrm_policy_delete_security)(struct xfrm_sec_ctx *ctx);
1731 int (*xfrm_state_alloc)(struct xfrm_state *x,
1732 struct xfrm_user_sec_ctx *sec_ctx);
1733 int (*xfrm_state_alloc_acquire)(struct xfrm_state *x,
1734 struct xfrm_sec_ctx *polsec,
1735 u32 secid);
1736 void (*xfrm_state_free_security)(struct xfrm_state *x);
1737 int (*xfrm_state_delete_security)(struct xfrm_state *x);
1738 int (*xfrm_policy_lookup)(struct xfrm_sec_ctx *ctx, u32 fl_secid,
1739 u8 dir);
1740 int (*xfrm_state_pol_flow_match)(struct xfrm_state *x,
1741 struct xfrm_policy *xp,
1742 const struct flowi *fl);
1743 int (*xfrm_decode_session)(struct sk_buff *skb, u32 *secid, int ckall);
1744#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1745
1746 /* key management security hooks */
1747#ifdef CONFIG_KEYS
1748 int (*key_alloc)(struct key *key, const struct cred *cred,
1749 unsigned long flags);
1750 void (*key_free)(struct key *key);
1751 int (*key_permission)(key_ref_t key_ref, const struct cred *cred,
1752 unsigned perm);
1753 int (*key_getsecurity)(struct key *key, char **_buffer);
1754#endif /* CONFIG_KEYS */
1755
1756#ifdef CONFIG_AUDIT
1757 int (*audit_rule_init)(u32 field, u32 op, char *rulestr,
1758 void **lsmrule);
1759 int (*audit_rule_known)(struct audit_krule *krule);
1760 int (*audit_rule_match)(u32 secid, u32 field, u32 op, void *lsmrule,
1761 struct audit_context *actx);
1762 void (*audit_rule_free)(void *lsmrule);
1763#endif /* CONFIG_AUDIT */
afdb09c7
CF
1764
1765#ifdef CONFIG_BPF_SYSCALL
1766 int (*bpf)(int cmd, union bpf_attr *attr,
1767 unsigned int size);
1768 int (*bpf_map)(struct bpf_map *map, fmode_t fmode);
1769 int (*bpf_prog)(struct bpf_prog *prog);
1770 int (*bpf_map_alloc_security)(struct bpf_map *map);
1771 void (*bpf_map_free_security)(struct bpf_map *map);
1772 int (*bpf_prog_alloc_security)(struct bpf_prog_aux *aux);
1773 void (*bpf_prog_free_security)(struct bpf_prog_aux *aux);
1774#endif /* CONFIG_BPF_SYSCALL */
3c4ed7bd
CS
1775};
1776
e20b043a 1777struct security_hook_heads {
df0ce173
SD
1778 struct hlist_head binder_set_context_mgr;
1779 struct hlist_head binder_transaction;
1780 struct hlist_head binder_transfer_binder;
1781 struct hlist_head binder_transfer_file;
1782 struct hlist_head ptrace_access_check;
1783 struct hlist_head ptrace_traceme;
1784 struct hlist_head capget;
1785 struct hlist_head capset;
1786 struct hlist_head capable;
1787 struct hlist_head quotactl;
1788 struct hlist_head quota_on;
1789 struct hlist_head syslog;
1790 struct hlist_head settime;
1791 struct hlist_head vm_enough_memory;
1792 struct hlist_head bprm_set_creds;
1793 struct hlist_head bprm_check_security;
1794 struct hlist_head bprm_committing_creds;
1795 struct hlist_head bprm_committed_creds;
1796 struct hlist_head sb_alloc_security;
1797 struct hlist_head sb_free_security;
1798 struct hlist_head sb_copy_data;
1799 struct hlist_head sb_remount;
1800 struct hlist_head sb_kern_mount;
1801 struct hlist_head sb_show_options;
1802 struct hlist_head sb_statfs;
1803 struct hlist_head sb_mount;
1804 struct hlist_head sb_umount;
1805 struct hlist_head sb_pivotroot;
1806 struct hlist_head sb_set_mnt_opts;
1807 struct hlist_head sb_clone_mnt_opts;
1808 struct hlist_head sb_parse_opts_str;
1809 struct hlist_head dentry_init_security;
1810 struct hlist_head dentry_create_files_as;
e20b043a 1811#ifdef CONFIG_SECURITY_PATH
df0ce173
SD
1812 struct hlist_head path_unlink;
1813 struct hlist_head path_mkdir;
1814 struct hlist_head path_rmdir;
1815 struct hlist_head path_mknod;
1816 struct hlist_head path_truncate;
1817 struct hlist_head path_symlink;
1818 struct hlist_head path_link;
1819 struct hlist_head path_rename;
1820 struct hlist_head path_chmod;
1821 struct hlist_head path_chown;
1822 struct hlist_head path_chroot;
e20b043a 1823#endif
df0ce173
SD
1824 struct hlist_head inode_alloc_security;
1825 struct hlist_head inode_free_security;
1826 struct hlist_head inode_init_security;
1827 struct hlist_head inode_create;
1828 struct hlist_head inode_link;
1829 struct hlist_head inode_unlink;
1830 struct hlist_head inode_symlink;
1831 struct hlist_head inode_mkdir;
1832 struct hlist_head inode_rmdir;
1833 struct hlist_head inode_mknod;
1834 struct hlist_head inode_rename;
1835 struct hlist_head inode_readlink;
1836 struct hlist_head inode_follow_link;
1837 struct hlist_head inode_permission;
1838 struct hlist_head inode_setattr;
1839 struct hlist_head inode_getattr;
1840 struct hlist_head inode_setxattr;
1841 struct hlist_head inode_post_setxattr;
1842 struct hlist_head inode_getxattr;
1843 struct hlist_head inode_listxattr;
1844 struct hlist_head inode_removexattr;
1845 struct hlist_head inode_need_killpriv;
1846 struct hlist_head inode_killpriv;
1847 struct hlist_head inode_getsecurity;
1848 struct hlist_head inode_setsecurity;
1849 struct hlist_head inode_listsecurity;
1850 struct hlist_head inode_getsecid;
1851 struct hlist_head inode_copy_up;
1852 struct hlist_head inode_copy_up_xattr;
1853 struct hlist_head file_permission;
1854 struct hlist_head file_alloc_security;
1855 struct hlist_head file_free_security;
1856 struct hlist_head file_ioctl;
1857 struct hlist_head mmap_addr;
1858 struct hlist_head mmap_file;
1859 struct hlist_head file_mprotect;
1860 struct hlist_head file_lock;
1861 struct hlist_head file_fcntl;
1862 struct hlist_head file_set_fowner;
1863 struct hlist_head file_send_sigiotask;
1864 struct hlist_head file_receive;
1865 struct hlist_head file_open;
1866 struct hlist_head task_alloc;
1867 struct hlist_head task_free;
1868 struct hlist_head cred_alloc_blank;
1869 struct hlist_head cred_free;
1870 struct hlist_head cred_prepare;
1871 struct hlist_head cred_transfer;
f8cf2f16 1872 struct hlist_head cred_getsecid;
df0ce173
SD
1873 struct hlist_head kernel_act_as;
1874 struct hlist_head kernel_create_files_as;
1875 struct hlist_head kernel_read_file;
1876 struct hlist_head kernel_post_read_file;
1877 struct hlist_head kernel_module_request;
1878 struct hlist_head task_fix_setuid;
1879 struct hlist_head task_setpgid;
1880 struct hlist_head task_getpgid;
1881 struct hlist_head task_getsid;
1882 struct hlist_head task_getsecid;
1883 struct hlist_head task_setnice;
1884 struct hlist_head task_setioprio;
1885 struct hlist_head task_getioprio;
1886 struct hlist_head task_prlimit;
1887 struct hlist_head task_setrlimit;
1888 struct hlist_head task_setscheduler;
1889 struct hlist_head task_getscheduler;
1890 struct hlist_head task_movememory;
1891 struct hlist_head task_kill;
1892 struct hlist_head task_prctl;
1893 struct hlist_head task_to_inode;
1894 struct hlist_head ipc_permission;
1895 struct hlist_head ipc_getsecid;
1896 struct hlist_head msg_msg_alloc_security;
1897 struct hlist_head msg_msg_free_security;
1898 struct hlist_head msg_queue_alloc_security;
1899 struct hlist_head msg_queue_free_security;
1900 struct hlist_head msg_queue_associate;
1901 struct hlist_head msg_queue_msgctl;
1902 struct hlist_head msg_queue_msgsnd;
1903 struct hlist_head msg_queue_msgrcv;
1904 struct hlist_head shm_alloc_security;
1905 struct hlist_head shm_free_security;
1906 struct hlist_head shm_associate;
1907 struct hlist_head shm_shmctl;
1908 struct hlist_head shm_shmat;
1909 struct hlist_head sem_alloc_security;
1910 struct hlist_head sem_free_security;
1911 struct hlist_head sem_associate;
1912 struct hlist_head sem_semctl;
1913 struct hlist_head sem_semop;
1914 struct hlist_head netlink_send;
1915 struct hlist_head d_instantiate;
1916 struct hlist_head getprocattr;
1917 struct hlist_head setprocattr;
1918 struct hlist_head ismaclabel;
1919 struct hlist_head secid_to_secctx;
1920 struct hlist_head secctx_to_secid;
1921 struct hlist_head release_secctx;
1922 struct hlist_head inode_invalidate_secctx;
1923 struct hlist_head inode_notifysecctx;
1924 struct hlist_head inode_setsecctx;
1925 struct hlist_head inode_getsecctx;
e20b043a 1926#ifdef CONFIG_SECURITY_NETWORK
df0ce173
SD
1927 struct hlist_head unix_stream_connect;
1928 struct hlist_head unix_may_send;
1929 struct hlist_head socket_create;
1930 struct hlist_head socket_post_create;
aae7cfcb 1931 struct hlist_head socket_socketpair;
df0ce173
SD
1932 struct hlist_head socket_bind;
1933 struct hlist_head socket_connect;
1934 struct hlist_head socket_listen;
1935 struct hlist_head socket_accept;
1936 struct hlist_head socket_sendmsg;
1937 struct hlist_head socket_recvmsg;
1938 struct hlist_head socket_getsockname;
1939 struct hlist_head socket_getpeername;
1940 struct hlist_head socket_getsockopt;
1941 struct hlist_head socket_setsockopt;
1942 struct hlist_head socket_shutdown;
1943 struct hlist_head socket_sock_rcv_skb;
1944 struct hlist_head socket_getpeersec_stream;
1945 struct hlist_head socket_getpeersec_dgram;
1946 struct hlist_head sk_alloc_security;
1947 struct hlist_head sk_free_security;
1948 struct hlist_head sk_clone_security;
1949 struct hlist_head sk_getsecid;
1950 struct hlist_head sock_graft;
1951 struct hlist_head inet_conn_request;
1952 struct hlist_head inet_csk_clone;
1953 struct hlist_head inet_conn_established;
1954 struct hlist_head secmark_relabel_packet;
1955 struct hlist_head secmark_refcount_inc;
1956 struct hlist_head secmark_refcount_dec;
1957 struct hlist_head req_classify_flow;
1958 struct hlist_head tun_dev_alloc_security;
1959 struct hlist_head tun_dev_free_security;
1960 struct hlist_head tun_dev_create;
1961 struct hlist_head tun_dev_attach_queue;
1962 struct hlist_head tun_dev_attach;
1963 struct hlist_head tun_dev_open;
3612605a
LT
1964 struct hlist_head sctp_assoc_request;
1965 struct hlist_head sctp_bind_connect;
1966 struct hlist_head sctp_sk_clone;
e20b043a 1967#endif /* CONFIG_SECURITY_NETWORK */
d291f1a6 1968#ifdef CONFIG_SECURITY_INFINIBAND
df0ce173
SD
1969 struct hlist_head ib_pkey_access;
1970 struct hlist_head ib_endport_manage_subnet;
1971 struct hlist_head ib_alloc_security;
1972 struct hlist_head ib_free_security;
d291f1a6 1973#endif /* CONFIG_SECURITY_INFINIBAND */
e20b043a 1974#ifdef CONFIG_SECURITY_NETWORK_XFRM
df0ce173
SD
1975 struct hlist_head xfrm_policy_alloc_security;
1976 struct hlist_head xfrm_policy_clone_security;
1977 struct hlist_head xfrm_policy_free_security;
1978 struct hlist_head xfrm_policy_delete_security;
1979 struct hlist_head xfrm_state_alloc;
1980 struct hlist_head xfrm_state_alloc_acquire;
1981 struct hlist_head xfrm_state_free_security;
1982 struct hlist_head xfrm_state_delete_security;
1983 struct hlist_head xfrm_policy_lookup;
1984 struct hlist_head xfrm_state_pol_flow_match;
1985 struct hlist_head xfrm_decode_session;
e20b043a
CS
1986#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1987#ifdef CONFIG_KEYS
df0ce173
SD
1988 struct hlist_head key_alloc;
1989 struct hlist_head key_free;
1990 struct hlist_head key_permission;
1991 struct hlist_head key_getsecurity;
e20b043a
CS
1992#endif /* CONFIG_KEYS */
1993#ifdef CONFIG_AUDIT
df0ce173
SD
1994 struct hlist_head audit_rule_init;
1995 struct hlist_head audit_rule_known;
1996 struct hlist_head audit_rule_match;
1997 struct hlist_head audit_rule_free;
e20b043a 1998#endif /* CONFIG_AUDIT */
afdb09c7 1999#ifdef CONFIG_BPF_SYSCALL
df0ce173
SD
2000 struct hlist_head bpf;
2001 struct hlist_head bpf_map;
2002 struct hlist_head bpf_prog;
2003 struct hlist_head bpf_map_alloc_security;
2004 struct hlist_head bpf_map_free_security;
2005 struct hlist_head bpf_prog_alloc_security;
2006 struct hlist_head bpf_prog_free_security;
afdb09c7 2007#endif /* CONFIG_BPF_SYSCALL */
3859a271 2008} __randomize_layout;
e20b043a 2009
b1d9e6b0
CS
2010/*
2011 * Security module hook list structure.
2012 * For use with generic list macros for common operations.
2013 */
2014struct security_hook_list {
df0ce173
SD
2015 struct hlist_node list;
2016 struct hlist_head *head;
b1d9e6b0 2017 union security_list_options hook;
d69dece5 2018 char *lsm;
3859a271 2019} __randomize_layout;
b1d9e6b0 2020
e20b043a
CS
2021/*
2022 * Initializing a security_hook_list structure takes
2023 * up a lot of space in a source file. This macro takes
2024 * care of the common case and reduces the amount of
2025 * text involved.
e20b043a 2026 */
b1d9e6b0
CS
2027#define LSM_HOOK_INIT(HEAD, HOOK) \
2028 { .head = &security_hook_heads.HEAD, .hook = { .HEAD = HOOK } }
2029
2030extern struct security_hook_heads security_hook_heads;
d69dece5 2031extern char *lsm_names;
b1d9e6b0 2032
d69dece5
CS
2033extern void security_add_hooks(struct security_hook_list *hooks, int count,
2034 char *lsm);
3c4ed7bd 2035
b1d9e6b0
CS
2036#ifdef CONFIG_SECURITY_SELINUX_DISABLE
2037/*
2038 * Assuring the safety of deleting a security module is up to
2039 * the security module involved. This may entail ordering the
2040 * module's hook list in a particular way, refusing to disable
2041 * the module once a policy is loaded or any number of other
2042 * actions better imagined than described.
2043 *
2044 * The name of the configuration option reflects the only module
2045 * that currently uses the mechanism. Any developer who thinks
2046 * disabling their module is a good idea needs to be at least as
2047 * careful as the SELinux team.
2048 */
2049static inline void security_delete_hooks(struct security_hook_list *hooks,
2050 int count)
2051{
2052 int i;
2053
2054 for (i = 0; i < count; i++)
df0ce173 2055 hlist_del_rcu(&hooks[i].list);
b1d9e6b0
CS
2056}
2057#endif /* CONFIG_SECURITY_SELINUX_DISABLE */
2058
dd0859dc
JM
2059/* Currently required to handle SELinux runtime hook disable. */
2060#ifdef CONFIG_SECURITY_WRITABLE_HOOKS
2061#define __lsm_ro_after_init
2062#else
2063#define __lsm_ro_after_init __ro_after_init
2064#endif /* CONFIG_SECURITY_WRITABLE_HOOKS */
2065
b1d9e6b0
CS
2066extern int __init security_module_enable(const char *module);
2067extern void __init capability_add_hooks(void);
730daa16
KC
2068#ifdef CONFIG_SECURITY_YAMA
2069extern void __init yama_add_hooks(void);
2070#else
2071static inline void __init yama_add_hooks(void) { }
b1d9e6b0 2072#endif
9b091556
KC
2073#ifdef CONFIG_SECURITY_LOADPIN
2074void __init loadpin_add_hooks(void);
2075#else
2076static inline void loadpin_add_hooks(void) { };
2077#endif
3c4ed7bd
CS
2078
2079#endif /* ! __LINUX_LSM_HOOKS_H */