[PATCH] remove the inode_post_link and inode_post_rename LSM hooks
[linux-2.6/zen-sources.git] / include / linux / security.h
blob55b02e1c73f418696cdbe49f5080985133934e55
1 /*
2 * Linux Security plug
4 * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
5 * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
7 * Copyright (C) 2001 James Morris <jmorris@intercode.com.au>
8 * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * Due to this file being licensed under the GPL there is controversy over
16 * whether this permits you to write a module that #includes this file
17 * without placing your module under the GPL. Please consult a lawyer for
18 * advice before doing this.
22 #ifndef __LINUX_SECURITY_H
23 #define __LINUX_SECURITY_H
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>
34 struct ctl_table;
37 * These functions are in security/capability.c and are used
38 * as the default capabilities functions
40 extern int cap_capable (struct task_struct *tsk, int cap);
41 extern int cap_settime (struct timespec *ts, struct timezone *tz);
42 extern int cap_ptrace (struct task_struct *parent, struct task_struct *child);
43 extern int cap_capget (struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
44 extern int cap_capset_check (struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
45 extern void cap_capset_set (struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
46 extern int cap_bprm_set_security (struct linux_binprm *bprm);
47 extern void cap_bprm_apply_creds (struct linux_binprm *bprm, int unsafe);
48 extern int cap_bprm_secureexec(struct linux_binprm *bprm);
49 extern int cap_inode_setxattr(struct dentry *dentry, char *name, void *value, size_t size, int flags);
50 extern int cap_inode_removexattr(struct dentry *dentry, char *name);
51 extern int cap_task_post_setuid (uid_t old_ruid, uid_t old_euid, uid_t old_suid, int flags);
52 extern void cap_task_reparent_to_init (struct task_struct *p);
53 extern int cap_syslog (int type);
54 extern int cap_vm_enough_memory (long pages);
56 struct msghdr;
57 struct sk_buff;
58 struct sock;
59 struct sockaddr;
60 struct socket;
62 extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
63 extern int cap_netlink_recv(struct sk_buff *skb);
66 * Values used in the task_security_ops calls
68 /* setuid or setgid, id0 == uid or gid */
69 #define LSM_SETID_ID 1
71 /* setreuid or setregid, id0 == real, id1 == eff */
72 #define LSM_SETID_RE 2
74 /* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
75 #define LSM_SETID_RES 4
77 /* setfsuid or setfsgid, id0 == fsuid or fsgid */
78 #define LSM_SETID_FS 8
80 /* forward declares to avoid warnings */
81 struct nfsctl_arg;
82 struct sched_param;
83 struct swap_info_struct;
85 /* bprm_apply_creds unsafe reasons */
86 #define LSM_UNSAFE_SHARE 1
87 #define LSM_UNSAFE_PTRACE 2
88 #define LSM_UNSAFE_PTRACE_CAP 4
90 #ifdef CONFIG_SECURITY
92 /**
93 * struct security_operations - main security structure
95 * Security hooks for program execution operations.
97 * @bprm_alloc_security:
98 * Allocate and attach a security structure to the @bprm->security field.
99 * The security field is initialized to NULL when the bprm structure is
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.
155 * Security hooks for filesystem operations.
157 * @sb_alloc_security:
158 * Allocate and attach a security structure to the sb->s_security field.
159 * The s_security field is initialized to NULL when the structure is
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.
241 * Security hooks for inode operations.
243 * @inode_alloc_security:
244 * Allocate and attach a security structure to @inode->i_security. The
245 * i_security field is initialized to NULL when the inode structure is
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.
253 * @inode_init_security:
254 * Obtain the security attribute name suffix and value to set on a newly
255 * created inode and set up the incore security field for the new inode.
256 * This hook is called by the fs code as part of the inode creation
257 * transaction and provides for atomic labeling of the inode, unlike
258 * the post_create/mkdir/... hooks called by the VFS. The hook function
259 * is expected to allocate the name and value via kmalloc, with the caller
260 * being responsible for calling kfree after using them.
261 * If the security module does not use security attributes or does
262 * not wish to put a security attribute on this particular inode,
263 * then it should return -EOPNOTSUPP to skip this processing.
264 * @inode contains the inode structure of the newly created inode.
265 * @dir contains the inode structure of the parent directory.
266 * @name will be set to the allocated name suffix (e.g. selinux).
267 * @value will be set to the allocated attribute value.
268 * @len will be set to the length of the value.
269 * Returns 0 if @name and @value have been successfully set,
270 * -EOPNOTSUPP if no security attribute is needed, or
271 * -ENOMEM on memory allocation failure.
272 * @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.
278 * @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.
284 * @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.
295 * @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.
302 * @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.
317 * @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.
324 * @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.
388 * Return number of bytes used/required on success.
389 * @inode_setsecurity:
390 * Set the security label associated with @name for @inode from the
391 * extended attribute value @value. @size indicates the size of the
392 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
393 * Note that @name is the remainder of the attribute name after the
394 * security. prefix has been removed.
395 * Return 0 on success.
396 * @inode_listsecurity:
397 * Copy the extended attribute names for the security labels
398 * associated with @inode into @buffer. The maximum size of @buffer
399 * is specified by @buffer_size. @buffer may be NULL to request
400 * the size of the buffer required.
401 * Returns number of bytes used/required on success.
403 * Security hooks for file operations
405 * @file_permission:
406 * Check file permissions before accessing an open file. This hook is
407 * called by various operations that read or write files. A security
408 * module can use this hook to perform additional checking on these
409 * operations, e.g. to revalidate permissions on use to support privilege
410 * bracketing or policy changes. Notice that this hook is used when the
411 * actual read/write operations are performed, whereas the
412 * inode_security_ops hook is called when a file is opened (as well as
413 * many other operations).
414 * Caveat: Although this hook can be used to revalidate permissions for
415 * various system call operations that read or write files, it does not
416 * address the revalidation of permissions for memory-mapped files.
417 * Security modules must handle this separately if they need such
418 * revalidation.
419 * @file contains the file structure being accessed.
420 * @mask contains the requested permissions.
421 * Return 0 if permission is granted.
422 * @file_alloc_security:
423 * Allocate and attach a security structure to the file->f_security field.
424 * The security field is initialized to NULL when the structure is first
425 * created.
426 * @file contains the file structure to secure.
427 * Return 0 if the hook is successful and permission is granted.
428 * @file_free_security:
429 * Deallocate and free any security structures stored in file->f_security.
430 * @file contains the file structure being modified.
431 * @file_ioctl:
432 * @file contains the file structure.
433 * @cmd contains the operation to perform.
434 * @arg contains the operational arguments.
435 * Check permission for an ioctl operation on @file. Note that @arg can
436 * sometimes represents a user space pointer; in other cases, it may be a
437 * simple integer value. When @arg represents a user space pointer, it
438 * should never be used by the security module.
439 * Return 0 if permission is granted.
440 * @file_mmap :
441 * Check permissions for a mmap operation. The @file may be NULL, e.g.
442 * if mapping anonymous memory.
443 * @file contains the file structure for file to map (may be NULL).
444 * @reqprot contains the protection requested by the application.
445 * @prot contains the protection that will be applied by the kernel.
446 * @flags contains the operational flags.
447 * Return 0 if permission is granted.
448 * @file_mprotect:
449 * Check permissions before changing memory access permissions.
450 * @vma contains the memory region to modify.
451 * @reqprot contains the protection requested by the application.
452 * @prot contains the protection that will be applied by the kernel.
453 * Return 0 if permission is granted.
454 * @file_lock:
455 * Check permission before performing file locking operations.
456 * Note: this hook mediates both flock and fcntl style locks.
457 * @file contains the file structure.
458 * @cmd contains the posix-translated lock operation to perform
459 * (e.g. F_RDLCK, F_WRLCK).
460 * Return 0 if permission is granted.
461 * @file_fcntl:
462 * Check permission before allowing the file operation specified by @cmd
463 * from being performed on the file @file. Note that @arg can sometimes
464 * represents a user space pointer; in other cases, it may be a simple
465 * integer value. When @arg represents a user space pointer, it should
466 * never be used by the security module.
467 * @file contains the file structure.
468 * @cmd contains the operation to be performed.
469 * @arg contains the operational arguments.
470 * Return 0 if permission is granted.
471 * @file_set_fowner:
472 * Save owner security information (typically from current->security) in
473 * file->f_security for later use by the send_sigiotask hook.
474 * @file contains the file structure to update.
475 * Return 0 on success.
476 * @file_send_sigiotask:
477 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
478 * process @tsk. Note that this hook is sometimes called from interrupt.
479 * Note that the fown_struct, @fown, is never outside the context of a
480 * struct file, so the file structure (and associated security information)
481 * can always be obtained:
482 * (struct file *)((long)fown - offsetof(struct file,f_owner));
483 * @tsk contains the structure of task receiving signal.
484 * @fown contains the file owner information.
485 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
486 * Return 0 if permission is granted.
487 * @file_receive:
488 * This hook allows security modules to control the ability of a process
489 * to receive an open file descriptor via socket IPC.
490 * @file contains the file structure being received.
491 * Return 0 if permission is granted.
493 * Security hooks for task operations.
495 * @task_create:
496 * Check permission before creating a child process. See the clone(2)
497 * manual page for definitions of the @clone_flags.
498 * @clone_flags contains the flags indicating what should be shared.
499 * Return 0 if permission is granted.
500 * @task_alloc_security:
501 * @p contains the task_struct for child process.
502 * Allocate and attach a security structure to the p->security field. The
503 * security field is initialized to NULL when the task structure is
504 * allocated.
505 * Return 0 if operation was successful.
506 * @task_free_security:
507 * @p contains the task_struct for process.
508 * Deallocate and clear the p->security field.
509 * @task_setuid:
510 * Check permission before setting one or more of the user identity
511 * attributes of the current process. The @flags parameter indicates
512 * which of the set*uid system calls invoked this hook and how to
513 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
514 * definitions at the beginning of this file for the @flags values and
515 * their meanings.
516 * @id0 contains a uid.
517 * @id1 contains a uid.
518 * @id2 contains a uid.
519 * @flags contains one of the LSM_SETID_* values.
520 * Return 0 if permission is granted.
521 * @task_post_setuid:
522 * Update the module's state after setting one or more of the user
523 * identity attributes of the current process. The @flags parameter
524 * indicates which of the set*uid system calls invoked this hook. If
525 * @flags is LSM_SETID_FS, then @old_ruid is the old fs uid and the other
526 * parameters are not used.
527 * @old_ruid contains the old real uid (or fs uid if LSM_SETID_FS).
528 * @old_euid contains the old effective uid (or -1 if LSM_SETID_FS).
529 * @old_suid contains the old saved uid (or -1 if LSM_SETID_FS).
530 * @flags contains one of the LSM_SETID_* values.
531 * Return 0 on success.
532 * @task_setgid:
533 * Check permission before setting one or more of the group identity
534 * attributes of the current process. The @flags parameter indicates
535 * which of the set*gid system calls invoked this hook and how to
536 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
537 * definitions at the beginning of this file for the @flags values and
538 * their meanings.
539 * @id0 contains a gid.
540 * @id1 contains a gid.
541 * @id2 contains a gid.
542 * @flags contains one of the LSM_SETID_* values.
543 * Return 0 if permission is granted.
544 * @task_setpgid:
545 * Check permission before setting the process group identifier of the
546 * process @p to @pgid.
547 * @p contains the task_struct for process being modified.
548 * @pgid contains the new pgid.
549 * Return 0 if permission is granted.
550 * @task_getpgid:
551 * Check permission before getting the process group identifier of the
552 * process @p.
553 * @p contains the task_struct for the process.
554 * Return 0 if permission is granted.
555 * @task_getsid:
556 * Check permission before getting the session identifier of the process
557 * @p.
558 * @p contains the task_struct for the process.
559 * Return 0 if permission is granted.
560 * @task_setgroups:
561 * Check permission before setting the supplementary group set of the
562 * current process.
563 * @group_info contains the new group information.
564 * Return 0 if permission is granted.
565 * @task_setnice:
566 * Check permission before setting the nice value of @p to @nice.
567 * @p contains the task_struct of process.
568 * @nice contains the new nice value.
569 * Return 0 if permission is granted.
570 * @task_setrlimit:
571 * Check permission before setting the resource limits of the current
572 * process for @resource to @new_rlim. The old resource limit values can
573 * be examined by dereferencing (current->signal->rlim + resource).
574 * @resource contains the resource whose limit is being set.
575 * @new_rlim contains the new limits for @resource.
576 * Return 0 if permission is granted.
577 * @task_setscheduler:
578 * Check permission before setting scheduling policy and/or parameters of
579 * process @p based on @policy and @lp.
580 * @p contains the task_struct for process.
581 * @policy contains the scheduling policy.
582 * @lp contains the scheduling parameters.
583 * Return 0 if permission is granted.
584 * @task_getscheduler:
585 * Check permission before obtaining scheduling information for process
586 * @p.
587 * @p contains the task_struct for process.
588 * Return 0 if permission is granted.
589 * @task_kill:
590 * Check permission before sending signal @sig to @p. @info can be NULL,
591 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
592 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
593 * from the kernel and should typically be permitted.
594 * SIGIO signals are handled separately by the send_sigiotask hook in
595 * file_security_ops.
596 * @p contains the task_struct for process.
597 * @info contains the signal information.
598 * @sig contains the signal value.
599 * Return 0 if permission is granted.
600 * @task_wait:
601 * Check permission before allowing a process to reap a child process @p
602 * and collect its status information.
603 * @p contains the task_struct for process.
604 * Return 0 if permission is granted.
605 * @task_prctl:
606 * Check permission before performing a process control operation on the
607 * current process.
608 * @option contains the operation.
609 * @arg2 contains a argument.
610 * @arg3 contains a argument.
611 * @arg4 contains a argument.
612 * @arg5 contains a argument.
613 * Return 0 if permission is granted.
614 * @task_reparent_to_init:
615 * Set the security attributes in @p->security for a kernel thread that
616 * is being reparented to the init task.
617 * @p contains the task_struct for the kernel thread.
618 * @task_to_inode:
619 * Set the security attributes for an inode based on an associated task's
620 * security attributes, e.g. for /proc/pid inodes.
621 * @p contains the task_struct for the task.
622 * @inode contains the inode structure for the inode.
624 * Security hooks for Netlink messaging.
626 * @netlink_send:
627 * Save security information for a netlink message so that permission
628 * checking can be performed when the message is processed. The security
629 * information can be saved using the eff_cap field of the
630 * netlink_skb_parms structure. Also may be used to provide fine
631 * grained control over message transmission.
632 * @sk associated sock of task sending the message.,
633 * @skb contains the sk_buff structure for the netlink message.
634 * Return 0 if the information was successfully saved and message
635 * is allowed to be transmitted.
636 * @netlink_recv:
637 * Check permission before processing the received netlink message in
638 * @skb.
639 * @skb contains the sk_buff structure for the netlink message.
640 * Return 0 if permission is granted.
642 * Security hooks for Unix domain networking.
644 * @unix_stream_connect:
645 * Check permissions before establishing a Unix domain stream connection
646 * between @sock and @other.
647 * @sock contains the socket structure.
648 * @other contains the peer socket structure.
649 * Return 0 if permission is granted.
650 * @unix_may_send:
651 * Check permissions before connecting or sending datagrams from @sock to
652 * @other.
653 * @sock contains the socket structure.
654 * @sock contains the peer socket structure.
655 * Return 0 if permission is granted.
657 * The @unix_stream_connect and @unix_may_send hooks were necessary because
658 * Linux provides an alternative to the conventional file name space for Unix
659 * domain sockets. Whereas binding and connecting to sockets in the file name
660 * space is mediated by the typical file permissions (and caught by the mknod
661 * and permission hooks in inode_security_ops), binding and connecting to
662 * sockets in the abstract name space is completely unmediated. Sufficient
663 * control of Unix domain sockets in the abstract name space isn't possible
664 * using only the socket layer hooks, since we need to know the actual target
665 * socket, which is not looked up until we are inside the af_unix code.
667 * Security hooks for socket operations.
669 * @socket_create:
670 * Check permissions prior to creating a new socket.
671 * @family contains the requested protocol family.
672 * @type contains the requested communications type.
673 * @protocol contains the requested protocol.
674 * @kern set to 1 if a kernel socket.
675 * Return 0 if permission is granted.
676 * @socket_post_create:
677 * This hook allows a module to update or allocate a per-socket security
678 * structure. Note that the security field was not added directly to the
679 * socket structure, but rather, the socket security information is stored
680 * in the associated inode. Typically, the inode alloc_security hook will
681 * allocate and and attach security information to
682 * sock->inode->i_security. This hook may be used to update the
683 * sock->inode->i_security field with additional information that wasn't
684 * available when the inode was allocated.
685 * @sock contains the newly created socket structure.
686 * @family contains the requested protocol family.
687 * @type contains the requested communications type.
688 * @protocol contains the requested protocol.
689 * @kern set to 1 if a kernel socket.
690 * @socket_bind:
691 * Check permission before socket protocol layer bind operation is
692 * performed and the socket @sock is bound to the address specified in the
693 * @address parameter.
694 * @sock contains the socket structure.
695 * @address contains the address to bind to.
696 * @addrlen contains the length of address.
697 * Return 0 if permission is granted.
698 * @socket_connect:
699 * Check permission before socket protocol layer connect operation
700 * attempts to connect socket @sock to a remote address, @address.
701 * @sock contains the socket structure.
702 * @address contains the address of remote endpoint.
703 * @addrlen contains the length of address.
704 * Return 0 if permission is granted.
705 * @socket_listen:
706 * Check permission before socket protocol layer listen operation.
707 * @sock contains the socket structure.
708 * @backlog contains the maximum length for the pending connection queue.
709 * Return 0 if permission is granted.
710 * @socket_accept:
711 * Check permission before accepting a new connection. Note that the new
712 * socket, @newsock, has been created and some information copied to it,
713 * but the accept operation has not actually been performed.
714 * @sock contains the listening socket structure.
715 * @newsock contains the newly created server socket for connection.
716 * Return 0 if permission is granted.
717 * @socket_post_accept:
718 * This hook allows a security module to copy security
719 * information into the newly created socket's inode.
720 * @sock contains the listening socket structure.
721 * @newsock contains the newly created server socket for connection.
722 * @socket_sendmsg:
723 * Check permission before transmitting a message to another socket.
724 * @sock contains the socket structure.
725 * @msg contains the message to be transmitted.
726 * @size contains the size of message.
727 * Return 0 if permission is granted.
728 * @socket_recvmsg:
729 * Check permission before receiving a message from a socket.
730 * @sock contains the socket structure.
731 * @msg contains the message structure.
732 * @size contains the size of message structure.
733 * @flags contains the operational flags.
734 * Return 0 if permission is granted.
735 * @socket_getsockname:
736 * Check permission before the local address (name) of the socket object
737 * @sock is retrieved.
738 * @sock contains the socket structure.
739 * Return 0 if permission is granted.
740 * @socket_getpeername:
741 * Check permission before the remote address (name) of a socket object
742 * @sock is retrieved.
743 * @sock contains the socket structure.
744 * Return 0 if permission is granted.
745 * @socket_getsockopt:
746 * Check permissions before retrieving the options associated with socket
747 * @sock.
748 * @sock contains the socket structure.
749 * @level contains the protocol level to retrieve option from.
750 * @optname contains the name of option to retrieve.
751 * Return 0 if permission is granted.
752 * @socket_setsockopt:
753 * Check permissions before setting the options associated with socket
754 * @sock.
755 * @sock contains the socket structure.
756 * @level contains the protocol level to set options for.
757 * @optname contains the name of the option to set.
758 * Return 0 if permission is granted.
759 * @socket_shutdown:
760 * Checks permission before all or part of a connection on the socket
761 * @sock is shut down.
762 * @sock contains the socket structure.
763 * @how contains the flag indicating how future sends and receives are handled.
764 * Return 0 if permission is granted.
765 * @socket_sock_rcv_skb:
766 * Check permissions on incoming network packets. This hook is distinct
767 * from Netfilter's IP input hooks since it is the first time that the
768 * incoming sk_buff @skb has been associated with a particular socket, @sk.
769 * @sk contains the sock (not socket) associated with the incoming sk_buff.
770 * @skb contains the incoming network data.
771 * @socket_getpeersec:
772 * This hook allows the security module to provide peer socket security
773 * state to userspace via getsockopt SO_GETPEERSEC.
774 * @sock is the local socket.
775 * @optval userspace memory where the security state is to be copied.
776 * @optlen userspace int where the module should copy the actual length
777 * of the security state.
778 * @len as input is the maximum length to copy to userspace provided
779 * by the caller.
780 * Return 0 if all is well, otherwise, typical getsockopt return
781 * values.
782 * @sk_alloc_security:
783 * Allocate and attach a security structure to the sk->sk_security field,
784 * which is used to copy security attributes between local stream sockets.
785 * @sk_free_security:
786 * Deallocate security structure.
788 * Security hooks affecting all System V IPC operations.
790 * @ipc_permission:
791 * Check permissions for access to IPC
792 * @ipcp contains the kernel IPC permission structure
793 * @flag contains the desired (requested) permission set
794 * Return 0 if permission is granted.
796 * Security hooks for individual messages held in System V IPC message queues
797 * @msg_msg_alloc_security:
798 * Allocate and attach a security structure to the msg->security field.
799 * The security field is initialized to NULL when the structure is first
800 * created.
801 * @msg contains the message structure to be modified.
802 * Return 0 if operation was successful and permission is granted.
803 * @msg_msg_free_security:
804 * Deallocate the security structure for this message.
805 * @msg contains the message structure to be modified.
807 * Security hooks for System V IPC Message Queues
809 * @msg_queue_alloc_security:
810 * Allocate and attach a security structure to the
811 * msq->q_perm.security field. The security field is initialized to
812 * NULL when the structure is first created.
813 * @msq contains the message queue structure to be modified.
814 * Return 0 if operation was successful and permission is granted.
815 * @msg_queue_free_security:
816 * Deallocate security structure for this message queue.
817 * @msq contains the message queue structure to be modified.
818 * @msg_queue_associate:
819 * Check permission when a message queue is requested through the
820 * msgget system call. This hook is only called when returning the
821 * message queue identifier for an existing message queue, not when a
822 * new message queue is created.
823 * @msq contains the message queue to act upon.
824 * @msqflg contains the operation control flags.
825 * Return 0 if permission is granted.
826 * @msg_queue_msgctl:
827 * Check permission when a message control operation specified by @cmd
828 * is to be performed on the message queue @msq.
829 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
830 * @msq contains the message queue to act upon. May be NULL.
831 * @cmd contains the operation to be performed.
832 * Return 0 if permission is granted.
833 * @msg_queue_msgsnd:
834 * Check permission before a message, @msg, is enqueued on the message
835 * queue, @msq.
836 * @msq contains the message queue to send message to.
837 * @msg contains the message to be enqueued.
838 * @msqflg contains operational flags.
839 * Return 0 if permission is granted.
840 * @msg_queue_msgrcv:
841 * Check permission before a message, @msg, is removed from the message
842 * queue, @msq. The @target task structure contains a pointer to the
843 * process that will be receiving the message (not equal to the current
844 * process when inline receives are being performed).
845 * @msq contains the message queue to retrieve message from.
846 * @msg contains the message destination.
847 * @target contains the task structure for recipient process.
848 * @type contains the type of message requested.
849 * @mode contains the operational flags.
850 * Return 0 if permission is granted.
852 * Security hooks for System V Shared Memory Segments
854 * @shm_alloc_security:
855 * Allocate and attach a security structure to the shp->shm_perm.security
856 * field. The security field is initialized to NULL when the structure is
857 * first created.
858 * @shp contains the shared memory structure to be modified.
859 * Return 0 if operation was successful and permission is granted.
860 * @shm_free_security:
861 * Deallocate the security struct for this memory segment.
862 * @shp contains the shared memory structure to be modified.
863 * @shm_associate:
864 * Check permission when a shared memory region is requested through the
865 * shmget system call. This hook is only called when returning the shared
866 * memory region identifier for an existing region, not when a new shared
867 * memory region is created.
868 * @shp contains the shared memory structure to be modified.
869 * @shmflg contains the operation control flags.
870 * Return 0 if permission is granted.
871 * @shm_shmctl:
872 * Check permission when a shared memory control operation specified by
873 * @cmd is to be performed on the shared memory region @shp.
874 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
875 * @shp contains shared memory structure to be modified.
876 * @cmd contains the operation to be performed.
877 * Return 0 if permission is granted.
878 * @shm_shmat:
879 * Check permissions prior to allowing the shmat system call to attach the
880 * shared memory segment @shp to the data segment of the calling process.
881 * The attaching address is specified by @shmaddr.
882 * @shp contains the shared memory structure to be modified.
883 * @shmaddr contains the address to attach memory region to.
884 * @shmflg contains the operational flags.
885 * Return 0 if permission is granted.
887 * Security hooks for System V Semaphores
889 * @sem_alloc_security:
890 * Allocate and attach a security structure to the sma->sem_perm.security
891 * field. The security field is initialized to NULL when the structure is
892 * first created.
893 * @sma contains the semaphore structure
894 * Return 0 if operation was successful and permission is granted.
895 * @sem_free_security:
896 * deallocate security struct for this semaphore
897 * @sma contains the semaphore structure.
898 * @sem_associate:
899 * Check permission when a semaphore is requested through the semget
900 * system call. This hook is only called when returning the semaphore
901 * identifier for an existing semaphore, not when a new one must be
902 * created.
903 * @sma contains the semaphore structure.
904 * @semflg contains the operation control flags.
905 * Return 0 if permission is granted.
906 * @sem_semctl:
907 * Check permission when a semaphore operation specified by @cmd is to be
908 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
909 * IPC_INFO or SEM_INFO.
910 * @sma contains the semaphore structure. May be NULL.
911 * @cmd contains the operation to be performed.
912 * Return 0 if permission is granted.
913 * @sem_semop
914 * Check permissions before performing operations on members of the
915 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
916 * may be modified.
917 * @sma contains the semaphore structure.
918 * @sops contains the operations to perform.
919 * @nsops contains the number of operations to perform.
920 * @alter contains the flag indicating whether changes are to be made.
921 * Return 0 if permission is granted.
923 * @ptrace:
924 * Check permission before allowing the @parent process to trace the
925 * @child process.
926 * Security modules may also want to perform a process tracing check
927 * during an execve in the set_security or apply_creds hooks of
928 * binprm_security_ops if the process is being traced and its security
929 * attributes would be changed by the execve.
930 * @parent contains the task_struct structure for parent process.
931 * @child contains the task_struct structure for child process.
932 * Return 0 if permission is granted.
933 * @capget:
934 * Get the @effective, @inheritable, and @permitted capability sets for
935 * the @target process. The hook may also perform permission checking to
936 * determine if the current process is allowed to see the capability sets
937 * of the @target process.
938 * @target contains the task_struct structure for target process.
939 * @effective contains the effective capability set.
940 * @inheritable contains the inheritable capability set.
941 * @permitted contains the permitted capability set.
942 * Return 0 if the capability sets were successfully obtained.
943 * @capset_check:
944 * Check permission before setting the @effective, @inheritable, and
945 * @permitted capability sets for the @target process.
946 * Caveat: @target is also set to current if a set of processes is
947 * specified (i.e. all processes other than current and init or a
948 * particular process group). Hence, the capset_set hook may need to
949 * revalidate permission to the actual target process.
950 * @target contains the task_struct structure for target process.
951 * @effective contains the effective capability set.
952 * @inheritable contains the inheritable capability set.
953 * @permitted contains the permitted capability set.
954 * Return 0 if permission is granted.
955 * @capset_set:
956 * Set the @effective, @inheritable, and @permitted capability sets for
957 * the @target process. Since capset_check cannot always check permission
958 * to the real @target process, this hook may also perform permission
959 * checking to determine if the current process is allowed to set the
960 * capability sets of the @target process. However, this hook has no way
961 * of returning an error due to the structure of the sys_capset code.
962 * @target contains the task_struct structure for target process.
963 * @effective contains the effective capability set.
964 * @inheritable contains the inheritable capability set.
965 * @permitted contains the permitted capability set.
966 * @acct:
967 * Check permission before enabling or disabling process accounting. If
968 * accounting is being enabled, then @file refers to the open file used to
969 * store accounting records. If accounting is being disabled, then @file
970 * is NULL.
971 * @file contains the file structure for the accounting file (may be NULL).
972 * Return 0 if permission is granted.
973 * @sysctl:
974 * Check permission before accessing the @table sysctl variable in the
975 * manner specified by @op.
976 * @table contains the ctl_table structure for the sysctl variable.
977 * @op contains the operation (001 = search, 002 = write, 004 = read).
978 * Return 0 if permission is granted.
979 * @capable:
980 * Check whether the @tsk process has the @cap capability.
981 * @tsk contains the task_struct for the process.
982 * @cap contains the capability <include/linux/capability.h>.
983 * Return 0 if the capability is granted for @tsk.
984 * @syslog:
985 * Check permission before accessing the kernel message ring or changing
986 * logging to the console.
987 * See the syslog(2) manual page for an explanation of the @type values.
988 * @type contains the type of action.
989 * Return 0 if permission is granted.
990 * @settime:
991 * Check permission to change the system time.
992 * struct timespec and timezone are defined in include/linux/time.h
993 * @ts contains new time
994 * @tz contains new timezone
995 * Return 0 if permission is granted.
996 * @vm_enough_memory:
997 * Check permissions for allocating a new virtual mapping.
998 * @pages contains the number of pages.
999 * Return 0 if permission is granted.
1001 * @register_security:
1002 * allow module stacking.
1003 * @name contains the name of the security module being stacked.
1004 * @ops contains a pointer to the struct security_operations of the module to stack.
1005 * @unregister_security:
1006 * remove a stacked module.
1007 * @name contains the name of the security module being unstacked.
1008 * @ops contains a pointer to the struct security_operations of the module to unstack.
1010 * This is the main security structure.
1012 struct security_operations {
1013 int (*ptrace) (struct task_struct * parent, struct task_struct * child);
1014 int (*capget) (struct task_struct * target,
1015 kernel_cap_t * effective,
1016 kernel_cap_t * inheritable, kernel_cap_t * permitted);
1017 int (*capset_check) (struct task_struct * target,
1018 kernel_cap_t * effective,
1019 kernel_cap_t * inheritable,
1020 kernel_cap_t * permitted);
1021 void (*capset_set) (struct task_struct * target,
1022 kernel_cap_t * effective,
1023 kernel_cap_t * inheritable,
1024 kernel_cap_t * permitted);
1025 int (*acct) (struct file * file);
1026 int (*sysctl) (struct ctl_table * table, int op);
1027 int (*capable) (struct task_struct * tsk, int cap);
1028 int (*quotactl) (int cmds, int type, int id, struct super_block * sb);
1029 int (*quota_on) (struct dentry * dentry);
1030 int (*syslog) (int type);
1031 int (*settime) (struct timespec *ts, struct timezone *tz);
1032 int (*vm_enough_memory) (long pages);
1034 int (*bprm_alloc_security) (struct linux_binprm * bprm);
1035 void (*bprm_free_security) (struct linux_binprm * bprm);
1036 void (*bprm_apply_creds) (struct linux_binprm * bprm, int unsafe);
1037 void (*bprm_post_apply_creds) (struct linux_binprm * bprm);
1038 int (*bprm_set_security) (struct linux_binprm * bprm);
1039 int (*bprm_check_security) (struct linux_binprm * bprm);
1040 int (*bprm_secureexec) (struct linux_binprm * bprm);
1042 int (*sb_alloc_security) (struct super_block * sb);
1043 void (*sb_free_security) (struct super_block * sb);
1044 int (*sb_copy_data)(struct file_system_type *type,
1045 void *orig, void *copy);
1046 int (*sb_kern_mount) (struct super_block *sb, void *data);
1047 int (*sb_statfs) (struct super_block * sb);
1048 int (*sb_mount) (char *dev_name, struct nameidata * nd,
1049 char *type, unsigned long flags, void *data);
1050 int (*sb_check_sb) (struct vfsmount * mnt, struct nameidata * nd);
1051 int (*sb_umount) (struct vfsmount * mnt, int flags);
1052 void (*sb_umount_close) (struct vfsmount * mnt);
1053 void (*sb_umount_busy) (struct vfsmount * mnt);
1054 void (*sb_post_remount) (struct vfsmount * mnt,
1055 unsigned long flags, void *data);
1056 void (*sb_post_mountroot) (void);
1057 void (*sb_post_addmount) (struct vfsmount * mnt,
1058 struct nameidata * mountpoint_nd);
1059 int (*sb_pivotroot) (struct nameidata * old_nd,
1060 struct nameidata * new_nd);
1061 void (*sb_post_pivotroot) (struct nameidata * old_nd,
1062 struct nameidata * new_nd);
1064 int (*inode_alloc_security) (struct inode *inode);
1065 void (*inode_free_security) (struct inode *inode);
1066 int (*inode_init_security) (struct inode *inode, struct inode *dir,
1067 char **name, void **value, size_t *len);
1068 int (*inode_create) (struct inode *dir,
1069 struct dentry *dentry, int mode);
1070 int (*inode_link) (struct dentry *old_dentry,
1071 struct inode *dir, struct dentry *new_dentry);
1072 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1073 int (*inode_symlink) (struct inode *dir,
1074 struct dentry *dentry, const char *old_name);
1075 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
1076 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1077 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
1078 int mode, dev_t dev);
1079 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
1080 struct inode *new_dir, struct dentry *new_dentry);
1081 int (*inode_readlink) (struct dentry *dentry);
1082 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
1083 int (*inode_permission) (struct inode *inode, int mask, struct nameidata *nd);
1084 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1085 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
1086 void (*inode_delete) (struct inode *inode);
1087 int (*inode_setxattr) (struct dentry *dentry, char *name, void *value,
1088 size_t size, int flags);
1089 void (*inode_post_setxattr) (struct dentry *dentry, char *name, void *value,
1090 size_t size, int flags);
1091 int (*inode_getxattr) (struct dentry *dentry, char *name);
1092 int (*inode_listxattr) (struct dentry *dentry);
1093 int (*inode_removexattr) (struct dentry *dentry, char *name);
1094 int (*inode_getsecurity)(struct inode *inode, const char *name, void *buffer, size_t size);
1095 int (*inode_setsecurity)(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1096 int (*inode_listsecurity)(struct inode *inode, char *buffer, size_t buffer_size);
1098 int (*file_permission) (struct file * file, int mask);
1099 int (*file_alloc_security) (struct file * file);
1100 void (*file_free_security) (struct file * file);
1101 int (*file_ioctl) (struct file * file, unsigned int cmd,
1102 unsigned long arg);
1103 int (*file_mmap) (struct file * file,
1104 unsigned long reqprot,
1105 unsigned long prot, unsigned long flags);
1106 int (*file_mprotect) (struct vm_area_struct * vma,
1107 unsigned long reqprot,
1108 unsigned long prot);
1109 int (*file_lock) (struct file * file, unsigned int cmd);
1110 int (*file_fcntl) (struct file * file, unsigned int cmd,
1111 unsigned long arg);
1112 int (*file_set_fowner) (struct file * file);
1113 int (*file_send_sigiotask) (struct task_struct * tsk,
1114 struct fown_struct * fown, int sig);
1115 int (*file_receive) (struct file * file);
1117 int (*task_create) (unsigned long clone_flags);
1118 int (*task_alloc_security) (struct task_struct * p);
1119 void (*task_free_security) (struct task_struct * p);
1120 int (*task_setuid) (uid_t id0, uid_t id1, uid_t id2, int flags);
1121 int (*task_post_setuid) (uid_t old_ruid /* or fsuid */ ,
1122 uid_t old_euid, uid_t old_suid, int flags);
1123 int (*task_setgid) (gid_t id0, gid_t id1, gid_t id2, int flags);
1124 int (*task_setpgid) (struct task_struct * p, pid_t pgid);
1125 int (*task_getpgid) (struct task_struct * p);
1126 int (*task_getsid) (struct task_struct * p);
1127 int (*task_setgroups) (struct group_info *group_info);
1128 int (*task_setnice) (struct task_struct * p, int nice);
1129 int (*task_setrlimit) (unsigned int resource, struct rlimit * new_rlim);
1130 int (*task_setscheduler) (struct task_struct * p, int policy,
1131 struct sched_param * lp);
1132 int (*task_getscheduler) (struct task_struct * p);
1133 int (*task_kill) (struct task_struct * p,
1134 struct siginfo * info, int sig);
1135 int (*task_wait) (struct task_struct * p);
1136 int (*task_prctl) (int option, unsigned long arg2,
1137 unsigned long arg3, unsigned long arg4,
1138 unsigned long arg5);
1139 void (*task_reparent_to_init) (struct task_struct * p);
1140 void (*task_to_inode)(struct task_struct *p, struct inode *inode);
1142 int (*ipc_permission) (struct kern_ipc_perm * ipcp, short flag);
1144 int (*msg_msg_alloc_security) (struct msg_msg * msg);
1145 void (*msg_msg_free_security) (struct msg_msg * msg);
1147 int (*msg_queue_alloc_security) (struct msg_queue * msq);
1148 void (*msg_queue_free_security) (struct msg_queue * msq);
1149 int (*msg_queue_associate) (struct msg_queue * msq, int msqflg);
1150 int (*msg_queue_msgctl) (struct msg_queue * msq, int cmd);
1151 int (*msg_queue_msgsnd) (struct msg_queue * msq,
1152 struct msg_msg * msg, int msqflg);
1153 int (*msg_queue_msgrcv) (struct msg_queue * msq,
1154 struct msg_msg * msg,
1155 struct task_struct * target,
1156 long type, int mode);
1158 int (*shm_alloc_security) (struct shmid_kernel * shp);
1159 void (*shm_free_security) (struct shmid_kernel * shp);
1160 int (*shm_associate) (struct shmid_kernel * shp, int shmflg);
1161 int (*shm_shmctl) (struct shmid_kernel * shp, int cmd);
1162 int (*shm_shmat) (struct shmid_kernel * shp,
1163 char __user *shmaddr, int shmflg);
1165 int (*sem_alloc_security) (struct sem_array * sma);
1166 void (*sem_free_security) (struct sem_array * sma);
1167 int (*sem_associate) (struct sem_array * sma, int semflg);
1168 int (*sem_semctl) (struct sem_array * sma, int cmd);
1169 int (*sem_semop) (struct sem_array * sma,
1170 struct sembuf * sops, unsigned nsops, int alter);
1172 int (*netlink_send) (struct sock * sk, struct sk_buff * skb);
1173 int (*netlink_recv) (struct sk_buff * skb);
1175 /* allow module stacking */
1176 int (*register_security) (const char *name,
1177 struct security_operations *ops);
1178 int (*unregister_security) (const char *name,
1179 struct security_operations *ops);
1181 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1183 int (*getprocattr)(struct task_struct *p, char *name, void *value, size_t size);
1184 int (*setprocattr)(struct task_struct *p, char *name, void *value, size_t size);
1186 #ifdef CONFIG_SECURITY_NETWORK
1187 int (*unix_stream_connect) (struct socket * sock,
1188 struct socket * other, struct sock * newsk);
1189 int (*unix_may_send) (struct socket * sock, struct socket * other);
1191 int (*socket_create) (int family, int type, int protocol, int kern);
1192 void (*socket_post_create) (struct socket * sock, int family,
1193 int type, int protocol, int kern);
1194 int (*socket_bind) (struct socket * sock,
1195 struct sockaddr * address, int addrlen);
1196 int (*socket_connect) (struct socket * sock,
1197 struct sockaddr * address, int addrlen);
1198 int (*socket_listen) (struct socket * sock, int backlog);
1199 int (*socket_accept) (struct socket * sock, struct socket * newsock);
1200 void (*socket_post_accept) (struct socket * sock,
1201 struct socket * newsock);
1202 int (*socket_sendmsg) (struct socket * sock,
1203 struct msghdr * msg, int size);
1204 int (*socket_recvmsg) (struct socket * sock,
1205 struct msghdr * msg, int size, int flags);
1206 int (*socket_getsockname) (struct socket * sock);
1207 int (*socket_getpeername) (struct socket * sock);
1208 int (*socket_getsockopt) (struct socket * sock, int level, int optname);
1209 int (*socket_setsockopt) (struct socket * sock, int level, int optname);
1210 int (*socket_shutdown) (struct socket * sock, int how);
1211 int (*socket_sock_rcv_skb) (struct sock * sk, struct sk_buff * skb);
1212 int (*socket_getpeersec) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
1213 int (*sk_alloc_security) (struct sock *sk, int family, int priority);
1214 void (*sk_free_security) (struct sock *sk);
1215 #endif /* CONFIG_SECURITY_NETWORK */
1218 /* global variables */
1219 extern struct security_operations *security_ops;
1221 /* inline stuff */
1222 static inline int security_ptrace (struct task_struct * parent, struct task_struct * child)
1224 return security_ops->ptrace (parent, child);
1227 static inline int security_capget (struct task_struct *target,
1228 kernel_cap_t *effective,
1229 kernel_cap_t *inheritable,
1230 kernel_cap_t *permitted)
1232 return security_ops->capget (target, effective, inheritable, permitted);
1235 static inline int security_capset_check (struct task_struct *target,
1236 kernel_cap_t *effective,
1237 kernel_cap_t *inheritable,
1238 kernel_cap_t *permitted)
1240 return security_ops->capset_check (target, effective, inheritable, permitted);
1243 static inline void security_capset_set (struct task_struct *target,
1244 kernel_cap_t *effective,
1245 kernel_cap_t *inheritable,
1246 kernel_cap_t *permitted)
1248 security_ops->capset_set (target, effective, inheritable, permitted);
1251 static inline int security_acct (struct file *file)
1253 return security_ops->acct (file);
1256 static inline int security_sysctl(struct ctl_table *table, int op)
1258 return security_ops->sysctl(table, op);
1261 static inline int security_quotactl (int cmds, int type, int id,
1262 struct super_block *sb)
1264 return security_ops->quotactl (cmds, type, id, sb);
1267 static inline int security_quota_on (struct dentry * dentry)
1269 return security_ops->quota_on (dentry);
1272 static inline int security_syslog(int type)
1274 return security_ops->syslog(type);
1277 static inline int security_settime(struct timespec *ts, struct timezone *tz)
1279 return security_ops->settime(ts, tz);
1283 static inline int security_vm_enough_memory(long pages)
1285 return security_ops->vm_enough_memory(pages);
1288 static inline int security_bprm_alloc (struct linux_binprm *bprm)
1290 return security_ops->bprm_alloc_security (bprm);
1292 static inline void security_bprm_free (struct linux_binprm *bprm)
1294 security_ops->bprm_free_security (bprm);
1296 static inline void security_bprm_apply_creds (struct linux_binprm *bprm, int unsafe)
1298 security_ops->bprm_apply_creds (bprm, unsafe);
1300 static inline void security_bprm_post_apply_creds (struct linux_binprm *bprm)
1302 security_ops->bprm_post_apply_creds (bprm);
1304 static inline int security_bprm_set (struct linux_binprm *bprm)
1306 return security_ops->bprm_set_security (bprm);
1309 static inline int security_bprm_check (struct linux_binprm *bprm)
1311 return security_ops->bprm_check_security (bprm);
1314 static inline int security_bprm_secureexec (struct linux_binprm *bprm)
1316 return security_ops->bprm_secureexec (bprm);
1319 static inline int security_sb_alloc (struct super_block *sb)
1321 return security_ops->sb_alloc_security (sb);
1324 static inline void security_sb_free (struct super_block *sb)
1326 security_ops->sb_free_security (sb);
1329 static inline int security_sb_copy_data (struct file_system_type *type,
1330 void *orig, void *copy)
1332 return security_ops->sb_copy_data (type, orig, copy);
1335 static inline int security_sb_kern_mount (struct super_block *sb, void *data)
1337 return security_ops->sb_kern_mount (sb, data);
1340 static inline int security_sb_statfs (struct super_block *sb)
1342 return security_ops->sb_statfs (sb);
1345 static inline int security_sb_mount (char *dev_name, struct nameidata *nd,
1346 char *type, unsigned long flags,
1347 void *data)
1349 return security_ops->sb_mount (dev_name, nd, type, flags, data);
1352 static inline int security_sb_check_sb (struct vfsmount *mnt,
1353 struct nameidata *nd)
1355 return security_ops->sb_check_sb (mnt, nd);
1358 static inline int security_sb_umount (struct vfsmount *mnt, int flags)
1360 return security_ops->sb_umount (mnt, flags);
1363 static inline void security_sb_umount_close (struct vfsmount *mnt)
1365 security_ops->sb_umount_close (mnt);
1368 static inline void security_sb_umount_busy (struct vfsmount *mnt)
1370 security_ops->sb_umount_busy (mnt);
1373 static inline void security_sb_post_remount (struct vfsmount *mnt,
1374 unsigned long flags, void *data)
1376 security_ops->sb_post_remount (mnt, flags, data);
1379 static inline void security_sb_post_mountroot (void)
1381 security_ops->sb_post_mountroot ();
1384 static inline void security_sb_post_addmount (struct vfsmount *mnt,
1385 struct nameidata *mountpoint_nd)
1387 security_ops->sb_post_addmount (mnt, mountpoint_nd);
1390 static inline int security_sb_pivotroot (struct nameidata *old_nd,
1391 struct nameidata *new_nd)
1393 return security_ops->sb_pivotroot (old_nd, new_nd);
1396 static inline void security_sb_post_pivotroot (struct nameidata *old_nd,
1397 struct nameidata *new_nd)
1399 security_ops->sb_post_pivotroot (old_nd, new_nd);
1402 static inline int security_inode_alloc (struct inode *inode)
1404 if (unlikely (IS_PRIVATE (inode)))
1405 return 0;
1406 return security_ops->inode_alloc_security (inode);
1409 static inline void security_inode_free (struct inode *inode)
1411 if (unlikely (IS_PRIVATE (inode)))
1412 return;
1413 security_ops->inode_free_security (inode);
1416 static inline int security_inode_init_security (struct inode *inode,
1417 struct inode *dir,
1418 char **name,
1419 void **value,
1420 size_t *len)
1422 if (unlikely (IS_PRIVATE (inode)))
1423 return -EOPNOTSUPP;
1424 return security_ops->inode_init_security (inode, dir, name, value, len);
1427 static inline int security_inode_create (struct inode *dir,
1428 struct dentry *dentry,
1429 int mode)
1431 if (unlikely (IS_PRIVATE (dir)))
1432 return 0;
1433 return security_ops->inode_create (dir, dentry, mode);
1436 static inline int security_inode_link (struct dentry *old_dentry,
1437 struct inode *dir,
1438 struct dentry *new_dentry)
1440 if (unlikely (IS_PRIVATE (old_dentry->d_inode)))
1441 return 0;
1442 return security_ops->inode_link (old_dentry, dir, new_dentry);
1445 static inline int security_inode_unlink (struct inode *dir,
1446 struct dentry *dentry)
1448 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1449 return 0;
1450 return security_ops->inode_unlink (dir, dentry);
1453 static inline int security_inode_symlink (struct inode *dir,
1454 struct dentry *dentry,
1455 const char *old_name)
1457 if (unlikely (IS_PRIVATE (dir)))
1458 return 0;
1459 return security_ops->inode_symlink (dir, dentry, old_name);
1462 static inline int security_inode_mkdir (struct inode *dir,
1463 struct dentry *dentry,
1464 int mode)
1466 if (unlikely (IS_PRIVATE (dir)))
1467 return 0;
1468 return security_ops->inode_mkdir (dir, dentry, mode);
1471 static inline int security_inode_rmdir (struct inode *dir,
1472 struct dentry *dentry)
1474 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1475 return 0;
1476 return security_ops->inode_rmdir (dir, dentry);
1479 static inline int security_inode_mknod (struct inode *dir,
1480 struct dentry *dentry,
1481 int mode, dev_t dev)
1483 if (unlikely (IS_PRIVATE (dir)))
1484 return 0;
1485 return security_ops->inode_mknod (dir, dentry, mode, dev);
1488 static inline int security_inode_rename (struct inode *old_dir,
1489 struct dentry *old_dentry,
1490 struct inode *new_dir,
1491 struct dentry *new_dentry)
1493 if (unlikely (IS_PRIVATE (old_dentry->d_inode) ||
1494 (new_dentry->d_inode && IS_PRIVATE (new_dentry->d_inode))))
1495 return 0;
1496 return security_ops->inode_rename (old_dir, old_dentry,
1497 new_dir, new_dentry);
1500 static inline int security_inode_readlink (struct dentry *dentry)
1502 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1503 return 0;
1504 return security_ops->inode_readlink (dentry);
1507 static inline int security_inode_follow_link (struct dentry *dentry,
1508 struct nameidata *nd)
1510 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1511 return 0;
1512 return security_ops->inode_follow_link (dentry, nd);
1515 static inline int security_inode_permission (struct inode *inode, int mask,
1516 struct nameidata *nd)
1518 if (unlikely (IS_PRIVATE (inode)))
1519 return 0;
1520 return security_ops->inode_permission (inode, mask, nd);
1523 static inline int security_inode_setattr (struct dentry *dentry,
1524 struct iattr *attr)
1526 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1527 return 0;
1528 return security_ops->inode_setattr (dentry, attr);
1531 static inline int security_inode_getattr (struct vfsmount *mnt,
1532 struct dentry *dentry)
1534 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1535 return 0;
1536 return security_ops->inode_getattr (mnt, dentry);
1539 static inline void security_inode_delete (struct inode *inode)
1541 if (unlikely (IS_PRIVATE (inode)))
1542 return;
1543 security_ops->inode_delete (inode);
1546 static inline int security_inode_setxattr (struct dentry *dentry, char *name,
1547 void *value, size_t size, int flags)
1549 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1550 return 0;
1551 return security_ops->inode_setxattr (dentry, name, value, size, flags);
1554 static inline void security_inode_post_setxattr (struct dentry *dentry, char *name,
1555 void *value, size_t size, int flags)
1557 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1558 return;
1559 security_ops->inode_post_setxattr (dentry, name, value, size, flags);
1562 static inline int security_inode_getxattr (struct dentry *dentry, char *name)
1564 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1565 return 0;
1566 return security_ops->inode_getxattr (dentry, name);
1569 static inline int security_inode_listxattr (struct dentry *dentry)
1571 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1572 return 0;
1573 return security_ops->inode_listxattr (dentry);
1576 static inline int security_inode_removexattr (struct dentry *dentry, char *name)
1578 if (unlikely (IS_PRIVATE (dentry->d_inode)))
1579 return 0;
1580 return security_ops->inode_removexattr (dentry, name);
1583 static inline int security_inode_getsecurity(struct inode *inode, const char *name, void *buffer, size_t size)
1585 if (unlikely (IS_PRIVATE (inode)))
1586 return 0;
1587 return security_ops->inode_getsecurity(inode, name, buffer, size);
1590 static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
1592 if (unlikely (IS_PRIVATE (inode)))
1593 return 0;
1594 return security_ops->inode_setsecurity(inode, name, value, size, flags);
1597 static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
1599 if (unlikely (IS_PRIVATE (inode)))
1600 return 0;
1601 return security_ops->inode_listsecurity(inode, buffer, buffer_size);
1604 static inline int security_file_permission (struct file *file, int mask)
1606 return security_ops->file_permission (file, mask);
1609 static inline int security_file_alloc (struct file *file)
1611 return security_ops->file_alloc_security (file);
1614 static inline void security_file_free (struct file *file)
1616 security_ops->file_free_security (file);
1619 static inline int security_file_ioctl (struct file *file, unsigned int cmd,
1620 unsigned long arg)
1622 return security_ops->file_ioctl (file, cmd, arg);
1625 static inline int security_file_mmap (struct file *file, unsigned long reqprot,
1626 unsigned long prot,
1627 unsigned long flags)
1629 return security_ops->file_mmap (file, reqprot, prot, flags);
1632 static inline int security_file_mprotect (struct vm_area_struct *vma,
1633 unsigned long reqprot,
1634 unsigned long prot)
1636 return security_ops->file_mprotect (vma, reqprot, prot);
1639 static inline int security_file_lock (struct file *file, unsigned int cmd)
1641 return security_ops->file_lock (file, cmd);
1644 static inline int security_file_fcntl (struct file *file, unsigned int cmd,
1645 unsigned long arg)
1647 return security_ops->file_fcntl (file, cmd, arg);
1650 static inline int security_file_set_fowner (struct file *file)
1652 return security_ops->file_set_fowner (file);
1655 static inline int security_file_send_sigiotask (struct task_struct *tsk,
1656 struct fown_struct *fown,
1657 int sig)
1659 return security_ops->file_send_sigiotask (tsk, fown, sig);
1662 static inline int security_file_receive (struct file *file)
1664 return security_ops->file_receive (file);
1667 static inline int security_task_create (unsigned long clone_flags)
1669 return security_ops->task_create (clone_flags);
1672 static inline int security_task_alloc (struct task_struct *p)
1674 return security_ops->task_alloc_security (p);
1677 static inline void security_task_free (struct task_struct *p)
1679 security_ops->task_free_security (p);
1682 static inline int security_task_setuid (uid_t id0, uid_t id1, uid_t id2,
1683 int flags)
1685 return security_ops->task_setuid (id0, id1, id2, flags);
1688 static inline int security_task_post_setuid (uid_t old_ruid, uid_t old_euid,
1689 uid_t old_suid, int flags)
1691 return security_ops->task_post_setuid (old_ruid, old_euid, old_suid, flags);
1694 static inline int security_task_setgid (gid_t id0, gid_t id1, gid_t id2,
1695 int flags)
1697 return security_ops->task_setgid (id0, id1, id2, flags);
1700 static inline int security_task_setpgid (struct task_struct *p, pid_t pgid)
1702 return security_ops->task_setpgid (p, pgid);
1705 static inline int security_task_getpgid (struct task_struct *p)
1707 return security_ops->task_getpgid (p);
1710 static inline int security_task_getsid (struct task_struct *p)
1712 return security_ops->task_getsid (p);
1715 static inline int security_task_setgroups (struct group_info *group_info)
1717 return security_ops->task_setgroups (group_info);
1720 static inline int security_task_setnice (struct task_struct *p, int nice)
1722 return security_ops->task_setnice (p, nice);
1725 static inline int security_task_setrlimit (unsigned int resource,
1726 struct rlimit *new_rlim)
1728 return security_ops->task_setrlimit (resource, new_rlim);
1731 static inline int security_task_setscheduler (struct task_struct *p,
1732 int policy,
1733 struct sched_param *lp)
1735 return security_ops->task_setscheduler (p, policy, lp);
1738 static inline int security_task_getscheduler (struct task_struct *p)
1740 return security_ops->task_getscheduler (p);
1743 static inline int security_task_kill (struct task_struct *p,
1744 struct siginfo *info, int sig)
1746 return security_ops->task_kill (p, info, sig);
1749 static inline int security_task_wait (struct task_struct *p)
1751 return security_ops->task_wait (p);
1754 static inline int security_task_prctl (int option, unsigned long arg2,
1755 unsigned long arg3,
1756 unsigned long arg4,
1757 unsigned long arg5)
1759 return security_ops->task_prctl (option, arg2, arg3, arg4, arg5);
1762 static inline void security_task_reparent_to_init (struct task_struct *p)
1764 security_ops->task_reparent_to_init (p);
1767 static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
1769 security_ops->task_to_inode(p, inode);
1772 static inline int security_ipc_permission (struct kern_ipc_perm *ipcp,
1773 short flag)
1775 return security_ops->ipc_permission (ipcp, flag);
1778 static inline int security_msg_msg_alloc (struct msg_msg * msg)
1780 return security_ops->msg_msg_alloc_security (msg);
1783 static inline void security_msg_msg_free (struct msg_msg * msg)
1785 security_ops->msg_msg_free_security(msg);
1788 static inline int security_msg_queue_alloc (struct msg_queue *msq)
1790 return security_ops->msg_queue_alloc_security (msq);
1793 static inline void security_msg_queue_free (struct msg_queue *msq)
1795 security_ops->msg_queue_free_security (msq);
1798 static inline int security_msg_queue_associate (struct msg_queue * msq,
1799 int msqflg)
1801 return security_ops->msg_queue_associate (msq, msqflg);
1804 static inline int security_msg_queue_msgctl (struct msg_queue * msq, int cmd)
1806 return security_ops->msg_queue_msgctl (msq, cmd);
1809 static inline int security_msg_queue_msgsnd (struct msg_queue * msq,
1810 struct msg_msg * msg, int msqflg)
1812 return security_ops->msg_queue_msgsnd (msq, msg, msqflg);
1815 static inline int security_msg_queue_msgrcv (struct msg_queue * msq,
1816 struct msg_msg * msg,
1817 struct task_struct * target,
1818 long type, int mode)
1820 return security_ops->msg_queue_msgrcv (msq, msg, target, type, mode);
1823 static inline int security_shm_alloc (struct shmid_kernel *shp)
1825 return security_ops->shm_alloc_security (shp);
1828 static inline void security_shm_free (struct shmid_kernel *shp)
1830 security_ops->shm_free_security (shp);
1833 static inline int security_shm_associate (struct shmid_kernel * shp,
1834 int shmflg)
1836 return security_ops->shm_associate(shp, shmflg);
1839 static inline int security_shm_shmctl (struct shmid_kernel * shp, int cmd)
1841 return security_ops->shm_shmctl (shp, cmd);
1844 static inline int security_shm_shmat (struct shmid_kernel * shp,
1845 char __user *shmaddr, int shmflg)
1847 return security_ops->shm_shmat(shp, shmaddr, shmflg);
1850 static inline int security_sem_alloc (struct sem_array *sma)
1852 return security_ops->sem_alloc_security (sma);
1855 static inline void security_sem_free (struct sem_array *sma)
1857 security_ops->sem_free_security (sma);
1860 static inline int security_sem_associate (struct sem_array * sma, int semflg)
1862 return security_ops->sem_associate (sma, semflg);
1865 static inline int security_sem_semctl (struct sem_array * sma, int cmd)
1867 return security_ops->sem_semctl(sma, cmd);
1870 static inline int security_sem_semop (struct sem_array * sma,
1871 struct sembuf * sops, unsigned nsops,
1872 int alter)
1874 return security_ops->sem_semop(sma, sops, nsops, alter);
1877 static inline void security_d_instantiate (struct dentry *dentry, struct inode *inode)
1879 if (unlikely (inode && IS_PRIVATE (inode)))
1880 return;
1881 security_ops->d_instantiate (dentry, inode);
1884 static inline int security_getprocattr(struct task_struct *p, char *name, void *value, size_t size)
1886 return security_ops->getprocattr(p, name, value, size);
1889 static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
1891 return security_ops->setprocattr(p, name, value, size);
1894 static inline int security_netlink_send(struct sock *sk, struct sk_buff * skb)
1896 return security_ops->netlink_send(sk, skb);
1899 static inline int security_netlink_recv(struct sk_buff * skb)
1901 return security_ops->netlink_recv(skb);
1904 /* prototypes */
1905 extern int security_init (void);
1906 extern int register_security (struct security_operations *ops);
1907 extern int unregister_security (struct security_operations *ops);
1908 extern int mod_reg_security (const char *name, struct security_operations *ops);
1909 extern int mod_unreg_security (const char *name, struct security_operations *ops);
1912 #else /* CONFIG_SECURITY */
1915 * This is the default capabilities functionality. Most of these functions
1916 * are just stubbed out, but a few must call the proper capable code.
1919 static inline int security_init(void)
1921 return 0;
1924 static inline int security_ptrace (struct task_struct *parent, struct task_struct * child)
1926 return cap_ptrace (parent, child);
1929 static inline int security_capget (struct task_struct *target,
1930 kernel_cap_t *effective,
1931 kernel_cap_t *inheritable,
1932 kernel_cap_t *permitted)
1934 return cap_capget (target, effective, inheritable, permitted);
1937 static inline int security_capset_check (struct task_struct *target,
1938 kernel_cap_t *effective,
1939 kernel_cap_t *inheritable,
1940 kernel_cap_t *permitted)
1942 return cap_capset_check (target, effective, inheritable, permitted);
1945 static inline void security_capset_set (struct task_struct *target,
1946 kernel_cap_t *effective,
1947 kernel_cap_t *inheritable,
1948 kernel_cap_t *permitted)
1950 cap_capset_set (target, effective, inheritable, permitted);
1953 static inline int security_acct (struct file *file)
1955 return 0;
1958 static inline int security_sysctl(struct ctl_table *table, int op)
1960 return 0;
1963 static inline int security_quotactl (int cmds, int type, int id,
1964 struct super_block * sb)
1966 return 0;
1969 static inline int security_quota_on (struct dentry * dentry)
1971 return 0;
1974 static inline int security_syslog(int type)
1976 return cap_syslog(type);
1979 static inline int security_settime(struct timespec *ts, struct timezone *tz)
1981 return cap_settime(ts, tz);
1984 static inline int security_vm_enough_memory(long pages)
1986 return cap_vm_enough_memory(pages);
1989 static inline int security_bprm_alloc (struct linux_binprm *bprm)
1991 return 0;
1994 static inline void security_bprm_free (struct linux_binprm *bprm)
1997 static inline void security_bprm_apply_creds (struct linux_binprm *bprm, int unsafe)
1999 cap_bprm_apply_creds (bprm, unsafe);
2002 static inline void security_bprm_post_apply_creds (struct linux_binprm *bprm)
2004 return;
2007 static inline int security_bprm_set (struct linux_binprm *bprm)
2009 return cap_bprm_set_security (bprm);
2012 static inline int security_bprm_check (struct linux_binprm *bprm)
2014 return 0;
2017 static inline int security_bprm_secureexec (struct linux_binprm *bprm)
2019 return cap_bprm_secureexec(bprm);
2022 static inline int security_sb_alloc (struct super_block *sb)
2024 return 0;
2027 static inline void security_sb_free (struct super_block *sb)
2030 static inline int security_sb_copy_data (struct file_system_type *type,
2031 void *orig, void *copy)
2033 return 0;
2036 static inline int security_sb_kern_mount (struct super_block *sb, void *data)
2038 return 0;
2041 static inline int security_sb_statfs (struct super_block *sb)
2043 return 0;
2046 static inline int security_sb_mount (char *dev_name, struct nameidata *nd,
2047 char *type, unsigned long flags,
2048 void *data)
2050 return 0;
2053 static inline int security_sb_check_sb (struct vfsmount *mnt,
2054 struct nameidata *nd)
2056 return 0;
2059 static inline int security_sb_umount (struct vfsmount *mnt, int flags)
2061 return 0;
2064 static inline void security_sb_umount_close (struct vfsmount *mnt)
2067 static inline void security_sb_umount_busy (struct vfsmount *mnt)
2070 static inline void security_sb_post_remount (struct vfsmount *mnt,
2071 unsigned long flags, void *data)
2074 static inline void security_sb_post_mountroot (void)
2077 static inline void security_sb_post_addmount (struct vfsmount *mnt,
2078 struct nameidata *mountpoint_nd)
2081 static inline int security_sb_pivotroot (struct nameidata *old_nd,
2082 struct nameidata *new_nd)
2084 return 0;
2087 static inline void security_sb_post_pivotroot (struct nameidata *old_nd,
2088 struct nameidata *new_nd)
2091 static inline int security_inode_alloc (struct inode *inode)
2093 return 0;
2096 static inline void security_inode_free (struct inode *inode)
2099 static inline int security_inode_init_security (struct inode *inode,
2100 struct inode *dir,
2101 char **name,
2102 void **value,
2103 size_t *len)
2105 return -EOPNOTSUPP;
2108 static inline int security_inode_create (struct inode *dir,
2109 struct dentry *dentry,
2110 int mode)
2112 return 0;
2115 static inline int security_inode_link (struct dentry *old_dentry,
2116 struct inode *dir,
2117 struct dentry *new_dentry)
2119 return 0;
2122 static inline int security_inode_unlink (struct inode *dir,
2123 struct dentry *dentry)
2125 return 0;
2128 static inline int security_inode_symlink (struct inode *dir,
2129 struct dentry *dentry,
2130 const char *old_name)
2132 return 0;
2135 static inline int security_inode_mkdir (struct inode *dir,
2136 struct dentry *dentry,
2137 int mode)
2139 return 0;
2142 static inline int security_inode_rmdir (struct inode *dir,
2143 struct dentry *dentry)
2145 return 0;
2148 static inline int security_inode_mknod (struct inode *dir,
2149 struct dentry *dentry,
2150 int mode, dev_t dev)
2152 return 0;
2155 static inline int security_inode_rename (struct inode *old_dir,
2156 struct dentry *old_dentry,
2157 struct inode *new_dir,
2158 struct dentry *new_dentry)
2160 return 0;
2163 static inline int security_inode_readlink (struct dentry *dentry)
2165 return 0;
2168 static inline int security_inode_follow_link (struct dentry *dentry,
2169 struct nameidata *nd)
2171 return 0;
2174 static inline int security_inode_permission (struct inode *inode, int mask,
2175 struct nameidata *nd)
2177 return 0;
2180 static inline int security_inode_setattr (struct dentry *dentry,
2181 struct iattr *attr)
2183 return 0;
2186 static inline int security_inode_getattr (struct vfsmount *mnt,
2187 struct dentry *dentry)
2189 return 0;
2192 static inline void security_inode_delete (struct inode *inode)
2195 static inline int security_inode_setxattr (struct dentry *dentry, char *name,
2196 void *value, size_t size, int flags)
2198 return cap_inode_setxattr(dentry, name, value, size, flags);
2201 static inline void security_inode_post_setxattr (struct dentry *dentry, char *name,
2202 void *value, size_t size, int flags)
2205 static inline int security_inode_getxattr (struct dentry *dentry, char *name)
2207 return 0;
2210 static inline int security_inode_listxattr (struct dentry *dentry)
2212 return 0;
2215 static inline int security_inode_removexattr (struct dentry *dentry, char *name)
2217 return cap_inode_removexattr(dentry, name);
2220 static inline int security_inode_getsecurity(struct inode *inode, const char *name, void *buffer, size_t size)
2222 return -EOPNOTSUPP;
2225 static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2227 return -EOPNOTSUPP;
2230 static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2232 return 0;
2235 static inline int security_file_permission (struct file *file, int mask)
2237 return 0;
2240 static inline int security_file_alloc (struct file *file)
2242 return 0;
2245 static inline void security_file_free (struct file *file)
2248 static inline int security_file_ioctl (struct file *file, unsigned int cmd,
2249 unsigned long arg)
2251 return 0;
2254 static inline int security_file_mmap (struct file *file, unsigned long reqprot,
2255 unsigned long prot,
2256 unsigned long flags)
2258 return 0;
2261 static inline int security_file_mprotect (struct vm_area_struct *vma,
2262 unsigned long reqprot,
2263 unsigned long prot)
2265 return 0;
2268 static inline int security_file_lock (struct file *file, unsigned int cmd)
2270 return 0;
2273 static inline int security_file_fcntl (struct file *file, unsigned int cmd,
2274 unsigned long arg)
2276 return 0;
2279 static inline int security_file_set_fowner (struct file *file)
2281 return 0;
2284 static inline int security_file_send_sigiotask (struct task_struct *tsk,
2285 struct fown_struct *fown,
2286 int sig)
2288 return 0;
2291 static inline int security_file_receive (struct file *file)
2293 return 0;
2296 static inline int security_task_create (unsigned long clone_flags)
2298 return 0;
2301 static inline int security_task_alloc (struct task_struct *p)
2303 return 0;
2306 static inline void security_task_free (struct task_struct *p)
2309 static inline int security_task_setuid (uid_t id0, uid_t id1, uid_t id2,
2310 int flags)
2312 return 0;
2315 static inline int security_task_post_setuid (uid_t old_ruid, uid_t old_euid,
2316 uid_t old_suid, int flags)
2318 return cap_task_post_setuid (old_ruid, old_euid, old_suid, flags);
2321 static inline int security_task_setgid (gid_t id0, gid_t id1, gid_t id2,
2322 int flags)
2324 return 0;
2327 static inline int security_task_setpgid (struct task_struct *p, pid_t pgid)
2329 return 0;
2332 static inline int security_task_getpgid (struct task_struct *p)
2334 return 0;
2337 static inline int security_task_getsid (struct task_struct *p)
2339 return 0;
2342 static inline int security_task_setgroups (struct group_info *group_info)
2344 return 0;
2347 static inline int security_task_setnice (struct task_struct *p, int nice)
2349 return 0;
2352 static inline int security_task_setrlimit (unsigned int resource,
2353 struct rlimit *new_rlim)
2355 return 0;
2358 static inline int security_task_setscheduler (struct task_struct *p,
2359 int policy,
2360 struct sched_param *lp)
2362 return 0;
2365 static inline int security_task_getscheduler (struct task_struct *p)
2367 return 0;
2370 static inline int security_task_kill (struct task_struct *p,
2371 struct siginfo *info, int sig)
2373 return 0;
2376 static inline int security_task_wait (struct task_struct *p)
2378 return 0;
2381 static inline int security_task_prctl (int option, unsigned long arg2,
2382 unsigned long arg3,
2383 unsigned long arg4,
2384 unsigned long arg5)
2386 return 0;
2389 static inline void security_task_reparent_to_init (struct task_struct *p)
2391 cap_task_reparent_to_init (p);
2394 static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2397 static inline int security_ipc_permission (struct kern_ipc_perm *ipcp,
2398 short flag)
2400 return 0;
2403 static inline int security_msg_msg_alloc (struct msg_msg * msg)
2405 return 0;
2408 static inline void security_msg_msg_free (struct msg_msg * msg)
2411 static inline int security_msg_queue_alloc (struct msg_queue *msq)
2413 return 0;
2416 static inline void security_msg_queue_free (struct msg_queue *msq)
2419 static inline int security_msg_queue_associate (struct msg_queue * msq,
2420 int msqflg)
2422 return 0;
2425 static inline int security_msg_queue_msgctl (struct msg_queue * msq, int cmd)
2427 return 0;
2430 static inline int security_msg_queue_msgsnd (struct msg_queue * msq,
2431 struct msg_msg * msg, int msqflg)
2433 return 0;
2436 static inline int security_msg_queue_msgrcv (struct msg_queue * msq,
2437 struct msg_msg * msg,
2438 struct task_struct * target,
2439 long type, int mode)
2441 return 0;
2444 static inline int security_shm_alloc (struct shmid_kernel *shp)
2446 return 0;
2449 static inline void security_shm_free (struct shmid_kernel *shp)
2452 static inline int security_shm_associate (struct shmid_kernel * shp,
2453 int shmflg)
2455 return 0;
2458 static inline int security_shm_shmctl (struct shmid_kernel * shp, int cmd)
2460 return 0;
2463 static inline int security_shm_shmat (struct shmid_kernel * shp,
2464 char __user *shmaddr, int shmflg)
2466 return 0;
2469 static inline int security_sem_alloc (struct sem_array *sma)
2471 return 0;
2474 static inline void security_sem_free (struct sem_array *sma)
2477 static inline int security_sem_associate (struct sem_array * sma, int semflg)
2479 return 0;
2482 static inline int security_sem_semctl (struct sem_array * sma, int cmd)
2484 return 0;
2487 static inline int security_sem_semop (struct sem_array * sma,
2488 struct sembuf * sops, unsigned nsops,
2489 int alter)
2491 return 0;
2494 static inline void security_d_instantiate (struct dentry *dentry, struct inode *inode)
2497 static inline int security_getprocattr(struct task_struct *p, char *name, void *value, size_t size)
2499 return -EINVAL;
2502 static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2504 return -EINVAL;
2507 static inline int security_netlink_send (struct sock *sk, struct sk_buff *skb)
2509 return cap_netlink_send (sk, skb);
2512 static inline int security_netlink_recv (struct sk_buff *skb)
2514 return cap_netlink_recv (skb);
2517 #endif /* CONFIG_SECURITY */
2519 #ifdef CONFIG_SECURITY_NETWORK
2520 static inline int security_unix_stream_connect(struct socket * sock,
2521 struct socket * other,
2522 struct sock * newsk)
2524 return security_ops->unix_stream_connect(sock, other, newsk);
2528 static inline int security_unix_may_send(struct socket * sock,
2529 struct socket * other)
2531 return security_ops->unix_may_send(sock, other);
2534 static inline int security_socket_create (int family, int type,
2535 int protocol, int kern)
2537 return security_ops->socket_create(family, type, protocol, kern);
2540 static inline void security_socket_post_create(struct socket * sock,
2541 int family,
2542 int type,
2543 int protocol, int kern)
2545 security_ops->socket_post_create(sock, family, type,
2546 protocol, kern);
2549 static inline int security_socket_bind(struct socket * sock,
2550 struct sockaddr * address,
2551 int addrlen)
2553 return security_ops->socket_bind(sock, address, addrlen);
2556 static inline int security_socket_connect(struct socket * sock,
2557 struct sockaddr * address,
2558 int addrlen)
2560 return security_ops->socket_connect(sock, address, addrlen);
2563 static inline int security_socket_listen(struct socket * sock, int backlog)
2565 return security_ops->socket_listen(sock, backlog);
2568 static inline int security_socket_accept(struct socket * sock,
2569 struct socket * newsock)
2571 return security_ops->socket_accept(sock, newsock);
2574 static inline void security_socket_post_accept(struct socket * sock,
2575 struct socket * newsock)
2577 security_ops->socket_post_accept(sock, newsock);
2580 static inline int security_socket_sendmsg(struct socket * sock,
2581 struct msghdr * msg, int size)
2583 return security_ops->socket_sendmsg(sock, msg, size);
2586 static inline int security_socket_recvmsg(struct socket * sock,
2587 struct msghdr * msg, int size,
2588 int flags)
2590 return security_ops->socket_recvmsg(sock, msg, size, flags);
2593 static inline int security_socket_getsockname(struct socket * sock)
2595 return security_ops->socket_getsockname(sock);
2598 static inline int security_socket_getpeername(struct socket * sock)
2600 return security_ops->socket_getpeername(sock);
2603 static inline int security_socket_getsockopt(struct socket * sock,
2604 int level, int optname)
2606 return security_ops->socket_getsockopt(sock, level, optname);
2609 static inline int security_socket_setsockopt(struct socket * sock,
2610 int level, int optname)
2612 return security_ops->socket_setsockopt(sock, level, optname);
2615 static inline int security_socket_shutdown(struct socket * sock, int how)
2617 return security_ops->socket_shutdown(sock, how);
2620 static inline int security_sock_rcv_skb (struct sock * sk,
2621 struct sk_buff * skb)
2623 return security_ops->socket_sock_rcv_skb (sk, skb);
2626 static inline int security_socket_getpeersec(struct socket *sock, char __user *optval,
2627 int __user *optlen, unsigned len)
2629 return security_ops->socket_getpeersec(sock, optval, optlen, len);
2632 static inline int security_sk_alloc(struct sock *sk, int family,
2633 unsigned int __nocast priority)
2635 return security_ops->sk_alloc_security(sk, family, priority);
2638 static inline void security_sk_free(struct sock *sk)
2640 return security_ops->sk_free_security(sk);
2642 #else /* CONFIG_SECURITY_NETWORK */
2643 static inline int security_unix_stream_connect(struct socket * sock,
2644 struct socket * other,
2645 struct sock * newsk)
2647 return 0;
2650 static inline int security_unix_may_send(struct socket * sock,
2651 struct socket * other)
2653 return 0;
2656 static inline int security_socket_create (int family, int type,
2657 int protocol, int kern)
2659 return 0;
2662 static inline void security_socket_post_create(struct socket * sock,
2663 int family,
2664 int type,
2665 int protocol, int kern)
2669 static inline int security_socket_bind(struct socket * sock,
2670 struct sockaddr * address,
2671 int addrlen)
2673 return 0;
2676 static inline int security_socket_connect(struct socket * sock,
2677 struct sockaddr * address,
2678 int addrlen)
2680 return 0;
2683 static inline int security_socket_listen(struct socket * sock, int backlog)
2685 return 0;
2688 static inline int security_socket_accept(struct socket * sock,
2689 struct socket * newsock)
2691 return 0;
2694 static inline void security_socket_post_accept(struct socket * sock,
2695 struct socket * newsock)
2699 static inline int security_socket_sendmsg(struct socket * sock,
2700 struct msghdr * msg, int size)
2702 return 0;
2705 static inline int security_socket_recvmsg(struct socket * sock,
2706 struct msghdr * msg, int size,
2707 int flags)
2709 return 0;
2712 static inline int security_socket_getsockname(struct socket * sock)
2714 return 0;
2717 static inline int security_socket_getpeername(struct socket * sock)
2719 return 0;
2722 static inline int security_socket_getsockopt(struct socket * sock,
2723 int level, int optname)
2725 return 0;
2728 static inline int security_socket_setsockopt(struct socket * sock,
2729 int level, int optname)
2731 return 0;
2734 static inline int security_socket_shutdown(struct socket * sock, int how)
2736 return 0;
2738 static inline int security_sock_rcv_skb (struct sock * sk,
2739 struct sk_buff * skb)
2741 return 0;
2744 static inline int security_socket_getpeersec(struct socket *sock, char __user *optval,
2745 int __user *optlen, unsigned len)
2747 return -ENOPROTOOPT;
2750 static inline int security_sk_alloc(struct sock *sk, int family,
2751 unsigned int __nocast priority)
2753 return 0;
2756 static inline void security_sk_free(struct sock *sk)
2759 #endif /* CONFIG_SECURITY_NETWORK */
2761 #endif /* ! __LINUX_SECURITY_H */