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