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