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