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)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * Due to this file being licensed under the GPL there is controversy over
16 * whether this permits you to write a module that #includes this file
17 * without placing your module under the GPL. Please consult a lawyer for
18 * advice before doing this.
22 #ifndef __LINUX_SECURITY_H
23 #define __LINUX_SECURITY_H
26 #include <linux/binfmts.h>
27 #include <linux/signal.h>
28 #include <linux/resource.h>
29 #include <linux/sem.h>
30 #include <linux/shm.h>
31 #include <linux/msg.h>
32 #include <linux/sched.h>
33 #include <linux/key.h>
34 #include <linux/xfrm.h>
37 /* Maximum number of letters for an LSM name string */
38 #define SECURITY_NAME_MAX 10
44 * These functions are in security/capability.c and are used
45 * as the default capabilities functions
47 extern int cap_capable(struct task_struct *tsk, int cap);
48 extern int cap_settime(struct timespec *ts, struct timezone *tz);
49 extern int cap_ptrace(struct task_struct *parent, struct task_struct *child);
50 extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
51 extern int cap_capset_check(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
52 extern void cap_capset_set(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
53 extern int cap_bprm_set_security(struct linux_binprm *bprm);
54 extern void cap_bprm_apply_creds(struct linux_binprm *bprm, int unsafe);
55 extern int cap_bprm_secureexec(struct linux_binprm *bprm);
56 extern int cap_inode_setxattr(struct dentry *dentry, char *name, void *value, size_t size, int flags);
57 extern int cap_inode_removexattr(struct dentry *dentry, char *name);
58 extern int cap_inode_need_killpriv(struct dentry *dentry);
59 extern int cap_inode_killpriv(struct dentry *dentry);
60 extern int cap_task_post_setuid(uid_t old_ruid, uid_t old_euid, uid_t old_suid, int flags);
61 extern void cap_task_reparent_to_init(struct task_struct *p);
62 extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
63 unsigned long arg4, unsigned long arg5, long *rc_p);
64 extern int cap_task_setscheduler(struct task_struct *p, int policy, struct sched_param *lp);
65 extern int cap_task_setioprio(struct task_struct *p, int ioprio);
66 extern int cap_task_setnice(struct task_struct *p, int nice);
67 extern int cap_syslog(int type);
68 extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
80 struct xfrm_user_sec_ctx;
82 extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
83 extern int cap_netlink_recv(struct sk_buff *skb, int cap);
85 extern unsigned long mmap_min_addr;
87 * Values used in the task_security_ops calls
89 /* setuid or setgid, id0 == uid or gid */
90 #define LSM_SETID_ID 1
92 /* setreuid or setregid, id0 == real, id1 == eff */
93 #define LSM_SETID_RE 2
95 /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
96 #define LSM_SETID_RES 4
98 /* setfsuid or setfsgid, id0 == fsuid or fsgid */
99 #define LSM_SETID_FS 8
101 /* forward declares to avoid warnings */
104 struct swap_info_struct;
107 /* bprm_apply_creds unsafe reasons */
108 #define LSM_UNSAFE_SHARE 1
109 #define LSM_UNSAFE_PTRACE 2
110 #define LSM_UNSAFE_PTRACE_CAP 4
112 #ifdef CONFIG_SECURITY
114 struct security_mnt_opts {
120 static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
122 opts->mnt_opts = NULL;
123 opts->mnt_opts_flags = NULL;
124 opts->num_mnt_opts = 0;
127 static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
131 for (i = 0; i < opts->num_mnt_opts; i++)
132 kfree(opts->mnt_opts[i]);
133 kfree(opts->mnt_opts);
134 opts->mnt_opts = NULL;
135 kfree(opts->mnt_opts_flags);
136 opts->mnt_opts_flags = NULL;
137 opts->num_mnt_opts = 0;
141 * struct security_operations - main security structure
143 * Security module identifier.
146 * A string that acts as a unique identifeir for the LSM with max number
147 * of characters = SECURITY_NAME_MAX.
149 * Security hooks for program execution operations.
151 * @bprm_alloc_security:
152 * Allocate and attach a security structure to the @bprm->security field.
153 * The security field is initialized to NULL when the bprm structure is
155 * @bprm contains the linux_binprm structure to be modified.
156 * Return 0 if operation was successful.
157 * @bprm_free_security:
158 * @bprm contains the linux_binprm structure to be modified.
159 * Deallocate and clear the @bprm->security field.
161 * Compute and set the security attributes of a process being transformed
162 * by an execve operation based on the old attributes (current->security)
163 * and the information saved in @bprm->security by the set_security hook.
164 * Since this hook function (and its caller) are void, this hook can not
165 * return an error. However, it can leave the security attributes of the
166 * process unchanged if an access failure occurs at this point.
167 * bprm_apply_creds is called under task_lock. @unsafe indicates various
168 * reasons why it may be unsafe to change security state.
169 * @bprm contains the linux_binprm structure.
170 * @bprm_post_apply_creds:
171 * Runs after bprm_apply_creds with the task_lock dropped, so that
172 * functions which cannot be called safely under the task_lock can
173 * be used. This hook is a good place to perform state changes on
174 * the process such as closing open file descriptors to which access
175 * is no longer granted if the attributes were changed.
176 * Note that a security module might need to save state between
177 * bprm_apply_creds and bprm_post_apply_creds to store the decision
178 * on whether the process may proceed.
179 * @bprm contains the linux_binprm structure.
180 * @bprm_set_security:
181 * Save security information in the bprm->security field, typically based
182 * on information about the bprm->file, for later use by the apply_creds
183 * hook. This hook may also optionally check permissions (e.g. for
184 * transitions between security domains).
185 * This hook may be called multiple times during a single execve, e.g. for
186 * interpreters. The hook can tell whether it has already been called by
187 * checking to see if @bprm->security is non-NULL. If so, then the hook
188 * may decide either to retain the security information saved earlier or
190 * @bprm contains the linux_binprm structure.
191 * Return 0 if the hook is successful and permission is granted.
192 * @bprm_check_security:
193 * This hook mediates the point when a search for a binary handler will
194 * begin. It allows a check the @bprm->security value which is set in
195 * the preceding set_security call. The primary difference from
196 * set_security is that the argv list and envp list are reliably
197 * available in @bprm. This hook may be called multiple times
198 * during a single execve; and in each pass set_security is called
200 * @bprm contains the linux_binprm structure.
201 * Return 0 if the hook is successful and permission is granted.
203 * Return a boolean value (0 or 1) indicating whether a "secure exec"
204 * is required. The flag is passed in the auxiliary table
205 * on the initial stack to the ELF interpreter to indicate whether libc
206 * should enable secure mode.
207 * @bprm contains the linux_binprm structure.
209 * Security hooks for filesystem operations.
211 * @sb_alloc_security:
212 * Allocate and attach a security structure to the sb->s_security field.
213 * The s_security field is initialized to NULL when the structure is
215 * @sb contains the super_block structure to be modified.
216 * Return 0 if operation was successful.
218 * Deallocate and clear the sb->s_security field.
219 * @sb contains the super_block structure to be modified.
221 * Check permission before obtaining filesystem statistics for the @mnt
223 * @dentry is a handle on the superblock for the filesystem.
224 * Return 0 if permission is granted.
226 * Check permission before an object specified by @dev_name is mounted on
227 * the mount point named by @nd. For an ordinary mount, @dev_name
228 * identifies a device if the file system type requires a device. For a
229 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
230 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
231 * pathname of the object being mounted.
232 * @dev_name contains the name for object being mounted.
233 * @path contains the path for mount point object.
234 * @type contains the filesystem type.
235 * @flags contains the mount flags.
236 * @data contains the filesystem-specific data.
237 * Return 0 if permission is granted.
239 * Allow mount option data to be copied prior to parsing by the filesystem,
240 * so that the security module can extract security-specific mount
241 * options cleanly (a filesystem may modify the data e.g. with strsep()).
242 * This also allows the original mount data to be stripped of security-
243 * specific options to avoid having to make filesystems aware of them.
244 * @type the type of filesystem being mounted.
245 * @orig the original mount data copied from userspace.
246 * @copy copied data which will be passed to the security module.
247 * Returns 0 if the copy was successful.
249 * Check permission before the device with superblock @mnt->sb is mounted
250 * on the mount point named by @nd.
251 * @mnt contains the vfsmount for device being mounted.
252 * @path contains the path for the mount point.
253 * Return 0 if permission is granted.
255 * Check permission before the @mnt file system is unmounted.
256 * @mnt contains the mounted file system.
257 * @flags contains the unmount flags, e.g. MNT_FORCE.
258 * Return 0 if permission is granted.
260 * Close any files in the @mnt mounted filesystem that are held open by
261 * the security module. This hook is called during an umount operation
262 * prior to checking whether the filesystem is still busy.
263 * @mnt contains the mounted filesystem.
265 * Handle a failed umount of the @mnt mounted filesystem, e.g. re-opening
266 * any files that were closed by umount_close. This hook is called during
267 * an umount operation if the umount fails after a call to the
269 * @mnt contains the mounted filesystem.
271 * Update the security module's state when a filesystem is remounted.
272 * This hook is only called if the remount was successful.
273 * @mnt contains the mounted file system.
274 * @flags contains the new filesystem flags.
275 * @data contains the filesystem-specific data.
277 * Update the security module's state when a filesystem is mounted.
278 * This hook is called any time a mount is successfully grafetd to
280 * @mnt contains the mounted filesystem.
281 * @mountpoint contains the path for the mount point.
283 * Check permission before pivoting the root filesystem.
284 * @old_path contains the path for the new location of the current root (put_old).
285 * @new_path contains the path for the new root (new_root).
286 * Return 0 if permission is granted.
287 * @sb_post_pivotroot:
288 * Update module state after a successful pivot.
289 * @old_path contains the path for the old root.
290 * @new_path contains the path for the new root.
292 * Get the security relevant mount options used for a superblock
293 * @sb the superblock to get security mount options from
294 * @opts binary data structure containing all lsm mount data
296 * Set the security relevant mount options used for a superblock
297 * @sb the superblock to set security mount options for
298 * @opts binary data structure containing all lsm mount data
299 * @sb_clone_mnt_opts:
300 * Copy all security options from a given superblock to another
301 * @oldsb old superblock which contain information to clone
302 * @newsb new superblock which needs filled in
303 * @sb_parse_opts_str:
304 * Parse a string of security data filling in the opts structure
305 * @options string containing all mount options known by the LSM
306 * @opts binary data structure usable by the LSM
308 * Security hooks for inode operations.
310 * @inode_alloc_security:
311 * Allocate and attach a security structure to @inode->i_security. The
312 * i_security field is initialized to NULL when the inode structure is
314 * @inode contains the inode structure.
315 * Return 0 if operation was successful.
316 * @inode_free_security:
317 * @inode contains the inode structure.
318 * Deallocate the inode security structure and set @inode->i_security to
320 * @inode_init_security:
321 * Obtain the security attribute name suffix and value to set on a newly
322 * created inode and set up the incore security field for the new inode.
323 * This hook is called by the fs code as part of the inode creation
324 * transaction and provides for atomic labeling of the inode, unlike
325 * the post_create/mkdir/... hooks called by the VFS. The hook function
326 * is expected to allocate the name and value via kmalloc, with the caller
327 * being responsible for calling kfree after using them.
328 * If the security module does not use security attributes or does
329 * not wish to put a security attribute on this particular inode,
330 * then it should return -EOPNOTSUPP to skip this processing.
331 * @inode contains the inode structure of the newly created inode.
332 * @dir contains the inode structure of the parent directory.
333 * @name will be set to the allocated name suffix (e.g. selinux).
334 * @value will be set to the allocated attribute value.
335 * @len will be set to the length of the value.
336 * Returns 0 if @name and @value have been successfully set,
337 * -EOPNOTSUPP if no security attribute is needed, or
338 * -ENOMEM on memory allocation failure.
340 * Check permission to create a regular file.
341 * @dir contains inode structure of the parent of the new file.
342 * @dentry contains the dentry structure for the file to be created.
343 * @mode contains the file mode of the file to be created.
344 * Return 0 if permission is granted.
346 * Check permission before creating a new hard link to a file.
347 * @old_dentry contains the dentry structure for an existing link to the file.
348 * @dir contains the inode structure of the parent directory of the new link.
349 * @new_dentry contains the dentry structure for the new link.
350 * Return 0 if permission is granted.
352 * Check the permission to remove a hard link to a file.
353 * @dir contains the inode structure of parent directory of the file.
354 * @dentry contains the dentry structure for file to be unlinked.
355 * Return 0 if permission is granted.
357 * Check the permission to create a symbolic link to a file.
358 * @dir contains the inode structure of parent directory of the symbolic link.
359 * @dentry contains the dentry structure of the symbolic link.
360 * @old_name contains the pathname of file.
361 * Return 0 if permission is granted.
363 * Check permissions to create a new directory in the existing directory
364 * associated with inode strcture @dir.
365 * @dir containst the inode structure of parent of the directory to be created.
366 * @dentry contains the dentry structure of new directory.
367 * @mode contains the mode of new directory.
368 * Return 0 if permission is granted.
370 * Check the permission to remove a directory.
371 * @dir contains the inode structure of parent of the directory to be removed.
372 * @dentry contains the dentry structure of directory to be removed.
373 * Return 0 if permission is granted.
375 * Check permissions when creating a special file (or a socket or a fifo
376 * file created via the mknod system call). Note that if mknod operation
377 * is being done for a regular file, then the create hook will be called
379 * @dir contains the inode structure of parent of the new file.
380 * @dentry contains the dentry structure of the new file.
381 * @mode contains the mode of the new file.
382 * @dev contains the device number.
383 * Return 0 if permission is granted.
385 * Check for permission to rename a file or directory.
386 * @old_dir contains the inode structure for parent of the old link.
387 * @old_dentry contains the dentry structure of the old link.
388 * @new_dir contains the inode structure for parent of the new link.
389 * @new_dentry contains the dentry structure of the new link.
390 * Return 0 if permission is granted.
392 * Check the permission to read the symbolic link.
393 * @dentry contains the dentry structure for the file link.
394 * Return 0 if permission is granted.
395 * @inode_follow_link:
396 * Check permission to follow a symbolic link when looking up a pathname.
397 * @dentry contains the dentry structure for the link.
398 * @nd contains the nameidata structure for the parent directory.
399 * Return 0 if permission is granted.
401 * Check permission before accessing an inode. This hook is called by the
402 * existing Linux permission function, so a security module can use it to
403 * provide additional checking for existing Linux permission checks.
404 * Notice that this hook is called when a file is opened (as well as many
405 * other operations), whereas the file_security_ops permission hook is
406 * called when the actual read/write operations are performed.
407 * @inode contains the inode structure to check.
408 * @mask contains the permission mask.
409 * @nd contains the nameidata (may be NULL).
410 * Return 0 if permission is granted.
412 * Check permission before setting file attributes. Note that the kernel
413 * call to notify_change is performed from several locations, whenever
414 * file attributes change (such as when a file is truncated, chown/chmod
415 * operations, transferring disk quotas, etc).
416 * @dentry contains the dentry structure for the file.
417 * @attr is the iattr structure containing the new file attributes.
418 * Return 0 if permission is granted.
420 * Check permission before obtaining file attributes.
421 * @mnt is the vfsmount where the dentry was looked up
422 * @dentry contains the dentry structure for the file.
423 * Return 0 if permission is granted.
425 * @inode contains the inode structure for deleted inode.
426 * This hook is called when a deleted inode is released (i.e. an inode
427 * with no hard links has its use count drop to zero). A security module
428 * can use this hook to release any persistent label associated with the
431 * Check permission before setting the extended attributes
432 * @value identified by @name for @dentry.
433 * Return 0 if permission is granted.
434 * @inode_post_setxattr:
435 * Update inode security field after successful setxattr operation.
436 * @value identified by @name for @dentry.
438 * Check permission before obtaining the extended attributes
439 * identified by @name for @dentry.
440 * Return 0 if permission is granted.
442 * Check permission before obtaining the list of extended attribute
444 * Return 0 if permission is granted.
445 * @inode_removexattr:
446 * Check permission before removing the extended attribute
447 * identified by @name for @dentry.
448 * Return 0 if permission is granted.
449 * @inode_getsecurity:
450 * Retrieve a copy of the extended attribute representation of the
451 * security label associated with @name for @inode via @buffer. Note that
452 * @name is the remainder of the attribute name after the security prefix
453 * has been removed. @alloc is used to specify of the call should return a
454 * value via the buffer or just the value length Return size of buffer on
456 * @inode_setsecurity:
457 * Set the security label associated with @name for @inode from the
458 * extended attribute value @value. @size indicates the size of the
459 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
460 * Note that @name is the remainder of the attribute name after the
461 * security. prefix has been removed.
462 * Return 0 on success.
463 * @inode_listsecurity:
464 * Copy the extended attribute names for the security labels
465 * associated with @inode into @buffer. The maximum size of @buffer
466 * is specified by @buffer_size. @buffer may be NULL to request
467 * the size of the buffer required.
468 * Returns number of bytes used/required on success.
469 * @inode_need_killpriv:
470 * Called when an inode has been changed.
471 * @dentry is the dentry being changed.
472 * Return <0 on error to abort the inode change operation.
473 * Return 0 if inode_killpriv does not need to be called.
474 * Return >0 if inode_killpriv does need to be called.
476 * The setuid bit is being removed. Remove similar security labels.
477 * Called with the dentry->d_inode->i_mutex held.
478 * @dentry is the dentry being changed.
479 * Return 0 on success. If error is returned, then the operation
480 * causing setuid bit removal is failed.
482 * Get the secid associated with the node.
483 * @inode contains a pointer to the inode.
484 * @secid contains a pointer to the location where result will be saved.
485 * In case of failure, @secid will be set to zero.
487 * Security hooks for file operations
490 * Check file permissions before accessing an open file. This hook is
491 * called by various operations that read or write files. A security
492 * module can use this hook to perform additional checking on these
493 * operations, e.g. to revalidate permissions on use to support privilege
494 * bracketing or policy changes. Notice that this hook is used when the
495 * actual read/write operations are performed, whereas the
496 * inode_security_ops hook is called when a file is opened (as well as
497 * many other operations).
498 * Caveat: Although this hook can be used to revalidate permissions for
499 * various system call operations that read or write files, it does not
500 * address the revalidation of permissions for memory-mapped files.
501 * Security modules must handle this separately if they need such
503 * @file contains the file structure being accessed.
504 * @mask contains the requested permissions.
505 * Return 0 if permission is granted.
506 * @file_alloc_security:
507 * Allocate and attach a security structure to the file->f_security field.
508 * The security field is initialized to NULL when the structure is first
510 * @file contains the file structure to secure.
511 * Return 0 if the hook is successful and permission is granted.
512 * @file_free_security:
513 * Deallocate and free any security structures stored in file->f_security.
514 * @file contains the file structure being modified.
516 * @file contains the file structure.
517 * @cmd contains the operation to perform.
518 * @arg contains the operational arguments.
519 * Check permission for an ioctl operation on @file. Note that @arg can
520 * sometimes represents a user space pointer; in other cases, it may be a
521 * simple integer value. When @arg represents a user space pointer, it
522 * should never be used by the security module.
523 * Return 0 if permission is granted.
525 * Check permissions for a mmap operation. The @file may be NULL, e.g.
526 * if mapping anonymous memory.
527 * @file contains the file structure for file to map (may be NULL).
528 * @reqprot contains the protection requested by the application.
529 * @prot contains the protection that will be applied by the kernel.
530 * @flags contains the operational flags.
531 * Return 0 if permission is granted.
533 * Check permissions before changing memory access permissions.
534 * @vma contains the memory region to modify.
535 * @reqprot contains the protection requested by the application.
536 * @prot contains the protection that will be applied by the kernel.
537 * Return 0 if permission is granted.
539 * Check permission before performing file locking operations.
540 * Note: this hook mediates both flock and fcntl style locks.
541 * @file contains the file structure.
542 * @cmd contains the posix-translated lock operation to perform
543 * (e.g. F_RDLCK, F_WRLCK).
544 * Return 0 if permission is granted.
546 * Check permission before allowing the file operation specified by @cmd
547 * from being performed on the file @file. Note that @arg can sometimes
548 * represents a user space pointer; in other cases, it may be a simple
549 * integer value. When @arg represents a user space pointer, it should
550 * never be used by the security module.
551 * @file contains the file structure.
552 * @cmd contains the operation to be performed.
553 * @arg contains the operational arguments.
554 * Return 0 if permission is granted.
556 * Save owner security information (typically from current->security) in
557 * file->f_security for later use by the send_sigiotask hook.
558 * @file contains the file structure to update.
559 * Return 0 on success.
560 * @file_send_sigiotask:
561 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
562 * process @tsk. Note that this hook is sometimes called from interrupt.
563 * Note that the fown_struct, @fown, is never outside the context of a
564 * struct file, so the file structure (and associated security information)
565 * can always be obtained:
566 * container_of(fown, struct file, f_owner)
567 * @tsk contains the structure of task receiving signal.
568 * @fown contains the file owner information.
569 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
570 * Return 0 if permission is granted.
572 * This hook allows security modules to control the ability of a process
573 * to receive an open file descriptor via socket IPC.
574 * @file contains the file structure being received.
575 * Return 0 if permission is granted.
577 * Security hook for dentry
580 * Save open-time permission checking state for later use upon
581 * file_permission, and recheck access if anything has changed
582 * since inode_permission.
584 * Security hooks for task operations.
587 * Check permission before creating a child process. See the clone(2)
588 * manual page for definitions of the @clone_flags.
589 * @clone_flags contains the flags indicating what should be shared.
590 * Return 0 if permission is granted.
591 * @task_alloc_security:
592 * @p contains the task_struct for child process.
593 * Allocate and attach a security structure to the p->security field. The
594 * security field is initialized to NULL when the task structure is
596 * Return 0 if operation was successful.
597 * @task_free_security:
598 * @p contains the task_struct for process.
599 * Deallocate and clear the p->security field.
601 * Check permission before setting one or more of the user identity
602 * attributes of the current process. The @flags parameter indicates
603 * which of the set*uid system calls invoked this hook and how to
604 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
605 * definitions at the beginning of this file for the @flags values and
607 * @id0 contains a uid.
608 * @id1 contains a uid.
609 * @id2 contains a uid.
610 * @flags contains one of the LSM_SETID_* values.
611 * Return 0 if permission is granted.
613 * Update the module's state after setting one or more of the user
614 * identity attributes of the current process. The @flags parameter
615 * indicates which of the set*uid system calls invoked this hook. If
616 * @flags is LSM_SETID_FS, then @old_ruid is the old fs uid and the other
617 * parameters are not used.
618 * @old_ruid contains the old real uid (or fs uid if LSM_SETID_FS).
619 * @old_euid contains the old effective uid (or -1 if LSM_SETID_FS).
620 * @old_suid contains the old saved uid (or -1 if LSM_SETID_FS).
621 * @flags contains one of the LSM_SETID_* values.
622 * Return 0 on success.
624 * Check permission before setting one or more of the group identity
625 * attributes of the current process. The @flags parameter indicates
626 * which of the set*gid system calls invoked this hook and how to
627 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
628 * definitions at the beginning of this file for the @flags values and
630 * @id0 contains a gid.
631 * @id1 contains a gid.
632 * @id2 contains a gid.
633 * @flags contains one of the LSM_SETID_* values.
634 * Return 0 if permission is granted.
636 * Check permission before setting the process group identifier of the
637 * process @p to @pgid.
638 * @p contains the task_struct for process being modified.
639 * @pgid contains the new pgid.
640 * Return 0 if permission is granted.
642 * Check permission before getting the process group identifier of the
644 * @p contains the task_struct for the process.
645 * Return 0 if permission is granted.
647 * Check permission before getting the session identifier of the process
649 * @p contains the task_struct for the process.
650 * Return 0 if permission is granted.
652 * Retrieve the security identifier of the process @p.
653 * @p contains the task_struct for the process and place is into @secid.
654 * In case of failure, @secid will be set to zero.
657 * Check permission before setting the supplementary group set of the
659 * @group_info contains the new group information.
660 * Return 0 if permission is granted.
662 * Check permission before setting the nice value of @p to @nice.
663 * @p contains the task_struct of process.
664 * @nice contains the new nice value.
665 * Return 0 if permission is granted.
667 * Check permission before setting the ioprio value of @p to @ioprio.
668 * @p contains the task_struct of process.
669 * @ioprio contains the new ioprio value
670 * Return 0 if permission is granted.
672 * Check permission before getting the ioprio value of @p.
673 * @p contains the task_struct of process.
674 * Return 0 if permission is granted.
676 * Check permission before setting the resource limits of the current
677 * process for @resource to @new_rlim. The old resource limit values can
678 * be examined by dereferencing (current->signal->rlim + resource).
679 * @resource contains the resource whose limit is being set.
680 * @new_rlim contains the new limits for @resource.
681 * Return 0 if permission is granted.
682 * @task_setscheduler:
683 * Check permission before setting scheduling policy and/or parameters of
684 * process @p based on @policy and @lp.
685 * @p contains the task_struct for process.
686 * @policy contains the scheduling policy.
687 * @lp contains the scheduling parameters.
688 * Return 0 if permission is granted.
689 * @task_getscheduler:
690 * Check permission before obtaining scheduling information for process
692 * @p contains the task_struct for process.
693 * Return 0 if permission is granted.
695 * Check permission before moving memory owned by process @p.
696 * @p contains the task_struct for process.
697 * Return 0 if permission is granted.
699 * Check permission before sending signal @sig to @p. @info can be NULL,
700 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
701 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
702 * from the kernel and should typically be permitted.
703 * SIGIO signals are handled separately by the send_sigiotask hook in
705 * @p contains the task_struct for process.
706 * @info contains the signal information.
707 * @sig contains the signal value.
708 * @secid contains the sid of the process where the signal originated
709 * Return 0 if permission is granted.
711 * Check permission before allowing a process to reap a child process @p
712 * and collect its status information.
713 * @p contains the task_struct for process.
714 * Return 0 if permission is granted.
716 * Check permission before performing a process control operation on the
718 * @option contains the operation.
719 * @arg2 contains a argument.
720 * @arg3 contains a argument.
721 * @arg4 contains a argument.
722 * @arg5 contains a argument.
723 * @rc_p contains a pointer to communicate back the forced return code
724 * Return 0 if permission is granted, and non-zero if the security module
725 * has taken responsibility (setting *rc_p) for the prctl call.
726 * @task_reparent_to_init:
727 * Set the security attributes in @p->security for a kernel thread that
728 * is being reparented to the init task.
729 * @p contains the task_struct for the kernel thread.
731 * Set the security attributes for an inode based on an associated task's
732 * security attributes, e.g. for /proc/pid inodes.
733 * @p contains the task_struct for the task.
734 * @inode contains the inode structure for the inode.
736 * Security hooks for Netlink messaging.
739 * Save security information for a netlink message so that permission
740 * checking can be performed when the message is processed. The security
741 * information can be saved using the eff_cap field of the
742 * netlink_skb_parms structure. Also may be used to provide fine
743 * grained control over message transmission.
744 * @sk associated sock of task sending the message.,
745 * @skb contains the sk_buff structure for the netlink message.
746 * Return 0 if the information was successfully saved and message
747 * is allowed to be transmitted.
749 * Check permission before processing the received netlink message in
751 * @skb contains the sk_buff structure for the netlink message.
752 * @cap indicates the capability required
753 * Return 0 if permission is granted.
755 * Security hooks for Unix domain networking.
757 * @unix_stream_connect:
758 * Check permissions before establishing a Unix domain stream connection
759 * between @sock and @other.
760 * @sock contains the socket structure.
761 * @other contains the peer socket structure.
762 * Return 0 if permission is granted.
764 * Check permissions before connecting or sending datagrams from @sock to
766 * @sock contains the socket structure.
767 * @sock contains the peer socket structure.
768 * Return 0 if permission is granted.
770 * The @unix_stream_connect and @unix_may_send hooks were necessary because
771 * Linux provides an alternative to the conventional file name space for Unix
772 * domain sockets. Whereas binding and connecting to sockets in the file name
773 * space is mediated by the typical file permissions (and caught by the mknod
774 * and permission hooks in inode_security_ops), binding and connecting to
775 * sockets in the abstract name space is completely unmediated. Sufficient
776 * control of Unix domain sockets in the abstract name space isn't possible
777 * using only the socket layer hooks, since we need to know the actual target
778 * socket, which is not looked up until we are inside the af_unix code.
780 * Security hooks for socket operations.
783 * Check permissions prior to creating a new socket.
784 * @family contains the requested protocol family.
785 * @type contains the requested communications type.
786 * @protocol contains the requested protocol.
787 * @kern set to 1 if a kernel socket.
788 * Return 0 if permission is granted.
789 * @socket_post_create:
790 * This hook allows a module to update or allocate a per-socket security
791 * structure. Note that the security field was not added directly to the
792 * socket structure, but rather, the socket security information is stored
793 * in the associated inode. Typically, the inode alloc_security hook will
794 * allocate and and attach security information to
795 * sock->inode->i_security. This hook may be used to update the
796 * sock->inode->i_security field with additional information that wasn't
797 * available when the inode was allocated.
798 * @sock contains the newly created socket structure.
799 * @family contains the requested protocol family.
800 * @type contains the requested communications type.
801 * @protocol contains the requested protocol.
802 * @kern set to 1 if a kernel socket.
804 * Check permission before socket protocol layer bind operation is
805 * performed and the socket @sock is bound to the address specified in the
806 * @address parameter.
807 * @sock contains the socket structure.
808 * @address contains the address to bind to.
809 * @addrlen contains the length of address.
810 * Return 0 if permission is granted.
812 * Check permission before socket protocol layer connect operation
813 * attempts to connect socket @sock to a remote address, @address.
814 * @sock contains the socket structure.
815 * @address contains the address of remote endpoint.
816 * @addrlen contains the length of address.
817 * Return 0 if permission is granted.
819 * Check permission before socket protocol layer listen operation.
820 * @sock contains the socket structure.
821 * @backlog contains the maximum length for the pending connection queue.
822 * Return 0 if permission is granted.
824 * Check permission before accepting a new connection. Note that the new
825 * socket, @newsock, has been created and some information copied to it,
826 * but the accept operation has not actually been performed.
827 * @sock contains the listening socket structure.
828 * @newsock contains the newly created server socket for connection.
829 * Return 0 if permission is granted.
830 * @socket_post_accept:
831 * This hook allows a security module to copy security
832 * information into the newly created socket's inode.
833 * @sock contains the listening socket structure.
834 * @newsock contains the newly created server socket for connection.
836 * Check permission before transmitting a message to another socket.
837 * @sock contains the socket structure.
838 * @msg contains the message to be transmitted.
839 * @size contains the size of message.
840 * Return 0 if permission is granted.
842 * Check permission before receiving a message from a socket.
843 * @sock contains the socket structure.
844 * @msg contains the message structure.
845 * @size contains the size of message structure.
846 * @flags contains the operational flags.
847 * Return 0 if permission is granted.
848 * @socket_getsockname:
849 * Check permission before the local address (name) of the socket object
850 * @sock is retrieved.
851 * @sock contains the socket structure.
852 * Return 0 if permission is granted.
853 * @socket_getpeername:
854 * Check permission before the remote address (name) of a socket object
855 * @sock is retrieved.
856 * @sock contains the socket structure.
857 * Return 0 if permission is granted.
858 * @socket_getsockopt:
859 * Check permissions before retrieving the options associated with socket
861 * @sock contains the socket structure.
862 * @level contains the protocol level to retrieve option from.
863 * @optname contains the name of option to retrieve.
864 * Return 0 if permission is granted.
865 * @socket_setsockopt:
866 * Check permissions before setting the options associated with socket
868 * @sock contains the socket structure.
869 * @level contains the protocol level to set options for.
870 * @optname contains the name of the option to set.
871 * Return 0 if permission is granted.
873 * Checks permission before all or part of a connection on the socket
874 * @sock is shut down.
875 * @sock contains the socket structure.
876 * @how contains the flag indicating how future sends and receives are handled.
877 * Return 0 if permission is granted.
878 * @socket_sock_rcv_skb:
879 * Check permissions on incoming network packets. This hook is distinct
880 * from Netfilter's IP input hooks since it is the first time that the
881 * incoming sk_buff @skb has been associated with a particular socket, @sk.
882 * @sk contains the sock (not socket) associated with the incoming sk_buff.
883 * @skb contains the incoming network data.
884 * @socket_getpeersec_stream:
885 * This hook allows the security module to provide peer socket security
886 * state for unix or connected tcp sockets to userspace via getsockopt
887 * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
888 * socket is associated with an ipsec SA.
889 * @sock is the local socket.
890 * @optval userspace memory where the security state is to be copied.
891 * @optlen userspace int where the module should copy the actual length
892 * of the security state.
893 * @len as input is the maximum length to copy to userspace provided
895 * Return 0 if all is well, otherwise, typical getsockopt return
897 * @socket_getpeersec_dgram:
898 * This hook allows the security module to provide peer socket security
899 * state for udp sockets on a per-packet basis to userspace via
900 * getsockopt SO_GETPEERSEC. The application must first have indicated
901 * the IP_PASSSEC option via getsockopt. It can then retrieve the
902 * security state returned by this hook for a packet via the SCM_SECURITY
903 * ancillary message type.
904 * @skb is the skbuff for the packet being queried
905 * @secdata is a pointer to a buffer in which to copy the security data
906 * @seclen is the maximum length for @secdata
907 * Return 0 on success, error on failure.
908 * @sk_alloc_security:
909 * Allocate and attach a security structure to the sk->sk_security field,
910 * which is used to copy security attributes between local stream sockets.
912 * Deallocate security structure.
913 * @sk_clone_security:
914 * Clone/copy security structure.
916 * Retrieve the LSM-specific secid for the sock to enable caching of network
919 * Sets the socket's isec sid to the sock's sid.
920 * @inet_conn_request:
921 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
923 * Sets the new child socket's sid to the openreq sid.
924 * @inet_conn_established:
925 * Sets the connection's peersid to the secmark on skb.
926 * @req_classify_flow:
927 * Sets the flow's sid to the openreq sid.
929 * Security hooks for XFRM operations.
931 * @xfrm_policy_alloc_security:
932 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
933 * Database used by the XFRM system.
934 * @sec_ctx contains the security context information being provided by
935 * the user-level policy update program (e.g., setkey).
936 * Allocate a security structure to the xp->security field; the security
937 * field is initialized to NULL when the xfrm_policy is allocated.
938 * Return 0 if operation was successful (memory to allocate, legal context)
939 * @xfrm_policy_clone_security:
940 * @old_ctx contains an existing xfrm_sec_ctx.
941 * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
942 * Allocate a security structure in new_ctxp that contains the
943 * information from the old_ctx structure.
944 * Return 0 if operation was successful (memory to allocate).
945 * @xfrm_policy_free_security:
946 * @ctx contains the xfrm_sec_ctx
947 * Deallocate xp->security.
948 * @xfrm_policy_delete_security:
949 * @ctx contains the xfrm_sec_ctx.
950 * Authorize deletion of xp->security.
951 * @xfrm_state_alloc_security:
952 * @x contains the xfrm_state being added to the Security Association
953 * Database by the XFRM system.
954 * @sec_ctx contains the security context information being provided by
955 * the user-level SA generation program (e.g., setkey or racoon).
956 * @secid contains the secid from which to take the mls portion of the context.
957 * Allocate a security structure to the x->security field; the security
958 * field is initialized to NULL when the xfrm_state is allocated. Set the
959 * context to correspond to either sec_ctx or polsec, with the mls portion
960 * taken from secid in the latter case.
961 * Return 0 if operation was successful (memory to allocate, legal context).
962 * @xfrm_state_free_security:
963 * @x contains the xfrm_state.
964 * Deallocate x->security.
965 * @xfrm_state_delete_security:
966 * @x contains the xfrm_state.
967 * Authorize deletion of x->security.
968 * @xfrm_policy_lookup:
969 * @ctx contains the xfrm_sec_ctx for which the access control is being
971 * @fl_secid contains the flow security label that is used to authorize
972 * access to the policy xp.
973 * @dir contains the direction of the flow (input or output).
974 * Check permission when a flow selects a xfrm_policy for processing
975 * XFRMs on a packet. The hook is called when selecting either a
976 * per-socket policy or a generic xfrm policy.
977 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
979 * @xfrm_state_pol_flow_match:
980 * @x contains the state to match.
981 * @xp contains the policy to check for a match.
982 * @fl contains the flow to check for a match.
983 * Return 1 if there is a match.
984 * @xfrm_decode_session:
985 * @skb points to skb to decode.
986 * @secid points to the flow key secid to set.
987 * @ckall says if all xfrms used should be checked for same secid.
988 * Return 0 if ckall is zero or all xfrms used have the same secid.
990 * Security hooks affecting all Key Management operations
993 * Permit allocation of a key and assign security data. Note that key does
994 * not have a serial number assigned at this point.
995 * @key points to the key.
996 * @flags is the allocation flags
997 * Return 0 if permission is granted, -ve error otherwise.
999 * Notification of destruction; free security data.
1000 * @key points to the key.
1003 * See whether a specific operational right is granted to a process on a
1005 * @key_ref refers to the key (key pointer + possession attribute bit).
1006 * @context points to the process to provide the context against which to
1007 * evaluate the security data on the key.
1008 * @perm describes the combination of permissions required of this key.
1009 * Return 1 if permission granted, 0 if permission denied and -ve it the
1010 * normal permissions model should be effected.
1012 * Security hooks affecting all System V IPC operations.
1015 * Check permissions for access to IPC
1016 * @ipcp contains the kernel IPC permission structure
1017 * @flag contains the desired (requested) permission set
1018 * Return 0 if permission is granted.
1020 * Get the secid associated with the ipc object.
1021 * @ipcp contains the kernel IPC permission structure.
1022 * @secid contains a pointer to the location where result will be saved.
1023 * In case of failure, @secid will be set to zero.
1025 * Security hooks for individual messages held in System V IPC message queues
1026 * @msg_msg_alloc_security:
1027 * Allocate and attach a security structure to the msg->security field.
1028 * The security field is initialized to NULL when the structure is first
1030 * @msg contains the message structure to be modified.
1031 * Return 0 if operation was successful and permission is granted.
1032 * @msg_msg_free_security:
1033 * Deallocate the security structure for this message.
1034 * @msg contains the message structure to be modified.
1036 * Security hooks for System V IPC Message Queues
1038 * @msg_queue_alloc_security:
1039 * Allocate and attach a security structure to the
1040 * msq->q_perm.security field. The security field is initialized to
1041 * NULL when the structure is first created.
1042 * @msq contains the message queue structure to be modified.
1043 * Return 0 if operation was successful and permission is granted.
1044 * @msg_queue_free_security:
1045 * Deallocate security structure for this message queue.
1046 * @msq contains the message queue structure to be modified.
1047 * @msg_queue_associate:
1048 * Check permission when a message queue is requested through the
1049 * msgget system call. This hook is only called when returning the
1050 * message queue identifier for an existing message queue, not when a
1051 * new message queue is created.
1052 * @msq contains the message queue to act upon.
1053 * @msqflg contains the operation control flags.
1054 * Return 0 if permission is granted.
1055 * @msg_queue_msgctl:
1056 * Check permission when a message control operation specified by @cmd
1057 * is to be performed on the message queue @msq.
1058 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1059 * @msq contains the message queue to act upon. May be NULL.
1060 * @cmd contains the operation to be performed.
1061 * Return 0 if permission is granted.
1062 * @msg_queue_msgsnd:
1063 * Check permission before a message, @msg, is enqueued on the message
1065 * @msq contains the message queue to send message to.
1066 * @msg contains the message to be enqueued.
1067 * @msqflg contains operational flags.
1068 * Return 0 if permission is granted.
1069 * @msg_queue_msgrcv:
1070 * Check permission before a message, @msg, is removed from the message
1071 * queue, @msq. The @target task structure contains a pointer to the
1072 * process that will be receiving the message (not equal to the current
1073 * process when inline receives are being performed).
1074 * @msq contains the message queue to retrieve message from.
1075 * @msg contains the message destination.
1076 * @target contains the task structure for recipient process.
1077 * @type contains the type of message requested.
1078 * @mode contains the operational flags.
1079 * Return 0 if permission is granted.
1081 * Security hooks for System V Shared Memory Segments
1083 * @shm_alloc_security:
1084 * Allocate and attach a security structure to the shp->shm_perm.security
1085 * field. The security field is initialized to NULL when the structure is
1087 * @shp contains the shared memory structure to be modified.
1088 * Return 0 if operation was successful and permission is granted.
1089 * @shm_free_security:
1090 * Deallocate the security struct for this memory segment.
1091 * @shp contains the shared memory structure to be modified.
1093 * Check permission when a shared memory region is requested through the
1094 * shmget system call. This hook is only called when returning the shared
1095 * memory region identifier for an existing region, not when a new shared
1096 * memory region is created.
1097 * @shp contains the shared memory structure to be modified.
1098 * @shmflg contains the operation control flags.
1099 * Return 0 if permission is granted.
1101 * Check permission when a shared memory control operation specified by
1102 * @cmd is to be performed on the shared memory region @shp.
1103 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1104 * @shp contains shared memory structure to be modified.
1105 * @cmd contains the operation to be performed.
1106 * Return 0 if permission is granted.
1108 * Check permissions prior to allowing the shmat system call to attach the
1109 * shared memory segment @shp to the data segment of the calling process.
1110 * The attaching address is specified by @shmaddr.
1111 * @shp contains the shared memory structure to be modified.
1112 * @shmaddr contains the address to attach memory region to.
1113 * @shmflg contains the operational flags.
1114 * Return 0 if permission is granted.
1116 * Security hooks for System V Semaphores
1118 * @sem_alloc_security:
1119 * Allocate and attach a security structure to the sma->sem_perm.security
1120 * field. The security field is initialized to NULL when the structure is
1122 * @sma contains the semaphore structure
1123 * Return 0 if operation was successful and permission is granted.
1124 * @sem_free_security:
1125 * deallocate security struct for this semaphore
1126 * @sma contains the semaphore structure.
1128 * Check permission when a semaphore is requested through the semget
1129 * system call. This hook is only called when returning the semaphore
1130 * identifier for an existing semaphore, not when a new one must be
1132 * @sma contains the semaphore structure.
1133 * @semflg contains the operation control flags.
1134 * Return 0 if permission is granted.
1136 * Check permission when a semaphore operation specified by @cmd is to be
1137 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
1138 * IPC_INFO or SEM_INFO.
1139 * @sma contains the semaphore structure. May be NULL.
1140 * @cmd contains the operation to be performed.
1141 * Return 0 if permission is granted.
1143 * Check permissions before performing operations on members of the
1144 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1146 * @sma contains the semaphore structure.
1147 * @sops contains the operations to perform.
1148 * @nsops contains the number of operations to perform.
1149 * @alter contains the flag indicating whether changes are to be made.
1150 * Return 0 if permission is granted.
1153 * Check permission before allowing the @parent process to trace the
1155 * Security modules may also want to perform a process tracing check
1156 * during an execve in the set_security or apply_creds hooks of
1157 * binprm_security_ops if the process is being traced and its security
1158 * attributes would be changed by the execve.
1159 * @parent contains the task_struct structure for parent process.
1160 * @child contains the task_struct structure for child process.
1161 * Return 0 if permission is granted.
1163 * Get the @effective, @inheritable, and @permitted capability sets for
1164 * the @target process. The hook may also perform permission checking to
1165 * determine if the current process is allowed to see the capability sets
1166 * of the @target process.
1167 * @target contains the task_struct structure for target process.
1168 * @effective contains the effective capability set.
1169 * @inheritable contains the inheritable capability set.
1170 * @permitted contains the permitted capability set.
1171 * Return 0 if the capability sets were successfully obtained.
1173 * Check permission before setting the @effective, @inheritable, and
1174 * @permitted capability sets for the @target process.
1175 * Caveat: @target is also set to current if a set of processes is
1176 * specified (i.e. all processes other than current and init or a
1177 * particular process group). Hence, the capset_set hook may need to
1178 * revalidate permission to the actual target process.
1179 * @target contains the task_struct structure for target process.
1180 * @effective contains the effective capability set.
1181 * @inheritable contains the inheritable capability set.
1182 * @permitted contains the permitted capability set.
1183 * Return 0 if permission is granted.
1185 * Set the @effective, @inheritable, and @permitted capability sets for
1186 * the @target process. Since capset_check cannot always check permission
1187 * to the real @target process, this hook may also perform permission
1188 * checking to determine if the current process is allowed to set the
1189 * capability sets of the @target process. However, this hook has no way
1190 * of returning an error due to the structure of the sys_capset code.
1191 * @target contains the task_struct structure for target process.
1192 * @effective contains the effective capability set.
1193 * @inheritable contains the inheritable capability set.
1194 * @permitted contains the permitted capability set.
1196 * Check whether the @tsk process has the @cap capability.
1197 * @tsk contains the task_struct for the process.
1198 * @cap contains the capability <include/linux/capability.h>.
1199 * Return 0 if the capability is granted for @tsk.
1201 * Check permission before enabling or disabling process accounting. If
1202 * accounting is being enabled, then @file refers to the open file used to
1203 * store accounting records. If accounting is being disabled, then @file
1205 * @file contains the file structure for the accounting file (may be NULL).
1206 * Return 0 if permission is granted.
1208 * Check permission before accessing the @table sysctl variable in the
1209 * manner specified by @op.
1210 * @table contains the ctl_table structure for the sysctl variable.
1211 * @op contains the operation (001 = search, 002 = write, 004 = read).
1212 * Return 0 if permission is granted.
1214 * Check permission before accessing the kernel message ring or changing
1215 * logging to the console.
1216 * See the syslog(2) manual page for an explanation of the @type values.
1217 * @type contains the type of action.
1218 * Return 0 if permission is granted.
1220 * Check permission to change the system time.
1221 * struct timespec and timezone are defined in include/linux/time.h
1222 * @ts contains new time
1223 * @tz contains new timezone
1224 * Return 0 if permission is granted.
1225 * @vm_enough_memory:
1226 * Check permissions for allocating a new virtual mapping.
1227 * @mm contains the mm struct it is being added to.
1228 * @pages contains the number of pages.
1229 * Return 0 if permission is granted.
1231 * @register_security:
1232 * allow module stacking.
1233 * @name contains the name of the security module being stacked.
1234 * @ops contains a pointer to the struct security_operations of the module to stack.
1237 * Convert secid to security context.
1238 * @secid contains the security ID.
1239 * @secdata contains the pointer that stores the converted security context.
1241 * Convert security context to secid.
1242 * @secid contains the pointer to the generated security ID.
1243 * @secdata contains the security context.
1246 * Release the security context.
1247 * @secdata contains the security context.
1248 * @seclen contains the length of the security context.
1250 * Security hooks for Audit
1253 * Allocate and initialize an LSM audit rule structure.
1254 * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
1255 * @op contains the operator the rule uses.
1256 * @rulestr contains the context where the rule will be applied to.
1257 * @lsmrule contains a pointer to receive the result.
1258 * Return 0 if @lsmrule has been successfully set,
1259 * -EINVAL in case of an invalid rule.
1261 * @audit_rule_known:
1262 * Specifies whether given @rule contains any fields related to current LSM.
1263 * @rule contains the audit rule of interest.
1264 * Return 1 in case of relation found, 0 otherwise.
1266 * @audit_rule_match:
1267 * Determine if given @secid matches a rule previously approved
1268 * by @audit_rule_known.
1269 * @secid contains the security id in question.
1270 * @field contains the field which relates to current LSM.
1271 * @op contains the operator that will be used for matching.
1272 * @rule points to the audit rule that will be checked against.
1273 * @actx points to the audit context associated with the check.
1274 * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1277 * Deallocate the LSM audit rule structure previously allocated by
1279 * @rule contains the allocated rule
1281 * This is the main security structure.
1283 struct security_operations {
1284 char name[SECURITY_NAME_MAX + 1];
1286 int (*ptrace) (struct task_struct *parent, struct task_struct *child);
1287 int (*capget) (struct task_struct *target,
1288 kernel_cap_t *effective,
1289 kernel_cap_t *inheritable, kernel_cap_t *permitted);
1290 int (*capset_check) (struct task_struct *target,
1291 kernel_cap_t *effective,
1292 kernel_cap_t *inheritable,
1293 kernel_cap_t *permitted);
1294 void (*capset_set) (struct task_struct *target,
1295 kernel_cap_t *effective,
1296 kernel_cap_t *inheritable,
1297 kernel_cap_t *permitted);
1298 int (*capable) (struct task_struct *tsk, int cap);
1299 int (*acct) (struct file *file);
1300 int (*sysctl) (struct ctl_table *table, int op);
1301 int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1302 int (*quota_on) (struct dentry *dentry);
1303 int (*syslog) (int type);
1304 int (*settime) (struct timespec *ts, struct timezone *tz);
1305 int (*vm_enough_memory) (struct mm_struct *mm, long pages);
1307 int (*bprm_alloc_security) (struct linux_binprm *bprm);
1308 void (*bprm_free_security) (struct linux_binprm *bprm);
1309 void (*bprm_apply_creds) (struct linux_binprm *bprm, int unsafe);
1310 void (*bprm_post_apply_creds) (struct linux_binprm *bprm);
1311 int (*bprm_set_security) (struct linux_binprm *bprm);
1312 int (*bprm_check_security) (struct linux_binprm *bprm);
1313 int (*bprm_secureexec) (struct linux_binprm *bprm);
1315 int (*sb_alloc_security) (struct super_block *sb);
1316 void (*sb_free_security) (struct super_block *sb);
1317 int (*sb_copy_data) (char *orig, char *copy);
1318 int (*sb_kern_mount) (struct super_block *sb, void *data);
1319 int (*sb_statfs) (struct dentry *dentry);
1320 int (*sb_mount) (char *dev_name, struct path *path,
1321 char *type, unsigned long flags, void *data);
1322 int (*sb_check_sb) (struct vfsmount *mnt, struct path *path);
1323 int (*sb_umount) (struct vfsmount *mnt, int flags);
1324 void (*sb_umount_close) (struct vfsmount *mnt);
1325 void (*sb_umount_busy) (struct vfsmount *mnt);
1326 void (*sb_post_remount) (struct vfsmount *mnt,
1327 unsigned long flags, void *data);
1328 void (*sb_post_addmount) (struct vfsmount *mnt,
1329 struct path *mountpoint);
1330 int (*sb_pivotroot) (struct path *old_path,
1331 struct path *new_path);
1332 void (*sb_post_pivotroot) (struct path *old_path,
1333 struct path *new_path);
1334 int (*sb_get_mnt_opts) (const struct super_block *sb,
1335 struct security_mnt_opts *opts);
1336 int (*sb_set_mnt_opts) (struct super_block *sb,
1337 struct security_mnt_opts *opts);
1338 void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1339 struct super_block *newsb);
1340 int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
1342 int (*inode_alloc_security) (struct inode *inode);
1343 void (*inode_free_security) (struct inode *inode);
1344 int (*inode_init_security) (struct inode *inode, struct inode *dir,
1345 char **name, void **value, size_t *len);
1346 int (*inode_create) (struct inode *dir,
1347 struct dentry *dentry, int mode);
1348 int (*inode_link) (struct dentry *old_dentry,
1349 struct inode *dir, struct dentry *new_dentry);
1350 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1351 int (*inode_symlink) (struct inode *dir,
1352 struct dentry *dentry, const char *old_name);
1353 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
1354 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1355 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
1356 int mode, dev_t dev);
1357 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
1358 struct inode *new_dir, struct dentry *new_dentry);
1359 int (*inode_readlink) (struct dentry *dentry);
1360 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
1361 int (*inode_permission) (struct inode *inode, int mask, struct nameidata *nd);
1362 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1363 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
1364 void (*inode_delete) (struct inode *inode);
1365 int (*inode_setxattr) (struct dentry *dentry, char *name, void *value,
1366 size_t size, int flags);
1367 void (*inode_post_setxattr) (struct dentry *dentry, char *name, void *value,
1368 size_t size, int flags);
1369 int (*inode_getxattr) (struct dentry *dentry, char *name);
1370 int (*inode_listxattr) (struct dentry *dentry);
1371 int (*inode_removexattr) (struct dentry *dentry, char *name);
1372 int (*inode_need_killpriv) (struct dentry *dentry);
1373 int (*inode_killpriv) (struct dentry *dentry);
1374 int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
1375 int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
1376 int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
1377 void (*inode_getsecid) (const struct inode *inode, u32 *secid);
1379 int (*file_permission) (struct file *file, int mask);
1380 int (*file_alloc_security) (struct file *file);
1381 void (*file_free_security) (struct file *file);
1382 int (*file_ioctl) (struct file *file, unsigned int cmd,
1384 int (*file_mmap) (struct file *file,
1385 unsigned long reqprot, unsigned long prot,
1386 unsigned long flags, unsigned long addr,
1387 unsigned long addr_only);
1388 int (*file_mprotect) (struct vm_area_struct *vma,
1389 unsigned long reqprot,
1390 unsigned long prot);
1391 int (*file_lock) (struct file *file, unsigned int cmd);
1392 int (*file_fcntl) (struct file *file, unsigned int cmd,
1394 int (*file_set_fowner) (struct file *file);
1395 int (*file_send_sigiotask) (struct task_struct *tsk,
1396 struct fown_struct *fown, int sig);
1397 int (*file_receive) (struct file *file);
1398 int (*dentry_open) (struct file *file);
1400 int (*task_create) (unsigned long clone_flags);
1401 int (*task_alloc_security) (struct task_struct *p);
1402 void (*task_free_security) (struct task_struct *p);
1403 int (*task_setuid) (uid_t id0, uid_t id1, uid_t id2, int flags);
1404 int (*task_post_setuid) (uid_t old_ruid /* or fsuid */ ,
1405 uid_t old_euid, uid_t old_suid, int flags);
1406 int (*task_setgid) (gid_t id0, gid_t id1, gid_t id2, int flags);
1407 int (*task_setpgid) (struct task_struct *p, pid_t pgid);
1408 int (*task_getpgid) (struct task_struct *p);
1409 int (*task_getsid) (struct task_struct *p);
1410 void (*task_getsecid) (struct task_struct *p, u32 *secid);
1411 int (*task_setgroups) (struct group_info *group_info);
1412 int (*task_setnice) (struct task_struct *p, int nice);
1413 int (*task_setioprio) (struct task_struct *p, int ioprio);
1414 int (*task_getioprio) (struct task_struct *p);
1415 int (*task_setrlimit) (unsigned int resource, struct rlimit *new_rlim);
1416 int (*task_setscheduler) (struct task_struct *p, int policy,
1417 struct sched_param *lp);
1418 int (*task_getscheduler) (struct task_struct *p);
1419 int (*task_movememory) (struct task_struct *p);
1420 int (*task_kill) (struct task_struct *p,
1421 struct siginfo *info, int sig, u32 secid);
1422 int (*task_wait) (struct task_struct *p);
1423 int (*task_prctl) (int option, unsigned long arg2,
1424 unsigned long arg3, unsigned long arg4,
1425 unsigned long arg5, long *rc_p);
1426 void (*task_reparent_to_init) (struct task_struct *p);
1427 void (*task_to_inode) (struct task_struct *p, struct inode *inode);
1429 int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
1430 void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
1432 int (*msg_msg_alloc_security) (struct msg_msg *msg);
1433 void (*msg_msg_free_security) (struct msg_msg *msg);
1435 int (*msg_queue_alloc_security) (struct msg_queue *msq);
1436 void (*msg_queue_free_security) (struct msg_queue *msq);
1437 int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
1438 int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
1439 int (*msg_queue_msgsnd) (struct msg_queue *msq,
1440 struct msg_msg *msg, int msqflg);
1441 int (*msg_queue_msgrcv) (struct msg_queue *msq,
1442 struct msg_msg *msg,
1443 struct task_struct *target,
1444 long type, int mode);
1446 int (*shm_alloc_security) (struct shmid_kernel *shp);
1447 void (*shm_free_security) (struct shmid_kernel *shp);
1448 int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
1449 int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
1450 int (*shm_shmat) (struct shmid_kernel *shp,
1451 char __user *shmaddr, int shmflg);
1453 int (*sem_alloc_security) (struct sem_array *sma);
1454 void (*sem_free_security) (struct sem_array *sma);
1455 int (*sem_associate) (struct sem_array *sma, int semflg);
1456 int (*sem_semctl) (struct sem_array *sma, int cmd);
1457 int (*sem_semop) (struct sem_array *sma,
1458 struct sembuf *sops, unsigned nsops, int alter);
1460 int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
1461 int (*netlink_recv) (struct sk_buff *skb, int cap);
1463 /* allow module stacking */
1464 int (*register_security) (const char *name,
1465 struct security_operations *ops);
1467 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1469 int (*getprocattr) (struct task_struct *p, char *name, char **value);
1470 int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
1471 int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
1472 int (*secctx_to_secid) (char *secdata, u32 seclen, u32 *secid);
1473 void (*release_secctx) (char *secdata, u32 seclen);
1475 #ifdef CONFIG_SECURITY_NETWORK
1476 int (*unix_stream_connect) (struct socket *sock,
1477 struct socket *other, struct sock *newsk);
1478 int (*unix_may_send) (struct socket *sock, struct socket *other);
1480 int (*socket_create) (int family, int type, int protocol, int kern);
1481 int (*socket_post_create) (struct socket *sock, int family,
1482 int type, int protocol, int kern);
1483 int (*socket_bind) (struct socket *sock,
1484 struct sockaddr *address, int addrlen);
1485 int (*socket_connect) (struct socket *sock,
1486 struct sockaddr *address, int addrlen);
1487 int (*socket_listen) (struct socket *sock, int backlog);
1488 int (*socket_accept) (struct socket *sock, struct socket *newsock);
1489 void (*socket_post_accept) (struct socket *sock,
1490 struct socket *newsock);
1491 int (*socket_sendmsg) (struct socket *sock,
1492 struct msghdr *msg, int size);
1493 int (*socket_recvmsg) (struct socket *sock,
1494 struct msghdr *msg, int size, int flags);
1495 int (*socket_getsockname) (struct socket *sock);
1496 int (*socket_getpeername) (struct socket *sock);
1497 int (*socket_getsockopt) (struct socket *sock, int level, int optname);
1498 int (*socket_setsockopt) (struct socket *sock, int level, int optname);
1499 int (*socket_shutdown) (struct socket *sock, int how);
1500 int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
1501 int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
1502 int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
1503 int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
1504 void (*sk_free_security) (struct sock *sk);
1505 void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
1506 void (*sk_getsecid) (struct sock *sk, u32 *secid);
1507 void (*sock_graft) (struct sock *sk, struct socket *parent);
1508 int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
1509 struct request_sock *req);
1510 void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
1511 void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
1512 void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
1513 #endif /* CONFIG_SECURITY_NETWORK */
1515 #ifdef CONFIG_SECURITY_NETWORK_XFRM
1516 int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
1517 struct xfrm_user_sec_ctx *sec_ctx);
1518 int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
1519 void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
1520 int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
1521 int (*xfrm_state_alloc_security) (struct xfrm_state *x,
1522 struct xfrm_user_sec_ctx *sec_ctx,
1524 void (*xfrm_state_free_security) (struct xfrm_state *x);
1525 int (*xfrm_state_delete_security) (struct xfrm_state *x);
1526 int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1527 int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
1528 struct xfrm_policy *xp,
1530 int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
1531 #endif /* CONFIG_SECURITY_NETWORK_XFRM */
1533 /* key management security hooks */
1535 int (*key_alloc) (struct key *key, struct task_struct *tsk, unsigned long flags);
1536 void (*key_free) (struct key *key);
1537 int (*key_permission) (key_ref_t key_ref,
1538 struct task_struct *context,
1541 #endif /* CONFIG_KEYS */
1544 int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
1545 int (*audit_rule_known) (struct audit_krule *krule);
1546 int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
1547 struct audit_context *actx);
1548 void (*audit_rule_free) (void *lsmrule);
1549 #endif /* CONFIG_AUDIT */
1553 extern int security_init(void);
1554 extern int security_module_enable(struct security_operations *ops);
1555 extern int register_security(struct security_operations *ops);
1556 extern int mod_reg_security(const char *name, struct security_operations *ops);
1557 extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
1558 struct dentry *parent, void *data,
1559 const struct file_operations *fops);
1560 extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
1561 extern void securityfs_remove(struct dentry *dentry);
1563 /* Security operations */
1564 int security_ptrace(struct task_struct *parent, struct task_struct *child);
1565 int security_capget(struct task_struct *target,
1566 kernel_cap_t *effective,
1567 kernel_cap_t *inheritable,
1568 kernel_cap_t *permitted);
1569 int security_capset_check(struct task_struct *target,
1570 kernel_cap_t *effective,
1571 kernel_cap_t *inheritable,
1572 kernel_cap_t *permitted);
1573 void security_capset_set(struct task_struct *target,
1574 kernel_cap_t *effective,
1575 kernel_cap_t *inheritable,
1576 kernel_cap_t *permitted);
1577 int security_capable(struct task_struct *tsk, int cap);
1578 int security_acct(struct file *file);
1579 int security_sysctl(struct ctl_table *table, int op);
1580 int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1581 int security_quota_on(struct dentry *dentry);
1582 int security_syslog(int type);
1583 int security_settime(struct timespec *ts, struct timezone *tz);
1584 int security_vm_enough_memory(long pages);
1585 int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
1586 int security_bprm_alloc(struct linux_binprm *bprm);
1587 void security_bprm_free(struct linux_binprm *bprm);
1588 void security_bprm_apply_creds(struct linux_binprm *bprm, int unsafe);
1589 void security_bprm_post_apply_creds(struct linux_binprm *bprm);
1590 int security_bprm_set(struct linux_binprm *bprm);
1591 int security_bprm_check(struct linux_binprm *bprm);
1592 int security_bprm_secureexec(struct linux_binprm *bprm);
1593 int security_sb_alloc(struct super_block *sb);
1594 void security_sb_free(struct super_block *sb);
1595 int security_sb_copy_data(char *orig, char *copy);
1596 int security_sb_kern_mount(struct super_block *sb, void *data);
1597 int security_sb_statfs(struct dentry *dentry);
1598 int security_sb_mount(char *dev_name, struct path *path,
1599 char *type, unsigned long flags, void *data);
1600 int security_sb_check_sb(struct vfsmount *mnt, struct path *path);
1601 int security_sb_umount(struct vfsmount *mnt, int flags);
1602 void security_sb_umount_close(struct vfsmount *mnt);
1603 void security_sb_umount_busy(struct vfsmount *mnt);
1604 void security_sb_post_remount(struct vfsmount *mnt, unsigned long flags, void *data);
1605 void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint);
1606 int security_sb_pivotroot(struct path *old_path, struct path *new_path);
1607 void security_sb_post_pivotroot(struct path *old_path, struct path *new_path);
1608 int security_sb_get_mnt_opts(const struct super_block *sb,
1609 struct security_mnt_opts *opts);
1610 int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
1611 void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1612 struct super_block *newsb);
1613 int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
1615 int security_inode_alloc(struct inode *inode);
1616 void security_inode_free(struct inode *inode);
1617 int security_inode_init_security(struct inode *inode, struct inode *dir,
1618 char **name, void **value, size_t *len);
1619 int security_inode_create(struct inode *dir, struct dentry *dentry, int mode);
1620 int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1621 struct dentry *new_dentry);
1622 int security_inode_unlink(struct inode *dir, struct dentry *dentry);
1623 int security_inode_symlink(struct inode *dir, struct dentry *dentry,
1624 const char *old_name);
1625 int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode);
1626 int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
1627 int security_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
1628 int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
1629 struct inode *new_dir, struct dentry *new_dentry);
1630 int security_inode_readlink(struct dentry *dentry);
1631 int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
1632 int security_inode_permission(struct inode *inode, int mask, struct nameidata *nd);
1633 int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1634 int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
1635 void security_inode_delete(struct inode *inode);
1636 int security_inode_setxattr(struct dentry *dentry, char *name,
1637 void *value, size_t size, int flags);
1638 void security_inode_post_setxattr(struct dentry *dentry, char *name,
1639 void *value, size_t size, int flags);
1640 int security_inode_getxattr(struct dentry *dentry, char *name);
1641 int security_inode_listxattr(struct dentry *dentry);
1642 int security_inode_removexattr(struct dentry *dentry, char *name);
1643 int security_inode_need_killpriv(struct dentry *dentry);
1644 int security_inode_killpriv(struct dentry *dentry);
1645 int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
1646 int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1647 int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
1648 void security_inode_getsecid(const struct inode *inode, u32 *secid);
1649 int security_file_permission(struct file *file, int mask);
1650 int security_file_alloc(struct file *file);
1651 void security_file_free(struct file *file);
1652 int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1653 int security_file_mmap(struct file *file, unsigned long reqprot,
1654 unsigned long prot, unsigned long flags,
1655 unsigned long addr, unsigned long addr_only);
1656 int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
1657 unsigned long prot);
1658 int security_file_lock(struct file *file, unsigned int cmd);
1659 int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
1660 int security_file_set_fowner(struct file *file);
1661 int security_file_send_sigiotask(struct task_struct *tsk,
1662 struct fown_struct *fown, int sig);
1663 int security_file_receive(struct file *file);
1664 int security_dentry_open(struct file *file);
1665 int security_task_create(unsigned long clone_flags);
1666 int security_task_alloc(struct task_struct *p);
1667 void security_task_free(struct task_struct *p);
1668 int security_task_setuid(uid_t id0, uid_t id1, uid_t id2, int flags);
1669 int security_task_post_setuid(uid_t old_ruid, uid_t old_euid,
1670 uid_t old_suid, int flags);
1671 int security_task_setgid(gid_t id0, gid_t id1, gid_t id2, int flags);
1672 int security_task_setpgid(struct task_struct *p, pid_t pgid);
1673 int security_task_getpgid(struct task_struct *p);
1674 int security_task_getsid(struct task_struct *p);
1675 void security_task_getsecid(struct task_struct *p, u32 *secid);
1676 int security_task_setgroups(struct group_info *group_info);
1677 int security_task_setnice(struct task_struct *p, int nice);
1678 int security_task_setioprio(struct task_struct *p, int ioprio);
1679 int security_task_getioprio(struct task_struct *p);
1680 int security_task_setrlimit(unsigned int resource, struct rlimit *new_rlim);
1681 int security_task_setscheduler(struct task_struct *p,
1682 int policy, struct sched_param *lp);
1683 int security_task_getscheduler(struct task_struct *p);
1684 int security_task_movememory(struct task_struct *p);
1685 int security_task_kill(struct task_struct *p, struct siginfo *info,
1686 int sig, u32 secid);
1687 int security_task_wait(struct task_struct *p);
1688 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
1689 unsigned long arg4, unsigned long arg5, long *rc_p);
1690 void security_task_reparent_to_init(struct task_struct *p);
1691 void security_task_to_inode(struct task_struct *p, struct inode *inode);
1692 int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
1693 void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
1694 int security_msg_msg_alloc(struct msg_msg *msg);
1695 void security_msg_msg_free(struct msg_msg *msg);
1696 int security_msg_queue_alloc(struct msg_queue *msq);
1697 void security_msg_queue_free(struct msg_queue *msq);
1698 int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
1699 int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
1700 int security_msg_queue_msgsnd(struct msg_queue *msq,
1701 struct msg_msg *msg, int msqflg);
1702 int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
1703 struct task_struct *target, long type, int mode);
1704 int security_shm_alloc(struct shmid_kernel *shp);
1705 void security_shm_free(struct shmid_kernel *shp);
1706 int security_shm_associate(struct shmid_kernel *shp, int shmflg);
1707 int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
1708 int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
1709 int security_sem_alloc(struct sem_array *sma);
1710 void security_sem_free(struct sem_array *sma);
1711 int security_sem_associate(struct sem_array *sma, int semflg);
1712 int security_sem_semctl(struct sem_array *sma, int cmd);
1713 int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
1714 unsigned nsops, int alter);
1715 void security_d_instantiate(struct dentry *dentry, struct inode *inode);
1716 int security_getprocattr(struct task_struct *p, char *name, char **value);
1717 int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
1718 int security_netlink_send(struct sock *sk, struct sk_buff *skb);
1719 int security_netlink_recv(struct sk_buff *skb, int cap);
1720 int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
1721 int security_secctx_to_secid(char *secdata, u32 seclen, u32 *secid);
1722 void security_release_secctx(char *secdata, u32 seclen);
1724 #else /* CONFIG_SECURITY */
1725 struct security_mnt_opts {
1728 static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
1732 static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
1737 * This is the default capabilities functionality. Most of these functions
1738 * are just stubbed out, but a few must call the proper capable code.
1741 static inline int security_init(void)
1746 static inline int security_ptrace(struct task_struct *parent, struct task_struct *child)
1748 return cap_ptrace(parent, child);
1751 static inline int security_capget(struct task_struct *target,
1752 kernel_cap_t *effective,
1753 kernel_cap_t *inheritable,
1754 kernel_cap_t *permitted)
1756 return cap_capget(target, effective, inheritable, permitted);
1759 static inline int security_capset_check(struct task_struct *target,
1760 kernel_cap_t *effective,
1761 kernel_cap_t *inheritable,
1762 kernel_cap_t *permitted)
1764 return cap_capset_check(target, effective, inheritable, permitted);
1767 static inline void security_capset_set(struct task_struct *target,
1768 kernel_cap_t *effective,
1769 kernel_cap_t *inheritable,
1770 kernel_cap_t *permitted)
1772 cap_capset_set(target, effective, inheritable, permitted);
1775 static inline int security_capable(struct task_struct *tsk, int cap)
1777 return cap_capable(tsk, cap);
1780 static inline int security_acct(struct file *file)
1785 static inline int security_sysctl(struct ctl_table *table, int op)
1790 static inline int security_quotactl(int cmds, int type, int id,
1791 struct super_block *sb)
1796 static inline int security_quota_on(struct dentry *dentry)
1801 static inline int security_syslog(int type)
1803 return cap_syslog(type);
1806 static inline int security_settime(struct timespec *ts, struct timezone *tz)
1808 return cap_settime(ts, tz);
1811 static inline int security_vm_enough_memory(long pages)
1813 return cap_vm_enough_memory(current->mm, pages);
1816 static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1818 return cap_vm_enough_memory(mm, pages);
1821 static inline int security_bprm_alloc(struct linux_binprm *bprm)
1826 static inline void security_bprm_free(struct linux_binprm *bprm)
1829 static inline void security_bprm_apply_creds(struct linux_binprm *bprm, int unsafe)
1831 cap_bprm_apply_creds(bprm, unsafe);
1834 static inline void security_bprm_post_apply_creds(struct linux_binprm *bprm)
1839 static inline int security_bprm_set(struct linux_binprm *bprm)
1841 return cap_bprm_set_security(bprm);
1844 static inline int security_bprm_check(struct linux_binprm *bprm)
1849 static inline int security_bprm_secureexec(struct linux_binprm *bprm)
1851 return cap_bprm_secureexec(bprm);
1854 static inline int security_sb_alloc(struct super_block *sb)
1859 static inline void security_sb_free(struct super_block *sb)
1862 static inline int security_sb_copy_data(char *orig, char *copy)
1867 static inline int security_sb_kern_mount(struct super_block *sb, void *data)
1872 static inline int security_sb_statfs(struct dentry *dentry)
1877 static inline int security_sb_mount(char *dev_name, struct path *path,
1878 char *type, unsigned long flags,
1884 static inline int security_sb_check_sb(struct vfsmount *mnt,
1890 static inline int security_sb_umount(struct vfsmount *mnt, int flags)
1895 static inline void security_sb_umount_close(struct vfsmount *mnt)
1898 static inline void security_sb_umount_busy(struct vfsmount *mnt)
1901 static inline void security_sb_post_remount(struct vfsmount *mnt,
1902 unsigned long flags, void *data)
1905 static inline void security_sb_post_addmount(struct vfsmount *mnt,
1906 struct path *mountpoint)
1909 static inline int security_sb_pivotroot(struct path *old_path,
1910 struct path *new_path)
1915 static inline void security_sb_post_pivotroot(struct path *old_path,
1916 struct path *new_path)
1918 static inline int security_sb_get_mnt_opts(const struct super_block *sb,
1919 struct security_mnt_opts *opts)
1921 security_init_mnt_opts(opts);
1925 static inline int security_sb_set_mnt_opts(struct super_block *sb,
1926 struct security_mnt_opts *opts)
1931 static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1932 struct super_block *newsb)
1935 static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
1940 static inline int security_inode_alloc(struct inode *inode)
1945 static inline void security_inode_free(struct inode *inode)
1948 static inline int security_inode_init_security(struct inode *inode,
1957 static inline int security_inode_create(struct inode *dir,
1958 struct dentry *dentry,
1964 static inline int security_inode_link(struct dentry *old_dentry,
1966 struct dentry *new_dentry)
1971 static inline int security_inode_unlink(struct inode *dir,
1972 struct dentry *dentry)
1977 static inline int security_inode_symlink(struct inode *dir,
1978 struct dentry *dentry,
1979 const char *old_name)
1984 static inline int security_inode_mkdir(struct inode *dir,
1985 struct dentry *dentry,
1991 static inline int security_inode_rmdir(struct inode *dir,
1992 struct dentry *dentry)
1997 static inline int security_inode_mknod(struct inode *dir,
1998 struct dentry *dentry,
1999 int mode, dev_t dev)
2004 static inline int security_inode_rename(struct inode *old_dir,
2005 struct dentry *old_dentry,
2006 struct inode *new_dir,
2007 struct dentry *new_dentry)
2012 static inline int security_inode_readlink(struct dentry *dentry)
2017 static inline int security_inode_follow_link(struct dentry *dentry,
2018 struct nameidata *nd)
2023 static inline int security_inode_permission(struct inode *inode, int mask,
2024 struct nameidata *nd)
2029 static inline int security_inode_setattr(struct dentry *dentry,
2035 static inline int security_inode_getattr(struct vfsmount *mnt,
2036 struct dentry *dentry)
2041 static inline void security_inode_delete(struct inode *inode)
2044 static inline int security_inode_setxattr(struct dentry *dentry, char *name,
2045 void *value, size_t size, int flags)
2047 return cap_inode_setxattr(dentry, name, value, size, flags);
2050 static inline void security_inode_post_setxattr(struct dentry *dentry, char *name,
2051 void *value, size_t size, int flags)
2054 static inline int security_inode_getxattr(struct dentry *dentry, char *name)
2059 static inline int security_inode_listxattr(struct dentry *dentry)
2064 static inline int security_inode_removexattr(struct dentry *dentry, char *name)
2066 return cap_inode_removexattr(dentry, name);
2069 static inline int security_inode_need_killpriv(struct dentry *dentry)
2071 return cap_inode_need_killpriv(dentry);
2074 static inline int security_inode_killpriv(struct dentry *dentry)
2076 return cap_inode_killpriv(dentry);
2079 static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
2084 static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2089 static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2094 static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2099 static inline int security_file_permission(struct file *file, int mask)
2104 static inline int security_file_alloc(struct file *file)
2109 static inline void security_file_free(struct file *file)
2112 static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2118 static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2120 unsigned long flags,
2122 unsigned long addr_only)
2127 static inline int security_file_mprotect(struct vm_area_struct *vma,
2128 unsigned long reqprot,
2134 static inline int security_file_lock(struct file *file, unsigned int cmd)
2139 static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2145 static inline int security_file_set_fowner(struct file *file)
2150 static inline int security_file_send_sigiotask(struct task_struct *tsk,
2151 struct fown_struct *fown,
2157 static inline int security_file_receive(struct file *file)
2162 static inline int security_dentry_open(struct file *file)
2167 static inline int security_task_create(unsigned long clone_flags)
2172 static inline int security_task_alloc(struct task_struct *p)
2177 static inline void security_task_free(struct task_struct *p)
2180 static inline int security_task_setuid(uid_t id0, uid_t id1, uid_t id2,
2186 static inline int security_task_post_setuid(uid_t old_ruid, uid_t old_euid,
2187 uid_t old_suid, int flags)
2189 return cap_task_post_setuid(old_ruid, old_euid, old_suid, flags);
2192 static inline int security_task_setgid(gid_t id0, gid_t id1, gid_t id2,
2198 static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
2203 static inline int security_task_getpgid(struct task_struct *p)
2208 static inline int security_task_getsid(struct task_struct *p)
2213 static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
2218 static inline int security_task_setgroups(struct group_info *group_info)
2223 static inline int security_task_setnice(struct task_struct *p, int nice)
2225 return cap_task_setnice(p, nice);
2228 static inline int security_task_setioprio(struct task_struct *p, int ioprio)
2230 return cap_task_setioprio(p, ioprio);
2233 static inline int security_task_getioprio(struct task_struct *p)
2238 static inline int security_task_setrlimit(unsigned int resource,
2239 struct rlimit *new_rlim)
2244 static inline int security_task_setscheduler(struct task_struct *p,
2246 struct sched_param *lp)
2248 return cap_task_setscheduler(p, policy, lp);
2251 static inline int security_task_getscheduler(struct task_struct *p)
2256 static inline int security_task_movememory(struct task_struct *p)
2261 static inline int security_task_kill(struct task_struct *p,
2262 struct siginfo *info, int sig,
2268 static inline int security_task_wait(struct task_struct *p)
2273 static inline int security_task_prctl(int option, unsigned long arg2,
2276 unsigned long arg5, long *rc_p)
2278 return cap_task_prctl(option, arg2, arg3, arg3, arg5, rc_p);
2281 static inline void security_task_reparent_to_init(struct task_struct *p)
2283 cap_task_reparent_to_init(p);
2286 static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2289 static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2295 static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2300 static inline int security_msg_msg_alloc(struct msg_msg *msg)
2305 static inline void security_msg_msg_free(struct msg_msg *msg)
2308 static inline int security_msg_queue_alloc(struct msg_queue *msq)
2313 static inline void security_msg_queue_free(struct msg_queue *msq)
2316 static inline int security_msg_queue_associate(struct msg_queue *msq,
2322 static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
2327 static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2328 struct msg_msg *msg, int msqflg)
2333 static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2334 struct msg_msg *msg,
2335 struct task_struct *target,
2336 long type, int mode)
2341 static inline int security_shm_alloc(struct shmid_kernel *shp)
2346 static inline void security_shm_free(struct shmid_kernel *shp)
2349 static inline int security_shm_associate(struct shmid_kernel *shp,
2355 static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
2360 static inline int security_shm_shmat(struct shmid_kernel *shp,
2361 char __user *shmaddr, int shmflg)
2366 static inline int security_sem_alloc(struct sem_array *sma)
2371 static inline void security_sem_free(struct sem_array *sma)
2374 static inline int security_sem_associate(struct sem_array *sma, int semflg)
2379 static inline int security_sem_semctl(struct sem_array *sma, int cmd)
2384 static inline int security_sem_semop(struct sem_array *sma,
2385 struct sembuf *sops, unsigned nsops,
2391 static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
2394 static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
2399 static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2404 static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
2406 return cap_netlink_send(sk, skb);
2409 static inline int security_netlink_recv(struct sk_buff *skb, int cap)
2411 return cap_netlink_recv(skb, cap);
2414 static inline struct dentry *securityfs_create_dir(const char *name,
2415 struct dentry *parent)
2417 return ERR_PTR(-ENODEV);
2420 static inline struct dentry *securityfs_create_file(const char *name,
2422 struct dentry *parent,
2424 const struct file_operations *fops)
2426 return ERR_PTR(-ENODEV);
2429 static inline void securityfs_remove(struct dentry *dentry)
2433 static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2438 static inline int security_secctx_to_secid(char *secdata,
2445 static inline void security_release_secctx(char *secdata, u32 seclen)
2448 #endif /* CONFIG_SECURITY */
2450 #ifdef CONFIG_SECURITY_NETWORK
2452 int security_unix_stream_connect(struct socket *sock, struct socket *other,
2453 struct sock *newsk);
2454 int security_unix_may_send(struct socket *sock, struct socket *other);
2455 int security_socket_create(int family, int type, int protocol, int kern);
2456 int security_socket_post_create(struct socket *sock, int family,
2457 int type, int protocol, int kern);
2458 int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2459 int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2460 int security_socket_listen(struct socket *sock, int backlog);
2461 int security_socket_accept(struct socket *sock, struct socket *newsock);
2462 void security_socket_post_accept(struct socket *sock, struct socket *newsock);
2463 int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2464 int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2465 int size, int flags);
2466 int security_socket_getsockname(struct socket *sock);
2467 int security_socket_getpeername(struct socket *sock);
2468 int security_socket_getsockopt(struct socket *sock, int level, int optname);
2469 int security_socket_setsockopt(struct socket *sock, int level, int optname);
2470 int security_socket_shutdown(struct socket *sock, int how);
2471 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2472 int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2473 int __user *optlen, unsigned len);
2474 int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2475 int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2476 void security_sk_free(struct sock *sk);
2477 void security_sk_clone(const struct sock *sk, struct sock *newsk);
2478 void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2479 void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2480 void security_sock_graft(struct sock*sk, struct socket *parent);
2481 int security_inet_conn_request(struct sock *sk,
2482 struct sk_buff *skb, struct request_sock *req);
2483 void security_inet_csk_clone(struct sock *newsk,
2484 const struct request_sock *req);
2485 void security_inet_conn_established(struct sock *sk,
2486 struct sk_buff *skb);
2488 #else /* CONFIG_SECURITY_NETWORK */
2489 static inline int security_unix_stream_connect(struct socket *sock,
2490 struct socket *other,
2496 static inline int security_unix_may_send(struct socket *sock,
2497 struct socket *other)
2502 static inline int security_socket_create(int family, int type,
2503 int protocol, int kern)
2508 static inline int security_socket_post_create(struct socket *sock,
2511 int protocol, int kern)
2516 static inline int security_socket_bind(struct socket *sock,
2517 struct sockaddr *address,
2523 static inline int security_socket_connect(struct socket *sock,
2524 struct sockaddr *address,
2530 static inline int security_socket_listen(struct socket *sock, int backlog)
2535 static inline int security_socket_accept(struct socket *sock,
2536 struct socket *newsock)
2541 static inline void security_socket_post_accept(struct socket *sock,
2542 struct socket *newsock)
2546 static inline int security_socket_sendmsg(struct socket *sock,
2547 struct msghdr *msg, int size)
2552 static inline int security_socket_recvmsg(struct socket *sock,
2553 struct msghdr *msg, int size,
2559 static inline int security_socket_getsockname(struct socket *sock)
2564 static inline int security_socket_getpeername(struct socket *sock)
2569 static inline int security_socket_getsockopt(struct socket *sock,
2570 int level, int optname)
2575 static inline int security_socket_setsockopt(struct socket *sock,
2576 int level, int optname)
2581 static inline int security_socket_shutdown(struct socket *sock, int how)
2585 static inline int security_sock_rcv_skb(struct sock *sk,
2586 struct sk_buff *skb)
2591 static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2592 int __user *optlen, unsigned len)
2594 return -ENOPROTOOPT;
2597 static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
2599 return -ENOPROTOOPT;
2602 static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
2607 static inline void security_sk_free(struct sock *sk)
2611 static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
2615 static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
2619 static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2623 static inline void security_sock_graft(struct sock *sk, struct socket *parent)
2627 static inline int security_inet_conn_request(struct sock *sk,
2628 struct sk_buff *skb, struct request_sock *req)
2633 static inline void security_inet_csk_clone(struct sock *newsk,
2634 const struct request_sock *req)
2638 static inline void security_inet_conn_established(struct sock *sk,
2639 struct sk_buff *skb)
2642 #endif /* CONFIG_SECURITY_NETWORK */
2644 #ifdef CONFIG_SECURITY_NETWORK_XFRM
2646 int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2647 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2648 void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2649 int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
2650 int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2651 int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2652 struct xfrm_sec_ctx *polsec, u32 secid);
2653 int security_xfrm_state_delete(struct xfrm_state *x);
2654 void security_xfrm_state_free(struct xfrm_state *x);
2655 int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
2656 int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2657 struct xfrm_policy *xp, struct flowi *fl);
2658 int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2659 void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
2661 #else /* CONFIG_SECURITY_NETWORK_XFRM */
2663 static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
2668 static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
2673 static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
2677 static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
2682 static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2683 struct xfrm_user_sec_ctx *sec_ctx)
2688 static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2689 struct xfrm_sec_ctx *polsec, u32 secid)
2694 static inline void security_xfrm_state_free(struct xfrm_state *x)
2698 static inline int security_xfrm_state_delete(struct xfrm_state *x)
2703 static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
2708 static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2709 struct xfrm_policy *xp, struct flowi *fl)
2714 static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
2719 static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2723 #endif /* CONFIG_SECURITY_NETWORK_XFRM */
2726 #ifdef CONFIG_SECURITY
2728 int security_key_alloc(struct key *key, struct task_struct *tsk, unsigned long flags);
2729 void security_key_free(struct key *key);
2730 int security_key_permission(key_ref_t key_ref,
2731 struct task_struct *context, key_perm_t perm);
2735 static inline int security_key_alloc(struct key *key,
2736 struct task_struct *tsk,
2737 unsigned long flags)
2742 static inline void security_key_free(struct key *key)
2746 static inline int security_key_permission(key_ref_t key_ref,
2747 struct task_struct *context,
2754 #endif /* CONFIG_KEYS */
2757 #ifdef CONFIG_SECURITY
2758 int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2759 int security_audit_rule_known(struct audit_krule *krule);
2760 int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2761 struct audit_context *actx);
2762 void security_audit_rule_free(void *lsmrule);
2766 static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2772 static inline int security_audit_rule_known(struct audit_krule *krule)
2777 static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2778 void *lsmrule, struct audit_context *actx)
2783 static inline void security_audit_rule_free(void *lsmrule)
2786 #endif /* CONFIG_SECURITY */
2787 #endif /* CONFIG_AUDIT */
2789 #endif /* ! __LINUX_SECURITY_H */