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>
37 * These functions are in security/capability.c and are used
38 * as the default capabilities functions
40 extern int cap_capable (struct task_struct
*tsk
, int cap
);
41 extern int cap_settime (struct timespec
*ts
, struct timezone
*tz
);
42 extern int cap_ptrace (struct task_struct
*parent
, struct task_struct
*child
);
43 extern int cap_capget (struct task_struct
*target
, kernel_cap_t
*effective
, kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
);
44 extern int cap_capset_check (struct task_struct
*target
, kernel_cap_t
*effective
, kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
);
45 extern void cap_capset_set (struct task_struct
*target
, kernel_cap_t
*effective
, kernel_cap_t
*inheritable
, kernel_cap_t
*permitted
);
46 extern int cap_bprm_set_security (struct linux_binprm
*bprm
);
47 extern void cap_bprm_apply_creds (struct linux_binprm
*bprm
, int unsafe
);
48 extern int cap_bprm_secureexec(struct linux_binprm
*bprm
);
49 extern int cap_inode_setxattr(struct dentry
*dentry
, char *name
, void *value
, size_t size
, int flags
);
50 extern int cap_inode_removexattr(struct dentry
*dentry
, char *name
);
51 extern int cap_task_post_setuid (uid_t old_ruid
, uid_t old_euid
, uid_t old_suid
, int flags
);
52 extern void cap_task_reparent_to_init (struct task_struct
*p
);
53 extern int cap_syslog (int type
);
54 extern int cap_vm_enough_memory (long pages
);
62 extern int cap_netlink_send(struct sock
*sk
, struct sk_buff
*skb
);
63 extern int cap_netlink_recv(struct sk_buff
*skb
);
66 * Values used in the task_security_ops calls
68 /* setuid or setgid, id0 == uid or gid */
69 #define LSM_SETID_ID 1
71 /* setreuid or setregid, id0 == real, id1 == eff */
72 #define LSM_SETID_RE 2
74 /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
75 #define LSM_SETID_RES 4
77 /* setfsuid or setfsgid, id0 == fsuid or fsgid */
78 #define LSM_SETID_FS 8
80 /* forward declares to avoid warnings */
83 struct swap_info_struct
;
85 /* bprm_apply_creds unsafe reasons */
86 #define LSM_UNSAFE_SHARE 1
87 #define LSM_UNSAFE_PTRACE 2
88 #define LSM_UNSAFE_PTRACE_CAP 4
90 #ifdef CONFIG_SECURITY
93 * struct security_operations - main security structure
95 * Security hooks for program execution operations.
97 * @bprm_alloc_security:
98 * Allocate and attach a security structure to the @bprm->security field.
99 * The security field is initialized to NULL when the bprm structure is
101 * @bprm contains the linux_binprm structure to be modified.
102 * Return 0 if operation was successful.
103 * @bprm_free_security:
104 * @bprm contains the linux_binprm structure to be modified.
105 * Deallocate and clear the @bprm->security field.
107 * Compute and set the security attributes of a process being transformed
108 * by an execve operation based on the old attributes (current->security)
109 * and the information saved in @bprm->security by the set_security hook.
110 * Since this hook function (and its caller) are void, this hook can not
111 * return an error. However, it can leave the security attributes of the
112 * process unchanged if an access failure occurs at this point.
113 * bprm_apply_creds is called under task_lock. @unsafe indicates various
114 * reasons why it may be unsafe to change security state.
115 * @bprm contains the linux_binprm structure.
116 * @bprm_post_apply_creds:
117 * Runs after bprm_apply_creds with the task_lock dropped, so that
118 * functions which cannot be called safely under the task_lock can
119 * be used. This hook is a good place to perform state changes on
120 * the process such as closing open file descriptors to which access
121 * is no longer granted if the attributes were changed.
122 * Note that a security module might need to save state between
123 * bprm_apply_creds and bprm_post_apply_creds to store the decision
124 * on whether the process may proceed.
125 * @bprm contains the linux_binprm structure.
126 * @bprm_set_security:
127 * Save security information in the bprm->security field, typically based
128 * on information about the bprm->file, for later use by the apply_creds
129 * hook. This hook may also optionally check permissions (e.g. for
130 * transitions between security domains).
131 * This hook may be called multiple times during a single execve, e.g. for
132 * interpreters. The hook can tell whether it has already been called by
133 * checking to see if @bprm->security is non-NULL. If so, then the hook
134 * may decide either to retain the security information saved earlier or
136 * @bprm contains the linux_binprm structure.
137 * Return 0 if the hook is successful and permission is granted.
138 * @bprm_check_security:
139 * This hook mediates the point when a search for a binary handler will
140 * begin. It allows a check the @bprm->security value which is set in
141 * the preceding set_security call. The primary difference from
142 * set_security is that the argv list and envp list are reliably
143 * available in @bprm. This hook may be called multiple times
144 * during a single execve; and in each pass set_security is called
146 * @bprm contains the linux_binprm structure.
147 * Return 0 if the hook is successful and permission is granted.
149 * Return a boolean value (0 or 1) indicating whether a "secure exec"
150 * is required. The flag is passed in the auxiliary table
151 * on the initial stack to the ELF interpreter to indicate whether libc
152 * should enable secure mode.
153 * @bprm contains the linux_binprm structure.
155 * Security hooks for filesystem operations.
157 * @sb_alloc_security:
158 * Allocate and attach a security structure to the sb->s_security field.
159 * The s_security field is initialized to NULL when the structure is
161 * @sb contains the super_block structure to be modified.
162 * Return 0 if operation was successful.
164 * Deallocate and clear the sb->s_security field.
165 * @sb contains the super_block structure to be modified.
167 * Check permission before obtaining filesystem statistics for the @sb
169 * @sb contains the super_block structure for the filesystem.
170 * Return 0 if permission is granted.
172 * Check permission before an object specified by @dev_name is mounted on
173 * the mount point named by @nd. For an ordinary mount, @dev_name
174 * identifies a device if the file system type requires a device. For a
175 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
176 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
177 * pathname of the object being mounted.
178 * @dev_name contains the name for object being mounted.
179 * @nd contains the nameidata structure for mount point object.
180 * @type contains the filesystem type.
181 * @flags contains the mount flags.
182 * @data contains the filesystem-specific data.
183 * Return 0 if permission is granted.
185 * Allow mount option data to be copied prior to parsing by the filesystem,
186 * so that the security module can extract security-specific mount
187 * options cleanly (a filesystem may modify the data e.g. with strsep()).
188 * This also allows the original mount data to be stripped of security-
189 * specific options to avoid having to make filesystems aware of them.
190 * @type the type of filesystem being mounted.
191 * @orig the original mount data copied from userspace.
192 * @copy copied data which will be passed to the security module.
193 * Returns 0 if the copy was successful.
195 * Check permission before the device with superblock @mnt->sb is mounted
196 * on the mount point named by @nd.
197 * @mnt contains the vfsmount for device being mounted.
198 * @nd contains the nameidata object for the mount point.
199 * Return 0 if permission is granted.
201 * Check permission before the @mnt file system is unmounted.
202 * @mnt contains the mounted file system.
203 * @flags contains the unmount flags, e.g. MNT_FORCE.
204 * Return 0 if permission is granted.
206 * Close any files in the @mnt mounted filesystem that are held open by
207 * the security module. This hook is called during an umount operation
208 * prior to checking whether the filesystem is still busy.
209 * @mnt contains the mounted filesystem.
211 * Handle a failed umount of the @mnt mounted filesystem, e.g. re-opening
212 * any files that were closed by umount_close. This hook is called during
213 * an umount operation if the umount fails after a call to the
215 * @mnt contains the mounted filesystem.
217 * Update the security module's state when a filesystem is remounted.
218 * This hook is only called if the remount was successful.
219 * @mnt contains the mounted file system.
220 * @flags contains the new filesystem flags.
221 * @data contains the filesystem-specific data.
222 * @sb_post_mountroot:
223 * Update the security module's state when the root filesystem is mounted.
224 * This hook is only called if the mount was successful.
226 * Update the security module's state when a filesystem is mounted.
227 * This hook is called any time a mount is successfully grafetd to
229 * @mnt contains the mounted filesystem.
230 * @mountpoint_nd contains the nameidata structure for the mount point.
232 * Check permission before pivoting the root filesystem.
233 * @old_nd contains the nameidata structure for the new location of the current root (put_old).
234 * @new_nd contains the nameidata structure for the new root (new_root).
235 * Return 0 if permission is granted.
236 * @sb_post_pivotroot:
237 * Update module state after a successful pivot.
238 * @old_nd contains the nameidata structure for the old root.
239 * @new_nd contains the nameidata structure for the new root.
241 * Security hooks for inode operations.
243 * @inode_alloc_security:
244 * Allocate and attach a security structure to @inode->i_security. The
245 * i_security field is initialized to NULL when the inode structure is
247 * @inode contains the inode structure.
248 * Return 0 if operation was successful.
249 * @inode_free_security:
250 * @inode contains the inode structure.
251 * Deallocate the inode security structure and set @inode->i_security to
253 * @inode_init_security:
254 * Obtain the security attribute name suffix and value to set on a newly
255 * created inode and set up the incore security field for the new inode.
256 * This hook is called by the fs code as part of the inode creation
257 * transaction and provides for atomic labeling of the inode, unlike
258 * the post_create/mkdir/... hooks called by the VFS. The hook function
259 * is expected to allocate the name and value via kmalloc, with the caller
260 * being responsible for calling kfree after using them.
261 * If the security module does not use security attributes or does
262 * not wish to put a security attribute on this particular inode,
263 * then it should return -EOPNOTSUPP to skip this processing.
264 * @inode contains the inode structure of the newly created inode.
265 * @dir contains the inode structure of the parent directory.
266 * @name will be set to the allocated name suffix (e.g. selinux).
267 * @value will be set to the allocated attribute value.
268 * @len will be set to the length of the value.
269 * Returns 0 if @name and @value have been successfully set,
270 * -EOPNOTSUPP if no security attribute is needed, or
271 * -ENOMEM on memory allocation failure.
273 * Check permission to create a regular file.
274 * @dir contains inode structure of the parent of the new file.
275 * @dentry contains the dentry structure for the file to be created.
276 * @mode contains the file mode of the file to be created.
277 * Return 0 if permission is granted.
279 * Check permission before creating a new hard link to a file.
280 * @old_dentry contains the dentry structure for an existing link to the file.
281 * @dir contains the inode structure of the parent directory of the new link.
282 * @new_dentry contains the dentry structure for the new link.
283 * Return 0 if permission is granted.
285 * Check the permission to remove a hard link to a file.
286 * @dir contains the inode structure of parent directory of the file.
287 * @dentry contains the dentry structure for file to be unlinked.
288 * Return 0 if permission is granted.
290 * Check the permission to create a symbolic link to a file.
291 * @dir contains the inode structure of parent directory of the symbolic link.
292 * @dentry contains the dentry structure of the symbolic link.
293 * @old_name contains the pathname of file.
294 * Return 0 if permission is granted.
296 * Check permissions to create a new directory in the existing directory
297 * associated with inode strcture @dir.
298 * @dir containst the inode structure of parent of the directory to be created.
299 * @dentry contains the dentry structure of new directory.
300 * @mode contains the mode of new directory.
301 * Return 0 if permission is granted.
303 * Check the permission to remove a directory.
304 * @dir contains the inode structure of parent of the directory to be removed.
305 * @dentry contains the dentry structure of directory to be removed.
306 * Return 0 if permission is granted.
308 * Check permissions when creating a special file (or a socket or a fifo
309 * file created via the mknod system call). Note that if mknod operation
310 * is being done for a regular file, then the create hook will be called
312 * @dir contains the inode structure of parent of the new file.
313 * @dentry contains the dentry structure of the new file.
314 * @mode contains the mode of the new file.
315 * @dev contains the the device number.
316 * Return 0 if permission is granted.
318 * Check for permission to rename a file or directory.
319 * @old_dir contains the inode structure for parent of the old link.
320 * @old_dentry contains the dentry structure of the old link.
321 * @new_dir contains the inode structure for parent of the new link.
322 * @new_dentry contains the dentry structure of the new link.
323 * Return 0 if permission is granted.
325 * Check the permission to read the symbolic link.
326 * @dentry contains the dentry structure for the file link.
327 * Return 0 if permission is granted.
328 * @inode_follow_link:
329 * Check permission to follow a symbolic link when looking up a pathname.
330 * @dentry contains the dentry structure for the link.
331 * @nd contains the nameidata structure for the parent directory.
332 * Return 0 if permission is granted.
334 * Check permission before accessing an inode. This hook is called by the
335 * existing Linux permission function, so a security module can use it to
336 * provide additional checking for existing Linux permission checks.
337 * Notice that this hook is called when a file is opened (as well as many
338 * other operations), whereas the file_security_ops permission hook is
339 * called when the actual read/write operations are performed.
340 * @inode contains the inode structure to check.
341 * @mask contains the permission mask.
342 * @nd contains the nameidata (may be NULL).
343 * Return 0 if permission is granted.
345 * Check permission before setting file attributes. Note that the kernel
346 * call to notify_change is performed from several locations, whenever
347 * file attributes change (such as when a file is truncated, chown/chmod
348 * operations, transferring disk quotas, etc).
349 * @dentry contains the dentry structure for the file.
350 * @attr is the iattr structure containing the new file attributes.
351 * Return 0 if permission is granted.
353 * Check permission before obtaining file attributes.
354 * @mnt is the vfsmount where the dentry was looked up
355 * @dentry contains the dentry structure for the file.
356 * Return 0 if permission is granted.
358 * @inode contains the inode structure for deleted inode.
359 * This hook is called when a deleted inode is released (i.e. an inode
360 * with no hard links has its use count drop to zero). A security module
361 * can use this hook to release any persistent label associated with the
364 * Check permission before setting the extended attributes
365 * @value identified by @name for @dentry.
366 * Return 0 if permission is granted.
367 * @inode_post_setxattr:
368 * Update inode security field after successful setxattr operation.
369 * @value identified by @name for @dentry.
371 * Check permission before obtaining the extended attributes
372 * identified by @name for @dentry.
373 * Return 0 if permission is granted.
375 * Check permission before obtaining the list of extended attribute
377 * Return 0 if permission is granted.
378 * @inode_removexattr:
379 * Check permission before removing the extended attribute
380 * identified by @name for @dentry.
381 * Return 0 if permission is granted.
382 * @inode_getsecurity:
383 * Copy the extended attribute representation of the security label
384 * associated with @name for @inode into @buffer. @buffer may be
385 * NULL to request the size of the buffer required. @size indicates
386 * the size of @buffer in bytes. Note that @name is the remainder
387 * of the attribute name after the security. prefix has been removed.
388 * Return number of bytes used/required on success.
389 * @inode_setsecurity:
390 * Set the security label associated with @name for @inode from the
391 * extended attribute value @value. @size indicates the size of the
392 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
393 * Note that @name is the remainder of the attribute name after the
394 * security. prefix has been removed.
395 * Return 0 on success.
396 * @inode_listsecurity:
397 * Copy the extended attribute names for the security labels
398 * associated with @inode into @buffer. The maximum size of @buffer
399 * is specified by @buffer_size. @buffer may be NULL to request
400 * the size of the buffer required.
401 * Returns number of bytes used/required on success.
403 * Security hooks for file operations
406 * Check file permissions before accessing an open file. This hook is
407 * called by various operations that read or write files. A security
408 * module can use this hook to perform additional checking on these
409 * operations, e.g. to revalidate permissions on use to support privilege
410 * bracketing or policy changes. Notice that this hook is used when the
411 * actual read/write operations are performed, whereas the
412 * inode_security_ops hook is called when a file is opened (as well as
413 * many other operations).
414 * Caveat: Although this hook can be used to revalidate permissions for
415 * various system call operations that read or write files, it does not
416 * address the revalidation of permissions for memory-mapped files.
417 * Security modules must handle this separately if they need such
419 * @file contains the file structure being accessed.
420 * @mask contains the requested permissions.
421 * Return 0 if permission is granted.
422 * @file_alloc_security:
423 * Allocate and attach a security structure to the file->f_security field.
424 * The security field is initialized to NULL when the structure is first
426 * @file contains the file structure to secure.
427 * Return 0 if the hook is successful and permission is granted.
428 * @file_free_security:
429 * Deallocate and free any security structures stored in file->f_security.
430 * @file contains the file structure being modified.
432 * @file contains the file structure.
433 * @cmd contains the operation to perform.
434 * @arg contains the operational arguments.
435 * Check permission for an ioctl operation on @file. Note that @arg can
436 * sometimes represents a user space pointer; in other cases, it may be a
437 * simple integer value. When @arg represents a user space pointer, it
438 * should never be used by the security module.
439 * Return 0 if permission is granted.
441 * Check permissions for a mmap operation. The @file may be NULL, e.g.
442 * if mapping anonymous memory.
443 * @file contains the file structure for file to map (may be NULL).
444 * @reqprot contains the protection requested by the application.
445 * @prot contains the protection that will be applied by the kernel.
446 * @flags contains the operational flags.
447 * Return 0 if permission is granted.
449 * Check permissions before changing memory access permissions.
450 * @vma contains the memory region to modify.
451 * @reqprot contains the protection requested by the application.
452 * @prot contains the protection that will be applied by the kernel.
453 * Return 0 if permission is granted.
455 * Check permission before performing file locking operations.
456 * Note: this hook mediates both flock and fcntl style locks.
457 * @file contains the file structure.
458 * @cmd contains the posix-translated lock operation to perform
459 * (e.g. F_RDLCK, F_WRLCK).
460 * Return 0 if permission is granted.
462 * Check permission before allowing the file operation specified by @cmd
463 * from being performed on the file @file. Note that @arg can sometimes
464 * represents a user space pointer; in other cases, it may be a simple
465 * integer value. When @arg represents a user space pointer, it should
466 * never be used by the security module.
467 * @file contains the file structure.
468 * @cmd contains the operation to be performed.
469 * @arg contains the operational arguments.
470 * Return 0 if permission is granted.
472 * Save owner security information (typically from current->security) in
473 * file->f_security for later use by the send_sigiotask hook.
474 * @file contains the file structure to update.
475 * Return 0 on success.
476 * @file_send_sigiotask:
477 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
478 * process @tsk. Note that this hook is sometimes called from interrupt.
479 * Note that the fown_struct, @fown, is never outside the context of a
480 * struct file, so the file structure (and associated security information)
481 * can always be obtained:
482 * (struct file *)((long)fown - offsetof(struct file,f_owner));
483 * @tsk contains the structure of task receiving signal.
484 * @fown contains the file owner information.
485 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
486 * Return 0 if permission is granted.
488 * This hook allows security modules to control the ability of a process
489 * to receive an open file descriptor via socket IPC.
490 * @file contains the file structure being received.
491 * Return 0 if permission is granted.
493 * Security hooks for task operations.
496 * Check permission before creating a child process. See the clone(2)
497 * manual page for definitions of the @clone_flags.
498 * @clone_flags contains the flags indicating what should be shared.
499 * Return 0 if permission is granted.
500 * @task_alloc_security:
501 * @p contains the task_struct for child process.
502 * Allocate and attach a security structure to the p->security field. The
503 * security field is initialized to NULL when the task structure is
505 * Return 0 if operation was successful.
506 * @task_free_security:
507 * @p contains the task_struct for process.
508 * Deallocate and clear the p->security field.
510 * Check permission before setting one or more of the user identity
511 * attributes of the current process. The @flags parameter indicates
512 * which of the set*uid system calls invoked this hook and how to
513 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
514 * definitions at the beginning of this file for the @flags values and
516 * @id0 contains a uid.
517 * @id1 contains a uid.
518 * @id2 contains a uid.
519 * @flags contains one of the LSM_SETID_* values.
520 * Return 0 if permission is granted.
522 * Update the module's state after setting one or more of the user
523 * identity attributes of the current process. The @flags parameter
524 * indicates which of the set*uid system calls invoked this hook. If
525 * @flags is LSM_SETID_FS, then @old_ruid is the old fs uid and the other
526 * parameters are not used.
527 * @old_ruid contains the old real uid (or fs uid if LSM_SETID_FS).
528 * @old_euid contains the old effective uid (or -1 if LSM_SETID_FS).
529 * @old_suid contains the old saved uid (or -1 if LSM_SETID_FS).
530 * @flags contains one of the LSM_SETID_* values.
531 * Return 0 on success.
533 * Check permission before setting one or more of the group identity
534 * attributes of the current process. The @flags parameter indicates
535 * which of the set*gid system calls invoked this hook and how to
536 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
537 * definitions at the beginning of this file for the @flags values and
539 * @id0 contains a gid.
540 * @id1 contains a gid.
541 * @id2 contains a gid.
542 * @flags contains one of the LSM_SETID_* values.
543 * Return 0 if permission is granted.
545 * Check permission before setting the process group identifier of the
546 * process @p to @pgid.
547 * @p contains the task_struct for process being modified.
548 * @pgid contains the new pgid.
549 * Return 0 if permission is granted.
551 * Check permission before getting the process group identifier of the
553 * @p contains the task_struct for the process.
554 * Return 0 if permission is granted.
556 * Check permission before getting the session identifier of the process
558 * @p contains the task_struct for the process.
559 * Return 0 if permission is granted.
561 * Check permission before setting the supplementary group set of the
563 * @group_info contains the new group information.
564 * Return 0 if permission is granted.
566 * Check permission before setting the nice value of @p to @nice.
567 * @p contains the task_struct of process.
568 * @nice contains the new nice value.
569 * Return 0 if permission is granted.
571 * Check permission before setting the resource limits of the current
572 * process for @resource to @new_rlim. The old resource limit values can
573 * be examined by dereferencing (current->signal->rlim + resource).
574 * @resource contains the resource whose limit is being set.
575 * @new_rlim contains the new limits for @resource.
576 * Return 0 if permission is granted.
577 * @task_setscheduler:
578 * Check permission before setting scheduling policy and/or parameters of
579 * process @p based on @policy and @lp.
580 * @p contains the task_struct for process.
581 * @policy contains the scheduling policy.
582 * @lp contains the scheduling parameters.
583 * Return 0 if permission is granted.
584 * @task_getscheduler:
585 * Check permission before obtaining scheduling information for process
587 * @p contains the task_struct for process.
588 * Return 0 if permission is granted.
590 * Check permission before sending signal @sig to @p. @info can be NULL,
591 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
592 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
593 * from the kernel and should typically be permitted.
594 * SIGIO signals are handled separately by the send_sigiotask hook in
596 * @p contains the task_struct for process.
597 * @info contains the signal information.
598 * @sig contains the signal value.
599 * Return 0 if permission is granted.
601 * Check permission before allowing a process to reap a child process @p
602 * and collect its status information.
603 * @p contains the task_struct for process.
604 * Return 0 if permission is granted.
606 * Check permission before performing a process control operation on the
608 * @option contains the operation.
609 * @arg2 contains a argument.
610 * @arg3 contains a argument.
611 * @arg4 contains a argument.
612 * @arg5 contains a argument.
613 * Return 0 if permission is granted.
614 * @task_reparent_to_init:
615 * Set the security attributes in @p->security for a kernel thread that
616 * is being reparented to the init task.
617 * @p contains the task_struct for the kernel thread.
619 * Set the security attributes for an inode based on an associated task's
620 * security attributes, e.g. for /proc/pid inodes.
621 * @p contains the task_struct for the task.
622 * @inode contains the inode structure for the inode.
624 * Security hooks for Netlink messaging.
627 * Save security information for a netlink message so that permission
628 * checking can be performed when the message is processed. The security
629 * information can be saved using the eff_cap field of the
630 * netlink_skb_parms structure. Also may be used to provide fine
631 * grained control over message transmission.
632 * @sk associated sock of task sending the message.,
633 * @skb contains the sk_buff structure for the netlink message.
634 * Return 0 if the information was successfully saved and message
635 * is allowed to be transmitted.
637 * Check permission before processing the received netlink message in
639 * @skb contains the sk_buff structure for the netlink message.
640 * Return 0 if permission is granted.
642 * Security hooks for Unix domain networking.
644 * @unix_stream_connect:
645 * Check permissions before establishing a Unix domain stream connection
646 * between @sock and @other.
647 * @sock contains the socket structure.
648 * @other contains the peer socket structure.
649 * Return 0 if permission is granted.
651 * Check permissions before connecting or sending datagrams from @sock to
653 * @sock contains the socket structure.
654 * @sock contains the peer socket structure.
655 * Return 0 if permission is granted.
657 * The @unix_stream_connect and @unix_may_send hooks were necessary because
658 * Linux provides an alternative to the conventional file name space for Unix
659 * domain sockets. Whereas binding and connecting to sockets in the file name
660 * space is mediated by the typical file permissions (and caught by the mknod
661 * and permission hooks in inode_security_ops), binding and connecting to
662 * sockets in the abstract name space is completely unmediated. Sufficient
663 * control of Unix domain sockets in the abstract name space isn't possible
664 * using only the socket layer hooks, since we need to know the actual target
665 * socket, which is not looked up until we are inside the af_unix code.
667 * Security hooks for socket operations.
670 * Check permissions prior to creating a new socket.
671 * @family contains the requested protocol family.
672 * @type contains the requested communications type.
673 * @protocol contains the requested protocol.
674 * @kern set to 1 if a kernel socket.
675 * Return 0 if permission is granted.
676 * @socket_post_create:
677 * This hook allows a module to update or allocate a per-socket security
678 * structure. Note that the security field was not added directly to the
679 * socket structure, but rather, the socket security information is stored
680 * in the associated inode. Typically, the inode alloc_security hook will
681 * allocate and and attach security information to
682 * sock->inode->i_security. This hook may be used to update the
683 * sock->inode->i_security field with additional information that wasn't
684 * available when the inode was allocated.
685 * @sock contains the newly created socket structure.
686 * @family contains the requested protocol family.
687 * @type contains the requested communications type.
688 * @protocol contains the requested protocol.
689 * @kern set to 1 if a kernel socket.
691 * Check permission before socket protocol layer bind operation is
692 * performed and the socket @sock is bound to the address specified in the
693 * @address parameter.
694 * @sock contains the socket structure.
695 * @address contains the address to bind to.
696 * @addrlen contains the length of address.
697 * Return 0 if permission is granted.
699 * Check permission before socket protocol layer connect operation
700 * attempts to connect socket @sock to a remote address, @address.
701 * @sock contains the socket structure.
702 * @address contains the address of remote endpoint.
703 * @addrlen contains the length of address.
704 * Return 0 if permission is granted.
706 * Check permission before socket protocol layer listen operation.
707 * @sock contains the socket structure.
708 * @backlog contains the maximum length for the pending connection queue.
709 * Return 0 if permission is granted.
711 * Check permission before accepting a new connection. Note that the new
712 * socket, @newsock, has been created and some information copied to it,
713 * but the accept operation has not actually been performed.
714 * @sock contains the listening socket structure.
715 * @newsock contains the newly created server socket for connection.
716 * Return 0 if permission is granted.
717 * @socket_post_accept:
718 * This hook allows a security module to copy security
719 * information into the newly created socket's inode.
720 * @sock contains the listening socket structure.
721 * @newsock contains the newly created server socket for connection.
723 * Check permission before transmitting a message to another socket.
724 * @sock contains the socket structure.
725 * @msg contains the message to be transmitted.
726 * @size contains the size of message.
727 * Return 0 if permission is granted.
729 * Check permission before receiving a message from a socket.
730 * @sock contains the socket structure.
731 * @msg contains the message structure.
732 * @size contains the size of message structure.
733 * @flags contains the operational flags.
734 * Return 0 if permission is granted.
735 * @socket_getsockname:
736 * Check permission before the local address (name) of the socket object
737 * @sock is retrieved.
738 * @sock contains the socket structure.
739 * Return 0 if permission is granted.
740 * @socket_getpeername:
741 * Check permission before the remote address (name) of a socket object
742 * @sock is retrieved.
743 * @sock contains the socket structure.
744 * Return 0 if permission is granted.
745 * @socket_getsockopt:
746 * Check permissions before retrieving the options associated with socket
748 * @sock contains the socket structure.
749 * @level contains the protocol level to retrieve option from.
750 * @optname contains the name of option to retrieve.
751 * Return 0 if permission is granted.
752 * @socket_setsockopt:
753 * Check permissions before setting the options associated with socket
755 * @sock contains the socket structure.
756 * @level contains the protocol level to set options for.
757 * @optname contains the name of the option to set.
758 * Return 0 if permission is granted.
760 * Checks permission before all or part of a connection on the socket
761 * @sock is shut down.
762 * @sock contains the socket structure.
763 * @how contains the flag indicating how future sends and receives are handled.
764 * Return 0 if permission is granted.
765 * @socket_sock_rcv_skb:
766 * Check permissions on incoming network packets. This hook is distinct
767 * from Netfilter's IP input hooks since it is the first time that the
768 * incoming sk_buff @skb has been associated with a particular socket, @sk.
769 * @sk contains the sock (not socket) associated with the incoming sk_buff.
770 * @skb contains the incoming network data.
771 * @socket_getpeersec:
772 * This hook allows the security module to provide peer socket security
773 * state to userspace via getsockopt SO_GETPEERSEC.
774 * @sock is the local socket.
775 * @optval userspace memory where the security state is to be copied.
776 * @optlen userspace int where the module should copy the actual length
777 * of the security state.
778 * @len as input is the maximum length to copy to userspace provided
780 * Return 0 if all is well, otherwise, typical getsockopt return
782 * @sk_alloc_security:
783 * Allocate and attach a security structure to the sk->sk_security field,
784 * which is used to copy security attributes between local stream sockets.
786 * Deallocate security structure.
788 * Security hooks affecting all System V IPC operations.
791 * Check permissions for access to IPC
792 * @ipcp contains the kernel IPC permission structure
793 * @flag contains the desired (requested) permission set
794 * Return 0 if permission is granted.
796 * Security hooks for individual messages held in System V IPC message queues
797 * @msg_msg_alloc_security:
798 * Allocate and attach a security structure to the msg->security field.
799 * The security field is initialized to NULL when the structure is first
801 * @msg contains the message structure to be modified.
802 * Return 0 if operation was successful and permission is granted.
803 * @msg_msg_free_security:
804 * Deallocate the security structure for this message.
805 * @msg contains the message structure to be modified.
807 * Security hooks for System V IPC Message Queues
809 * @msg_queue_alloc_security:
810 * Allocate and attach a security structure to the
811 * msq->q_perm.security field. The security field is initialized to
812 * NULL when the structure is first created.
813 * @msq contains the message queue structure to be modified.
814 * Return 0 if operation was successful and permission is granted.
815 * @msg_queue_free_security:
816 * Deallocate security structure for this message queue.
817 * @msq contains the message queue structure to be modified.
818 * @msg_queue_associate:
819 * Check permission when a message queue is requested through the
820 * msgget system call. This hook is only called when returning the
821 * message queue identifier for an existing message queue, not when a
822 * new message queue is created.
823 * @msq contains the message queue to act upon.
824 * @msqflg contains the operation control flags.
825 * Return 0 if permission is granted.
827 * Check permission when a message control operation specified by @cmd
828 * is to be performed on the message queue @msq.
829 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
830 * @msq contains the message queue to act upon. May be NULL.
831 * @cmd contains the operation to be performed.
832 * Return 0 if permission is granted.
834 * Check permission before a message, @msg, is enqueued on the message
836 * @msq contains the message queue to send message to.
837 * @msg contains the message to be enqueued.
838 * @msqflg contains operational flags.
839 * Return 0 if permission is granted.
841 * Check permission before a message, @msg, is removed from the message
842 * queue, @msq. The @target task structure contains a pointer to the
843 * process that will be receiving the message (not equal to the current
844 * process when inline receives are being performed).
845 * @msq contains the message queue to retrieve message from.
846 * @msg contains the message destination.
847 * @target contains the task structure for recipient process.
848 * @type contains the type of message requested.
849 * @mode contains the operational flags.
850 * Return 0 if permission is granted.
852 * Security hooks for System V Shared Memory Segments
854 * @shm_alloc_security:
855 * Allocate and attach a security structure to the shp->shm_perm.security
856 * field. The security field is initialized to NULL when the structure is
858 * @shp contains the shared memory structure to be modified.
859 * Return 0 if operation was successful and permission is granted.
860 * @shm_free_security:
861 * Deallocate the security struct for this memory segment.
862 * @shp contains the shared memory structure to be modified.
864 * Check permission when a shared memory region is requested through the
865 * shmget system call. This hook is only called when returning the shared
866 * memory region identifier for an existing region, not when a new shared
867 * memory region is created.
868 * @shp contains the shared memory structure to be modified.
869 * @shmflg contains the operation control flags.
870 * Return 0 if permission is granted.
872 * Check permission when a shared memory control operation specified by
873 * @cmd is to be performed on the shared memory region @shp.
874 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
875 * @shp contains shared memory structure to be modified.
876 * @cmd contains the operation to be performed.
877 * Return 0 if permission is granted.
879 * Check permissions prior to allowing the shmat system call to attach the
880 * shared memory segment @shp to the data segment of the calling process.
881 * The attaching address is specified by @shmaddr.
882 * @shp contains the shared memory structure to be modified.
883 * @shmaddr contains the address to attach memory region to.
884 * @shmflg contains the operational flags.
885 * Return 0 if permission is granted.
887 * Security hooks for System V Semaphores
889 * @sem_alloc_security:
890 * Allocate and attach a security structure to the sma->sem_perm.security
891 * field. The security field is initialized to NULL when the structure is
893 * @sma contains the semaphore structure
894 * Return 0 if operation was successful and permission is granted.
895 * @sem_free_security:
896 * deallocate security struct for this semaphore
897 * @sma contains the semaphore structure.
899 * Check permission when a semaphore is requested through the semget
900 * system call. This hook is only called when returning the semaphore
901 * identifier for an existing semaphore, not when a new one must be
903 * @sma contains the semaphore structure.
904 * @semflg contains the operation control flags.
905 * Return 0 if permission is granted.
907 * Check permission when a semaphore operation specified by @cmd is to be
908 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
909 * IPC_INFO or SEM_INFO.
910 * @sma contains the semaphore structure. May be NULL.
911 * @cmd contains the operation to be performed.
912 * Return 0 if permission is granted.
914 * Check permissions before performing operations on members of the
915 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
917 * @sma contains the semaphore structure.
918 * @sops contains the operations to perform.
919 * @nsops contains the number of operations to perform.
920 * @alter contains the flag indicating whether changes are to be made.
921 * Return 0 if permission is granted.
924 * Check permission before allowing the @parent process to trace the
926 * Security modules may also want to perform a process tracing check
927 * during an execve in the set_security or apply_creds hooks of
928 * binprm_security_ops if the process is being traced and its security
929 * attributes would be changed by the execve.
930 * @parent contains the task_struct structure for parent process.
931 * @child contains the task_struct structure for child process.
932 * Return 0 if permission is granted.
934 * Get the @effective, @inheritable, and @permitted capability sets for
935 * the @target process. The hook may also perform permission checking to
936 * determine if the current process is allowed to see the capability sets
937 * of the @target process.
938 * @target contains the task_struct structure for target process.
939 * @effective contains the effective capability set.
940 * @inheritable contains the inheritable capability set.
941 * @permitted contains the permitted capability set.
942 * Return 0 if the capability sets were successfully obtained.
944 * Check permission before setting the @effective, @inheritable, and
945 * @permitted capability sets for the @target process.
946 * Caveat: @target is also set to current if a set of processes is
947 * specified (i.e. all processes other than current and init or a
948 * particular process group). Hence, the capset_set hook may need to
949 * revalidate permission to the actual target process.
950 * @target contains the task_struct structure for target process.
951 * @effective contains the effective capability set.
952 * @inheritable contains the inheritable capability set.
953 * @permitted contains the permitted capability set.
954 * Return 0 if permission is granted.
956 * Set the @effective, @inheritable, and @permitted capability sets for
957 * the @target process. Since capset_check cannot always check permission
958 * to the real @target process, this hook may also perform permission
959 * checking to determine if the current process is allowed to set the
960 * capability sets of the @target process. However, this hook has no way
961 * of returning an error due to the structure of the sys_capset code.
962 * @target contains the task_struct structure for target process.
963 * @effective contains the effective capability set.
964 * @inheritable contains the inheritable capability set.
965 * @permitted contains the permitted capability set.
967 * Check permission before enabling or disabling process accounting. If
968 * accounting is being enabled, then @file refers to the open file used to
969 * store accounting records. If accounting is being disabled, then @file
971 * @file contains the file structure for the accounting file (may be NULL).
972 * Return 0 if permission is granted.
974 * Check permission before accessing the @table sysctl variable in the
975 * manner specified by @op.
976 * @table contains the ctl_table structure for the sysctl variable.
977 * @op contains the operation (001 = search, 002 = write, 004 = read).
978 * Return 0 if permission is granted.
980 * Check whether the @tsk process has the @cap capability.
981 * @tsk contains the task_struct for the process.
982 * @cap contains the capability <include/linux/capability.h>.
983 * Return 0 if the capability is granted for @tsk.
985 * Check permission before accessing the kernel message ring or changing
986 * logging to the console.
987 * See the syslog(2) manual page for an explanation of the @type values.
988 * @type contains the type of action.
989 * Return 0 if permission is granted.
991 * Check permission to change the system time.
992 * struct timespec and timezone are defined in include/linux/time.h
993 * @ts contains new time
994 * @tz contains new timezone
995 * Return 0 if permission is granted.
997 * Check permissions for allocating a new virtual mapping.
998 * @pages contains the number of pages.
999 * Return 0 if permission is granted.
1001 * @register_security:
1002 * allow module stacking.
1003 * @name contains the name of the security module being stacked.
1004 * @ops contains a pointer to the struct security_operations of the module to stack.
1005 * @unregister_security:
1006 * remove a stacked module.
1007 * @name contains the name of the security module being unstacked.
1008 * @ops contains a pointer to the struct security_operations of the module to unstack.
1010 * This is the main security structure.
1012 struct security_operations
{
1013 int (*ptrace
) (struct task_struct
* parent
, struct task_struct
* child
);
1014 int (*capget
) (struct task_struct
* target
,
1015 kernel_cap_t
* effective
,
1016 kernel_cap_t
* inheritable
, kernel_cap_t
* permitted
);
1017 int (*capset_check
) (struct task_struct
* target
,
1018 kernel_cap_t
* effective
,
1019 kernel_cap_t
* inheritable
,
1020 kernel_cap_t
* permitted
);
1021 void (*capset_set
) (struct task_struct
* target
,
1022 kernel_cap_t
* effective
,
1023 kernel_cap_t
* inheritable
,
1024 kernel_cap_t
* permitted
);
1025 int (*acct
) (struct file
* file
);
1026 int (*sysctl
) (struct ctl_table
* table
, int op
);
1027 int (*capable
) (struct task_struct
* tsk
, int cap
);
1028 int (*quotactl
) (int cmds
, int type
, int id
, struct super_block
* sb
);
1029 int (*quota_on
) (struct dentry
* dentry
);
1030 int (*syslog
) (int type
);
1031 int (*settime
) (struct timespec
*ts
, struct timezone
*tz
);
1032 int (*vm_enough_memory
) (long pages
);
1034 int (*bprm_alloc_security
) (struct linux_binprm
* bprm
);
1035 void (*bprm_free_security
) (struct linux_binprm
* bprm
);
1036 void (*bprm_apply_creds
) (struct linux_binprm
* bprm
, int unsafe
);
1037 void (*bprm_post_apply_creds
) (struct linux_binprm
* bprm
);
1038 int (*bprm_set_security
) (struct linux_binprm
* bprm
);
1039 int (*bprm_check_security
) (struct linux_binprm
* bprm
);
1040 int (*bprm_secureexec
) (struct linux_binprm
* bprm
);
1042 int (*sb_alloc_security
) (struct super_block
* sb
);
1043 void (*sb_free_security
) (struct super_block
* sb
);
1044 int (*sb_copy_data
)(struct file_system_type
*type
,
1045 void *orig
, void *copy
);
1046 int (*sb_kern_mount
) (struct super_block
*sb
, void *data
);
1047 int (*sb_statfs
) (struct super_block
* sb
);
1048 int (*sb_mount
) (char *dev_name
, struct nameidata
* nd
,
1049 char *type
, unsigned long flags
, void *data
);
1050 int (*sb_check_sb
) (struct vfsmount
* mnt
, struct nameidata
* nd
);
1051 int (*sb_umount
) (struct vfsmount
* mnt
, int flags
);
1052 void (*sb_umount_close
) (struct vfsmount
* mnt
);
1053 void (*sb_umount_busy
) (struct vfsmount
* mnt
);
1054 void (*sb_post_remount
) (struct vfsmount
* mnt
,
1055 unsigned long flags
, void *data
);
1056 void (*sb_post_mountroot
) (void);
1057 void (*sb_post_addmount
) (struct vfsmount
* mnt
,
1058 struct nameidata
* mountpoint_nd
);
1059 int (*sb_pivotroot
) (struct nameidata
* old_nd
,
1060 struct nameidata
* new_nd
);
1061 void (*sb_post_pivotroot
) (struct nameidata
* old_nd
,
1062 struct nameidata
* new_nd
);
1064 int (*inode_alloc_security
) (struct inode
*inode
);
1065 void (*inode_free_security
) (struct inode
*inode
);
1066 int (*inode_init_security
) (struct inode
*inode
, struct inode
*dir
,
1067 char **name
, void **value
, size_t *len
);
1068 int (*inode_create
) (struct inode
*dir
,
1069 struct dentry
*dentry
, int mode
);
1070 int (*inode_link
) (struct dentry
*old_dentry
,
1071 struct inode
*dir
, struct dentry
*new_dentry
);
1072 int (*inode_unlink
) (struct inode
*dir
, struct dentry
*dentry
);
1073 int (*inode_symlink
) (struct inode
*dir
,
1074 struct dentry
*dentry
, const char *old_name
);
1075 int (*inode_mkdir
) (struct inode
*dir
, struct dentry
*dentry
, int mode
);
1076 int (*inode_rmdir
) (struct inode
*dir
, struct dentry
*dentry
);
1077 int (*inode_mknod
) (struct inode
*dir
, struct dentry
*dentry
,
1078 int mode
, dev_t dev
);
1079 int (*inode_rename
) (struct inode
*old_dir
, struct dentry
*old_dentry
,
1080 struct inode
*new_dir
, struct dentry
*new_dentry
);
1081 int (*inode_readlink
) (struct dentry
*dentry
);
1082 int (*inode_follow_link
) (struct dentry
*dentry
, struct nameidata
*nd
);
1083 int (*inode_permission
) (struct inode
*inode
, int mask
, struct nameidata
*nd
);
1084 int (*inode_setattr
) (struct dentry
*dentry
, struct iattr
*attr
);
1085 int (*inode_getattr
) (struct vfsmount
*mnt
, struct dentry
*dentry
);
1086 void (*inode_delete
) (struct inode
*inode
);
1087 int (*inode_setxattr
) (struct dentry
*dentry
, char *name
, void *value
,
1088 size_t size
, int flags
);
1089 void (*inode_post_setxattr
) (struct dentry
*dentry
, char *name
, void *value
,
1090 size_t size
, int flags
);
1091 int (*inode_getxattr
) (struct dentry
*dentry
, char *name
);
1092 int (*inode_listxattr
) (struct dentry
*dentry
);
1093 int (*inode_removexattr
) (struct dentry
*dentry
, char *name
);
1094 int (*inode_getsecurity
)(struct inode
*inode
, const char *name
, void *buffer
, size_t size
);
1095 int (*inode_setsecurity
)(struct inode
*inode
, const char *name
, const void *value
, size_t size
, int flags
);
1096 int (*inode_listsecurity
)(struct inode
*inode
, char *buffer
, size_t buffer_size
);
1098 int (*file_permission
) (struct file
* file
, int mask
);
1099 int (*file_alloc_security
) (struct file
* file
);
1100 void (*file_free_security
) (struct file
* file
);
1101 int (*file_ioctl
) (struct file
* file
, unsigned int cmd
,
1103 int (*file_mmap
) (struct file
* file
,
1104 unsigned long reqprot
,
1105 unsigned long prot
, unsigned long flags
);
1106 int (*file_mprotect
) (struct vm_area_struct
* vma
,
1107 unsigned long reqprot
,
1108 unsigned long prot
);
1109 int (*file_lock
) (struct file
* file
, unsigned int cmd
);
1110 int (*file_fcntl
) (struct file
* file
, unsigned int cmd
,
1112 int (*file_set_fowner
) (struct file
* file
);
1113 int (*file_send_sigiotask
) (struct task_struct
* tsk
,
1114 struct fown_struct
* fown
, int sig
);
1115 int (*file_receive
) (struct file
* file
);
1117 int (*task_create
) (unsigned long clone_flags
);
1118 int (*task_alloc_security
) (struct task_struct
* p
);
1119 void (*task_free_security
) (struct task_struct
* p
);
1120 int (*task_setuid
) (uid_t id0
, uid_t id1
, uid_t id2
, int flags
);
1121 int (*task_post_setuid
) (uid_t old_ruid
/* or fsuid */ ,
1122 uid_t old_euid
, uid_t old_suid
, int flags
);
1123 int (*task_setgid
) (gid_t id0
, gid_t id1
, gid_t id2
, int flags
);
1124 int (*task_setpgid
) (struct task_struct
* p
, pid_t pgid
);
1125 int (*task_getpgid
) (struct task_struct
* p
);
1126 int (*task_getsid
) (struct task_struct
* p
);
1127 int (*task_setgroups
) (struct group_info
*group_info
);
1128 int (*task_setnice
) (struct task_struct
* p
, int nice
);
1129 int (*task_setrlimit
) (unsigned int resource
, struct rlimit
* new_rlim
);
1130 int (*task_setscheduler
) (struct task_struct
* p
, int policy
,
1131 struct sched_param
* lp
);
1132 int (*task_getscheduler
) (struct task_struct
* p
);
1133 int (*task_kill
) (struct task_struct
* p
,
1134 struct siginfo
* info
, int sig
);
1135 int (*task_wait
) (struct task_struct
* p
);
1136 int (*task_prctl
) (int option
, unsigned long arg2
,
1137 unsigned long arg3
, unsigned long arg4
,
1138 unsigned long arg5
);
1139 void (*task_reparent_to_init
) (struct task_struct
* p
);
1140 void (*task_to_inode
)(struct task_struct
*p
, struct inode
*inode
);
1142 int (*ipc_permission
) (struct kern_ipc_perm
* ipcp
, short flag
);
1144 int (*msg_msg_alloc_security
) (struct msg_msg
* msg
);
1145 void (*msg_msg_free_security
) (struct msg_msg
* msg
);
1147 int (*msg_queue_alloc_security
) (struct msg_queue
* msq
);
1148 void (*msg_queue_free_security
) (struct msg_queue
* msq
);
1149 int (*msg_queue_associate
) (struct msg_queue
* msq
, int msqflg
);
1150 int (*msg_queue_msgctl
) (struct msg_queue
* msq
, int cmd
);
1151 int (*msg_queue_msgsnd
) (struct msg_queue
* msq
,
1152 struct msg_msg
* msg
, int msqflg
);
1153 int (*msg_queue_msgrcv
) (struct msg_queue
* msq
,
1154 struct msg_msg
* msg
,
1155 struct task_struct
* target
,
1156 long type
, int mode
);
1158 int (*shm_alloc_security
) (struct shmid_kernel
* shp
);
1159 void (*shm_free_security
) (struct shmid_kernel
* shp
);
1160 int (*shm_associate
) (struct shmid_kernel
* shp
, int shmflg
);
1161 int (*shm_shmctl
) (struct shmid_kernel
* shp
, int cmd
);
1162 int (*shm_shmat
) (struct shmid_kernel
* shp
,
1163 char __user
*shmaddr
, int shmflg
);
1165 int (*sem_alloc_security
) (struct sem_array
* sma
);
1166 void (*sem_free_security
) (struct sem_array
* sma
);
1167 int (*sem_associate
) (struct sem_array
* sma
, int semflg
);
1168 int (*sem_semctl
) (struct sem_array
* sma
, int cmd
);
1169 int (*sem_semop
) (struct sem_array
* sma
,
1170 struct sembuf
* sops
, unsigned nsops
, int alter
);
1172 int (*netlink_send
) (struct sock
* sk
, struct sk_buff
* skb
);
1173 int (*netlink_recv
) (struct sk_buff
* skb
);
1175 /* allow module stacking */
1176 int (*register_security
) (const char *name
,
1177 struct security_operations
*ops
);
1178 int (*unregister_security
) (const char *name
,
1179 struct security_operations
*ops
);
1181 void (*d_instantiate
) (struct dentry
*dentry
, struct inode
*inode
);
1183 int (*getprocattr
)(struct task_struct
*p
, char *name
, void *value
, size_t size
);
1184 int (*setprocattr
)(struct task_struct
*p
, char *name
, void *value
, size_t size
);
1186 #ifdef CONFIG_SECURITY_NETWORK
1187 int (*unix_stream_connect
) (struct socket
* sock
,
1188 struct socket
* other
, struct sock
* newsk
);
1189 int (*unix_may_send
) (struct socket
* sock
, struct socket
* other
);
1191 int (*socket_create
) (int family
, int type
, int protocol
, int kern
);
1192 void (*socket_post_create
) (struct socket
* sock
, int family
,
1193 int type
, int protocol
, int kern
);
1194 int (*socket_bind
) (struct socket
* sock
,
1195 struct sockaddr
* address
, int addrlen
);
1196 int (*socket_connect
) (struct socket
* sock
,
1197 struct sockaddr
* address
, int addrlen
);
1198 int (*socket_listen
) (struct socket
* sock
, int backlog
);
1199 int (*socket_accept
) (struct socket
* sock
, struct socket
* newsock
);
1200 void (*socket_post_accept
) (struct socket
* sock
,
1201 struct socket
* newsock
);
1202 int (*socket_sendmsg
) (struct socket
* sock
,
1203 struct msghdr
* msg
, int size
);
1204 int (*socket_recvmsg
) (struct socket
* sock
,
1205 struct msghdr
* msg
, int size
, int flags
);
1206 int (*socket_getsockname
) (struct socket
* sock
);
1207 int (*socket_getpeername
) (struct socket
* sock
);
1208 int (*socket_getsockopt
) (struct socket
* sock
, int level
, int optname
);
1209 int (*socket_setsockopt
) (struct socket
* sock
, int level
, int optname
);
1210 int (*socket_shutdown
) (struct socket
* sock
, int how
);
1211 int (*socket_sock_rcv_skb
) (struct sock
* sk
, struct sk_buff
* skb
);
1212 int (*socket_getpeersec
) (struct socket
*sock
, char __user
*optval
, int __user
*optlen
, unsigned len
);
1213 int (*sk_alloc_security
) (struct sock
*sk
, int family
, int priority
);
1214 void (*sk_free_security
) (struct sock
*sk
);
1215 #endif /* CONFIG_SECURITY_NETWORK */
1218 /* global variables */
1219 extern struct security_operations
*security_ops
;
1222 static inline int security_ptrace (struct task_struct
* parent
, struct task_struct
* child
)
1224 return security_ops
->ptrace (parent
, child
);
1227 static inline int security_capget (struct task_struct
*target
,
1228 kernel_cap_t
*effective
,
1229 kernel_cap_t
*inheritable
,
1230 kernel_cap_t
*permitted
)
1232 return security_ops
->capget (target
, effective
, inheritable
, permitted
);
1235 static inline int security_capset_check (struct task_struct
*target
,
1236 kernel_cap_t
*effective
,
1237 kernel_cap_t
*inheritable
,
1238 kernel_cap_t
*permitted
)
1240 return security_ops
->capset_check (target
, effective
, inheritable
, permitted
);
1243 static inline void security_capset_set (struct task_struct
*target
,
1244 kernel_cap_t
*effective
,
1245 kernel_cap_t
*inheritable
,
1246 kernel_cap_t
*permitted
)
1248 security_ops
->capset_set (target
, effective
, inheritable
, permitted
);
1251 static inline int security_acct (struct file
*file
)
1253 return security_ops
->acct (file
);
1256 static inline int security_sysctl(struct ctl_table
*table
, int op
)
1258 return security_ops
->sysctl(table
, op
);
1261 static inline int security_quotactl (int cmds
, int type
, int id
,
1262 struct super_block
*sb
)
1264 return security_ops
->quotactl (cmds
, type
, id
, sb
);
1267 static inline int security_quota_on (struct dentry
* dentry
)
1269 return security_ops
->quota_on (dentry
);
1272 static inline int security_syslog(int type
)
1274 return security_ops
->syslog(type
);
1277 static inline int security_settime(struct timespec
*ts
, struct timezone
*tz
)
1279 return security_ops
->settime(ts
, tz
);
1283 static inline int security_vm_enough_memory(long pages
)
1285 return security_ops
->vm_enough_memory(pages
);
1288 static inline int security_bprm_alloc (struct linux_binprm
*bprm
)
1290 return security_ops
->bprm_alloc_security (bprm
);
1292 static inline void security_bprm_free (struct linux_binprm
*bprm
)
1294 security_ops
->bprm_free_security (bprm
);
1296 static inline void security_bprm_apply_creds (struct linux_binprm
*bprm
, int unsafe
)
1298 security_ops
->bprm_apply_creds (bprm
, unsafe
);
1300 static inline void security_bprm_post_apply_creds (struct linux_binprm
*bprm
)
1302 security_ops
->bprm_post_apply_creds (bprm
);
1304 static inline int security_bprm_set (struct linux_binprm
*bprm
)
1306 return security_ops
->bprm_set_security (bprm
);
1309 static inline int security_bprm_check (struct linux_binprm
*bprm
)
1311 return security_ops
->bprm_check_security (bprm
);
1314 static inline int security_bprm_secureexec (struct linux_binprm
*bprm
)
1316 return security_ops
->bprm_secureexec (bprm
);
1319 static inline int security_sb_alloc (struct super_block
*sb
)
1321 return security_ops
->sb_alloc_security (sb
);
1324 static inline void security_sb_free (struct super_block
*sb
)
1326 security_ops
->sb_free_security (sb
);
1329 static inline int security_sb_copy_data (struct file_system_type
*type
,
1330 void *orig
, void *copy
)
1332 return security_ops
->sb_copy_data (type
, orig
, copy
);
1335 static inline int security_sb_kern_mount (struct super_block
*sb
, void *data
)
1337 return security_ops
->sb_kern_mount (sb
, data
);
1340 static inline int security_sb_statfs (struct super_block
*sb
)
1342 return security_ops
->sb_statfs (sb
);
1345 static inline int security_sb_mount (char *dev_name
, struct nameidata
*nd
,
1346 char *type
, unsigned long flags
,
1349 return security_ops
->sb_mount (dev_name
, nd
, type
, flags
, data
);
1352 static inline int security_sb_check_sb (struct vfsmount
*mnt
,
1353 struct nameidata
*nd
)
1355 return security_ops
->sb_check_sb (mnt
, nd
);
1358 static inline int security_sb_umount (struct vfsmount
*mnt
, int flags
)
1360 return security_ops
->sb_umount (mnt
, flags
);
1363 static inline void security_sb_umount_close (struct vfsmount
*mnt
)
1365 security_ops
->sb_umount_close (mnt
);
1368 static inline void security_sb_umount_busy (struct vfsmount
*mnt
)
1370 security_ops
->sb_umount_busy (mnt
);
1373 static inline void security_sb_post_remount (struct vfsmount
*mnt
,
1374 unsigned long flags
, void *data
)
1376 security_ops
->sb_post_remount (mnt
, flags
, data
);
1379 static inline void security_sb_post_mountroot (void)
1381 security_ops
->sb_post_mountroot ();
1384 static inline void security_sb_post_addmount (struct vfsmount
*mnt
,
1385 struct nameidata
*mountpoint_nd
)
1387 security_ops
->sb_post_addmount (mnt
, mountpoint_nd
);
1390 static inline int security_sb_pivotroot (struct nameidata
*old_nd
,
1391 struct nameidata
*new_nd
)
1393 return security_ops
->sb_pivotroot (old_nd
, new_nd
);
1396 static inline void security_sb_post_pivotroot (struct nameidata
*old_nd
,
1397 struct nameidata
*new_nd
)
1399 security_ops
->sb_post_pivotroot (old_nd
, new_nd
);
1402 static inline int security_inode_alloc (struct inode
*inode
)
1404 if (unlikely (IS_PRIVATE (inode
)))
1406 return security_ops
->inode_alloc_security (inode
);
1409 static inline void security_inode_free (struct inode
*inode
)
1411 if (unlikely (IS_PRIVATE (inode
)))
1413 security_ops
->inode_free_security (inode
);
1416 static inline int security_inode_init_security (struct inode
*inode
,
1422 if (unlikely (IS_PRIVATE (inode
)))
1424 return security_ops
->inode_init_security (inode
, dir
, name
, value
, len
);
1427 static inline int security_inode_create (struct inode
*dir
,
1428 struct dentry
*dentry
,
1431 if (unlikely (IS_PRIVATE (dir
)))
1433 return security_ops
->inode_create (dir
, dentry
, mode
);
1436 static inline int security_inode_link (struct dentry
*old_dentry
,
1438 struct dentry
*new_dentry
)
1440 if (unlikely (IS_PRIVATE (old_dentry
->d_inode
)))
1442 return security_ops
->inode_link (old_dentry
, dir
, new_dentry
);
1445 static inline int security_inode_unlink (struct inode
*dir
,
1446 struct dentry
*dentry
)
1448 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1450 return security_ops
->inode_unlink (dir
, dentry
);
1453 static inline int security_inode_symlink (struct inode
*dir
,
1454 struct dentry
*dentry
,
1455 const char *old_name
)
1457 if (unlikely (IS_PRIVATE (dir
)))
1459 return security_ops
->inode_symlink (dir
, dentry
, old_name
);
1462 static inline int security_inode_mkdir (struct inode
*dir
,
1463 struct dentry
*dentry
,
1466 if (unlikely (IS_PRIVATE (dir
)))
1468 return security_ops
->inode_mkdir (dir
, dentry
, mode
);
1471 static inline int security_inode_rmdir (struct inode
*dir
,
1472 struct dentry
*dentry
)
1474 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1476 return security_ops
->inode_rmdir (dir
, dentry
);
1479 static inline int security_inode_mknod (struct inode
*dir
,
1480 struct dentry
*dentry
,
1481 int mode
, dev_t dev
)
1483 if (unlikely (IS_PRIVATE (dir
)))
1485 return security_ops
->inode_mknod (dir
, dentry
, mode
, dev
);
1488 static inline int security_inode_rename (struct inode
*old_dir
,
1489 struct dentry
*old_dentry
,
1490 struct inode
*new_dir
,
1491 struct dentry
*new_dentry
)
1493 if (unlikely (IS_PRIVATE (old_dentry
->d_inode
) ||
1494 (new_dentry
->d_inode
&& IS_PRIVATE (new_dentry
->d_inode
))))
1496 return security_ops
->inode_rename (old_dir
, old_dentry
,
1497 new_dir
, new_dentry
);
1500 static inline int security_inode_readlink (struct dentry
*dentry
)
1502 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1504 return security_ops
->inode_readlink (dentry
);
1507 static inline int security_inode_follow_link (struct dentry
*dentry
,
1508 struct nameidata
*nd
)
1510 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1512 return security_ops
->inode_follow_link (dentry
, nd
);
1515 static inline int security_inode_permission (struct inode
*inode
, int mask
,
1516 struct nameidata
*nd
)
1518 if (unlikely (IS_PRIVATE (inode
)))
1520 return security_ops
->inode_permission (inode
, mask
, nd
);
1523 static inline int security_inode_setattr (struct dentry
*dentry
,
1526 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1528 return security_ops
->inode_setattr (dentry
, attr
);
1531 static inline int security_inode_getattr (struct vfsmount
*mnt
,
1532 struct dentry
*dentry
)
1534 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1536 return security_ops
->inode_getattr (mnt
, dentry
);
1539 static inline void security_inode_delete (struct inode
*inode
)
1541 if (unlikely (IS_PRIVATE (inode
)))
1543 security_ops
->inode_delete (inode
);
1546 static inline int security_inode_setxattr (struct dentry
*dentry
, char *name
,
1547 void *value
, size_t size
, int flags
)
1549 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1551 return security_ops
->inode_setxattr (dentry
, name
, value
, size
, flags
);
1554 static inline void security_inode_post_setxattr (struct dentry
*dentry
, char *name
,
1555 void *value
, size_t size
, int flags
)
1557 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1559 security_ops
->inode_post_setxattr (dentry
, name
, value
, size
, flags
);
1562 static inline int security_inode_getxattr (struct dentry
*dentry
, char *name
)
1564 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1566 return security_ops
->inode_getxattr (dentry
, name
);
1569 static inline int security_inode_listxattr (struct dentry
*dentry
)
1571 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1573 return security_ops
->inode_listxattr (dentry
);
1576 static inline int security_inode_removexattr (struct dentry
*dentry
, char *name
)
1578 if (unlikely (IS_PRIVATE (dentry
->d_inode
)))
1580 return security_ops
->inode_removexattr (dentry
, name
);
1583 static inline int security_inode_getsecurity(struct inode
*inode
, const char *name
, void *buffer
, size_t size
)
1585 if (unlikely (IS_PRIVATE (inode
)))
1587 return security_ops
->inode_getsecurity(inode
, name
, buffer
, size
);
1590 static inline int security_inode_setsecurity(struct inode
*inode
, const char *name
, const void *value
, size_t size
, int flags
)
1592 if (unlikely (IS_PRIVATE (inode
)))
1594 return security_ops
->inode_setsecurity(inode
, name
, value
, size
, flags
);
1597 static inline int security_inode_listsecurity(struct inode
*inode
, char *buffer
, size_t buffer_size
)
1599 if (unlikely (IS_PRIVATE (inode
)))
1601 return security_ops
->inode_listsecurity(inode
, buffer
, buffer_size
);
1604 static inline int security_file_permission (struct file
*file
, int mask
)
1606 return security_ops
->file_permission (file
, mask
);
1609 static inline int security_file_alloc (struct file
*file
)
1611 return security_ops
->file_alloc_security (file
);
1614 static inline void security_file_free (struct file
*file
)
1616 security_ops
->file_free_security (file
);
1619 static inline int security_file_ioctl (struct file
*file
, unsigned int cmd
,
1622 return security_ops
->file_ioctl (file
, cmd
, arg
);
1625 static inline int security_file_mmap (struct file
*file
, unsigned long reqprot
,
1627 unsigned long flags
)
1629 return security_ops
->file_mmap (file
, reqprot
, prot
, flags
);
1632 static inline int security_file_mprotect (struct vm_area_struct
*vma
,
1633 unsigned long reqprot
,
1636 return security_ops
->file_mprotect (vma
, reqprot
, prot
);
1639 static inline int security_file_lock (struct file
*file
, unsigned int cmd
)
1641 return security_ops
->file_lock (file
, cmd
);
1644 static inline int security_file_fcntl (struct file
*file
, unsigned int cmd
,
1647 return security_ops
->file_fcntl (file
, cmd
, arg
);
1650 static inline int security_file_set_fowner (struct file
*file
)
1652 return security_ops
->file_set_fowner (file
);
1655 static inline int security_file_send_sigiotask (struct task_struct
*tsk
,
1656 struct fown_struct
*fown
,
1659 return security_ops
->file_send_sigiotask (tsk
, fown
, sig
);
1662 static inline int security_file_receive (struct file
*file
)
1664 return security_ops
->file_receive (file
);
1667 static inline int security_task_create (unsigned long clone_flags
)
1669 return security_ops
->task_create (clone_flags
);
1672 static inline int security_task_alloc (struct task_struct
*p
)
1674 return security_ops
->task_alloc_security (p
);
1677 static inline void security_task_free (struct task_struct
*p
)
1679 security_ops
->task_free_security (p
);
1682 static inline int security_task_setuid (uid_t id0
, uid_t id1
, uid_t id2
,
1685 return security_ops
->task_setuid (id0
, id1
, id2
, flags
);
1688 static inline int security_task_post_setuid (uid_t old_ruid
, uid_t old_euid
,
1689 uid_t old_suid
, int flags
)
1691 return security_ops
->task_post_setuid (old_ruid
, old_euid
, old_suid
, flags
);
1694 static inline int security_task_setgid (gid_t id0
, gid_t id1
, gid_t id2
,
1697 return security_ops
->task_setgid (id0
, id1
, id2
, flags
);
1700 static inline int security_task_setpgid (struct task_struct
*p
, pid_t pgid
)
1702 return security_ops
->task_setpgid (p
, pgid
);
1705 static inline int security_task_getpgid (struct task_struct
*p
)
1707 return security_ops
->task_getpgid (p
);
1710 static inline int security_task_getsid (struct task_struct
*p
)
1712 return security_ops
->task_getsid (p
);
1715 static inline int security_task_setgroups (struct group_info
*group_info
)
1717 return security_ops
->task_setgroups (group_info
);
1720 static inline int security_task_setnice (struct task_struct
*p
, int nice
)
1722 return security_ops
->task_setnice (p
, nice
);
1725 static inline int security_task_setrlimit (unsigned int resource
,
1726 struct rlimit
*new_rlim
)
1728 return security_ops
->task_setrlimit (resource
, new_rlim
);
1731 static inline int security_task_setscheduler (struct task_struct
*p
,
1733 struct sched_param
*lp
)
1735 return security_ops
->task_setscheduler (p
, policy
, lp
);
1738 static inline int security_task_getscheduler (struct task_struct
*p
)
1740 return security_ops
->task_getscheduler (p
);
1743 static inline int security_task_kill (struct task_struct
*p
,
1744 struct siginfo
*info
, int sig
)
1746 return security_ops
->task_kill (p
, info
, sig
);
1749 static inline int security_task_wait (struct task_struct
*p
)
1751 return security_ops
->task_wait (p
);
1754 static inline int security_task_prctl (int option
, unsigned long arg2
,
1759 return security_ops
->task_prctl (option
, arg2
, arg3
, arg4
, arg5
);
1762 static inline void security_task_reparent_to_init (struct task_struct
*p
)
1764 security_ops
->task_reparent_to_init (p
);
1767 static inline void security_task_to_inode(struct task_struct
*p
, struct inode
*inode
)
1769 security_ops
->task_to_inode(p
, inode
);
1772 static inline int security_ipc_permission (struct kern_ipc_perm
*ipcp
,
1775 return security_ops
->ipc_permission (ipcp
, flag
);
1778 static inline int security_msg_msg_alloc (struct msg_msg
* msg
)
1780 return security_ops
->msg_msg_alloc_security (msg
);
1783 static inline void security_msg_msg_free (struct msg_msg
* msg
)
1785 security_ops
->msg_msg_free_security(msg
);
1788 static inline int security_msg_queue_alloc (struct msg_queue
*msq
)
1790 return security_ops
->msg_queue_alloc_security (msq
);
1793 static inline void security_msg_queue_free (struct msg_queue
*msq
)
1795 security_ops
->msg_queue_free_security (msq
);
1798 static inline int security_msg_queue_associate (struct msg_queue
* msq
,
1801 return security_ops
->msg_queue_associate (msq
, msqflg
);
1804 static inline int security_msg_queue_msgctl (struct msg_queue
* msq
, int cmd
)
1806 return security_ops
->msg_queue_msgctl (msq
, cmd
);
1809 static inline int security_msg_queue_msgsnd (struct msg_queue
* msq
,
1810 struct msg_msg
* msg
, int msqflg
)
1812 return security_ops
->msg_queue_msgsnd (msq
, msg
, msqflg
);
1815 static inline int security_msg_queue_msgrcv (struct msg_queue
* msq
,
1816 struct msg_msg
* msg
,
1817 struct task_struct
* target
,
1818 long type
, int mode
)
1820 return security_ops
->msg_queue_msgrcv (msq
, msg
, target
, type
, mode
);
1823 static inline int security_shm_alloc (struct shmid_kernel
*shp
)
1825 return security_ops
->shm_alloc_security (shp
);
1828 static inline void security_shm_free (struct shmid_kernel
*shp
)
1830 security_ops
->shm_free_security (shp
);
1833 static inline int security_shm_associate (struct shmid_kernel
* shp
,
1836 return security_ops
->shm_associate(shp
, shmflg
);
1839 static inline int security_shm_shmctl (struct shmid_kernel
* shp
, int cmd
)
1841 return security_ops
->shm_shmctl (shp
, cmd
);
1844 static inline int security_shm_shmat (struct shmid_kernel
* shp
,
1845 char __user
*shmaddr
, int shmflg
)
1847 return security_ops
->shm_shmat(shp
, shmaddr
, shmflg
);
1850 static inline int security_sem_alloc (struct sem_array
*sma
)
1852 return security_ops
->sem_alloc_security (sma
);
1855 static inline void security_sem_free (struct sem_array
*sma
)
1857 security_ops
->sem_free_security (sma
);
1860 static inline int security_sem_associate (struct sem_array
* sma
, int semflg
)
1862 return security_ops
->sem_associate (sma
, semflg
);
1865 static inline int security_sem_semctl (struct sem_array
* sma
, int cmd
)
1867 return security_ops
->sem_semctl(sma
, cmd
);
1870 static inline int security_sem_semop (struct sem_array
* sma
,
1871 struct sembuf
* sops
, unsigned nsops
,
1874 return security_ops
->sem_semop(sma
, sops
, nsops
, alter
);
1877 static inline void security_d_instantiate (struct dentry
*dentry
, struct inode
*inode
)
1879 if (unlikely (inode
&& IS_PRIVATE (inode
)))
1881 security_ops
->d_instantiate (dentry
, inode
);
1884 static inline int security_getprocattr(struct task_struct
*p
, char *name
, void *value
, size_t size
)
1886 return security_ops
->getprocattr(p
, name
, value
, size
);
1889 static inline int security_setprocattr(struct task_struct
*p
, char *name
, void *value
, size_t size
)
1891 return security_ops
->setprocattr(p
, name
, value
, size
);
1894 static inline int security_netlink_send(struct sock
*sk
, struct sk_buff
* skb
)
1896 return security_ops
->netlink_send(sk
, skb
);
1899 static inline int security_netlink_recv(struct sk_buff
* skb
)
1901 return security_ops
->netlink_recv(skb
);
1905 extern int security_init (void);
1906 extern int register_security (struct security_operations
*ops
);
1907 extern int unregister_security (struct security_operations
*ops
);
1908 extern int mod_reg_security (const char *name
, struct security_operations
*ops
);
1909 extern int mod_unreg_security (const char *name
, struct security_operations
*ops
);
1910 extern struct dentry
*securityfs_create_file(const char *name
, mode_t mode
,
1911 struct dentry
*parent
, void *data
,
1912 struct file_operations
*fops
);
1913 extern struct dentry
*securityfs_create_dir(const char *name
, struct dentry
*parent
);
1914 extern void securityfs_remove(struct dentry
*dentry
);
1917 #else /* CONFIG_SECURITY */
1920 * This is the default capabilities functionality. Most of these functions
1921 * are just stubbed out, but a few must call the proper capable code.
1924 static inline int security_init(void)
1929 static inline int security_ptrace (struct task_struct
*parent
, struct task_struct
* child
)
1931 return cap_ptrace (parent
, child
);
1934 static inline int security_capget (struct task_struct
*target
,
1935 kernel_cap_t
*effective
,
1936 kernel_cap_t
*inheritable
,
1937 kernel_cap_t
*permitted
)
1939 return cap_capget (target
, effective
, inheritable
, permitted
);
1942 static inline int security_capset_check (struct task_struct
*target
,
1943 kernel_cap_t
*effective
,
1944 kernel_cap_t
*inheritable
,
1945 kernel_cap_t
*permitted
)
1947 return cap_capset_check (target
, effective
, inheritable
, permitted
);
1950 static inline void security_capset_set (struct task_struct
*target
,
1951 kernel_cap_t
*effective
,
1952 kernel_cap_t
*inheritable
,
1953 kernel_cap_t
*permitted
)
1955 cap_capset_set (target
, effective
, inheritable
, permitted
);
1958 static inline int security_acct (struct file
*file
)
1963 static inline int security_sysctl(struct ctl_table
*table
, int op
)
1968 static inline int security_quotactl (int cmds
, int type
, int id
,
1969 struct super_block
* sb
)
1974 static inline int security_quota_on (struct dentry
* dentry
)
1979 static inline int security_syslog(int type
)
1981 return cap_syslog(type
);
1984 static inline int security_settime(struct timespec
*ts
, struct timezone
*tz
)
1986 return cap_settime(ts
, tz
);
1989 static inline int security_vm_enough_memory(long pages
)
1991 return cap_vm_enough_memory(pages
);
1994 static inline int security_bprm_alloc (struct linux_binprm
*bprm
)
1999 static inline void security_bprm_free (struct linux_binprm
*bprm
)
2002 static inline void security_bprm_apply_creds (struct linux_binprm
*bprm
, int unsafe
)
2004 cap_bprm_apply_creds (bprm
, unsafe
);
2007 static inline void security_bprm_post_apply_creds (struct linux_binprm
*bprm
)
2012 static inline int security_bprm_set (struct linux_binprm
*bprm
)
2014 return cap_bprm_set_security (bprm
);
2017 static inline int security_bprm_check (struct linux_binprm
*bprm
)
2022 static inline int security_bprm_secureexec (struct linux_binprm
*bprm
)
2024 return cap_bprm_secureexec(bprm
);
2027 static inline int security_sb_alloc (struct super_block
*sb
)
2032 static inline void security_sb_free (struct super_block
*sb
)
2035 static inline int security_sb_copy_data (struct file_system_type
*type
,
2036 void *orig
, void *copy
)
2041 static inline int security_sb_kern_mount (struct super_block
*sb
, void *data
)
2046 static inline int security_sb_statfs (struct super_block
*sb
)
2051 static inline int security_sb_mount (char *dev_name
, struct nameidata
*nd
,
2052 char *type
, unsigned long flags
,
2058 static inline int security_sb_check_sb (struct vfsmount
*mnt
,
2059 struct nameidata
*nd
)
2064 static inline int security_sb_umount (struct vfsmount
*mnt
, int flags
)
2069 static inline void security_sb_umount_close (struct vfsmount
*mnt
)
2072 static inline void security_sb_umount_busy (struct vfsmount
*mnt
)
2075 static inline void security_sb_post_remount (struct vfsmount
*mnt
,
2076 unsigned long flags
, void *data
)
2079 static inline void security_sb_post_mountroot (void)
2082 static inline void security_sb_post_addmount (struct vfsmount
*mnt
,
2083 struct nameidata
*mountpoint_nd
)
2086 static inline int security_sb_pivotroot (struct nameidata
*old_nd
,
2087 struct nameidata
*new_nd
)
2092 static inline void security_sb_post_pivotroot (struct nameidata
*old_nd
,
2093 struct nameidata
*new_nd
)
2096 static inline int security_inode_alloc (struct inode
*inode
)
2101 static inline void security_inode_free (struct inode
*inode
)
2104 static inline int security_inode_init_security (struct inode
*inode
,
2113 static inline int security_inode_create (struct inode
*dir
,
2114 struct dentry
*dentry
,
2120 static inline int security_inode_link (struct dentry
*old_dentry
,
2122 struct dentry
*new_dentry
)
2127 static inline int security_inode_unlink (struct inode
*dir
,
2128 struct dentry
*dentry
)
2133 static inline int security_inode_symlink (struct inode
*dir
,
2134 struct dentry
*dentry
,
2135 const char *old_name
)
2140 static inline int security_inode_mkdir (struct inode
*dir
,
2141 struct dentry
*dentry
,
2147 static inline int security_inode_rmdir (struct inode
*dir
,
2148 struct dentry
*dentry
)
2153 static inline int security_inode_mknod (struct inode
*dir
,
2154 struct dentry
*dentry
,
2155 int mode
, dev_t dev
)
2160 static inline int security_inode_rename (struct inode
*old_dir
,
2161 struct dentry
*old_dentry
,
2162 struct inode
*new_dir
,
2163 struct dentry
*new_dentry
)
2168 static inline int security_inode_readlink (struct dentry
*dentry
)
2173 static inline int security_inode_follow_link (struct dentry
*dentry
,
2174 struct nameidata
*nd
)
2179 static inline int security_inode_permission (struct inode
*inode
, int mask
,
2180 struct nameidata
*nd
)
2185 static inline int security_inode_setattr (struct dentry
*dentry
,
2191 static inline int security_inode_getattr (struct vfsmount
*mnt
,
2192 struct dentry
*dentry
)
2197 static inline void security_inode_delete (struct inode
*inode
)
2200 static inline int security_inode_setxattr (struct dentry
*dentry
, char *name
,
2201 void *value
, size_t size
, int flags
)
2203 return cap_inode_setxattr(dentry
, name
, value
, size
, flags
);
2206 static inline void security_inode_post_setxattr (struct dentry
*dentry
, char *name
,
2207 void *value
, size_t size
, int flags
)
2210 static inline int security_inode_getxattr (struct dentry
*dentry
, char *name
)
2215 static inline int security_inode_listxattr (struct dentry
*dentry
)
2220 static inline int security_inode_removexattr (struct dentry
*dentry
, char *name
)
2222 return cap_inode_removexattr(dentry
, name
);
2225 static inline int security_inode_getsecurity(struct inode
*inode
, const char *name
, void *buffer
, size_t size
)
2230 static inline int security_inode_setsecurity(struct inode
*inode
, const char *name
, const void *value
, size_t size
, int flags
)
2235 static inline int security_inode_listsecurity(struct inode
*inode
, char *buffer
, size_t buffer_size
)
2240 static inline int security_file_permission (struct file
*file
, int mask
)
2245 static inline int security_file_alloc (struct file
*file
)
2250 static inline void security_file_free (struct file
*file
)
2253 static inline int security_file_ioctl (struct file
*file
, unsigned int cmd
,
2259 static inline int security_file_mmap (struct file
*file
, unsigned long reqprot
,
2261 unsigned long flags
)
2266 static inline int security_file_mprotect (struct vm_area_struct
*vma
,
2267 unsigned long reqprot
,
2273 static inline int security_file_lock (struct file
*file
, unsigned int cmd
)
2278 static inline int security_file_fcntl (struct file
*file
, unsigned int cmd
,
2284 static inline int security_file_set_fowner (struct file
*file
)
2289 static inline int security_file_send_sigiotask (struct task_struct
*tsk
,
2290 struct fown_struct
*fown
,
2296 static inline int security_file_receive (struct file
*file
)
2301 static inline int security_task_create (unsigned long clone_flags
)
2306 static inline int security_task_alloc (struct task_struct
*p
)
2311 static inline void security_task_free (struct task_struct
*p
)
2314 static inline int security_task_setuid (uid_t id0
, uid_t id1
, uid_t id2
,
2320 static inline int security_task_post_setuid (uid_t old_ruid
, uid_t old_euid
,
2321 uid_t old_suid
, int flags
)
2323 return cap_task_post_setuid (old_ruid
, old_euid
, old_suid
, flags
);
2326 static inline int security_task_setgid (gid_t id0
, gid_t id1
, gid_t id2
,
2332 static inline int security_task_setpgid (struct task_struct
*p
, pid_t pgid
)
2337 static inline int security_task_getpgid (struct task_struct
*p
)
2342 static inline int security_task_getsid (struct task_struct
*p
)
2347 static inline int security_task_setgroups (struct group_info
*group_info
)
2352 static inline int security_task_setnice (struct task_struct
*p
, int nice
)
2357 static inline int security_task_setrlimit (unsigned int resource
,
2358 struct rlimit
*new_rlim
)
2363 static inline int security_task_setscheduler (struct task_struct
*p
,
2365 struct sched_param
*lp
)
2370 static inline int security_task_getscheduler (struct task_struct
*p
)
2375 static inline int security_task_kill (struct task_struct
*p
,
2376 struct siginfo
*info
, int sig
)
2381 static inline int security_task_wait (struct task_struct
*p
)
2386 static inline int security_task_prctl (int option
, unsigned long arg2
,
2394 static inline void security_task_reparent_to_init (struct task_struct
*p
)
2396 cap_task_reparent_to_init (p
);
2399 static inline void security_task_to_inode(struct task_struct
*p
, struct inode
*inode
)
2402 static inline int security_ipc_permission (struct kern_ipc_perm
*ipcp
,
2408 static inline int security_msg_msg_alloc (struct msg_msg
* msg
)
2413 static inline void security_msg_msg_free (struct msg_msg
* msg
)
2416 static inline int security_msg_queue_alloc (struct msg_queue
*msq
)
2421 static inline void security_msg_queue_free (struct msg_queue
*msq
)
2424 static inline int security_msg_queue_associate (struct msg_queue
* msq
,
2430 static inline int security_msg_queue_msgctl (struct msg_queue
* msq
, int cmd
)
2435 static inline int security_msg_queue_msgsnd (struct msg_queue
* msq
,
2436 struct msg_msg
* msg
, int msqflg
)
2441 static inline int security_msg_queue_msgrcv (struct msg_queue
* msq
,
2442 struct msg_msg
* msg
,
2443 struct task_struct
* target
,
2444 long type
, int mode
)
2449 static inline int security_shm_alloc (struct shmid_kernel
*shp
)
2454 static inline void security_shm_free (struct shmid_kernel
*shp
)
2457 static inline int security_shm_associate (struct shmid_kernel
* shp
,
2463 static inline int security_shm_shmctl (struct shmid_kernel
* shp
, int cmd
)
2468 static inline int security_shm_shmat (struct shmid_kernel
* shp
,
2469 char __user
*shmaddr
, int shmflg
)
2474 static inline int security_sem_alloc (struct sem_array
*sma
)
2479 static inline void security_sem_free (struct sem_array
*sma
)
2482 static inline int security_sem_associate (struct sem_array
* sma
, int semflg
)
2487 static inline int security_sem_semctl (struct sem_array
* sma
, int cmd
)
2492 static inline int security_sem_semop (struct sem_array
* sma
,
2493 struct sembuf
* sops
, unsigned nsops
,
2499 static inline void security_d_instantiate (struct dentry
*dentry
, struct inode
*inode
)
2502 static inline int security_getprocattr(struct task_struct
*p
, char *name
, void *value
, size_t size
)
2507 static inline int security_setprocattr(struct task_struct
*p
, char *name
, void *value
, size_t size
)
2512 static inline int security_netlink_send (struct sock
*sk
, struct sk_buff
*skb
)
2514 return cap_netlink_send (sk
, skb
);
2517 static inline int security_netlink_recv (struct sk_buff
*skb
)
2519 return cap_netlink_recv (skb
);
2522 #endif /* CONFIG_SECURITY */
2524 #ifdef CONFIG_SECURITY_NETWORK
2525 static inline int security_unix_stream_connect(struct socket
* sock
,
2526 struct socket
* other
,
2527 struct sock
* newsk
)
2529 return security_ops
->unix_stream_connect(sock
, other
, newsk
);
2533 static inline int security_unix_may_send(struct socket
* sock
,
2534 struct socket
* other
)
2536 return security_ops
->unix_may_send(sock
, other
);
2539 static inline int security_socket_create (int family
, int type
,
2540 int protocol
, int kern
)
2542 return security_ops
->socket_create(family
, type
, protocol
, kern
);
2545 static inline void security_socket_post_create(struct socket
* sock
,
2548 int protocol
, int kern
)
2550 security_ops
->socket_post_create(sock
, family
, type
,
2554 static inline int security_socket_bind(struct socket
* sock
,
2555 struct sockaddr
* address
,
2558 return security_ops
->socket_bind(sock
, address
, addrlen
);
2561 static inline int security_socket_connect(struct socket
* sock
,
2562 struct sockaddr
* address
,
2565 return security_ops
->socket_connect(sock
, address
, addrlen
);
2568 static inline int security_socket_listen(struct socket
* sock
, int backlog
)
2570 return security_ops
->socket_listen(sock
, backlog
);
2573 static inline int security_socket_accept(struct socket
* sock
,
2574 struct socket
* newsock
)
2576 return security_ops
->socket_accept(sock
, newsock
);
2579 static inline void security_socket_post_accept(struct socket
* sock
,
2580 struct socket
* newsock
)
2582 security_ops
->socket_post_accept(sock
, newsock
);
2585 static inline int security_socket_sendmsg(struct socket
* sock
,
2586 struct msghdr
* msg
, int size
)
2588 return security_ops
->socket_sendmsg(sock
, msg
, size
);
2591 static inline int security_socket_recvmsg(struct socket
* sock
,
2592 struct msghdr
* msg
, int size
,
2595 return security_ops
->socket_recvmsg(sock
, msg
, size
, flags
);
2598 static inline int security_socket_getsockname(struct socket
* sock
)
2600 return security_ops
->socket_getsockname(sock
);
2603 static inline int security_socket_getpeername(struct socket
* sock
)
2605 return security_ops
->socket_getpeername(sock
);
2608 static inline int security_socket_getsockopt(struct socket
* sock
,
2609 int level
, int optname
)
2611 return security_ops
->socket_getsockopt(sock
, level
, optname
);
2614 static inline int security_socket_setsockopt(struct socket
* sock
,
2615 int level
, int optname
)
2617 return security_ops
->socket_setsockopt(sock
, level
, optname
);
2620 static inline int security_socket_shutdown(struct socket
* sock
, int how
)
2622 return security_ops
->socket_shutdown(sock
, how
);
2625 static inline int security_sock_rcv_skb (struct sock
* sk
,
2626 struct sk_buff
* skb
)
2628 return security_ops
->socket_sock_rcv_skb (sk
, skb
);
2631 static inline int security_socket_getpeersec(struct socket
*sock
, char __user
*optval
,
2632 int __user
*optlen
, unsigned len
)
2634 return security_ops
->socket_getpeersec(sock
, optval
, optlen
, len
);
2637 static inline int security_sk_alloc(struct sock
*sk
, int family
,
2638 unsigned int __nocast priority
)
2640 return security_ops
->sk_alloc_security(sk
, family
, priority
);
2643 static inline void security_sk_free(struct sock
*sk
)
2645 return security_ops
->sk_free_security(sk
);
2647 #else /* CONFIG_SECURITY_NETWORK */
2648 static inline int security_unix_stream_connect(struct socket
* sock
,
2649 struct socket
* other
,
2650 struct sock
* newsk
)
2655 static inline int security_unix_may_send(struct socket
* sock
,
2656 struct socket
* other
)
2661 static inline int security_socket_create (int family
, int type
,
2662 int protocol
, int kern
)
2667 static inline void security_socket_post_create(struct socket
* sock
,
2670 int protocol
, int kern
)
2674 static inline int security_socket_bind(struct socket
* sock
,
2675 struct sockaddr
* address
,
2681 static inline int security_socket_connect(struct socket
* sock
,
2682 struct sockaddr
* address
,
2688 static inline int security_socket_listen(struct socket
* sock
, int backlog
)
2693 static inline int security_socket_accept(struct socket
* sock
,
2694 struct socket
* newsock
)
2699 static inline void security_socket_post_accept(struct socket
* sock
,
2700 struct socket
* newsock
)
2704 static inline int security_socket_sendmsg(struct socket
* sock
,
2705 struct msghdr
* msg
, int size
)
2710 static inline int security_socket_recvmsg(struct socket
* sock
,
2711 struct msghdr
* msg
, int size
,
2717 static inline int security_socket_getsockname(struct socket
* sock
)
2722 static inline int security_socket_getpeername(struct socket
* sock
)
2727 static inline int security_socket_getsockopt(struct socket
* sock
,
2728 int level
, int optname
)
2733 static inline int security_socket_setsockopt(struct socket
* sock
,
2734 int level
, int optname
)
2739 static inline int security_socket_shutdown(struct socket
* sock
, int how
)
2743 static inline int security_sock_rcv_skb (struct sock
* sk
,
2744 struct sk_buff
* skb
)
2749 static inline int security_socket_getpeersec(struct socket
*sock
, char __user
*optval
,
2750 int __user
*optlen
, unsigned len
)
2752 return -ENOPROTOOPT
;
2755 static inline int security_sk_alloc(struct sock
*sk
, int family
,
2756 unsigned int __nocast priority
)
2761 static inline void security_sk_free(struct sock
*sk
)
2764 #endif /* CONFIG_SECURITY_NETWORK */
2766 #endif /* ! __LINUX_SECURITY_H */