blob: 963a48fc300579fe3ab2776667ae6a678746d72e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Linux Security plug
3 *
4 * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
5 * Copyright (C) 2001 Greg Kroah-Hartman <greg@kroah.com>
6 * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
7 * Copyright (C) 2001 James Morris <jmorris@intercode.com.au>
8 * Copyright (C) 2001 Silicon Graphics, Inc. (Trust Technology Group)
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * Due to this file being licensed under the GPL there is controversy over
16 * whether this permits you to write a module that #includes this file
17 * without placing your module under the GPL. Please consult a lawyer for
18 * advice before doing this.
19 *
20 */
21
22#ifndef __LINUX_SECURITY_H
23#define __LINUX_SECURITY_H
24
25#include <linux/fs.h>
26#include <linux/binfmts.h>
27#include <linux/signal.h>
28#include <linux/resource.h>
29#include <linux/sem.h>
30#include <linux/shm.h>
31#include <linux/msg.h>
32#include <linux/sched.h>
David Howells29db9192005-10-30 15:02:44 -080033#include <linux/key.h>
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -070034#include <linux/xfrm.h>
Pekka Enberg3d544f42009-03-24 11:59:23 +020035#include <linux/gfp.h>
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -070036#include <net/flow.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +020038/* Maximum number of letters for an LSM name string */
39#define SECURITY_NAME_MAX 10
40
Eric Paris06112162008-11-11 22:02:50 +110041/* If capable should audit the security request */
42#define SECURITY_CAP_NOAUDIT 0
43#define SECURITY_CAP_AUDIT 1
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045struct ctl_table;
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +020046struct audit_krule;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * These functions are in security/capability.c and are used
50 * as the default capabilities functions
51 */
David Howells3699c532009-01-06 22:27:01 +000052extern int cap_capable(struct task_struct *tsk, const struct cred *cred,
53 int cap, int audit);
Eric Paris7b41b172008-04-23 14:10:25 -040054extern int cap_settime(struct timespec *ts, struct timezone *tz);
Ingo Molnar9e488582009-05-07 19:26:19 +100055extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +010056extern int cap_ptrace_traceme(struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -040057extern int cap_capget(struct task_struct *target, kernel_cap_t *effective, kernel_cap_t *inheritable, kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +110058extern int cap_capset(struct cred *new, const struct cred *old,
59 const kernel_cap_t *effective,
60 const kernel_cap_t *inheritable,
61 const kernel_cap_t *permitted);
David Howellsa6f76f22008-11-14 10:39:24 +110062extern int cap_bprm_set_creds(struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063extern int cap_bprm_secureexec(struct linux_binprm *bprm);
David Howells8f0cfa52008-04-29 00:59:41 -070064extern int cap_inode_setxattr(struct dentry *dentry, const char *name,
65 const void *value, size_t size, int flags);
66extern int cap_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -070067extern int cap_inode_need_killpriv(struct dentry *dentry);
68extern int cap_inode_killpriv(struct dentry *dentry);
Eric Paris7c738752009-07-31 12:53:58 -040069extern int cap_file_mmap(struct file *file, unsigned long reqprot,
70 unsigned long prot, unsigned long flags,
71 unsigned long addr, unsigned long addr_only);
David Howellsd84f4f92008-11-14 10:39:23 +110072extern int cap_task_fix_setuid(struct cred *new, const struct cred *old, int flags);
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070073extern int cap_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +110074 unsigned long arg4, unsigned long arg5);
Eric Paris7b41b172008-04-23 14:10:25 -040075extern int cap_task_setscheduler(struct task_struct *p, int policy, struct sched_param *lp);
76extern int cap_task_setioprio(struct task_struct *p, int ioprio);
77extern int cap_task_setnice(struct task_struct *p, int nice);
78extern int cap_syslog(int type);
James Morris20510f22007-10-16 23:31:32 -070079extern int cap_vm_enough_memory(struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81struct msghdr;
82struct sk_buff;
83struct sock;
84struct sockaddr;
85struct socket;
Trent Jaegerdf718372005-12-13 23:12:27 -080086struct flowi;
87struct dst_entry;
88struct xfrm_selector;
89struct xfrm_policy;
90struct xfrm_state;
91struct xfrm_user_sec_ctx;
Eric Paris2069f452008-07-04 09:47:13 +100092struct seq_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94extern int cap_netlink_send(struct sock *sk, struct sk_buff *skb);
Darrel Goeddelc7bdb542006-06-27 13:26:11 -070095extern int cap_netlink_recv(struct sk_buff *skb, int cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Eric Parised032182007-06-28 15:55:21 -040097extern unsigned long mmap_min_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
99 * Values used in the task_security_ops calls
100 */
101/* setuid or setgid, id0 == uid or gid */
102#define LSM_SETID_ID 1
103
104/* setreuid or setregid, id0 == real, id1 == eff */
105#define LSM_SETID_RE 2
106
107/* setresuid or setresgid, id0 == real, id1 == eff, uid2 == saved */
108#define LSM_SETID_RES 4
109
110/* setfsuid or setfsgid, id0 == fsuid or fsgid */
111#define LSM_SETID_FS 8
112
113/* forward declares to avoid warnings */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114struct sched_param;
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700115struct request_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
David Howellsa6f76f22008-11-14 10:39:24 +1100117/* bprm->unsafe reasons */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define LSM_UNSAFE_SHARE 1
119#define LSM_UNSAFE_PTRACE 2
120#define LSM_UNSAFE_PTRACE_CAP 4
121
122#ifdef CONFIG_SECURITY
123
Eric Parise0007522008-03-05 10:31:54 -0500124struct security_mnt_opts {
125 char **mnt_opts;
126 int *mnt_opts_flags;
127 int num_mnt_opts;
128};
129
130static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
131{
132 opts->mnt_opts = NULL;
133 opts->mnt_opts_flags = NULL;
134 opts->num_mnt_opts = 0;
135}
136
137static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
138{
139 int i;
140 if (opts->mnt_opts)
Eric Paris7b41b172008-04-23 14:10:25 -0400141 for (i = 0; i < opts->num_mnt_opts; i++)
Eric Parise0007522008-03-05 10:31:54 -0500142 kfree(opts->mnt_opts[i]);
143 kfree(opts->mnt_opts);
144 opts->mnt_opts = NULL;
145 kfree(opts->mnt_opts_flags);
146 opts->mnt_opts_flags = NULL;
147 opts->num_mnt_opts = 0;
148}
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150/**
151 * struct security_operations - main security structure
152 *
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +0200153 * Security module identifier.
154 *
155 * @name:
156 * A string that acts as a unique identifeir for the LSM with max number
157 * of characters = SECURITY_NAME_MAX.
158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 * Security hooks for program execution operations.
160 *
David Howellsa6f76f22008-11-14 10:39:24 +1100161 * @bprm_set_creds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * Save security information in the bprm->security field, typically based
163 * on information about the bprm->file, for later use by the apply_creds
164 * hook. This hook may also optionally check permissions (e.g. for
165 * transitions between security domains).
166 * This hook may be called multiple times during a single execve, e.g. for
167 * interpreters. The hook can tell whether it has already been called by
168 * checking to see if @bprm->security is non-NULL. If so, then the hook
169 * may decide either to retain the security information saved earlier or
170 * to replace it.
171 * @bprm contains the linux_binprm structure.
172 * Return 0 if the hook is successful and permission is granted.
173 * @bprm_check_security:
David Howellsa6f76f22008-11-14 10:39:24 +1100174 * This hook mediates the point when a search for a binary handler will
175 * begin. It allows a check the @bprm->security value which is set in the
176 * preceding set_creds call. The primary difference from set_creds is
177 * that the argv list and envp list are reliably available in @bprm. This
178 * hook may be called multiple times during a single execve; and in each
179 * pass set_creds is called first.
Eric Paris7b41b172008-04-23 14:10:25 -0400180 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 * Return 0 if the hook is successful and permission is granted.
David Howellsa6f76f22008-11-14 10:39:24 +1100182 * @bprm_committing_creds:
183 * Prepare to install the new security attributes of a process being
184 * transformed by an execve operation, based on the old credentials
185 * pointed to by @current->cred and the information set in @bprm->cred by
186 * the bprm_set_creds hook. @bprm points to the linux_binprm structure.
187 * This hook is a good place to perform state changes on the process such
188 * as closing open file descriptors to which access will no longer be
189 * granted when the attributes are changed. This is called immediately
190 * before commit_creds().
191 * @bprm_committed_creds:
192 * Tidy up after the installation of the new security attributes of a
193 * process being transformed by an execve operation. The new credentials
194 * have, by this point, been set to @current->cred. @bprm points to the
195 * linux_binprm structure. This hook is a good place to perform state
196 * changes on the process such as clearing out non-inheritable signal
197 * state. This is called immediately after commit_creds().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * @bprm_secureexec:
Eric Paris7b41b172008-04-23 14:10:25 -0400199 * Return a boolean value (0 or 1) indicating whether a "secure exec"
200 * is required. The flag is passed in the auxiliary table
201 * on the initial stack to the ELF interpreter to indicate whether libc
202 * should enable secure mode.
203 * @bprm contains the linux_binprm structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * Security hooks for filesystem operations.
206 *
207 * @sb_alloc_security:
208 * Allocate and attach a security structure to the sb->s_security field.
209 * The s_security field is initialized to NULL when the structure is
210 * allocated.
211 * @sb contains the super_block structure to be modified.
212 * Return 0 if operation was successful.
213 * @sb_free_security:
214 * Deallocate and clear the sb->s_security field.
215 * @sb contains the super_block structure to be modified.
216 * @sb_statfs:
David Howells726c3342006-06-23 02:02:58 -0700217 * Check permission before obtaining filesystem statistics for the @mnt
218 * mountpoint.
219 * @dentry is a handle on the superblock for the filesystem.
Eric Paris7b41b172008-04-23 14:10:25 -0400220 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * @sb_mount:
222 * Check permission before an object specified by @dev_name is mounted on
223 * the mount point named by @nd. For an ordinary mount, @dev_name
224 * identifies a device if the file system type requires a device. For a
225 * remount (@flags & MS_REMOUNT), @dev_name is irrelevant. For a
226 * loopback/bind mount (@flags & MS_BIND), @dev_name identifies the
227 * pathname of the object being mounted.
228 * @dev_name contains the name for object being mounted.
Al Virob5266eb2008-03-22 17:48:24 -0400229 * @path contains the path for mount point object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * @type contains the filesystem type.
231 * @flags contains the mount flags.
232 * @data contains the filesystem-specific data.
233 * Return 0 if permission is granted.
234 * @sb_copy_data:
235 * Allow mount option data to be copied prior to parsing by the filesystem,
236 * so that the security module can extract security-specific mount
237 * options cleanly (a filesystem may modify the data e.g. with strsep()).
238 * This also allows the original mount data to be stripped of security-
239 * specific options to avoid having to make filesystems aware of them.
240 * @type the type of filesystem being mounted.
241 * @orig the original mount data copied from userspace.
242 * @copy copied data which will be passed to the security module.
243 * Returns 0 if the copy was successful.
244 * @sb_check_sb:
245 * Check permission before the device with superblock @mnt->sb is mounted
246 * on the mount point named by @nd.
247 * @mnt contains the vfsmount for device being mounted.
Al Virob5266eb2008-03-22 17:48:24 -0400248 * @path contains the path for the mount point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 * Return 0 if permission is granted.
250 * @sb_umount:
251 * Check permission before the @mnt file system is unmounted.
252 * @mnt contains the mounted file system.
253 * @flags contains the unmount flags, e.g. MNT_FORCE.
254 * Return 0 if permission is granted.
255 * @sb_umount_close:
256 * Close any files in the @mnt mounted filesystem that are held open by
257 * the security module. This hook is called during an umount operation
258 * prior to checking whether the filesystem is still busy.
259 * @mnt contains the mounted filesystem.
260 * @sb_umount_busy:
261 * Handle a failed umount of the @mnt mounted filesystem, e.g. re-opening
262 * any files that were closed by umount_close. This hook is called during
263 * an umount operation if the umount fails after a call to the
264 * umount_close hook.
265 * @mnt contains the mounted filesystem.
266 * @sb_post_remount:
267 * Update the security module's state when a filesystem is remounted.
268 * This hook is only called if the remount was successful.
269 * @mnt contains the mounted file system.
270 * @flags contains the new filesystem flags.
271 * @data contains the filesystem-specific data.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 * @sb_post_addmount:
273 * Update the security module's state when a filesystem is mounted.
274 * This hook is called any time a mount is successfully grafetd to
275 * the tree.
276 * @mnt contains the mounted filesystem.
Al Virob5266eb2008-03-22 17:48:24 -0400277 * @mountpoint contains the path for the mount point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * @sb_pivotroot:
279 * Check permission before pivoting the root filesystem.
Al Virob5266eb2008-03-22 17:48:24 -0400280 * @old_path contains the path for the new location of the current root (put_old).
Eric Paris7b41b172008-04-23 14:10:25 -0400281 * @new_path contains the path for the new root (new_root).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 * Return 0 if permission is granted.
283 * @sb_post_pivotroot:
284 * Update module state after a successful pivot.
Al Virob5266eb2008-03-22 17:48:24 -0400285 * @old_path contains the path for the old root.
Eric Paris7b41b172008-04-23 14:10:25 -0400286 * @new_path contains the path for the new root.
Eric Parisc9180a52007-11-30 13:00:35 -0500287 * @sb_set_mnt_opts:
288 * Set the security relevant mount options used for a superblock
289 * @sb the superblock to set security mount options for
Eric Parise0007522008-03-05 10:31:54 -0500290 * @opts binary data structure containing all lsm mount data
Eric Parisc9180a52007-11-30 13:00:35 -0500291 * @sb_clone_mnt_opts:
292 * Copy all security options from a given superblock to another
293 * @oldsb old superblock which contain information to clone
294 * @newsb new superblock which needs filled in
Eric Parise0007522008-03-05 10:31:54 -0500295 * @sb_parse_opts_str:
296 * Parse a string of security data filling in the opts structure
297 * @options string containing all mount options known by the LSM
298 * @opts binary data structure usable by the LSM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 *
300 * Security hooks for inode operations.
301 *
302 * @inode_alloc_security:
303 * Allocate and attach a security structure to @inode->i_security. The
304 * i_security field is initialized to NULL when the inode structure is
305 * allocated.
306 * @inode contains the inode structure.
307 * Return 0 if operation was successful.
308 * @inode_free_security:
309 * @inode contains the inode structure.
310 * Deallocate the inode security structure and set @inode->i_security to
Eric Paris7b41b172008-04-23 14:10:25 -0400311 * NULL.
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700312 * @inode_init_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400313 * Obtain the security attribute name suffix and value to set on a newly
Stephen Smalley5e41ff92005-09-09 13:01:35 -0700314 * created inode and set up the incore security field for the new inode.
315 * This hook is called by the fs code as part of the inode creation
316 * transaction and provides for atomic labeling of the inode, unlike
317 * the post_create/mkdir/... hooks called by the VFS. The hook function
318 * is expected to allocate the name and value via kmalloc, with the caller
319 * being responsible for calling kfree after using them.
320 * If the security module does not use security attributes or does
321 * not wish to put a security attribute on this particular inode,
322 * then it should return -EOPNOTSUPP to skip this processing.
323 * @inode contains the inode structure of the newly created inode.
324 * @dir contains the inode structure of the parent directory.
325 * @name will be set to the allocated name suffix (e.g. selinux).
326 * @value will be set to the allocated attribute value.
327 * @len will be set to the length of the value.
328 * Returns 0 if @name and @value have been successfully set,
329 * -EOPNOTSUPP if no security attribute is needed, or
330 * -ENOMEM on memory allocation failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * @inode_create:
332 * Check permission to create a regular file.
333 * @dir contains inode structure of the parent of the new file.
334 * @dentry contains the dentry structure for the file to be created.
335 * @mode contains the file mode of the file to be created.
336 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 * @inode_link:
338 * Check permission before creating a new hard link to a file.
339 * @old_dentry contains the dentry structure for an existing link to the file.
340 * @dir contains the inode structure of the parent directory of the new link.
341 * @new_dentry contains the dentry structure for the new link.
342 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900343 * @path_link:
344 * Check permission before creating a new hard link to a file.
345 * @old_dentry contains the dentry structure for an existing link
346 * to the file.
347 * @new_dir contains the path structure of the parent directory of
348 * the new link.
349 * @new_dentry contains the dentry structure for the new link.
350 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * @inode_unlink:
Eric Paris7b41b172008-04-23 14:10:25 -0400352 * Check the permission to remove a hard link to a file.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * @dir contains the inode structure of parent directory of the file.
354 * @dentry contains the dentry structure for file to be unlinked.
355 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900356 * @path_unlink:
357 * Check the permission to remove a hard link to a file.
358 * @dir contains the path structure of parent directory of the file.
359 * @dentry contains the dentry structure for file to be unlinked.
360 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * @inode_symlink:
362 * Check the permission to create a symbolic link to a file.
363 * @dir contains the inode structure of parent directory of the symbolic link.
364 * @dentry contains the dentry structure of the symbolic link.
365 * @old_name contains the pathname of file.
366 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900367 * @path_symlink:
368 * Check the permission to create a symbolic link to a file.
369 * @dir contains the path structure of parent directory of
370 * the symbolic link.
371 * @dentry contains the dentry structure of the symbolic link.
372 * @old_name contains the pathname of file.
373 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 * @inode_mkdir:
375 * Check permissions to create a new directory in the existing directory
Eric Paris7b41b172008-04-23 14:10:25 -0400376 * associated with inode strcture @dir.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * @dir containst the inode structure of parent of the directory to be created.
378 * @dentry contains the dentry structure of new directory.
379 * @mode contains the mode of new directory.
380 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900381 * @path_mkdir:
382 * Check permissions to create a new directory in the existing directory
383 * associated with path strcture @path.
384 * @dir containst the path structure of parent of the directory
385 * to be created.
386 * @dentry contains the dentry structure of new directory.
387 * @mode contains the mode of new directory.
388 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * @inode_rmdir:
390 * Check the permission to remove a directory.
391 * @dir contains the inode structure of parent of the directory to be removed.
392 * @dentry contains the dentry structure of directory to be removed.
393 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900394 * @path_rmdir:
395 * Check the permission to remove a directory.
396 * @dir contains the path structure of parent of the directory to be
397 * removed.
398 * @dentry contains the dentry structure of directory to be removed.
399 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * @inode_mknod:
401 * Check permissions when creating a special file (or a socket or a fifo
402 * file created via the mknod system call). Note that if mknod operation
403 * is being done for a regular file, then the create hook will be called
404 * and not this hook.
405 * @dir contains the inode structure of parent of the new file.
406 * @dentry contains the dentry structure of the new file.
407 * @mode contains the mode of the new file.
Michael Opdenacker59c51592007-05-09 08:57:56 +0200408 * @dev contains the device number.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900410 * @path_mknod:
411 * Check permissions when creating a file. Note that this hook is called
412 * even if mknod operation is being done for a regular file.
413 * @dir contains the path structure of parent of the new file.
414 * @dentry contains the dentry structure of the new file.
415 * @mode contains the mode of the new file.
416 * @dev contains the undecoded device number. Use new_decode_dev() to get
417 * the decoded device number.
418 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * @inode_rename:
420 * Check for permission to rename a file or directory.
421 * @old_dir contains the inode structure for parent of the old link.
422 * @old_dentry contains the dentry structure of the old link.
423 * @new_dir contains the inode structure for parent of the new link.
424 * @new_dentry contains the dentry structure of the new link.
425 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900426 * @path_rename:
427 * Check for permission to rename a file or directory.
428 * @old_dir contains the path structure for parent of the old link.
429 * @old_dentry contains the dentry structure of the old link.
430 * @new_dir contains the path structure for parent of the new link.
431 * @new_dentry contains the dentry structure of the new link.
432 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * @inode_readlink:
434 * Check the permission to read the symbolic link.
435 * @dentry contains the dentry structure for the file link.
436 * Return 0 if permission is granted.
437 * @inode_follow_link:
438 * Check permission to follow a symbolic link when looking up a pathname.
439 * @dentry contains the dentry structure for the link.
440 * @nd contains the nameidata structure for the parent directory.
441 * Return 0 if permission is granted.
442 * @inode_permission:
443 * Check permission before accessing an inode. This hook is called by the
444 * existing Linux permission function, so a security module can use it to
445 * provide additional checking for existing Linux permission checks.
446 * Notice that this hook is called when a file is opened (as well as many
447 * other operations), whereas the file_security_ops permission hook is
448 * called when the actual read/write operations are performed.
449 * @inode contains the inode structure to check.
450 * @mask contains the permission mask.
Eric Paris7b41b172008-04-23 14:10:25 -0400451 * @nd contains the nameidata (may be NULL).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * Return 0 if permission is granted.
453 * @inode_setattr:
454 * Check permission before setting file attributes. Note that the kernel
455 * call to notify_change is performed from several locations, whenever
456 * file attributes change (such as when a file is truncated, chown/chmod
457 * operations, transferring disk quotas, etc).
458 * @dentry contains the dentry structure for the file.
459 * @attr is the iattr structure containing the new file attributes.
460 * Return 0 if permission is granted.
Kentaro Takedabe6d3e52008-12-17 13:24:15 +0900461 * @path_truncate:
462 * Check permission before truncating a file.
463 * @path contains the path structure for the file.
464 * @length is the new length of the file.
465 * @time_attrs is the flags passed to do_truncate().
466 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * @inode_getattr:
468 * Check permission before obtaining file attributes.
469 * @mnt is the vfsmount where the dentry was looked up
470 * @dentry contains the dentry structure for the file.
471 * Return 0 if permission is granted.
472 * @inode_delete:
473 * @inode contains the inode structure for deleted inode.
474 * This hook is called when a deleted inode is released (i.e. an inode
475 * with no hard links has its use count drop to zero). A security module
476 * can use this hook to release any persistent label associated with the
477 * inode.
478 * @inode_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400479 * Check permission before setting the extended attributes
480 * @value identified by @name for @dentry.
481 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 * @inode_post_setxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400483 * Update inode security field after successful setxattr operation.
484 * @value identified by @name for @dentry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * @inode_getxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400486 * Check permission before obtaining the extended attributes
487 * identified by @name for @dentry.
488 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * @inode_listxattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400490 * Check permission before obtaining the list of extended attribute
491 * names for @dentry.
492 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * @inode_removexattr:
Eric Paris7b41b172008-04-23 14:10:25 -0400494 * Check permission before removing the extended attribute
495 * identified by @name for @dentry.
496 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * @inode_getsecurity:
David P. Quigley42492592008-02-04 22:29:39 -0800498 * Retrieve a copy of the extended attribute representation of the
499 * security label associated with @name for @inode via @buffer. Note that
500 * @name is the remainder of the attribute name after the security prefix
501 * has been removed. @alloc is used to specify of the call should return a
502 * value via the buffer or just the value length Return size of buffer on
503 * success.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 * @inode_setsecurity:
505 * Set the security label associated with @name for @inode from the
506 * extended attribute value @value. @size indicates the size of the
507 * @value in bytes. @flags may be XATTR_CREATE, XATTR_REPLACE, or 0.
Eric Paris7b41b172008-04-23 14:10:25 -0400508 * Note that @name is the remainder of the attribute name after the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * security. prefix has been removed.
510 * Return 0 on success.
511 * @inode_listsecurity:
512 * Copy the extended attribute names for the security labels
513 * associated with @inode into @buffer. The maximum size of @buffer
514 * is specified by @buffer_size. @buffer may be NULL to request
515 * the size of the buffer required.
516 * Returns number of bytes used/required on success.
Serge E. Hallynb5376772007-10-16 23:31:36 -0700517 * @inode_need_killpriv:
518 * Called when an inode has been changed.
519 * @dentry is the dentry being changed.
520 * Return <0 on error to abort the inode change operation.
521 * Return 0 if inode_killpriv does not need to be called.
522 * Return >0 if inode_killpriv does need to be called.
523 * @inode_killpriv:
524 * The setuid bit is being removed. Remove similar security labels.
525 * Called with the dentry->d_inode->i_mutex held.
526 * @dentry is the dentry being changed.
527 * Return 0 on success. If error is returned, then the operation
528 * causing setuid bit removal is failed.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200529 * @inode_getsecid:
530 * Get the secid associated with the node.
531 * @inode contains a pointer to the inode.
532 * @secid contains a pointer to the location where result will be saved.
533 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 *
535 * Security hooks for file operations
536 *
537 * @file_permission:
538 * Check file permissions before accessing an open file. This hook is
539 * called by various operations that read or write files. A security
540 * module can use this hook to perform additional checking on these
541 * operations, e.g. to revalidate permissions on use to support privilege
542 * bracketing or policy changes. Notice that this hook is used when the
543 * actual read/write operations are performed, whereas the
544 * inode_security_ops hook is called when a file is opened (as well as
545 * many other operations).
546 * Caveat: Although this hook can be used to revalidate permissions for
547 * various system call operations that read or write files, it does not
548 * address the revalidation of permissions for memory-mapped files.
549 * Security modules must handle this separately if they need such
550 * revalidation.
551 * @file contains the file structure being accessed.
552 * @mask contains the requested permissions.
553 * Return 0 if permission is granted.
554 * @file_alloc_security:
555 * Allocate and attach a security structure to the file->f_security field.
556 * The security field is initialized to NULL when the structure is first
557 * created.
558 * @file contains the file structure to secure.
559 * Return 0 if the hook is successful and permission is granted.
560 * @file_free_security:
561 * Deallocate and free any security structures stored in file->f_security.
562 * @file contains the file structure being modified.
563 * @file_ioctl:
564 * @file contains the file structure.
565 * @cmd contains the operation to perform.
566 * @arg contains the operational arguments.
567 * Check permission for an ioctl operation on @file. Note that @arg can
568 * sometimes represents a user space pointer; in other cases, it may be a
569 * simple integer value. When @arg represents a user space pointer, it
570 * should never be used by the security module.
571 * Return 0 if permission is granted.
572 * @file_mmap :
573 * Check permissions for a mmap operation. The @file may be NULL, e.g.
574 * if mapping anonymous memory.
575 * @file contains the file structure for file to map (may be NULL).
576 * @reqprot contains the protection requested by the application.
577 * @prot contains the protection that will be applied by the kernel.
578 * @flags contains the operational flags.
579 * Return 0 if permission is granted.
580 * @file_mprotect:
581 * Check permissions before changing memory access permissions.
582 * @vma contains the memory region to modify.
583 * @reqprot contains the protection requested by the application.
584 * @prot contains the protection that will be applied by the kernel.
585 * Return 0 if permission is granted.
586 * @file_lock:
587 * Check permission before performing file locking operations.
588 * Note: this hook mediates both flock and fcntl style locks.
589 * @file contains the file structure.
590 * @cmd contains the posix-translated lock operation to perform
591 * (e.g. F_RDLCK, F_WRLCK).
592 * Return 0 if permission is granted.
593 * @file_fcntl:
594 * Check permission before allowing the file operation specified by @cmd
595 * from being performed on the file @file. Note that @arg can sometimes
596 * represents a user space pointer; in other cases, it may be a simple
597 * integer value. When @arg represents a user space pointer, it should
598 * never be used by the security module.
599 * @file contains the file structure.
600 * @cmd contains the operation to be performed.
601 * @arg contains the operational arguments.
602 * Return 0 if permission is granted.
603 * @file_set_fowner:
604 * Save owner security information (typically from current->security) in
605 * file->f_security for later use by the send_sigiotask hook.
606 * @file contains the file structure to update.
607 * Return 0 on success.
608 * @file_send_sigiotask:
609 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
610 * process @tsk. Note that this hook is sometimes called from interrupt.
611 * Note that the fown_struct, @fown, is never outside the context of a
612 * struct file, so the file structure (and associated security information)
613 * can always be obtained:
Robert P. J. Dayb385a142007-02-10 01:46:25 -0800614 * container_of(fown, struct file, f_owner)
Eric Paris7b41b172008-04-23 14:10:25 -0400615 * @tsk contains the structure of task receiving signal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * @fown contains the file owner information.
617 * @sig is the signal that will be sent. When 0, kernel sends SIGIO.
618 * Return 0 if permission is granted.
619 * @file_receive:
620 * This hook allows security modules to control the ability of a process
621 * to receive an open file descriptor via socket IPC.
622 * @file contains the file structure being received.
623 * Return 0 if permission is granted.
624 *
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +0900625 * Security hook for dentry
626 *
627 * @dentry_open
628 * Save open-time permission checking state for later use upon
629 * file_permission, and recheck access if anything has changed
630 * since inode_permission.
631 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * Security hooks for task operations.
633 *
634 * @task_create:
635 * Check permission before creating a child process. See the clone(2)
636 * manual page for definitions of the @clone_flags.
637 * @clone_flags contains the flags indicating what should be shared.
638 * Return 0 if permission is granted.
David Howellsf1752ee2008-11-14 10:39:17 +1100639 * @cred_free:
640 * @cred points to the credentials.
641 * Deallocate and clear the cred->security field in a set of credentials.
David Howellsd84f4f92008-11-14 10:39:23 +1100642 * @cred_prepare:
643 * @new points to the new credentials.
644 * @old points to the original credentials.
645 * @gfp indicates the atomicity of any memory allocations.
646 * Prepare a new set of credentials by copying the data from the old set.
647 * @cred_commit:
648 * @new points to the new credentials.
649 * @old points to the original credentials.
650 * Install a new set of credentials.
David Howells3a3b7ce2008-11-14 10:39:28 +1100651 * @kernel_act_as:
652 * Set the credentials for a kernel service to act as (subjective context).
653 * @new points to the credentials to be modified.
654 * @secid specifies the security ID to be set
655 * The current task must be the one that nominated @secid.
656 * Return 0 if successful.
657 * @kernel_create_files_as:
658 * Set the file creation context in a set of credentials to be the same as
659 * the objective context of the specified inode.
660 * @new points to the credentials to be modified.
661 * @inode points to the inode to use as a reference.
662 * The current task must be the one that nominated @inode.
663 * Return 0 if successful.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 * @task_setuid:
665 * Check permission before setting one or more of the user identity
666 * attributes of the current process. The @flags parameter indicates
667 * which of the set*uid system calls invoked this hook and how to
668 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
669 * definitions at the beginning of this file for the @flags values and
670 * their meanings.
671 * @id0 contains a uid.
672 * @id1 contains a uid.
673 * @id2 contains a uid.
674 * @flags contains one of the LSM_SETID_* values.
675 * Return 0 if permission is granted.
David Howellsd84f4f92008-11-14 10:39:23 +1100676 * @task_fix_setuid:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 * Update the module's state after setting one or more of the user
678 * identity attributes of the current process. The @flags parameter
679 * indicates which of the set*uid system calls invoked this hook. If
David Howellsd84f4f92008-11-14 10:39:23 +1100680 * @new is the set of credentials that will be installed. Modifications
681 * should be made to this rather than to @current->cred.
682 * @old is the set of credentials that are being replaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 * @flags contains one of the LSM_SETID_* values.
684 * Return 0 on success.
685 * @task_setgid:
686 * Check permission before setting one or more of the group identity
687 * attributes of the current process. The @flags parameter indicates
688 * which of the set*gid system calls invoked this hook and how to
689 * interpret the @id0, @id1, and @id2 parameters. See the LSM_SETID
690 * definitions at the beginning of this file for the @flags values and
691 * their meanings.
692 * @id0 contains a gid.
693 * @id1 contains a gid.
694 * @id2 contains a gid.
695 * @flags contains one of the LSM_SETID_* values.
696 * Return 0 if permission is granted.
697 * @task_setpgid:
698 * Check permission before setting the process group identifier of the
699 * process @p to @pgid.
700 * @p contains the task_struct for process being modified.
701 * @pgid contains the new pgid.
702 * Return 0 if permission is granted.
703 * @task_getpgid:
704 * Check permission before getting the process group identifier of the
705 * process @p.
706 * @p contains the task_struct for the process.
707 * Return 0 if permission is granted.
708 * @task_getsid:
709 * Check permission before getting the session identifier of the process
710 * @p.
711 * @p contains the task_struct for the process.
712 * Return 0 if permission is granted.
David Quigleyf9008e42006-06-30 01:55:46 -0700713 * @task_getsecid:
714 * Retrieve the security identifier of the process @p.
715 * @p contains the task_struct for the process and place is into @secid.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +0200716 * In case of failure, @secid will be set to zero.
717 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * @task_setgroups:
719 * Check permission before setting the supplementary group set of the
720 * current process.
721 * @group_info contains the new group information.
722 * Return 0 if permission is granted.
723 * @task_setnice:
724 * Check permission before setting the nice value of @p to @nice.
725 * @p contains the task_struct of process.
726 * @nice contains the new nice value.
727 * Return 0 if permission is granted.
James Morris03e68062006-06-23 02:03:58 -0700728 * @task_setioprio
729 * Check permission before setting the ioprio value of @p to @ioprio.
730 * @p contains the task_struct of process.
731 * @ioprio contains the new ioprio value
732 * Return 0 if permission is granted.
David Quigleya1836a42006-06-30 01:55:49 -0700733 * @task_getioprio
734 * Check permission before getting the ioprio value of @p.
735 * @p contains the task_struct of process.
736 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 * @task_setrlimit:
738 * Check permission before setting the resource limits of the current
739 * process for @resource to @new_rlim. The old resource limit values can
740 * be examined by dereferencing (current->signal->rlim + resource).
741 * @resource contains the resource whose limit is being set.
742 * @new_rlim contains the new limits for @resource.
743 * Return 0 if permission is granted.
744 * @task_setscheduler:
745 * Check permission before setting scheduling policy and/or parameters of
746 * process @p based on @policy and @lp.
747 * @p contains the task_struct for process.
748 * @policy contains the scheduling policy.
749 * @lp contains the scheduling parameters.
750 * Return 0 if permission is granted.
751 * @task_getscheduler:
752 * Check permission before obtaining scheduling information for process
753 * @p.
754 * @p contains the task_struct for process.
755 * Return 0 if permission is granted.
David Quigley35601542006-06-23 02:04:01 -0700756 * @task_movememory
757 * Check permission before moving memory owned by process @p.
758 * @p contains the task_struct for process.
759 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 * @task_kill:
761 * Check permission before sending signal @sig to @p. @info can be NULL,
762 * the constant 1, or a pointer to a siginfo structure. If @info is 1 or
763 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming
764 * from the kernel and should typically be permitted.
765 * SIGIO signals are handled separately by the send_sigiotask hook in
766 * file_security_ops.
767 * @p contains the task_struct for process.
768 * @info contains the signal information.
769 * @sig contains the signal value.
David Quigleyf9008e42006-06-30 01:55:46 -0700770 * @secid contains the sid of the process where the signal originated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 * Return 0 if permission is granted.
772 * @task_wait:
773 * Check permission before allowing a process to reap a child process @p
774 * and collect its status information.
775 * @p contains the task_struct for process.
776 * Return 0 if permission is granted.
777 * @task_prctl:
778 * Check permission before performing a process control operation on the
779 * current process.
780 * @option contains the operation.
781 * @arg2 contains a argument.
782 * @arg3 contains a argument.
783 * @arg4 contains a argument.
784 * @arg5 contains a argument.
David Howellsd84f4f92008-11-14 10:39:23 +1100785 * Return -ENOSYS if no-one wanted to handle this op, any other value to
786 * cause prctl() to return immediately with that value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * @task_to_inode:
Eric Paris7b41b172008-04-23 14:10:25 -0400788 * Set the security attributes for an inode based on an associated task's
789 * security attributes, e.g. for /proc/pid inodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 * @p contains the task_struct for the task.
791 * @inode contains the inode structure for the inode.
792 *
793 * Security hooks for Netlink messaging.
794 *
795 * @netlink_send:
796 * Save security information for a netlink message so that permission
797 * checking can be performed when the message is processed. The security
798 * information can be saved using the eff_cap field of the
Eric Paris7b41b172008-04-23 14:10:25 -0400799 * netlink_skb_parms structure. Also may be used to provide fine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * grained control over message transmission.
801 * @sk associated sock of task sending the message.,
802 * @skb contains the sk_buff structure for the netlink message.
803 * Return 0 if the information was successfully saved and message
804 * is allowed to be transmitted.
805 * @netlink_recv:
806 * Check permission before processing the received netlink message in
807 * @skb.
808 * @skb contains the sk_buff structure for the netlink message.
Darrel Goeddelc7bdb542006-06-27 13:26:11 -0700809 * @cap indicates the capability required
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * Return 0 if permission is granted.
811 *
812 * Security hooks for Unix domain networking.
813 *
814 * @unix_stream_connect:
815 * Check permissions before establishing a Unix domain stream connection
816 * between @sock and @other.
817 * @sock contains the socket structure.
818 * @other contains the peer socket structure.
819 * Return 0 if permission is granted.
820 * @unix_may_send:
821 * Check permissions before connecting or sending datagrams from @sock to
822 * @other.
823 * @sock contains the socket structure.
824 * @sock contains the peer socket structure.
825 * Return 0 if permission is granted.
826 *
827 * The @unix_stream_connect and @unix_may_send hooks were necessary because
828 * Linux provides an alternative to the conventional file name space for Unix
829 * domain sockets. Whereas binding and connecting to sockets in the file name
830 * space is mediated by the typical file permissions (and caught by the mknod
831 * and permission hooks in inode_security_ops), binding and connecting to
832 * sockets in the abstract name space is completely unmediated. Sufficient
833 * control of Unix domain sockets in the abstract name space isn't possible
834 * using only the socket layer hooks, since we need to know the actual target
835 * socket, which is not looked up until we are inside the af_unix code.
836 *
837 * Security hooks for socket operations.
838 *
839 * @socket_create:
840 * Check permissions prior to creating a new socket.
841 * @family contains the requested protocol family.
842 * @type contains the requested communications type.
843 * @protocol contains the requested protocol.
844 * @kern set to 1 if a kernel socket.
845 * Return 0 if permission is granted.
846 * @socket_post_create:
847 * This hook allows a module to update or allocate a per-socket security
848 * structure. Note that the security field was not added directly to the
849 * socket structure, but rather, the socket security information is stored
850 * in the associated inode. Typically, the inode alloc_security hook will
851 * allocate and and attach security information to
852 * sock->inode->i_security. This hook may be used to update the
853 * sock->inode->i_security field with additional information that wasn't
854 * available when the inode was allocated.
855 * @sock contains the newly created socket structure.
856 * @family contains the requested protocol family.
857 * @type contains the requested communications type.
858 * @protocol contains the requested protocol.
859 * @kern set to 1 if a kernel socket.
860 * @socket_bind:
861 * Check permission before socket protocol layer bind operation is
862 * performed and the socket @sock is bound to the address specified in the
863 * @address parameter.
864 * @sock contains the socket structure.
865 * @address contains the address to bind to.
866 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400867 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 * @socket_connect:
869 * Check permission before socket protocol layer connect operation
870 * attempts to connect socket @sock to a remote address, @address.
871 * @sock contains the socket structure.
872 * @address contains the address of remote endpoint.
873 * @addrlen contains the length of address.
Eric Paris7b41b172008-04-23 14:10:25 -0400874 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * @socket_listen:
876 * Check permission before socket protocol layer listen operation.
877 * @sock contains the socket structure.
878 * @backlog contains the maximum length for the pending connection queue.
879 * Return 0 if permission is granted.
880 * @socket_accept:
881 * Check permission before accepting a new connection. Note that the new
882 * socket, @newsock, has been created and some information copied to it,
883 * but the accept operation has not actually been performed.
884 * @sock contains the listening socket structure.
885 * @newsock contains the newly created server socket for connection.
886 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * @socket_sendmsg:
888 * Check permission before transmitting a message to another socket.
889 * @sock contains the socket structure.
890 * @msg contains the message to be transmitted.
891 * @size contains the size of message.
892 * Return 0 if permission is granted.
893 * @socket_recvmsg:
894 * Check permission before receiving a message from a socket.
895 * @sock contains the socket structure.
896 * @msg contains the message structure.
897 * @size contains the size of message structure.
898 * @flags contains the operational flags.
Eric Paris7b41b172008-04-23 14:10:25 -0400899 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 * @socket_getsockname:
901 * Check permission before the local address (name) of the socket object
902 * @sock is retrieved.
903 * @sock contains the socket structure.
904 * Return 0 if permission is granted.
905 * @socket_getpeername:
906 * Check permission before the remote address (name) of a socket object
907 * @sock is retrieved.
908 * @sock contains the socket structure.
909 * Return 0 if permission is granted.
910 * @socket_getsockopt:
911 * Check permissions before retrieving the options associated with socket
912 * @sock.
913 * @sock contains the socket structure.
914 * @level contains the protocol level to retrieve option from.
915 * @optname contains the name of option to retrieve.
916 * Return 0 if permission is granted.
917 * @socket_setsockopt:
918 * Check permissions before setting the options associated with socket
919 * @sock.
920 * @sock contains the socket structure.
921 * @level contains the protocol level to set options for.
922 * @optname contains the name of the option to set.
Eric Paris7b41b172008-04-23 14:10:25 -0400923 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 * @socket_shutdown:
925 * Checks permission before all or part of a connection on the socket
926 * @sock is shut down.
927 * @sock contains the socket structure.
928 * @how contains the flag indicating how future sends and receives are handled.
929 * Return 0 if permission is granted.
930 * @socket_sock_rcv_skb:
931 * Check permissions on incoming network packets. This hook is distinct
932 * from Netfilter's IP input hooks since it is the first time that the
933 * incoming sk_buff @skb has been associated with a particular socket, @sk.
934 * @sk contains the sock (not socket) associated with the incoming sk_buff.
935 * @skb contains the incoming network data.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200936 * @socket_getpeersec_stream:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * This hook allows the security module to provide peer socket security
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200938 * state for unix or connected tcp sockets to userspace via getsockopt
939 * SO_GETPEERSEC. For tcp sockets this can be meaningful if the
940 * socket is associated with an ipsec SA.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 * @sock is the local socket.
942 * @optval userspace memory where the security state is to be copied.
943 * @optlen userspace int where the module should copy the actual length
944 * of the security state.
945 * @len as input is the maximum length to copy to userspace provided
946 * by the caller.
947 * Return 0 if all is well, otherwise, typical getsockopt return
948 * values.
Serge Hallyn6da34ba2007-10-20 00:53:30 +0200949 * @socket_getpeersec_dgram:
Eric Paris7b41b172008-04-23 14:10:25 -0400950 * This hook allows the security module to provide peer socket security
951 * state for udp sockets on a per-packet basis to userspace via
952 * getsockopt SO_GETPEERSEC. The application must first have indicated
953 * the IP_PASSSEC option via getsockopt. It can then retrieve the
954 * security state returned by this hook for a packet via the SCM_SECURITY
955 * ancillary message type.
956 * @skb is the skbuff for the packet being queried
957 * @secdata is a pointer to a buffer in which to copy the security data
958 * @seclen is the maximum length for @secdata
959 * Return 0 on success, error on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 * @sk_alloc_security:
Eric Paris7b41b172008-04-23 14:10:25 -0400961 * Allocate and attach a security structure to the sk->sk_security field,
962 * which is used to copy security attributes between local stream sockets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 * @sk_free_security:
964 * Deallocate security structure.
Venkat Yekkirala892c1412006-08-04 23:08:56 -0700965 * @sk_clone_security:
966 * Clone/copy security structure.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700967 * @sk_getsecid:
968 * Retrieve the LSM-specific secid for the sock to enable caching of network
Trent Jaegerdf718372005-12-13 23:12:27 -0800969 * authorizations.
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700970 * @sock_graft:
971 * Sets the socket's isec sid to the sock's sid.
972 * @inet_conn_request:
973 * Sets the openreq's sid to socket's sid with MLS portion taken from peer sid.
974 * @inet_csk_clone:
975 * Sets the new child socket's sid to the openreq sid.
Venkat Yekkirala6b877692006-11-08 17:04:09 -0600976 * @inet_conn_established:
Eric Paris7b41b172008-04-23 14:10:25 -0400977 * Sets the connection's peersid to the secmark on skb.
Venkat Yekkirala4237c752006-07-24 23:32:50 -0700978 * @req_classify_flow:
979 * Sets the flow's sid to the openreq sid.
Trent Jaegerdf718372005-12-13 23:12:27 -0800980 *
981 * Security hooks for XFRM operations.
982 *
983 * @xfrm_policy_alloc_security:
Paul Moore03e1ad72008-04-12 19:07:52 -0700984 * @ctxp is a pointer to the xfrm_sec_ctx being added to Security Policy
985 * Database used by the XFRM system.
Trent Jaegerdf718372005-12-13 23:12:27 -0800986 * @sec_ctx contains the security context information being provided by
987 * the user-level policy update program (e.g., setkey).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -0700988 * Allocate a security structure to the xp->security field; the security
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -0600989 * field is initialized to NULL when the xfrm_policy is allocated.
Trent Jaegerdf718372005-12-13 23:12:27 -0800990 * Return 0 if operation was successful (memory to allocate, legal context)
991 * @xfrm_policy_clone_security:
Paul Moore03e1ad72008-04-12 19:07:52 -0700992 * @old_ctx contains an existing xfrm_sec_ctx.
993 * @new_ctxp contains a new xfrm_sec_ctx being cloned from old.
994 * Allocate a security structure in new_ctxp that contains the
995 * information from the old_ctx structure.
Trent Jaegerdf718372005-12-13 23:12:27 -0800996 * Return 0 if operation was successful (memory to allocate).
997 * @xfrm_policy_free_security:
Paul Moore03e1ad72008-04-12 19:07:52 -0700998 * @ctx contains the xfrm_sec_ctx
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700999 * Deallocate xp->security.
1000 * @xfrm_policy_delete_security:
Paul Moore03e1ad72008-04-12 19:07:52 -07001001 * @ctx contains the xfrm_sec_ctx.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001002 * Authorize deletion of xp->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001003 * @xfrm_state_alloc_security:
1004 * @x contains the xfrm_state being added to the Security Association
1005 * Database by the XFRM system.
1006 * @sec_ctx contains the security context information being provided by
1007 * the user-level SA generation program (e.g., setkey or racoon).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001008 * @secid contains the secid from which to take the mls portion of the context.
1009 * Allocate a security structure to the x->security field; the security
1010 * field is initialized to NULL when the xfrm_state is allocated. Set the
1011 * context to correspond to either sec_ctx or polsec, with the mls portion
1012 * taken from secid in the latter case.
Trent Jaegerdf718372005-12-13 23:12:27 -08001013 * Return 0 if operation was successful (memory to allocate, legal context).
1014 * @xfrm_state_free_security:
1015 * @x contains the xfrm_state.
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001016 * Deallocate x->security.
1017 * @xfrm_state_delete_security:
1018 * @x contains the xfrm_state.
1019 * Authorize deletion of x->security.
Trent Jaegerdf718372005-12-13 23:12:27 -08001020 * @xfrm_policy_lookup:
Paul Moore03e1ad72008-04-12 19:07:52 -07001021 * @ctx contains the xfrm_sec_ctx for which the access control is being
Trent Jaegerdf718372005-12-13 23:12:27 -08001022 * checked.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001023 * @fl_secid contains the flow security label that is used to authorize
Trent Jaegerdf718372005-12-13 23:12:27 -08001024 * access to the policy xp.
1025 * @dir contains the direction of the flow (input or output).
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001026 * Check permission when a flow selects a xfrm_policy for processing
Trent Jaegerdf718372005-12-13 23:12:27 -08001027 * XFRMs on a packet. The hook is called when selecting either a
1028 * per-socket policy or a generic xfrm policy.
Venkat Yekkirala5b368e62006-10-05 15:42:18 -05001029 * Return 0 if permission is granted, -ESRCH otherwise, or -errno
1030 * on other errors.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001031 * @xfrm_state_pol_flow_match:
1032 * @x contains the state to match.
1033 * @xp contains the policy to check for a match.
1034 * @fl contains the flow to check for a match.
1035 * Return 1 if there is a match.
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001036 * @xfrm_decode_session:
1037 * @skb points to skb to decode.
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001038 * @secid points to the flow key secid to set.
1039 * @ckall says if all xfrms used should be checked for same secid.
1040 * Return 0 if ckall is zero or all xfrms used have the same secid.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 *
David Howells29db9192005-10-30 15:02:44 -08001042 * Security hooks affecting all Key Management operations
1043 *
1044 * @key_alloc:
1045 * Permit allocation of a key and assign security data. Note that key does
1046 * not have a serial number assigned at this point.
1047 * @key points to the key.
David Howells7e047ef2006-06-26 00:24:50 -07001048 * @flags is the allocation flags
David Howells29db9192005-10-30 15:02:44 -08001049 * Return 0 if permission is granted, -ve error otherwise.
1050 * @key_free:
1051 * Notification of destruction; free security data.
1052 * @key points to the key.
1053 * No return value.
1054 * @key_permission:
1055 * See whether a specific operational right is granted to a process on a
Eric Paris7b41b172008-04-23 14:10:25 -04001056 * key.
David Howells29db9192005-10-30 15:02:44 -08001057 * @key_ref refers to the key (key pointer + possession attribute bit).
David Howellsd84f4f92008-11-14 10:39:23 +11001058 * @cred points to the credentials to provide the context against which to
Eric Paris7b41b172008-04-23 14:10:25 -04001059 * evaluate the security data on the key.
David Howells29db9192005-10-30 15:02:44 -08001060 * @perm describes the combination of permissions required of this key.
1061 * Return 1 if permission granted, 0 if permission denied and -ve it the
Eric Paris7b41b172008-04-23 14:10:25 -04001062 * normal permissions model should be effected.
David Howells70a5bb72008-04-29 01:01:26 -07001063 * @key_getsecurity:
1064 * Get a textual representation of the security context attached to a key
1065 * for the purposes of honouring KEYCTL_GETSECURITY. This function
1066 * allocates the storage for the NUL-terminated string and the caller
1067 * should free it.
1068 * @key points to the key to be queried.
1069 * @_buffer points to a pointer that should be set to point to the
1070 * resulting string (if no label or an error occurs).
1071 * Return the length of the string (including terminating NUL) or -ve if
1072 * an error.
1073 * May also return 0 (and a NULL buffer pointer) if there is no label.
David Howells29db9192005-10-30 15:02:44 -08001074 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 * Security hooks affecting all System V IPC operations.
1076 *
1077 * @ipc_permission:
1078 * Check permissions for access to IPC
1079 * @ipcp contains the kernel IPC permission structure
1080 * @flag contains the desired (requested) permission set
1081 * Return 0 if permission is granted.
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001082 * @ipc_getsecid:
1083 * Get the secid associated with the ipc object.
1084 * @ipcp contains the kernel IPC permission structure.
1085 * @secid contains a pointer to the location where result will be saved.
1086 * In case of failure, @secid will be set to zero.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 *
1088 * Security hooks for individual messages held in System V IPC message queues
1089 * @msg_msg_alloc_security:
1090 * Allocate and attach a security structure to the msg->security field.
1091 * The security field is initialized to NULL when the structure is first
1092 * created.
1093 * @msg contains the message structure to be modified.
1094 * Return 0 if operation was successful and permission is granted.
1095 * @msg_msg_free_security:
1096 * Deallocate the security structure for this message.
1097 * @msg contains the message structure to be modified.
1098 *
1099 * Security hooks for System V IPC Message Queues
1100 *
1101 * @msg_queue_alloc_security:
1102 * Allocate and attach a security structure to the
1103 * msq->q_perm.security field. The security field is initialized to
1104 * NULL when the structure is first created.
1105 * @msq contains the message queue structure to be modified.
1106 * Return 0 if operation was successful and permission is granted.
1107 * @msg_queue_free_security:
1108 * Deallocate security structure for this message queue.
1109 * @msq contains the message queue structure to be modified.
1110 * @msg_queue_associate:
1111 * Check permission when a message queue is requested through the
1112 * msgget system call. This hook is only called when returning the
1113 * message queue identifier for an existing message queue, not when a
1114 * new message queue is created.
1115 * @msq contains the message queue to act upon.
1116 * @msqflg contains the operation control flags.
1117 * Return 0 if permission is granted.
1118 * @msg_queue_msgctl:
1119 * Check permission when a message control operation specified by @cmd
1120 * is to be performed on the message queue @msq.
1121 * The @msq may be NULL, e.g. for IPC_INFO or MSG_INFO.
1122 * @msq contains the message queue to act upon. May be NULL.
1123 * @cmd contains the operation to be performed.
Eric Paris7b41b172008-04-23 14:10:25 -04001124 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 * @msg_queue_msgsnd:
1126 * Check permission before a message, @msg, is enqueued on the message
1127 * queue, @msq.
1128 * @msq contains the message queue to send message to.
1129 * @msg contains the message to be enqueued.
1130 * @msqflg contains operational flags.
1131 * Return 0 if permission is granted.
1132 * @msg_queue_msgrcv:
1133 * Check permission before a message, @msg, is removed from the message
Eric Paris7b41b172008-04-23 14:10:25 -04001134 * queue, @msq. The @target task structure contains a pointer to the
1135 * process that will be receiving the message (not equal to the current
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 * process when inline receives are being performed).
1137 * @msq contains the message queue to retrieve message from.
1138 * @msg contains the message destination.
1139 * @target contains the task structure for recipient process.
1140 * @type contains the type of message requested.
1141 * @mode contains the operational flags.
1142 * Return 0 if permission is granted.
1143 *
1144 * Security hooks for System V Shared Memory Segments
1145 *
1146 * @shm_alloc_security:
1147 * Allocate and attach a security structure to the shp->shm_perm.security
1148 * field. The security field is initialized to NULL when the structure is
1149 * first created.
1150 * @shp contains the shared memory structure to be modified.
1151 * Return 0 if operation was successful and permission is granted.
1152 * @shm_free_security:
1153 * Deallocate the security struct for this memory segment.
1154 * @shp contains the shared memory structure to be modified.
1155 * @shm_associate:
1156 * Check permission when a shared memory region is requested through the
1157 * shmget system call. This hook is only called when returning the shared
1158 * memory region identifier for an existing region, not when a new shared
1159 * memory region is created.
1160 * @shp contains the shared memory structure to be modified.
1161 * @shmflg contains the operation control flags.
1162 * Return 0 if permission is granted.
1163 * @shm_shmctl:
1164 * Check permission when a shared memory control operation specified by
1165 * @cmd is to be performed on the shared memory region @shp.
1166 * The @shp may be NULL, e.g. for IPC_INFO or SHM_INFO.
1167 * @shp contains shared memory structure to be modified.
1168 * @cmd contains the operation to be performed.
1169 * Return 0 if permission is granted.
1170 * @shm_shmat:
1171 * Check permissions prior to allowing the shmat system call to attach the
1172 * shared memory segment @shp to the data segment of the calling process.
1173 * The attaching address is specified by @shmaddr.
1174 * @shp contains the shared memory structure to be modified.
1175 * @shmaddr contains the address to attach memory region to.
1176 * @shmflg contains the operational flags.
1177 * Return 0 if permission is granted.
1178 *
1179 * Security hooks for System V Semaphores
1180 *
1181 * @sem_alloc_security:
1182 * Allocate and attach a security structure to the sma->sem_perm.security
1183 * field. The security field is initialized to NULL when the structure is
1184 * first created.
1185 * @sma contains the semaphore structure
1186 * Return 0 if operation was successful and permission is granted.
1187 * @sem_free_security:
1188 * deallocate security struct for this semaphore
1189 * @sma contains the semaphore structure.
1190 * @sem_associate:
1191 * Check permission when a semaphore is requested through the semget
1192 * system call. This hook is only called when returning the semaphore
1193 * identifier for an existing semaphore, not when a new one must be
1194 * created.
1195 * @sma contains the semaphore structure.
1196 * @semflg contains the operation control flags.
1197 * Return 0 if permission is granted.
1198 * @sem_semctl:
1199 * Check permission when a semaphore operation specified by @cmd is to be
Eric Paris7b41b172008-04-23 14:10:25 -04001200 * performed on the semaphore @sma. The @sma may be NULL, e.g. for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 * IPC_INFO or SEM_INFO.
1202 * @sma contains the semaphore structure. May be NULL.
1203 * @cmd contains the operation to be performed.
1204 * Return 0 if permission is granted.
1205 * @sem_semop
1206 * Check permissions before performing operations on members of the
Eric Paris7b41b172008-04-23 14:10:25 -04001207 * semaphore set @sma. If the @alter flag is nonzero, the semaphore set
1208 * may be modified.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * @sma contains the semaphore structure.
1210 * @sops contains the operations to perform.
1211 * @nsops contains the number of operations to perform.
1212 * @alter contains the flag indicating whether changes are to be made.
1213 * Return 0 if permission is granted.
1214 *
Ingo Molnar9e488582009-05-07 19:26:19 +10001215 * @ptrace_access_check:
David Howells5cd9c582008-08-14 11:37:28 +01001216 * Check permission before allowing the current process to trace the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * @child process.
1218 * Security modules may also want to perform a process tracing check
1219 * during an execve in the set_security or apply_creds hooks of
David Howellsd84f4f92008-11-14 10:39:23 +11001220 * tracing check during an execve in the bprm_set_creds hook of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 * binprm_security_ops if the process is being traced and its security
1222 * attributes would be changed by the execve.
David Howells5cd9c582008-08-14 11:37:28 +01001223 * @child contains the task_struct structure for the target process.
Stephen Smalley006ebb42008-05-19 08:32:49 -04001224 * @mode contains the PTRACE_MODE flags indicating the form of access.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 * Return 0 if permission is granted.
David Howells5cd9c582008-08-14 11:37:28 +01001226 * @ptrace_traceme:
1227 * Check that the @parent process has sufficient permission to trace the
1228 * current process before allowing the current process to present itself
1229 * to the @parent process for tracing.
Ingo Molnar9e488582009-05-07 19:26:19 +10001230 * The parent process will still have to undergo the ptrace_access_check
David Howells5cd9c582008-08-14 11:37:28 +01001231 * checks before it is allowed to trace this one.
1232 * @parent contains the task_struct structure for debugger process.
1233 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 * @capget:
1235 * Get the @effective, @inheritable, and @permitted capability sets for
1236 * the @target process. The hook may also perform permission checking to
1237 * determine if the current process is allowed to see the capability sets
1238 * of the @target process.
1239 * @target contains the task_struct structure for target process.
1240 * @effective contains the effective capability set.
1241 * @inheritable contains the inheritable capability set.
1242 * @permitted contains the permitted capability set.
1243 * Return 0 if the capability sets were successfully obtained.
David Howellsd84f4f92008-11-14 10:39:23 +11001244 * @capset:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * Set the @effective, @inheritable, and @permitted capability sets for
David Howells1cdcbec2008-11-14 10:39:14 +11001246 * the current process.
David Howellsd84f4f92008-11-14 10:39:23 +11001247 * @new contains the new credentials structure for target process.
1248 * @old contains the current credentials structure for target process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 * @effective contains the effective capability set.
1250 * @inheritable contains the inheritable capability set.
1251 * @permitted contains the permitted capability set.
David Howellsd84f4f92008-11-14 10:39:23 +11001252 * Return 0 and update @new if permission is granted.
Chris Wright12b59892006-03-25 03:07:41 -08001253 * @capable:
David Howells3699c532009-01-06 22:27:01 +00001254 * Check whether the @tsk process has the @cap capability in the indicated
1255 * credentials.
Chris Wright12b59892006-03-25 03:07:41 -08001256 * @tsk contains the task_struct for the process.
David Howells3699c532009-01-06 22:27:01 +00001257 * @cred contains the credentials to use.
Chris Wright12b59892006-03-25 03:07:41 -08001258 * @cap contains the capability <include/linux/capability.h>.
David Howells3699c532009-01-06 22:27:01 +00001259 * @audit: Whether to write an audit message or not
Chris Wright12b59892006-03-25 03:07:41 -08001260 * Return 0 if the capability is granted for @tsk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 * @acct:
1262 * Check permission before enabling or disabling process accounting. If
1263 * accounting is being enabled, then @file refers to the open file used to
1264 * store accounting records. If accounting is being disabled, then @file
1265 * is NULL.
1266 * @file contains the file structure for the accounting file (may be NULL).
1267 * Return 0 if permission is granted.
1268 * @sysctl:
1269 * Check permission before accessing the @table sysctl variable in the
1270 * manner specified by @op.
1271 * @table contains the ctl_table structure for the sysctl variable.
1272 * @op contains the operation (001 = search, 002 = write, 004 = read).
1273 * Return 0 if permission is granted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 * @syslog:
1275 * Check permission before accessing the kernel message ring or changing
1276 * logging to the console.
Eric Paris7b41b172008-04-23 14:10:25 -04001277 * See the syslog(2) manual page for an explanation of the @type values.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 * @type contains the type of action.
1279 * Return 0 if permission is granted.
1280 * @settime:
1281 * Check permission to change the system time.
1282 * struct timespec and timezone are defined in include/linux/time.h
1283 * @ts contains new time
1284 * @tz contains new timezone
1285 * Return 0 if permission is granted.
1286 * @vm_enough_memory:
1287 * Check permissions for allocating a new virtual mapping.
Alan Cox34b4e4a2007-08-22 14:01:28 -07001288 * @mm contains the mm struct it is being added to.
Eric Paris7b41b172008-04-23 14:10:25 -04001289 * @pages contains the number of pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 * Return 0 if permission is granted.
1291 *
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001292 * @secid_to_secctx:
1293 * Convert secid to security context.
1294 * @secid contains the security ID.
1295 * @secdata contains the pointer that stores the converted security context.
David Howells63cb3442008-01-15 23:47:35 +00001296 * @secctx_to_secid:
Eric Paris7b41b172008-04-23 14:10:25 -04001297 * Convert security context to secid.
1298 * @secid contains the pointer to the generated security ID.
1299 * @secdata contains the security context.
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001300 *
1301 * @release_secctx:
1302 * Release the security context.
1303 * @secdata contains the security context.
1304 * @seclen contains the length of the security context.
1305 *
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001306 * Security hooks for Audit
1307 *
1308 * @audit_rule_init:
1309 * Allocate and initialize an LSM audit rule structure.
1310 * @field contains the required Audit action. Fields flags are defined in include/linux/audit.h
1311 * @op contains the operator the rule uses.
1312 * @rulestr contains the context where the rule will be applied to.
1313 * @lsmrule contains a pointer to receive the result.
1314 * Return 0 if @lsmrule has been successfully set,
1315 * -EINVAL in case of an invalid rule.
1316 *
1317 * @audit_rule_known:
1318 * Specifies whether given @rule contains any fields related to current LSM.
1319 * @rule contains the audit rule of interest.
1320 * Return 1 in case of relation found, 0 otherwise.
1321 *
1322 * @audit_rule_match:
1323 * Determine if given @secid matches a rule previously approved
1324 * by @audit_rule_known.
1325 * @secid contains the security id in question.
1326 * @field contains the field which relates to current LSM.
1327 * @op contains the operator that will be used for matching.
1328 * @rule points to the audit rule that will be checked against.
1329 * @actx points to the audit context associated with the check.
1330 * Return 1 if secid matches the rule, 0 if it does not, -ERRNO on failure.
1331 *
1332 * @audit_rule_free:
1333 * Deallocate the LSM audit rule structure previously allocated by
1334 * audit_rule_init.
1335 * @rule contains the allocated rule
1336 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * This is the main security structure.
1338 */
1339struct security_operations {
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001340 char name[SECURITY_NAME_MAX + 1];
1341
Ingo Molnar9e488582009-05-07 19:26:19 +10001342 int (*ptrace_access_check) (struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001343 int (*ptrace_traceme) (struct task_struct *parent);
Eric Paris7b41b172008-04-23 14:10:25 -04001344 int (*capget) (struct task_struct *target,
1345 kernel_cap_t *effective,
1346 kernel_cap_t *inheritable, kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001347 int (*capset) (struct cred *new,
1348 const struct cred *old,
1349 const kernel_cap_t *effective,
1350 const kernel_cap_t *inheritable,
1351 const kernel_cap_t *permitted);
David Howells3699c532009-01-06 22:27:01 +00001352 int (*capable) (struct task_struct *tsk, const struct cred *cred,
1353 int cap, int audit);
Eric Paris7b41b172008-04-23 14:10:25 -04001354 int (*acct) (struct file *file);
1355 int (*sysctl) (struct ctl_table *table, int op);
1356 int (*quotactl) (int cmds, int type, int id, struct super_block *sb);
1357 int (*quota_on) (struct dentry *dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 int (*syslog) (int type);
1359 int (*settime) (struct timespec *ts, struct timezone *tz);
Alan Cox34b4e4a2007-08-22 14:01:28 -07001360 int (*vm_enough_memory) (struct mm_struct *mm, long pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
David Howellsa6f76f22008-11-14 10:39:24 +11001362 int (*bprm_set_creds) (struct linux_binprm *bprm);
Eric Paris7b41b172008-04-23 14:10:25 -04001363 int (*bprm_check_security) (struct linux_binprm *bprm);
1364 int (*bprm_secureexec) (struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001365 void (*bprm_committing_creds) (struct linux_binprm *bprm);
1366 void (*bprm_committed_creds) (struct linux_binprm *bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Eric Paris7b41b172008-04-23 14:10:25 -04001368 int (*sb_alloc_security) (struct super_block *sb);
1369 void (*sb_free_security) (struct super_block *sb);
1370 int (*sb_copy_data) (char *orig, char *copy);
James Morris12204e22008-12-19 10:44:42 +11001371 int (*sb_kern_mount) (struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001372 int (*sb_show_options) (struct seq_file *m, struct super_block *sb);
David Howells726c3342006-06-23 02:02:58 -07001373 int (*sb_statfs) (struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001374 int (*sb_mount) (char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 char *type, unsigned long flags, void *data);
Eric Paris7b41b172008-04-23 14:10:25 -04001376 int (*sb_check_sb) (struct vfsmount *mnt, struct path *path);
1377 int (*sb_umount) (struct vfsmount *mnt, int flags);
1378 void (*sb_umount_close) (struct vfsmount *mnt);
1379 void (*sb_umount_busy) (struct vfsmount *mnt);
1380 void (*sb_post_remount) (struct vfsmount *mnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 unsigned long flags, void *data);
Eric Paris7b41b172008-04-23 14:10:25 -04001382 void (*sb_post_addmount) (struct vfsmount *mnt,
Al Virob5266eb2008-03-22 17:48:24 -04001383 struct path *mountpoint);
1384 int (*sb_pivotroot) (struct path *old_path,
1385 struct path *new_path);
1386 void (*sb_post_pivotroot) (struct path *old_path,
1387 struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001388 int (*sb_set_mnt_opts) (struct super_block *sb,
1389 struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001390 void (*sb_clone_mnt_opts) (const struct super_block *oldsb,
1391 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001392 int (*sb_parse_opts_str) (char *options, struct security_mnt_opts *opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001394#ifdef CONFIG_SECURITY_PATH
1395 int (*path_unlink) (struct path *dir, struct dentry *dentry);
1396 int (*path_mkdir) (struct path *dir, struct dentry *dentry, int mode);
1397 int (*path_rmdir) (struct path *dir, struct dentry *dentry);
1398 int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode,
1399 unsigned int dev);
1400 int (*path_truncate) (struct path *path, loff_t length,
1401 unsigned int time_attrs);
1402 int (*path_symlink) (struct path *dir, struct dentry *dentry,
1403 const char *old_name);
1404 int (*path_link) (struct dentry *old_dentry, struct path *new_dir,
1405 struct dentry *new_dentry);
1406 int (*path_rename) (struct path *old_dir, struct dentry *old_dentry,
1407 struct path *new_dir, struct dentry *new_dentry);
1408#endif
1409
Eric Paris7b41b172008-04-23 14:10:25 -04001410 int (*inode_alloc_security) (struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 void (*inode_free_security) (struct inode *inode);
Stephen Smalley5e41ff92005-09-09 13:01:35 -07001412 int (*inode_init_security) (struct inode *inode, struct inode *dir,
1413 char **name, void **value, size_t *len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 int (*inode_create) (struct inode *dir,
Eric Paris7b41b172008-04-23 14:10:25 -04001415 struct dentry *dentry, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 int (*inode_link) (struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001417 struct inode *dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int (*inode_unlink) (struct inode *dir, struct dentry *dentry);
1419 int (*inode_symlink) (struct inode *dir,
Eric Paris7b41b172008-04-23 14:10:25 -04001420 struct dentry *dentry, const char *old_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 int (*inode_mkdir) (struct inode *dir, struct dentry *dentry, int mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 int (*inode_rmdir) (struct inode *dir, struct dentry *dentry);
1423 int (*inode_mknod) (struct inode *dir, struct dentry *dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001424 int mode, dev_t dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 int (*inode_rename) (struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001426 struct inode *new_dir, struct dentry *new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 int (*inode_readlink) (struct dentry *dentry);
1428 int (*inode_follow_link) (struct dentry *dentry, struct nameidata *nd);
Al Virob77b0642008-07-17 09:37:02 -04001429 int (*inode_permission) (struct inode *inode, int mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 int (*inode_setattr) (struct dentry *dentry, struct iattr *attr);
1431 int (*inode_getattr) (struct vfsmount *mnt, struct dentry *dentry);
Eric Paris7b41b172008-04-23 14:10:25 -04001432 void (*inode_delete) (struct inode *inode);
David Howells8f0cfa52008-04-29 00:59:41 -07001433 int (*inode_setxattr) (struct dentry *dentry, const char *name,
1434 const void *value, size_t size, int flags);
1435 void (*inode_post_setxattr) (struct dentry *dentry, const char *name,
1436 const void *value, size_t size, int flags);
1437 int (*inode_getxattr) (struct dentry *dentry, const char *name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 int (*inode_listxattr) (struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001439 int (*inode_removexattr) (struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001440 int (*inode_need_killpriv) (struct dentry *dentry);
1441 int (*inode_killpriv) (struct dentry *dentry);
Eric Paris7b41b172008-04-23 14:10:25 -04001442 int (*inode_getsecurity) (const struct inode *inode, const char *name, void **buffer, bool alloc);
1443 int (*inode_setsecurity) (struct inode *inode, const char *name, const void *value, size_t size, int flags);
1444 int (*inode_listsecurity) (struct inode *inode, char *buffer, size_t buffer_size);
1445 void (*inode_getsecid) (const struct inode *inode, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Eric Paris7b41b172008-04-23 14:10:25 -04001447 int (*file_permission) (struct file *file, int mask);
1448 int (*file_alloc_security) (struct file *file);
1449 void (*file_free_security) (struct file *file);
1450 int (*file_ioctl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001452 int (*file_mmap) (struct file *file,
Eric Parised032182007-06-28 15:55:21 -04001453 unsigned long reqprot, unsigned long prot,
1454 unsigned long flags, unsigned long addr,
1455 unsigned long addr_only);
Eric Paris7b41b172008-04-23 14:10:25 -04001456 int (*file_mprotect) (struct vm_area_struct *vma,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 unsigned long reqprot,
1458 unsigned long prot);
Eric Paris7b41b172008-04-23 14:10:25 -04001459 int (*file_lock) (struct file *file, unsigned int cmd);
1460 int (*file_fcntl) (struct file *file, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 unsigned long arg);
Eric Paris7b41b172008-04-23 14:10:25 -04001462 int (*file_set_fowner) (struct file *file);
1463 int (*file_send_sigiotask) (struct task_struct *tsk,
1464 struct fown_struct *fown, int sig);
1465 int (*file_receive) (struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001466 int (*dentry_open) (struct file *file, const struct cred *cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 int (*task_create) (unsigned long clone_flags);
David Howellsf1752ee2008-11-14 10:39:17 +11001469 void (*cred_free) (struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001470 int (*cred_prepare)(struct cred *new, const struct cred *old,
1471 gfp_t gfp);
1472 void (*cred_commit)(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001473 int (*kernel_act_as)(struct cred *new, u32 secid);
1474 int (*kernel_create_files_as)(struct cred *new, struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 int (*task_setuid) (uid_t id0, uid_t id1, uid_t id2, int flags);
David Howellsd84f4f92008-11-14 10:39:23 +11001476 int (*task_fix_setuid) (struct cred *new, const struct cred *old,
1477 int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int (*task_setgid) (gid_t id0, gid_t id1, gid_t id2, int flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001479 int (*task_setpgid) (struct task_struct *p, pid_t pgid);
1480 int (*task_getpgid) (struct task_struct *p);
1481 int (*task_getsid) (struct task_struct *p);
1482 void (*task_getsecid) (struct task_struct *p, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 int (*task_setgroups) (struct group_info *group_info);
Eric Paris7b41b172008-04-23 14:10:25 -04001484 int (*task_setnice) (struct task_struct *p, int nice);
1485 int (*task_setioprio) (struct task_struct *p, int ioprio);
1486 int (*task_getioprio) (struct task_struct *p);
1487 int (*task_setrlimit) (unsigned int resource, struct rlimit *new_rlim);
1488 int (*task_setscheduler) (struct task_struct *p, int policy,
1489 struct sched_param *lp);
1490 int (*task_getscheduler) (struct task_struct *p);
1491 int (*task_movememory) (struct task_struct *p);
1492 int (*task_kill) (struct task_struct *p,
1493 struct siginfo *info, int sig, u32 secid);
1494 int (*task_wait) (struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 int (*task_prctl) (int option, unsigned long arg2,
1496 unsigned long arg3, unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11001497 unsigned long arg5);
Eric Paris7b41b172008-04-23 14:10:25 -04001498 void (*task_to_inode) (struct task_struct *p, struct inode *inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Eric Paris7b41b172008-04-23 14:10:25 -04001500 int (*ipc_permission) (struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001501 void (*ipc_getsecid) (struct kern_ipc_perm *ipcp, u32 *secid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Eric Paris7b41b172008-04-23 14:10:25 -04001503 int (*msg_msg_alloc_security) (struct msg_msg *msg);
1504 void (*msg_msg_free_security) (struct msg_msg *msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Eric Paris7b41b172008-04-23 14:10:25 -04001506 int (*msg_queue_alloc_security) (struct msg_queue *msq);
1507 void (*msg_queue_free_security) (struct msg_queue *msq);
1508 int (*msg_queue_associate) (struct msg_queue *msq, int msqflg);
1509 int (*msg_queue_msgctl) (struct msg_queue *msq, int cmd);
1510 int (*msg_queue_msgsnd) (struct msg_queue *msq,
1511 struct msg_msg *msg, int msqflg);
1512 int (*msg_queue_msgrcv) (struct msg_queue *msq,
1513 struct msg_msg *msg,
1514 struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 long type, int mode);
1516
Eric Paris7b41b172008-04-23 14:10:25 -04001517 int (*shm_alloc_security) (struct shmid_kernel *shp);
1518 void (*shm_free_security) (struct shmid_kernel *shp);
1519 int (*shm_associate) (struct shmid_kernel *shp, int shmflg);
1520 int (*shm_shmctl) (struct shmid_kernel *shp, int cmd);
1521 int (*shm_shmat) (struct shmid_kernel *shp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 char __user *shmaddr, int shmflg);
1523
Eric Paris7b41b172008-04-23 14:10:25 -04001524 int (*sem_alloc_security) (struct sem_array *sma);
1525 void (*sem_free_security) (struct sem_array *sma);
1526 int (*sem_associate) (struct sem_array *sma, int semflg);
1527 int (*sem_semctl) (struct sem_array *sma, int cmd);
1528 int (*sem_semop) (struct sem_array *sma,
1529 struct sembuf *sops, unsigned nsops, int alter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Eric Paris7b41b172008-04-23 14:10:25 -04001531 int (*netlink_send) (struct sock *sk, struct sk_buff *skb);
1532 int (*netlink_recv) (struct sk_buff *skb, int cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 void (*d_instantiate) (struct dentry *dentry, struct inode *inode);
1535
Eric Paris7b41b172008-04-23 14:10:25 -04001536 int (*getprocattr) (struct task_struct *p, char *name, char **value);
1537 int (*setprocattr) (struct task_struct *p, char *name, void *value, size_t size);
1538 int (*secid_to_secctx) (u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001539 int (*secctx_to_secid) (const char *secdata, u32 seclen, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001540 void (*release_secctx) (char *secdata, u32 seclen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542#ifdef CONFIG_SECURITY_NETWORK
Eric Paris7b41b172008-04-23 14:10:25 -04001543 int (*unix_stream_connect) (struct socket *sock,
1544 struct socket *other, struct sock *newsk);
1545 int (*unix_may_send) (struct socket *sock, struct socket *other);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
1547 int (*socket_create) (int family, int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001548 int (*socket_post_create) (struct socket *sock, int family,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07001549 int type, int protocol, int kern);
Eric Paris7b41b172008-04-23 14:10:25 -04001550 int (*socket_bind) (struct socket *sock,
1551 struct sockaddr *address, int addrlen);
1552 int (*socket_connect) (struct socket *sock,
1553 struct sockaddr *address, int addrlen);
1554 int (*socket_listen) (struct socket *sock, int backlog);
1555 int (*socket_accept) (struct socket *sock, struct socket *newsock);
Eric Paris7b41b172008-04-23 14:10:25 -04001556 int (*socket_sendmsg) (struct socket *sock,
1557 struct msghdr *msg, int size);
1558 int (*socket_recvmsg) (struct socket *sock,
1559 struct msghdr *msg, int size, int flags);
1560 int (*socket_getsockname) (struct socket *sock);
1561 int (*socket_getpeername) (struct socket *sock);
1562 int (*socket_getsockopt) (struct socket *sock, int level, int optname);
1563 int (*socket_setsockopt) (struct socket *sock, int level, int optname);
1564 int (*socket_shutdown) (struct socket *sock, int how);
1565 int (*socket_sock_rcv_skb) (struct sock *sk, struct sk_buff *skb);
Catherine Zhang2c7946a2006-03-20 22:41:23 -08001566 int (*socket_getpeersec_stream) (struct socket *sock, char __user *optval, int __user *optlen, unsigned len);
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07001567 int (*socket_getpeersec_dgram) (struct socket *sock, struct sk_buff *skb, u32 *secid);
Al Viro7d877f32005-10-21 03:20:43 -04001568 int (*sk_alloc_security) (struct sock *sk, int family, gfp_t priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 void (*sk_free_security) (struct sock *sk);
Venkat Yekkirala892c1412006-08-04 23:08:56 -07001570 void (*sk_clone_security) (const struct sock *sk, struct sock *newsk);
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07001571 void (*sk_getsecid) (struct sock *sk, u32 *secid);
Eric Paris7b41b172008-04-23 14:10:25 -04001572 void (*sock_graft) (struct sock *sk, struct socket *parent);
1573 int (*inet_conn_request) (struct sock *sk, struct sk_buff *skb,
1574 struct request_sock *req);
1575 void (*inet_csk_clone) (struct sock *newsk, const struct request_sock *req);
1576 void (*inet_conn_established) (struct sock *sk, struct sk_buff *skb);
1577 void (*req_classify_flow) (const struct request_sock *req, struct flowi *fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578#endif /* CONFIG_SECURITY_NETWORK */
David Howells29db9192005-10-30 15:02:44 -08001579
Trent Jaegerdf718372005-12-13 23:12:27 -08001580#ifdef CONFIG_SECURITY_NETWORK_XFRM
Paul Moore03e1ad72008-04-12 19:07:52 -07001581 int (*xfrm_policy_alloc_security) (struct xfrm_sec_ctx **ctxp,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001582 struct xfrm_user_sec_ctx *sec_ctx);
Paul Moore03e1ad72008-04-12 19:07:52 -07001583 int (*xfrm_policy_clone_security) (struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctx);
1584 void (*xfrm_policy_free_security) (struct xfrm_sec_ctx *ctx);
1585 int (*xfrm_policy_delete_security) (struct xfrm_sec_ctx *ctx);
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001586 int (*xfrm_state_alloc_security) (struct xfrm_state *x,
Venkat Yekkiralac1a856c2006-11-08 17:03:44 -06001587 struct xfrm_user_sec_ctx *sec_ctx,
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07001588 u32 secid);
Trent Jaegerdf718372005-12-13 23:12:27 -08001589 void (*xfrm_state_free_security) (struct xfrm_state *x);
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001590 int (*xfrm_state_delete_security) (struct xfrm_state *x);
Eric Paris7b41b172008-04-23 14:10:25 -04001591 int (*xfrm_policy_lookup) (struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
1592 int (*xfrm_state_pol_flow_match) (struct xfrm_state *x,
1593 struct xfrm_policy *xp,
1594 struct flowi *fl);
1595 int (*xfrm_decode_session) (struct sk_buff *skb, u32 *secid, int ckall);
Trent Jaegerdf718372005-12-13 23:12:27 -08001596#endif /* CONFIG_SECURITY_NETWORK_XFRM */
1597
David Howells29db9192005-10-30 15:02:44 -08001598 /* key management security hooks */
1599#ifdef CONFIG_KEYS
David Howellsd84f4f92008-11-14 10:39:23 +11001600 int (*key_alloc) (struct key *key, const struct cred *cred, unsigned long flags);
Eric Paris7b41b172008-04-23 14:10:25 -04001601 void (*key_free) (struct key *key);
1602 int (*key_permission) (key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11001603 const struct cred *cred,
Eric Paris7b41b172008-04-23 14:10:25 -04001604 key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07001605 int (*key_getsecurity)(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08001606#endif /* CONFIG_KEYS */
1607
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001608#ifdef CONFIG_AUDIT
Eric Paris7b41b172008-04-23 14:10:25 -04001609 int (*audit_rule_init) (u32 field, u32 op, char *rulestr, void **lsmrule);
1610 int (*audit_rule_known) (struct audit_krule *krule);
1611 int (*audit_rule_match) (u32 secid, u32 field, u32 op, void *lsmrule,
1612 struct audit_context *actx);
1613 void (*audit_rule_free) (void *lsmrule);
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02001614#endif /* CONFIG_AUDIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615};
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617/* prototypes */
Eric Paris7b41b172008-04-23 14:10:25 -04001618extern int security_init(void);
Ahmed S. Darwish076c54c2008-03-06 18:09:10 +02001619extern int security_module_enable(struct security_operations *ops);
Eric Paris7b41b172008-04-23 14:10:25 -04001620extern int register_security(struct security_operations *ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
James Morris20510f22007-10-16 23:31:32 -07001622/* Security operations */
Ingo Molnar9e488582009-05-07 19:26:19 +10001623int security_ptrace_access_check(struct task_struct *child, unsigned int mode);
David Howells5cd9c582008-08-14 11:37:28 +01001624int security_ptrace_traceme(struct task_struct *parent);
James Morris20510f22007-10-16 23:31:32 -07001625int security_capget(struct task_struct *target,
Eric Paris7b41b172008-04-23 14:10:25 -04001626 kernel_cap_t *effective,
1627 kernel_cap_t *inheritable,
1628 kernel_cap_t *permitted);
David Howellsd84f4f92008-11-14 10:39:23 +11001629int security_capset(struct cred *new, const struct cred *old,
1630 const kernel_cap_t *effective,
1631 const kernel_cap_t *inheritable,
1632 const kernel_cap_t *permitted);
David Howells3699c532009-01-06 22:27:01 +00001633int security_capable(int cap);
1634int security_real_capable(struct task_struct *tsk, int cap);
1635int security_real_capable_noaudit(struct task_struct *tsk, int cap);
James Morris20510f22007-10-16 23:31:32 -07001636int security_acct(struct file *file);
1637int security_sysctl(struct ctl_table *table, int op);
1638int security_quotactl(int cmds, int type, int id, struct super_block *sb);
1639int security_quota_on(struct dentry *dentry);
1640int security_syslog(int type);
1641int security_settime(struct timespec *ts, struct timezone *tz);
1642int security_vm_enough_memory(long pages);
1643int security_vm_enough_memory_mm(struct mm_struct *mm, long pages);
Alan Cox731572d2008-10-29 14:01:20 -07001644int security_vm_enough_memory_kern(long pages);
David Howellsa6f76f22008-11-14 10:39:24 +11001645int security_bprm_set_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001646int security_bprm_check(struct linux_binprm *bprm);
David Howellsa6f76f22008-11-14 10:39:24 +11001647void security_bprm_committing_creds(struct linux_binprm *bprm);
1648void security_bprm_committed_creds(struct linux_binprm *bprm);
James Morris20510f22007-10-16 23:31:32 -07001649int security_bprm_secureexec(struct linux_binprm *bprm);
1650int security_sb_alloc(struct super_block *sb);
1651void security_sb_free(struct super_block *sb);
Eric Parise0007522008-03-05 10:31:54 -05001652int security_sb_copy_data(char *orig, char *copy);
James Morris12204e22008-12-19 10:44:42 +11001653int security_sb_kern_mount(struct super_block *sb, int flags, void *data);
Eric Paris2069f452008-07-04 09:47:13 +10001654int security_sb_show_options(struct seq_file *m, struct super_block *sb);
James Morris20510f22007-10-16 23:31:32 -07001655int security_sb_statfs(struct dentry *dentry);
Al Virob5266eb2008-03-22 17:48:24 -04001656int security_sb_mount(char *dev_name, struct path *path,
Eric Paris7b41b172008-04-23 14:10:25 -04001657 char *type, unsigned long flags, void *data);
Al Virob5266eb2008-03-22 17:48:24 -04001658int security_sb_check_sb(struct vfsmount *mnt, struct path *path);
James Morris20510f22007-10-16 23:31:32 -07001659int security_sb_umount(struct vfsmount *mnt, int flags);
1660void security_sb_umount_close(struct vfsmount *mnt);
1661void security_sb_umount_busy(struct vfsmount *mnt);
1662void security_sb_post_remount(struct vfsmount *mnt, unsigned long flags, void *data);
Al Virob5266eb2008-03-22 17:48:24 -04001663void security_sb_post_addmount(struct vfsmount *mnt, struct path *mountpoint);
1664int security_sb_pivotroot(struct path *old_path, struct path *new_path);
1665void security_sb_post_pivotroot(struct path *old_path, struct path *new_path);
Eric Parise0007522008-03-05 10:31:54 -05001666int security_sb_set_mnt_opts(struct super_block *sb, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001667void security_sb_clone_mnt_opts(const struct super_block *oldsb,
1668 struct super_block *newsb);
Eric Parise0007522008-03-05 10:31:54 -05001669int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts);
Eric Parisc9180a52007-11-30 13:00:35 -05001670
James Morris20510f22007-10-16 23:31:32 -07001671int security_inode_alloc(struct inode *inode);
1672void security_inode_free(struct inode *inode);
1673int security_inode_init_security(struct inode *inode, struct inode *dir,
1674 char **name, void **value, size_t *len);
1675int security_inode_create(struct inode *dir, struct dentry *dentry, int mode);
1676int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1677 struct dentry *new_dentry);
1678int security_inode_unlink(struct inode *dir, struct dentry *dentry);
1679int security_inode_symlink(struct inode *dir, struct dentry *dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001680 const char *old_name);
James Morris20510f22007-10-16 23:31:32 -07001681int security_inode_mkdir(struct inode *dir, struct dentry *dentry, int mode);
1682int security_inode_rmdir(struct inode *dir, struct dentry *dentry);
1683int security_inode_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
1684int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
Eric Paris7b41b172008-04-23 14:10:25 -04001685 struct inode *new_dir, struct dentry *new_dentry);
James Morris20510f22007-10-16 23:31:32 -07001686int security_inode_readlink(struct dentry *dentry);
1687int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd);
Al Virob77b0642008-07-17 09:37:02 -04001688int security_inode_permission(struct inode *inode, int mask);
James Morris20510f22007-10-16 23:31:32 -07001689int security_inode_setattr(struct dentry *dentry, struct iattr *attr);
1690int security_inode_getattr(struct vfsmount *mnt, struct dentry *dentry);
1691void security_inode_delete(struct inode *inode);
David Howells8f0cfa52008-04-29 00:59:41 -07001692int security_inode_setxattr(struct dentry *dentry, const char *name,
1693 const void *value, size_t size, int flags);
1694void security_inode_post_setxattr(struct dentry *dentry, const char *name,
1695 const void *value, size_t size, int flags);
1696int security_inode_getxattr(struct dentry *dentry, const char *name);
James Morris20510f22007-10-16 23:31:32 -07001697int security_inode_listxattr(struct dentry *dentry);
David Howells8f0cfa52008-04-29 00:59:41 -07001698int security_inode_removexattr(struct dentry *dentry, const char *name);
Serge E. Hallynb5376772007-10-16 23:31:36 -07001699int security_inode_need_killpriv(struct dentry *dentry);
1700int security_inode_killpriv(struct dentry *dentry);
David P. Quigley42492592008-02-04 22:29:39 -08001701int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc);
James Morris20510f22007-10-16 23:31:32 -07001702int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags);
1703int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001704void security_inode_getsecid(const struct inode *inode, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001705int security_file_permission(struct file *file, int mask);
1706int security_file_alloc(struct file *file);
1707void security_file_free(struct file *file);
1708int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1709int security_file_mmap(struct file *file, unsigned long reqprot,
1710 unsigned long prot, unsigned long flags,
1711 unsigned long addr, unsigned long addr_only);
1712int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
Eric Paris7b41b172008-04-23 14:10:25 -04001713 unsigned long prot);
James Morris20510f22007-10-16 23:31:32 -07001714int security_file_lock(struct file *file, unsigned int cmd);
1715int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg);
1716int security_file_set_fowner(struct file *file);
1717int security_file_send_sigiotask(struct task_struct *tsk,
Eric Paris7b41b172008-04-23 14:10:25 -04001718 struct fown_struct *fown, int sig);
James Morris20510f22007-10-16 23:31:32 -07001719int security_file_receive(struct file *file);
David Howells745ca242008-11-14 10:39:22 +11001720int security_dentry_open(struct file *file, const struct cred *cred);
James Morris20510f22007-10-16 23:31:32 -07001721int security_task_create(unsigned long clone_flags);
David Howellsf1752ee2008-11-14 10:39:17 +11001722void security_cred_free(struct cred *cred);
David Howellsd84f4f92008-11-14 10:39:23 +11001723int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp);
1724void security_commit_creds(struct cred *new, const struct cred *old);
David Howells3a3b7ce2008-11-14 10:39:28 +11001725int security_kernel_act_as(struct cred *new, u32 secid);
1726int security_kernel_create_files_as(struct cred *new, struct inode *inode);
James Morris20510f22007-10-16 23:31:32 -07001727int security_task_setuid(uid_t id0, uid_t id1, uid_t id2, int flags);
David Howellsd84f4f92008-11-14 10:39:23 +11001728int security_task_fix_setuid(struct cred *new, const struct cred *old,
1729 int flags);
James Morris20510f22007-10-16 23:31:32 -07001730int security_task_setgid(gid_t id0, gid_t id1, gid_t id2, int flags);
1731int security_task_setpgid(struct task_struct *p, pid_t pgid);
1732int security_task_getpgid(struct task_struct *p);
1733int security_task_getsid(struct task_struct *p);
1734void security_task_getsecid(struct task_struct *p, u32 *secid);
1735int security_task_setgroups(struct group_info *group_info);
1736int security_task_setnice(struct task_struct *p, int nice);
1737int security_task_setioprio(struct task_struct *p, int ioprio);
1738int security_task_getioprio(struct task_struct *p);
1739int security_task_setrlimit(unsigned int resource, struct rlimit *new_rlim);
1740int security_task_setscheduler(struct task_struct *p,
1741 int policy, struct sched_param *lp);
1742int security_task_getscheduler(struct task_struct *p);
1743int security_task_movememory(struct task_struct *p);
1744int security_task_kill(struct task_struct *p, struct siginfo *info,
1745 int sig, u32 secid);
1746int security_task_wait(struct task_struct *p);
1747int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
David Howellsd84f4f92008-11-14 10:39:23 +11001748 unsigned long arg4, unsigned long arg5);
James Morris20510f22007-10-16 23:31:32 -07001749void security_task_to_inode(struct task_struct *p, struct inode *inode);
1750int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag);
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02001751void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001752int security_msg_msg_alloc(struct msg_msg *msg);
1753void security_msg_msg_free(struct msg_msg *msg);
1754int security_msg_queue_alloc(struct msg_queue *msq);
1755void security_msg_queue_free(struct msg_queue *msq);
1756int security_msg_queue_associate(struct msg_queue *msq, int msqflg);
1757int security_msg_queue_msgctl(struct msg_queue *msq, int cmd);
1758int security_msg_queue_msgsnd(struct msg_queue *msq,
Eric Paris7b41b172008-04-23 14:10:25 -04001759 struct msg_msg *msg, int msqflg);
James Morris20510f22007-10-16 23:31:32 -07001760int security_msg_queue_msgrcv(struct msg_queue *msq, struct msg_msg *msg,
Eric Paris7b41b172008-04-23 14:10:25 -04001761 struct task_struct *target, long type, int mode);
James Morris20510f22007-10-16 23:31:32 -07001762int security_shm_alloc(struct shmid_kernel *shp);
1763void security_shm_free(struct shmid_kernel *shp);
1764int security_shm_associate(struct shmid_kernel *shp, int shmflg);
1765int security_shm_shmctl(struct shmid_kernel *shp, int cmd);
1766int security_shm_shmat(struct shmid_kernel *shp, char __user *shmaddr, int shmflg);
1767int security_sem_alloc(struct sem_array *sma);
1768void security_sem_free(struct sem_array *sma);
1769int security_sem_associate(struct sem_array *sma, int semflg);
1770int security_sem_semctl(struct sem_array *sma, int cmd);
1771int security_sem_semop(struct sem_array *sma, struct sembuf *sops,
1772 unsigned nsops, int alter);
Eric Paris7b41b172008-04-23 14:10:25 -04001773void security_d_instantiate(struct dentry *dentry, struct inode *inode);
James Morris20510f22007-10-16 23:31:32 -07001774int security_getprocattr(struct task_struct *p, char *name, char **value);
1775int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size);
1776int security_netlink_send(struct sock *sk, struct sk_buff *skb);
1777int security_netlink_recv(struct sk_buff *skb, int cap);
1778int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen);
David Howells7bf570d2008-04-29 20:52:51 +01001779int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid);
James Morris20510f22007-10-16 23:31:32 -07001780void security_release_secctx(char *secdata, u32 seclen);
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782#else /* CONFIG_SECURITY */
Eric Parise0007522008-03-05 10:31:54 -05001783struct security_mnt_opts {
1784};
1785
1786static inline void security_init_mnt_opts(struct security_mnt_opts *opts)
1787{
1788}
1789
1790static inline void security_free_mnt_opts(struct security_mnt_opts *opts)
1791{
1792}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794/*
1795 * This is the default capabilities functionality. Most of these functions
1796 * are just stubbed out, but a few must call the proper capable code.
1797 */
1798
1799static inline int security_init(void)
1800{
1801 return 0;
1802}
1803
Ingo Molnar9e488582009-05-07 19:26:19 +10001804static inline int security_ptrace_access_check(struct task_struct *child,
David Howells5cd9c582008-08-14 11:37:28 +01001805 unsigned int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806{
Ingo Molnar9e488582009-05-07 19:26:19 +10001807 return cap_ptrace_access_check(child, mode);
David Howells5cd9c582008-08-14 11:37:28 +01001808}
1809
Alexander Beregalov5e186b52008-08-17 05:34:20 +04001810static inline int security_ptrace_traceme(struct task_struct *parent)
David Howells5cd9c582008-08-14 11:37:28 +01001811{
1812 return cap_ptrace_traceme(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Eric Paris7b41b172008-04-23 14:10:25 -04001815static inline int security_capget(struct task_struct *target,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 kernel_cap_t *effective,
1817 kernel_cap_t *inheritable,
1818 kernel_cap_t *permitted)
1819{
Eric Paris7b41b172008-04-23 14:10:25 -04001820 return cap_capget(target, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
David Howellsd84f4f92008-11-14 10:39:23 +11001823static inline int security_capset(struct cred *new,
1824 const struct cred *old,
1825 const kernel_cap_t *effective,
1826 const kernel_cap_t *inheritable,
1827 const kernel_cap_t *permitted)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
David Howellsd84f4f92008-11-14 10:39:23 +11001829 return cap_capset(new, old, effective, inheritable, permitted);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
David Howells3699c532009-01-06 22:27:01 +00001832static inline int security_capable(int cap)
Chris Wright12b59892006-03-25 03:07:41 -08001833{
David Howells3699c532009-01-06 22:27:01 +00001834 return cap_capable(current, current_cred(), cap, SECURITY_CAP_AUDIT);
Eric Paris06112162008-11-11 22:02:50 +11001835}
1836
David Howells3699c532009-01-06 22:27:01 +00001837static inline int security_real_capable(struct task_struct *tsk, int cap)
Eric Paris06112162008-11-11 22:02:50 +11001838{
David Howells3699c532009-01-06 22:27:01 +00001839 int ret;
1840
1841 rcu_read_lock();
1842 ret = cap_capable(tsk, __task_cred(tsk), cap, SECURITY_CAP_AUDIT);
1843 rcu_read_unlock();
1844 return ret;
1845}
1846
1847static inline
1848int security_real_capable_noaudit(struct task_struct *tsk, int cap)
1849{
1850 int ret;
1851
1852 rcu_read_lock();
1853 ret = cap_capable(tsk, __task_cred(tsk), cap,
1854 SECURITY_CAP_NOAUDIT);
1855 rcu_read_unlock();
1856 return ret;
Chris Wright12b59892006-03-25 03:07:41 -08001857}
1858
Eric Paris7b41b172008-04-23 14:10:25 -04001859static inline int security_acct(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
1861 return 0;
1862}
1863
1864static inline int security_sysctl(struct ctl_table *table, int op)
1865{
1866 return 0;
1867}
1868
Eric Paris7b41b172008-04-23 14:10:25 -04001869static inline int security_quotactl(int cmds, int type, int id,
1870 struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 return 0;
1873}
1874
Eric Paris7b41b172008-04-23 14:10:25 -04001875static inline int security_quota_on(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 return 0;
1878}
1879
1880static inline int security_syslog(int type)
1881{
1882 return cap_syslog(type);
1883}
1884
1885static inline int security_settime(struct timespec *ts, struct timezone *tz)
1886{
1887 return cap_settime(ts, tz);
1888}
1889
1890static inline int security_vm_enough_memory(long pages)
1891{
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001892 WARN_ON(current->mm == NULL);
Alan Cox731572d2008-10-29 14:01:20 -07001893 return cap_vm_enough_memory(current->mm, pages);
1894}
1895
Alan Cox34b4e4a2007-08-22 14:01:28 -07001896static inline int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1897{
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001898 WARN_ON(mm == NULL);
Alan Cox34b4e4a2007-08-22 14:01:28 -07001899 return cap_vm_enough_memory(mm, pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900}
1901
Junjiro R. Okajima1b79cd02008-12-02 10:31:46 -08001902static inline int security_vm_enough_memory_kern(long pages)
1903{
1904 /* If current->mm is a kernel thread then we will pass NULL,
1905 for this specific case that is fine */
1906 return cap_vm_enough_memory(current->mm, pages);
1907}
1908
David Howellsa6f76f22008-11-14 10:39:24 +11001909static inline int security_bprm_set_creds(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
David Howellsa6f76f22008-11-14 10:39:24 +11001911 return cap_bprm_set_creds(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912}
1913
Eric Paris7b41b172008-04-23 14:10:25 -04001914static inline int security_bprm_check(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915{
1916 return 0;
1917}
1918
David Howellsa6f76f22008-11-14 10:39:24 +11001919static inline void security_bprm_committing_creds(struct linux_binprm *bprm)
1920{
1921}
1922
1923static inline void security_bprm_committed_creds(struct linux_binprm *bprm)
1924{
1925}
1926
Eric Paris7b41b172008-04-23 14:10:25 -04001927static inline int security_bprm_secureexec(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
1929 return cap_bprm_secureexec(bprm);
1930}
1931
Eric Paris7b41b172008-04-23 14:10:25 -04001932static inline int security_sb_alloc(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933{
1934 return 0;
1935}
1936
Eric Paris7b41b172008-04-23 14:10:25 -04001937static inline void security_sb_free(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{ }
1939
Eric Paris7b41b172008-04-23 14:10:25 -04001940static inline int security_sb_copy_data(char *orig, char *copy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 return 0;
1943}
1944
James Morris12204e22008-12-19 10:44:42 +11001945static inline int security_sb_kern_mount(struct super_block *sb, int flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
1947 return 0;
1948}
1949
Eric Paris2069f452008-07-04 09:47:13 +10001950static inline int security_sb_show_options(struct seq_file *m,
1951 struct super_block *sb)
1952{
1953 return 0;
1954}
1955
Eric Paris7b41b172008-04-23 14:10:25 -04001956static inline int security_sb_statfs(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 return 0;
1959}
1960
Eric Paris7b41b172008-04-23 14:10:25 -04001961static inline int security_sb_mount(char *dev_name, struct path *path,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 char *type, unsigned long flags,
1963 void *data)
1964{
1965 return 0;
1966}
1967
Eric Paris7b41b172008-04-23 14:10:25 -04001968static inline int security_sb_check_sb(struct vfsmount *mnt,
1969 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 return 0;
1972}
1973
Eric Paris7b41b172008-04-23 14:10:25 -04001974static inline int security_sb_umount(struct vfsmount *mnt, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 return 0;
1977}
1978
Eric Paris7b41b172008-04-23 14:10:25 -04001979static inline void security_sb_umount_close(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{ }
1981
Eric Paris7b41b172008-04-23 14:10:25 -04001982static inline void security_sb_umount_busy(struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983{ }
1984
Eric Paris7b41b172008-04-23 14:10:25 -04001985static inline void security_sb_post_remount(struct vfsmount *mnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 unsigned long flags, void *data)
1987{ }
1988
Eric Paris7b41b172008-04-23 14:10:25 -04001989static inline void security_sb_post_addmount(struct vfsmount *mnt,
1990 struct path *mountpoint)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{ }
1992
Eric Paris7b41b172008-04-23 14:10:25 -04001993static inline int security_sb_pivotroot(struct path *old_path,
1994 struct path *new_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 return 0;
1997}
1998
Eric Paris7b41b172008-04-23 14:10:25 -04001999static inline void security_sb_post_pivotroot(struct path *old_path,
2000 struct path *new_path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{ }
Eric Parise0007522008-03-05 10:31:54 -05002002
2003static inline int security_sb_set_mnt_opts(struct super_block *sb,
2004 struct security_mnt_opts *opts)
2005{
2006 return 0;
2007}
2008
2009static inline void security_sb_clone_mnt_opts(const struct super_block *oldsb,
2010 struct super_block *newsb)
2011{ }
2012
2013static inline int security_sb_parse_opts_str(char *options, struct security_mnt_opts *opts)
2014{
2015 return 0;
2016}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Eric Paris7b41b172008-04-23 14:10:25 -04002018static inline int security_inode_alloc(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 return 0;
2021}
2022
Eric Paris7b41b172008-04-23 14:10:25 -04002023static inline void security_inode_free(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{ }
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002025
Eric Paris7b41b172008-04-23 14:10:25 -04002026static inline int security_inode_init_security(struct inode *inode,
Stephen Smalley5e41ff92005-09-09 13:01:35 -07002027 struct inode *dir,
2028 char **name,
2029 void **value,
2030 size_t *len)
2031{
2032 return -EOPNOTSUPP;
2033}
Eric Paris7b41b172008-04-23 14:10:25 -04002034
2035static inline int security_inode_create(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 struct dentry *dentry,
2037 int mode)
2038{
2039 return 0;
2040}
2041
Eric Paris7b41b172008-04-23 14:10:25 -04002042static inline int security_inode_link(struct dentry *old_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct inode *dir,
2044 struct dentry *new_dentry)
2045{
2046 return 0;
2047}
2048
Eric Paris7b41b172008-04-23 14:10:25 -04002049static inline int security_inode_unlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 struct dentry *dentry)
2051{
2052 return 0;
2053}
2054
Eric Paris7b41b172008-04-23 14:10:25 -04002055static inline int security_inode_symlink(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 struct dentry *dentry,
2057 const char *old_name)
2058{
2059 return 0;
2060}
2061
Eric Paris7b41b172008-04-23 14:10:25 -04002062static inline int security_inode_mkdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct dentry *dentry,
2064 int mode)
2065{
2066 return 0;
2067}
2068
Eric Paris7b41b172008-04-23 14:10:25 -04002069static inline int security_inode_rmdir(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 struct dentry *dentry)
2071{
2072 return 0;
2073}
2074
Eric Paris7b41b172008-04-23 14:10:25 -04002075static inline int security_inode_mknod(struct inode *dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 struct dentry *dentry,
2077 int mode, dev_t dev)
2078{
2079 return 0;
2080}
2081
Eric Paris7b41b172008-04-23 14:10:25 -04002082static inline int security_inode_rename(struct inode *old_dir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 struct dentry *old_dentry,
2084 struct inode *new_dir,
2085 struct dentry *new_dentry)
2086{
2087 return 0;
2088}
2089
Eric Paris7b41b172008-04-23 14:10:25 -04002090static inline int security_inode_readlink(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
2092 return 0;
2093}
2094
Eric Paris7b41b172008-04-23 14:10:25 -04002095static inline int security_inode_follow_link(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 struct nameidata *nd)
2097{
2098 return 0;
2099}
2100
Al Virob77b0642008-07-17 09:37:02 -04002101static inline int security_inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 return 0;
2104}
2105
Eric Paris7b41b172008-04-23 14:10:25 -04002106static inline int security_inode_setattr(struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 struct iattr *attr)
2108{
2109 return 0;
2110}
2111
Eric Paris7b41b172008-04-23 14:10:25 -04002112static inline int security_inode_getattr(struct vfsmount *mnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 struct dentry *dentry)
2114{
2115 return 0;
2116}
2117
Eric Paris7b41b172008-04-23 14:10:25 -04002118static inline void security_inode_delete(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{ }
2120
David Howells8f0cfa52008-04-29 00:59:41 -07002121static inline int security_inode_setxattr(struct dentry *dentry,
2122 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123{
2124 return cap_inode_setxattr(dentry, name, value, size, flags);
2125}
2126
David Howells8f0cfa52008-04-29 00:59:41 -07002127static inline void security_inode_post_setxattr(struct dentry *dentry,
2128 const char *name, const void *value, size_t size, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{ }
2130
David Howells8f0cfa52008-04-29 00:59:41 -07002131static inline int security_inode_getxattr(struct dentry *dentry,
2132 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 return 0;
2135}
2136
Eric Paris7b41b172008-04-23 14:10:25 -04002137static inline int security_inode_listxattr(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
2139 return 0;
2140}
2141
David Howells8f0cfa52008-04-29 00:59:41 -07002142static inline int security_inode_removexattr(struct dentry *dentry,
2143 const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 return cap_inode_removexattr(dentry, name);
2146}
2147
Serge E. Hallynb5376772007-10-16 23:31:36 -07002148static inline int security_inode_need_killpriv(struct dentry *dentry)
2149{
2150 return cap_inode_need_killpriv(dentry);
2151}
2152
2153static inline int security_inode_killpriv(struct dentry *dentry)
2154{
2155 return cap_inode_killpriv(dentry);
2156}
2157
David P. Quigley42492592008-02-04 22:29:39 -08002158static inline int security_inode_getsecurity(const struct inode *inode, const char *name, void **buffer, bool alloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 return -EOPNOTSUPP;
2161}
2162
2163static inline int security_inode_setsecurity(struct inode *inode, const char *name, const void *value, size_t size, int flags)
2164{
2165 return -EOPNOTSUPP;
2166}
2167
2168static inline int security_inode_listsecurity(struct inode *inode, char *buffer, size_t buffer_size)
2169{
2170 return 0;
2171}
2172
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002173static inline void security_inode_getsecid(const struct inode *inode, u32 *secid)
2174{
2175 *secid = 0;
2176}
2177
Eric Paris7b41b172008-04-23 14:10:25 -04002178static inline int security_file_permission(struct file *file, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 return 0;
2181}
2182
Eric Paris7b41b172008-04-23 14:10:25 -04002183static inline int security_file_alloc(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
2185 return 0;
2186}
2187
Eric Paris7b41b172008-04-23 14:10:25 -04002188static inline void security_file_free(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{ }
2190
Eric Paris7b41b172008-04-23 14:10:25 -04002191static inline int security_file_ioctl(struct file *file, unsigned int cmd,
2192 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 return 0;
2195}
2196
Eric Paris7b41b172008-04-23 14:10:25 -04002197static inline int security_file_mmap(struct file *file, unsigned long reqprot,
2198 unsigned long prot,
2199 unsigned long flags,
2200 unsigned long addr,
2201 unsigned long addr_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202{
Eric Paris7c738752009-07-31 12:53:58 -04002203 return cap_file_mmap(file, reqprot, prot, flags, addr, addr_only);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204}
2205
Eric Paris7b41b172008-04-23 14:10:25 -04002206static inline int security_file_mprotect(struct vm_area_struct *vma,
2207 unsigned long reqprot,
2208 unsigned long prot)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209{
2210 return 0;
2211}
2212
Eric Paris7b41b172008-04-23 14:10:25 -04002213static inline int security_file_lock(struct file *file, unsigned int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 return 0;
2216}
2217
Eric Paris7b41b172008-04-23 14:10:25 -04002218static inline int security_file_fcntl(struct file *file, unsigned int cmd,
2219 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
2221 return 0;
2222}
2223
Eric Paris7b41b172008-04-23 14:10:25 -04002224static inline int security_file_set_fowner(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 return 0;
2227}
2228
Eric Paris7b41b172008-04-23 14:10:25 -04002229static inline int security_file_send_sigiotask(struct task_struct *tsk,
2230 struct fown_struct *fown,
2231 int sig)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232{
2233 return 0;
2234}
2235
Eric Paris7b41b172008-04-23 14:10:25 -04002236static inline int security_file_receive(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
2238 return 0;
2239}
2240
David Howells745ca242008-11-14 10:39:22 +11002241static inline int security_dentry_open(struct file *file,
2242 const struct cred *cred)
Yuichi Nakamura788e7dd2007-09-14 09:27:07 +09002243{
2244 return 0;
2245}
2246
Eric Paris7b41b172008-04-23 14:10:25 -04002247static inline int security_task_create(unsigned long clone_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 return 0;
2250}
2251
David Howellsd84f4f92008-11-14 10:39:23 +11002252static inline void security_cred_free(struct cred *cred)
2253{ }
2254
2255static inline int security_prepare_creds(struct cred *new,
2256 const struct cred *old,
2257 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258{
2259 return 0;
2260}
2261
David Howellsd84f4f92008-11-14 10:39:23 +11002262static inline void security_commit_creds(struct cred *new,
2263 const struct cred *old)
2264{
2265}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
David Howells3a3b7ce2008-11-14 10:39:28 +11002267static inline int security_kernel_act_as(struct cred *cred, u32 secid)
2268{
2269 return 0;
2270}
2271
2272static inline int security_kernel_create_files_as(struct cred *cred,
2273 struct inode *inode)
2274{
2275 return 0;
2276}
2277
Eric Paris7b41b172008-04-23 14:10:25 -04002278static inline int security_task_setuid(uid_t id0, uid_t id1, uid_t id2,
2279 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
2281 return 0;
2282}
2283
David Howellsd84f4f92008-11-14 10:39:23 +11002284static inline int security_task_fix_setuid(struct cred *new,
2285 const struct cred *old,
2286 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
David Howellsd84f4f92008-11-14 10:39:23 +11002288 return cap_task_fix_setuid(new, old, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Eric Paris7b41b172008-04-23 14:10:25 -04002291static inline int security_task_setgid(gid_t id0, gid_t id1, gid_t id2,
2292 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293{
2294 return 0;
2295}
2296
Eric Paris7b41b172008-04-23 14:10:25 -04002297static inline int security_task_setpgid(struct task_struct *p, pid_t pgid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
2299 return 0;
2300}
2301
Eric Paris7b41b172008-04-23 14:10:25 -04002302static inline int security_task_getpgid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
2304 return 0;
2305}
2306
Eric Paris7b41b172008-04-23 14:10:25 -04002307static inline int security_task_getsid(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 return 0;
2310}
2311
Eric Paris7b41b172008-04-23 14:10:25 -04002312static inline void security_task_getsecid(struct task_struct *p, u32 *secid)
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002313{
2314 *secid = 0;
2315}
David Quigleyf9008e42006-06-30 01:55:46 -07002316
Eric Paris7b41b172008-04-23 14:10:25 -04002317static inline int security_task_setgroups(struct group_info *group_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
2319 return 0;
2320}
2321
Eric Paris7b41b172008-04-23 14:10:25 -04002322static inline int security_task_setnice(struct task_struct *p, int nice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002324 return cap_task_setnice(p, nice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325}
2326
Eric Paris7b41b172008-04-23 14:10:25 -04002327static inline int security_task_setioprio(struct task_struct *p, int ioprio)
James Morris03e68062006-06-23 02:03:58 -07002328{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002329 return cap_task_setioprio(p, ioprio);
James Morris03e68062006-06-23 02:03:58 -07002330}
2331
Eric Paris7b41b172008-04-23 14:10:25 -04002332static inline int security_task_getioprio(struct task_struct *p)
David Quigleya1836a42006-06-30 01:55:49 -07002333{
2334 return 0;
2335}
2336
Eric Paris7b41b172008-04-23 14:10:25 -04002337static inline int security_task_setrlimit(unsigned int resource,
2338 struct rlimit *new_rlim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 return 0;
2341}
2342
Eric Paris7b41b172008-04-23 14:10:25 -04002343static inline int security_task_setscheduler(struct task_struct *p,
2344 int policy,
2345 struct sched_param *lp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Serge E. Hallynb5376772007-10-16 23:31:36 -07002347 return cap_task_setscheduler(p, policy, lp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
Eric Paris7b41b172008-04-23 14:10:25 -04002350static inline int security_task_getscheduler(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
2352 return 0;
2353}
2354
Eric Paris7b41b172008-04-23 14:10:25 -04002355static inline int security_task_movememory(struct task_struct *p)
David Quigley35601542006-06-23 02:04:01 -07002356{
2357 return 0;
2358}
2359
Eric Paris7b41b172008-04-23 14:10:25 -04002360static inline int security_task_kill(struct task_struct *p,
2361 struct siginfo *info, int sig,
2362 u32 secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
Serge Hallynaedb60a2008-02-29 15:14:57 +00002364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
Eric Paris7b41b172008-04-23 14:10:25 -04002367static inline int security_task_wait(struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
2369 return 0;
2370}
2371
Eric Paris7b41b172008-04-23 14:10:25 -04002372static inline int security_task_prctl(int option, unsigned long arg2,
2373 unsigned long arg3,
2374 unsigned long arg4,
David Howellsd84f4f92008-11-14 10:39:23 +11002375 unsigned long arg5)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
David Howellsd84f4f92008-11-14 10:39:23 +11002377 return cap_task_prctl(option, arg2, arg3, arg3, arg5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
2380static inline void security_task_to_inode(struct task_struct *p, struct inode *inode)
2381{ }
2382
Eric Paris7b41b172008-04-23 14:10:25 -04002383static inline int security_ipc_permission(struct kern_ipc_perm *ipcp,
2384 short flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386 return 0;
2387}
2388
Ahmed S. Darwish8a076192008-03-01 21:51:09 +02002389static inline void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
2390{
2391 *secid = 0;
2392}
2393
Eric Paris7b41b172008-04-23 14:10:25 -04002394static inline int security_msg_msg_alloc(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
2396 return 0;
2397}
2398
Eric Paris7b41b172008-04-23 14:10:25 -04002399static inline void security_msg_msg_free(struct msg_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{ }
2401
Eric Paris7b41b172008-04-23 14:10:25 -04002402static inline int security_msg_queue_alloc(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403{
2404 return 0;
2405}
2406
Eric Paris7b41b172008-04-23 14:10:25 -04002407static inline void security_msg_queue_free(struct msg_queue *msq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408{ }
2409
Eric Paris7b41b172008-04-23 14:10:25 -04002410static inline int security_msg_queue_associate(struct msg_queue *msq,
2411 int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412{
2413 return 0;
2414}
2415
Eric Paris7b41b172008-04-23 14:10:25 -04002416static inline int security_msg_queue_msgctl(struct msg_queue *msq, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
2418 return 0;
2419}
2420
Eric Paris7b41b172008-04-23 14:10:25 -04002421static inline int security_msg_queue_msgsnd(struct msg_queue *msq,
2422 struct msg_msg *msg, int msqflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
2424 return 0;
2425}
2426
Eric Paris7b41b172008-04-23 14:10:25 -04002427static inline int security_msg_queue_msgrcv(struct msg_queue *msq,
2428 struct msg_msg *msg,
2429 struct task_struct *target,
2430 long type, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
2432 return 0;
2433}
2434
Eric Paris7b41b172008-04-23 14:10:25 -04002435static inline int security_shm_alloc(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
2437 return 0;
2438}
2439
Eric Paris7b41b172008-04-23 14:10:25 -04002440static inline void security_shm_free(struct shmid_kernel *shp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{ }
2442
Eric Paris7b41b172008-04-23 14:10:25 -04002443static inline int security_shm_associate(struct shmid_kernel *shp,
2444 int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
2446 return 0;
2447}
2448
Eric Paris7b41b172008-04-23 14:10:25 -04002449static inline int security_shm_shmctl(struct shmid_kernel *shp, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
2451 return 0;
2452}
2453
Eric Paris7b41b172008-04-23 14:10:25 -04002454static inline int security_shm_shmat(struct shmid_kernel *shp,
2455 char __user *shmaddr, int shmflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
2457 return 0;
2458}
2459
Eric Paris7b41b172008-04-23 14:10:25 -04002460static inline int security_sem_alloc(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
2462 return 0;
2463}
2464
Eric Paris7b41b172008-04-23 14:10:25 -04002465static inline void security_sem_free(struct sem_array *sma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{ }
2467
Eric Paris7b41b172008-04-23 14:10:25 -04002468static inline int security_sem_associate(struct sem_array *sma, int semflg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 return 0;
2471}
2472
Eric Paris7b41b172008-04-23 14:10:25 -04002473static inline int security_sem_semctl(struct sem_array *sma, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
2475 return 0;
2476}
2477
Eric Paris7b41b172008-04-23 14:10:25 -04002478static inline int security_sem_semop(struct sem_array *sma,
2479 struct sembuf *sops, unsigned nsops,
2480 int alter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
2482 return 0;
2483}
2484
Eric Paris7b41b172008-04-23 14:10:25 -04002485static inline void security_d_instantiate(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{ }
2487
Al Viro04ff9702007-03-12 16:17:58 +00002488static inline int security_getprocattr(struct task_struct *p, char *name, char **value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489{
2490 return -EINVAL;
2491}
2492
2493static inline int security_setprocattr(struct task_struct *p, char *name, void *value, size_t size)
2494{
2495 return -EINVAL;
2496}
2497
Eric Paris7b41b172008-04-23 14:10:25 -04002498static inline int security_netlink_send(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
Eric Paris7b41b172008-04-23 14:10:25 -04002500 return cap_netlink_send(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502
Eric Paris7b41b172008-04-23 14:10:25 -04002503static inline int security_netlink_recv(struct sk_buff *skb, int cap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
Eric Paris7b41b172008-04-23 14:10:25 -04002505 return cap_netlink_recv(skb, cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002508static inline int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
2509{
2510 return -EOPNOTSUPP;
2511}
2512
David Howells7bf570d2008-04-29 20:52:51 +01002513static inline int security_secctx_to_secid(const char *secdata,
David Howells63cb3442008-01-15 23:47:35 +00002514 u32 seclen,
2515 u32 *secid)
2516{
2517 return -EOPNOTSUPP;
2518}
2519
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002520static inline void security_release_secctx(char *secdata, u32 seclen)
2521{
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523#endif /* CONFIG_SECURITY */
2524
2525#ifdef CONFIG_SECURITY_NETWORK
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
James Morris20510f22007-10-16 23:31:32 -07002527int security_unix_stream_connect(struct socket *sock, struct socket *other,
2528 struct sock *newsk);
2529int security_unix_may_send(struct socket *sock, struct socket *other);
2530int security_socket_create(int family, int type, int protocol, int kern);
2531int security_socket_post_create(struct socket *sock, int family,
2532 int type, int protocol, int kern);
2533int security_socket_bind(struct socket *sock, struct sockaddr *address, int addrlen);
2534int security_socket_connect(struct socket *sock, struct sockaddr *address, int addrlen);
2535int security_socket_listen(struct socket *sock, int backlog);
2536int security_socket_accept(struct socket *sock, struct socket *newsock);
James Morris20510f22007-10-16 23:31:32 -07002537int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size);
2538int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
2539 int size, int flags);
2540int security_socket_getsockname(struct socket *sock);
2541int security_socket_getpeername(struct socket *sock);
2542int security_socket_getsockopt(struct socket *sock, int level, int optname);
2543int security_socket_setsockopt(struct socket *sock, int level, int optname);
2544int security_socket_shutdown(struct socket *sock, int how);
2545int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb);
2546int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2547 int __user *optlen, unsigned len);
2548int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid);
2549int security_sk_alloc(struct sock *sk, int family, gfp_t priority);
2550void security_sk_free(struct sock *sk);
2551void security_sk_clone(const struct sock *sk, struct sock *newsk);
2552void security_sk_classify_flow(struct sock *sk, struct flowi *fl);
2553void security_req_classify_flow(const struct request_sock *req, struct flowi *fl);
2554void security_sock_graft(struct sock*sk, struct socket *parent);
2555int security_inet_conn_request(struct sock *sk,
2556 struct sk_buff *skb, struct request_sock *req);
2557void security_inet_csk_clone(struct sock *newsk,
2558 const struct request_sock *req);
2559void security_inet_conn_established(struct sock *sk,
2560 struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562#else /* CONFIG_SECURITY_NETWORK */
Eric Paris7b41b172008-04-23 14:10:25 -04002563static inline int security_unix_stream_connect(struct socket *sock,
2564 struct socket *other,
2565 struct sock *newsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
2567 return 0;
2568}
2569
Eric Paris7b41b172008-04-23 14:10:25 -04002570static inline int security_unix_may_send(struct socket *sock,
2571 struct socket *other)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572{
2573 return 0;
2574}
2575
Eric Paris7b41b172008-04-23 14:10:25 -04002576static inline int security_socket_create(int family, int type,
2577 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
2579 return 0;
2580}
2581
Eric Paris7b41b172008-04-23 14:10:25 -04002582static inline int security_socket_post_create(struct socket *sock,
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002583 int family,
2584 int type,
2585 int protocol, int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
Venkat Yekkirala7420ed22006-08-04 23:17:57 -07002587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
Eric Paris7b41b172008-04-23 14:10:25 -04002590static inline int security_socket_bind(struct socket *sock,
2591 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 int addrlen)
2593{
2594 return 0;
2595}
2596
Eric Paris7b41b172008-04-23 14:10:25 -04002597static inline int security_socket_connect(struct socket *sock,
2598 struct sockaddr *address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 int addrlen)
2600{
2601 return 0;
2602}
2603
Eric Paris7b41b172008-04-23 14:10:25 -04002604static inline int security_socket_listen(struct socket *sock, int backlog)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
2606 return 0;
2607}
2608
Eric Paris7b41b172008-04-23 14:10:25 -04002609static inline int security_socket_accept(struct socket *sock,
2610 struct socket *newsock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 return 0;
2613}
2614
Eric Paris7b41b172008-04-23 14:10:25 -04002615static inline int security_socket_sendmsg(struct socket *sock,
2616 struct msghdr *msg, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
2618 return 0;
2619}
2620
Eric Paris7b41b172008-04-23 14:10:25 -04002621static inline int security_socket_recvmsg(struct socket *sock,
2622 struct msghdr *msg, int size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 int flags)
2624{
2625 return 0;
2626}
2627
Eric Paris7b41b172008-04-23 14:10:25 -04002628static inline int security_socket_getsockname(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 return 0;
2631}
2632
Eric Paris7b41b172008-04-23 14:10:25 -04002633static inline int security_socket_getpeername(struct socket *sock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
2635 return 0;
2636}
2637
Eric Paris7b41b172008-04-23 14:10:25 -04002638static inline int security_socket_getsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 int level, int optname)
2640{
2641 return 0;
2642}
2643
Eric Paris7b41b172008-04-23 14:10:25 -04002644static inline int security_socket_setsockopt(struct socket *sock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 int level, int optname)
2646{
2647 return 0;
2648}
2649
Eric Paris7b41b172008-04-23 14:10:25 -04002650static inline int security_socket_shutdown(struct socket *sock, int how)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
2652 return 0;
2653}
Eric Paris7b41b172008-04-23 14:10:25 -04002654static inline int security_sock_rcv_skb(struct sock *sk,
2655 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 return 0;
2658}
2659
Catherine Zhang2c7946a2006-03-20 22:41:23 -08002660static inline int security_socket_getpeersec_stream(struct socket *sock, char __user *optval,
2661 int __user *optlen, unsigned len)
2662{
2663 return -ENOPROTOOPT;
2664}
2665
Catherine Zhangdc49c1f2006-08-02 14:12:06 -07002666static inline int security_socket_getpeersec_dgram(struct socket *sock, struct sk_buff *skb, u32 *secid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
2668 return -ENOPROTOOPT;
2669}
2670
Al Virodd0fc662005-10-07 07:46:04 +01002671static inline int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
2673 return 0;
2674}
2675
2676static inline void security_sk_free(struct sock *sk)
2677{
2678}
Trent Jaegerdf718372005-12-13 23:12:27 -08002679
Venkat Yekkirala892c1412006-08-04 23:08:56 -07002680static inline void security_sk_clone(const struct sock *sk, struct sock *newsk)
2681{
2682}
2683
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002684static inline void security_sk_classify_flow(struct sock *sk, struct flowi *fl)
Trent Jaegerdf718372005-12-13 23:12:27 -08002685{
Trent Jaegerdf718372005-12-13 23:12:27 -08002686}
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002687
2688static inline void security_req_classify_flow(const struct request_sock *req, struct flowi *fl)
2689{
2690}
2691
Eric Paris7b41b172008-04-23 14:10:25 -04002692static inline void security_sock_graft(struct sock *sk, struct socket *parent)
Venkat Yekkirala4237c752006-07-24 23:32:50 -07002693{
2694}
2695
2696static inline int security_inet_conn_request(struct sock *sk,
2697 struct sk_buff *skb, struct request_sock *req)
2698{
2699 return 0;
2700}
2701
2702static inline void security_inet_csk_clone(struct sock *newsk,
2703 const struct request_sock *req)
2704{
2705}
Venkat Yekkirala6b877692006-11-08 17:04:09 -06002706
2707static inline void security_inet_conn_established(struct sock *sk,
2708 struct sk_buff *skb)
2709{
2710}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711#endif /* CONFIG_SECURITY_NETWORK */
2712
Trent Jaegerdf718372005-12-13 23:12:27 -08002713#ifdef CONFIG_SECURITY_NETWORK_XFRM
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002714
Paul Moore03e1ad72008-04-12 19:07:52 -07002715int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx);
2716int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx, struct xfrm_sec_ctx **new_ctxp);
2717void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx);
2718int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx);
James Morris20510f22007-10-16 23:31:32 -07002719int security_xfrm_state_alloc(struct xfrm_state *x, struct xfrm_user_sec_ctx *sec_ctx);
2720int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2721 struct xfrm_sec_ctx *polsec, u32 secid);
2722int security_xfrm_state_delete(struct xfrm_state *x);
2723void security_xfrm_state_free(struct xfrm_state *x);
Paul Moore03e1ad72008-04-12 19:07:52 -07002724int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir);
James Morris20510f22007-10-16 23:31:32 -07002725int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2726 struct xfrm_policy *xp, struct flowi *fl);
2727int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid);
2728void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl);
Trent Jaegerdf718372005-12-13 23:12:27 -08002729
Trent Jaegerdf718372005-12-13 23:12:27 -08002730#else /* CONFIG_SECURITY_NETWORK_XFRM */
James Morris20510f22007-10-16 23:31:32 -07002731
Paul Moore03e1ad72008-04-12 19:07:52 -07002732static inline int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp, struct xfrm_user_sec_ctx *sec_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -08002733{
2734 return 0;
2735}
2736
Paul Moore03e1ad72008-04-12 19:07:52 -07002737static inline int security_xfrm_policy_clone(struct xfrm_sec_ctx *old, struct xfrm_sec_ctx **new_ctxp)
Trent Jaegerdf718372005-12-13 23:12:27 -08002738{
2739 return 0;
2740}
2741
Paul Moore03e1ad72008-04-12 19:07:52 -07002742static inline void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -08002743{
2744}
2745
Paul Moore03e1ad72008-04-12 19:07:52 -07002746static inline int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002747{
2748 return 0;
2749}
2750
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002751static inline int security_xfrm_state_alloc(struct xfrm_state *x,
2752 struct xfrm_user_sec_ctx *sec_ctx)
2753{
2754 return 0;
2755}
2756
2757static inline int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
2758 struct xfrm_sec_ctx *polsec, u32 secid)
Trent Jaegerdf718372005-12-13 23:12:27 -08002759{
2760 return 0;
2761}
2762
2763static inline void security_xfrm_state_free(struct xfrm_state *x)
2764{
2765}
2766
David S. Miller6f68dc32006-06-08 23:58:52 -07002767static inline int security_xfrm_state_delete(struct xfrm_state *x)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07002768{
2769 return 0;
2770}
2771
Paul Moore03e1ad72008-04-12 19:07:52 -07002772static inline int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid, u8 dir)
Trent Jaegerdf718372005-12-13 23:12:27 -08002773{
2774 return 0;
2775}
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002776
2777static inline int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
2778 struct xfrm_policy *xp, struct flowi *fl)
2779{
2780 return 1;
2781}
2782
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002783static inline int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
Venkat Yekkiralae0d1caa2006-07-24 23:29:07 -07002784{
2785 return 0;
2786}
2787
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -07002788static inline void security_skb_classify_flow(struct sk_buff *skb, struct flowi *fl)
2789{
2790}
2791
Trent Jaegerdf718372005-12-13 23:12:27 -08002792#endif /* CONFIG_SECURITY_NETWORK_XFRM */
2793
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002794#ifdef CONFIG_SECURITY_PATH
2795int security_path_unlink(struct path *dir, struct dentry *dentry);
2796int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode);
2797int security_path_rmdir(struct path *dir, struct dentry *dentry);
2798int security_path_mknod(struct path *dir, struct dentry *dentry, int mode,
2799 unsigned int dev);
2800int security_path_truncate(struct path *path, loff_t length,
2801 unsigned int time_attrs);
2802int security_path_symlink(struct path *dir, struct dentry *dentry,
2803 const char *old_name);
2804int security_path_link(struct dentry *old_dentry, struct path *new_dir,
2805 struct dentry *new_dentry);
2806int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
2807 struct path *new_dir, struct dentry *new_dentry);
2808#else /* CONFIG_SECURITY_PATH */
2809static inline int security_path_unlink(struct path *dir, struct dentry *dentry)
2810{
2811 return 0;
2812}
2813
2814static inline int security_path_mkdir(struct path *dir, struct dentry *dentry,
2815 int mode)
2816{
2817 return 0;
2818}
2819
2820static inline int security_path_rmdir(struct path *dir, struct dentry *dentry)
2821{
2822 return 0;
2823}
2824
2825static inline int security_path_mknod(struct path *dir, struct dentry *dentry,
2826 int mode, unsigned int dev)
2827{
2828 return 0;
2829}
2830
2831static inline int security_path_truncate(struct path *path, loff_t length,
2832 unsigned int time_attrs)
2833{
2834 return 0;
2835}
2836
2837static inline int security_path_symlink(struct path *dir, struct dentry *dentry,
2838 const char *old_name)
2839{
2840 return 0;
2841}
2842
2843static inline int security_path_link(struct dentry *old_dentry,
2844 struct path *new_dir,
2845 struct dentry *new_dentry)
2846{
2847 return 0;
2848}
2849
2850static inline int security_path_rename(struct path *old_dir,
2851 struct dentry *old_dentry,
2852 struct path *new_dir,
2853 struct dentry *new_dentry)
2854{
2855 return 0;
2856}
2857#endif /* CONFIG_SECURITY_PATH */
2858
David Howells29db9192005-10-30 15:02:44 -08002859#ifdef CONFIG_KEYS
2860#ifdef CONFIG_SECURITY
David Howells29db9192005-10-30 15:02:44 -08002861
David Howellsd84f4f92008-11-14 10:39:23 +11002862int security_key_alloc(struct key *key, const struct cred *cred, unsigned long flags);
James Morris20510f22007-10-16 23:31:32 -07002863void security_key_free(struct key *key);
2864int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002865 const struct cred *cred, key_perm_t perm);
David Howells70a5bb72008-04-29 01:01:26 -07002866int security_key_getsecurity(struct key *key, char **_buffer);
David Howells29db9192005-10-30 15:02:44 -08002867
2868#else
2869
Michael LeMayd7200242006-06-22 14:47:17 -07002870static inline int security_key_alloc(struct key *key,
David Howellsd84f4f92008-11-14 10:39:23 +11002871 const struct cred *cred,
David Howells7e047ef2006-06-26 00:24:50 -07002872 unsigned long flags)
David Howells29db9192005-10-30 15:02:44 -08002873{
2874 return 0;
2875}
2876
2877static inline void security_key_free(struct key *key)
2878{
2879}
2880
2881static inline int security_key_permission(key_ref_t key_ref,
David Howellsd84f4f92008-11-14 10:39:23 +11002882 const struct cred *cred,
David Howells29db9192005-10-30 15:02:44 -08002883 key_perm_t perm)
2884{
2885 return 0;
2886}
2887
David Howells70a5bb72008-04-29 01:01:26 -07002888static inline int security_key_getsecurity(struct key *key, char **_buffer)
2889{
2890 *_buffer = NULL;
2891 return 0;
2892}
2893
David Howells29db9192005-10-30 15:02:44 -08002894#endif
2895#endif /* CONFIG_KEYS */
2896
Ahmed S. Darwish03d37d22008-03-01 22:00:05 +02002897#ifdef CONFIG_AUDIT
2898#ifdef CONFIG_SECURITY
2899int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule);
2900int security_audit_rule_known(struct audit_krule *krule);
2901int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule,
2902 struct audit_context *actx);
2903void security_audit_rule_free(void *lsmrule);
2904
2905#else
2906
2907static inline int security_audit_rule_init(u32 field, u32 op, char *rulestr,
2908 void **lsmrule)
2909{
2910 return 0;
2911}
2912
2913static inline int security_audit_rule_known(struct audit_krule *krule)
2914{
2915 return 0;
2916}
2917
2918static inline int security_audit_rule_match(u32 secid, u32 field, u32 op,
2919 void *lsmrule, struct audit_context *actx)
2920{
2921 return 0;
2922}
2923
2924static inline void security_audit_rule_free(void *lsmrule)
2925{ }
2926
2927#endif /* CONFIG_SECURITY */
2928#endif /* CONFIG_AUDIT */
2929
Eric Parisda318942008-08-22 11:35:57 -04002930#ifdef CONFIG_SECURITYFS
2931
2932extern struct dentry *securityfs_create_file(const char *name, mode_t mode,
2933 struct dentry *parent, void *data,
2934 const struct file_operations *fops);
2935extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent);
2936extern void securityfs_remove(struct dentry *dentry);
2937
2938#else /* CONFIG_SECURITYFS */
2939
2940static inline struct dentry *securityfs_create_dir(const char *name,
2941 struct dentry *parent)
2942{
2943 return ERR_PTR(-ENODEV);
2944}
2945
2946static inline struct dentry *securityfs_create_file(const char *name,
2947 mode_t mode,
2948 struct dentry *parent,
2949 void *data,
2950 const struct file_operations *fops)
2951{
2952 return ERR_PTR(-ENODEV);
2953}
2954
2955static inline void securityfs_remove(struct dentry *dentry)
2956{}
2957
2958#endif
2959
Pekka Enberg3d544f42009-03-24 11:59:23 +02002960#ifdef CONFIG_SECURITY
2961
2962static inline char *alloc_secdata(void)
2963{
2964 return (char *)get_zeroed_page(GFP_KERNEL);
2965}
2966
2967static inline void free_secdata(void *secdata)
2968{
2969 free_page((unsigned long)secdata);
2970}
2971
2972#else
2973
2974static inline char *alloc_secdata(void)
2975{
2976 return (char *)1;
2977}
2978
2979static inline void free_secdata(void *secdata)
2980{ }
2981#endif /* CONFIG_SECURITY */
2982
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983#endif /* ! __LINUX_SECURITY_H */
2984