1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Security plug functions
5 * Copyright (C) 2001 WireX Communications, Inc <chris@wirex.com>
6 * Copyright (C) 2001-2002 Greg Kroah-Hartman <greg@kroah.com>
7 * Copyright (C) 2001 Networks Associates Technology, Inc <ssmalley@nai.com>
8 * Copyright (C) 2016 Mellanox Technologies
9 * Copyright (C) 2023 Microsoft Corporation <paul@paul-moore.com>
12 #define pr_fmt(fmt) "LSM: " fmt
14 #include <linux/bpf.h>
15 #include <linux/capability.h>
16 #include <linux/dcache.h>
17 #include <linux/export.h>
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/kernel_read_file.h>
21 #include <linux/lsm_hooks.h>
22 #include <linux/integrity.h>
23 #include <linux/ima.h>
24 #include <linux/evm.h>
25 #include <linux/fsnotify.h>
26 #include <linux/mman.h>
27 #include <linux/mount.h>
28 #include <linux/personality.h>
29 #include <linux/backing-dev.h>
30 #include <linux/string.h>
31 #include <linux/msg.h>
34 /* How many LSMs were built into the kernel? */
35 #define LSM_COUNT (__end_lsm_info - __start_lsm_info)
38 * These are descriptions of the reasons that can be passed to the
39 * security_locked_down() LSM hook. Placing this array here allows
40 * all security modules to use the same descriptions for auditing
43 const char *const lockdown_reasons[LOCKDOWN_CONFIDENTIALITY_MAX + 1] = {
44 [LOCKDOWN_NONE] = "none",
45 [LOCKDOWN_MODULE_SIGNATURE] = "unsigned module loading",
46 [LOCKDOWN_DEV_MEM] = "/dev/mem,kmem,port",
47 [LOCKDOWN_EFI_TEST] = "/dev/efi_test access",
48 [LOCKDOWN_KEXEC] = "kexec of unsigned images",
49 [LOCKDOWN_HIBERNATION] = "hibernation",
50 [LOCKDOWN_PCI_ACCESS] = "direct PCI access",
51 [LOCKDOWN_IOPORT] = "raw io port access",
52 [LOCKDOWN_MSR] = "raw MSR access",
53 [LOCKDOWN_ACPI_TABLES] = "modifying ACPI tables",
54 [LOCKDOWN_DEVICE_TREE] = "modifying device tree contents",
55 [LOCKDOWN_PCMCIA_CIS] = "direct PCMCIA CIS storage",
56 [LOCKDOWN_TIOCSSERIAL] = "reconfiguration of serial port IO",
57 [LOCKDOWN_MODULE_PARAMETERS] = "unsafe module parameters",
58 [LOCKDOWN_MMIOTRACE] = "unsafe mmio",
59 [LOCKDOWN_DEBUGFS] = "debugfs access",
60 [LOCKDOWN_XMON_WR] = "xmon write access",
61 [LOCKDOWN_BPF_WRITE_USER] = "use of bpf to write user RAM",
62 [LOCKDOWN_DBG_WRITE_KERNEL] = "use of kgdb/kdb to write kernel RAM",
63 [LOCKDOWN_RTAS_ERROR_INJECTION] = "RTAS error injection",
64 [LOCKDOWN_INTEGRITY_MAX] = "integrity",
65 [LOCKDOWN_KCORE] = "/proc/kcore access",
66 [LOCKDOWN_KPROBES] = "use of kprobes",
67 [LOCKDOWN_BPF_READ_KERNEL] = "use of bpf to read kernel RAM",
68 [LOCKDOWN_DBG_READ_KERNEL] = "use of kgdb/kdb to read kernel RAM",
69 [LOCKDOWN_PERF] = "unsafe use of perf",
70 [LOCKDOWN_TRACEFS] = "use of tracefs",
71 [LOCKDOWN_XMON_RW] = "xmon read and write access",
72 [LOCKDOWN_XFRM_SECRET] = "xfrm SA secret",
73 [LOCKDOWN_CONFIDENTIALITY_MAX] = "confidentiality",
76 struct security_hook_heads security_hook_heads __ro_after_init;
77 static BLOCKING_NOTIFIER_HEAD(blocking_lsm_notifier_chain);
79 static struct kmem_cache *lsm_file_cache;
80 static struct kmem_cache *lsm_inode_cache;
83 static struct lsm_blob_sizes blob_sizes __ro_after_init;
85 /* Boot-time LSM user choice */
86 static __initdata const char *chosen_lsm_order;
87 static __initdata const char *chosen_major_lsm;
89 static __initconst const char *const builtin_lsm_order = CONFIG_LSM;
91 /* Ordered list of LSMs to initialize. */
92 static __initdata struct lsm_info **ordered_lsms;
93 static __initdata struct lsm_info *exclusive;
95 static __initdata bool debug;
96 #define init_debug(...) \
99 pr_info(__VA_ARGS__); \
102 static bool __init is_enabled(struct lsm_info *lsm)
107 return *lsm->enabled;
110 /* Mark an LSM's enabled flag. */
111 static int lsm_enabled_true __initdata = 1;
112 static int lsm_enabled_false __initdata = 0;
113 static void __init set_enabled(struct lsm_info *lsm, bool enabled)
116 * When an LSM hasn't configured an enable variable, we can use
117 * a hard-coded location for storing the default enabled state.
121 lsm->enabled = &lsm_enabled_true;
123 lsm->enabled = &lsm_enabled_false;
124 } else if (lsm->enabled == &lsm_enabled_true) {
126 lsm->enabled = &lsm_enabled_false;
127 } else if (lsm->enabled == &lsm_enabled_false) {
129 lsm->enabled = &lsm_enabled_true;
131 *lsm->enabled = enabled;
135 /* Is an LSM already listed in the ordered LSMs list? */
136 static bool __init exists_ordered_lsm(struct lsm_info *lsm)
138 struct lsm_info **check;
140 for (check = ordered_lsms; *check; check++)
147 /* Append an LSM to the list of ordered LSMs to initialize. */
148 static int last_lsm __initdata;
149 static void __init append_ordered_lsm(struct lsm_info *lsm, const char *from)
151 /* Ignore duplicate selections. */
152 if (exists_ordered_lsm(lsm))
155 if (WARN(last_lsm == LSM_COUNT, "%s: out of LSM slots!?\n", from))
158 /* Enable this LSM, if it is not already set. */
160 lsm->enabled = &lsm_enabled_true;
161 ordered_lsms[last_lsm++] = lsm;
163 init_debug("%s ordered: %s (%s)\n", from, lsm->name,
164 is_enabled(lsm) ? "enabled" : "disabled");
167 /* Is an LSM allowed to be initialized? */
168 static bool __init lsm_allowed(struct lsm_info *lsm)
170 /* Skip if the LSM is disabled. */
171 if (!is_enabled(lsm))
174 /* Not allowed if another exclusive LSM already initialized. */
175 if ((lsm->flags & LSM_FLAG_EXCLUSIVE) && exclusive) {
176 init_debug("exclusive disabled: %s\n", lsm->name);
183 static void __init lsm_set_blob_size(int *need, int *lbs)
190 offset = ALIGN(*lbs, sizeof(void *));
191 *lbs = offset + *need;
195 static void __init lsm_set_blob_sizes(struct lsm_blob_sizes *needed)
200 lsm_set_blob_size(&needed->lbs_cred, &blob_sizes.lbs_cred);
201 lsm_set_blob_size(&needed->lbs_file, &blob_sizes.lbs_file);
203 * The inode blob gets an rcu_head in addition to
204 * what the modules might need.
206 if (needed->lbs_inode && blob_sizes.lbs_inode == 0)
207 blob_sizes.lbs_inode = sizeof(struct rcu_head);
208 lsm_set_blob_size(&needed->lbs_inode, &blob_sizes.lbs_inode);
209 lsm_set_blob_size(&needed->lbs_ipc, &blob_sizes.lbs_ipc);
210 lsm_set_blob_size(&needed->lbs_msg_msg, &blob_sizes.lbs_msg_msg);
211 lsm_set_blob_size(&needed->lbs_superblock, &blob_sizes.lbs_superblock);
212 lsm_set_blob_size(&needed->lbs_task, &blob_sizes.lbs_task);
213 lsm_set_blob_size(&needed->lbs_xattr_count,
214 &blob_sizes.lbs_xattr_count);
217 /* Prepare LSM for initialization. */
218 static void __init prepare_lsm(struct lsm_info *lsm)
220 int enabled = lsm_allowed(lsm);
222 /* Record enablement (to handle any following exclusive LSMs). */
223 set_enabled(lsm, enabled);
225 /* If enabled, do pre-initialization work. */
227 if ((lsm->flags & LSM_FLAG_EXCLUSIVE) && !exclusive) {
229 init_debug("exclusive chosen: %s\n", lsm->name);
232 lsm_set_blob_sizes(lsm->blobs);
236 /* Initialize a given LSM, if it is enabled. */
237 static void __init initialize_lsm(struct lsm_info *lsm)
239 if (is_enabled(lsm)) {
242 init_debug("initializing %s\n", lsm->name);
244 WARN(ret, "%s failed to initialize: %d\n", lsm->name, ret);
248 /* Populate ordered LSMs list from comma-separated LSM name list. */
249 static void __init ordered_lsm_parse(const char *order, const char *origin)
251 struct lsm_info *lsm;
252 char *sep, *name, *next;
254 /* LSM_ORDER_FIRST is always first. */
255 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
256 if (lsm->order == LSM_ORDER_FIRST)
257 append_ordered_lsm(lsm, " first");
260 /* Process "security=", if given. */
261 if (chosen_major_lsm) {
262 struct lsm_info *major;
265 * To match the original "security=" behavior, this
266 * explicitly does NOT fallback to another Legacy Major
267 * if the selected one was separately disabled: disable
268 * all non-matching Legacy Major LSMs.
270 for (major = __start_lsm_info; major < __end_lsm_info;
272 if ((major->flags & LSM_FLAG_LEGACY_MAJOR) &&
273 strcmp(major->name, chosen_major_lsm) != 0) {
274 set_enabled(major, false);
275 init_debug("security=%s disabled: %s (only one legacy major LSM)\n",
276 chosen_major_lsm, major->name);
281 sep = kstrdup(order, GFP_KERNEL);
283 /* Walk the list, looking for matching LSMs. */
284 while ((name = strsep(&next, ",")) != NULL) {
287 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
288 if (strcmp(lsm->name, name) == 0) {
289 if (lsm->order == LSM_ORDER_MUTABLE)
290 append_ordered_lsm(lsm, origin);
296 init_debug("%s ignored: %s (not built into kernel)\n",
300 /* Process "security=", if given. */
301 if (chosen_major_lsm) {
302 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
303 if (exists_ordered_lsm(lsm))
305 if (strcmp(lsm->name, chosen_major_lsm) == 0)
306 append_ordered_lsm(lsm, "security=");
310 /* LSM_ORDER_LAST is always last. */
311 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
312 if (lsm->order == LSM_ORDER_LAST)
313 append_ordered_lsm(lsm, " last");
316 /* Disable all LSMs not in the ordered list. */
317 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
318 if (exists_ordered_lsm(lsm))
320 set_enabled(lsm, false);
321 init_debug("%s skipped: %s (not in requested order)\n",
328 static void __init lsm_early_cred(struct cred *cred);
329 static void __init lsm_early_task(struct task_struct *task);
331 static int lsm_append(const char *new, char **result);
333 static void __init report_lsm_order(void)
335 struct lsm_info **lsm, *early;
338 pr_info("initializing lsm=");
340 /* Report each enabled LSM name, comma separated. */
341 for (early = __start_early_lsm_info;
342 early < __end_early_lsm_info; early++)
343 if (is_enabled(early))
344 pr_cont("%s%s", first++ == 0 ? "" : ",", early->name);
345 for (lsm = ordered_lsms; *lsm; lsm++)
346 if (is_enabled(*lsm))
347 pr_cont("%s%s", first++ == 0 ? "" : ",", (*lsm)->name);
352 static void __init ordered_lsm_init(void)
354 struct lsm_info **lsm;
356 ordered_lsms = kcalloc(LSM_COUNT + 1, sizeof(*ordered_lsms),
359 if (chosen_lsm_order) {
360 if (chosen_major_lsm) {
361 pr_warn("security=%s is ignored because it is superseded by lsm=%s\n",
362 chosen_major_lsm, chosen_lsm_order);
363 chosen_major_lsm = NULL;
365 ordered_lsm_parse(chosen_lsm_order, "cmdline");
367 ordered_lsm_parse(builtin_lsm_order, "builtin");
369 for (lsm = ordered_lsms; *lsm; lsm++)
374 init_debug("cred blob size = %d\n", blob_sizes.lbs_cred);
375 init_debug("file blob size = %d\n", blob_sizes.lbs_file);
376 init_debug("inode blob size = %d\n", blob_sizes.lbs_inode);
377 init_debug("ipc blob size = %d\n", blob_sizes.lbs_ipc);
378 init_debug("msg_msg blob size = %d\n", blob_sizes.lbs_msg_msg);
379 init_debug("superblock blob size = %d\n", blob_sizes.lbs_superblock);
380 init_debug("task blob size = %d\n", blob_sizes.lbs_task);
381 init_debug("xattr slots = %d\n", blob_sizes.lbs_xattr_count);
384 * Create any kmem_caches needed for blobs
386 if (blob_sizes.lbs_file)
387 lsm_file_cache = kmem_cache_create("lsm_file_cache",
388 blob_sizes.lbs_file, 0,
390 if (blob_sizes.lbs_inode)
391 lsm_inode_cache = kmem_cache_create("lsm_inode_cache",
392 blob_sizes.lbs_inode, 0,
395 lsm_early_cred((struct cred *) current->cred);
396 lsm_early_task(current);
397 for (lsm = ordered_lsms; *lsm; lsm++)
398 initialize_lsm(*lsm);
403 int __init early_security_init(void)
405 struct lsm_info *lsm;
407 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \
408 INIT_HLIST_HEAD(&security_hook_heads.NAME);
409 #include "linux/lsm_hook_defs.h"
412 for (lsm = __start_early_lsm_info; lsm < __end_early_lsm_info; lsm++) {
414 lsm->enabled = &lsm_enabled_true;
423 * security_init - initializes the security framework
425 * This should be called early in the kernel initialization sequence.
427 int __init security_init(void)
429 struct lsm_info *lsm;
431 init_debug("legacy security=%s\n", chosen_major_lsm ? : " *unspecified*");
432 init_debug(" CONFIG_LSM=%s\n", builtin_lsm_order);
433 init_debug("boot arg lsm=%s\n", chosen_lsm_order ? : " *unspecified*");
436 * Append the names of the early LSM modules now that kmalloc() is
439 for (lsm = __start_early_lsm_info; lsm < __end_early_lsm_info; lsm++) {
440 init_debug(" early started: %s (%s)\n", lsm->name,
441 is_enabled(lsm) ? "enabled" : "disabled");
443 lsm_append(lsm->name, &lsm_names);
446 /* Load LSMs in specified order. */
452 /* Save user chosen LSM */
453 static int __init choose_major_lsm(char *str)
455 chosen_major_lsm = str;
458 __setup("security=", choose_major_lsm);
460 /* Explicitly choose LSM initialization order. */
461 static int __init choose_lsm_order(char *str)
463 chosen_lsm_order = str;
466 __setup("lsm=", choose_lsm_order);
468 /* Enable LSM order debugging. */
469 static int __init enable_debug(char *str)
474 __setup("lsm.debug", enable_debug);
476 static bool match_last_lsm(const char *list, const char *lsm)
480 if (WARN_ON(!list || !lsm))
482 last = strrchr(list, ',');
484 /* Pass the comma, strcmp() will check for '\0' */
488 return !strcmp(last, lsm);
491 static int lsm_append(const char *new, char **result)
495 if (*result == NULL) {
496 *result = kstrdup(new, GFP_KERNEL);
500 /* Check if it is the last registered name */
501 if (match_last_lsm(*result, new))
503 cp = kasprintf(GFP_KERNEL, "%s,%s", *result, new);
513 * security_add_hooks - Add a modules hooks to the hook lists.
514 * @hooks: the hooks to add
515 * @count: the number of hooks to add
516 * @lsm: the name of the security module
518 * Each LSM has to register its hooks with the infrastructure.
520 void __init security_add_hooks(struct security_hook_list *hooks, int count,
525 for (i = 0; i < count; i++) {
527 hlist_add_tail_rcu(&hooks[i].list, hooks[i].head);
531 * Don't try to append during early_security_init(), we'll come back
532 * and fix this up afterwards.
534 if (slab_is_available()) {
535 if (lsm_append(lsm, &lsm_names) < 0)
536 panic("%s - Cannot get early memory.\n", __func__);
540 int call_blocking_lsm_notifier(enum lsm_event event, void *data)
542 return blocking_notifier_call_chain(&blocking_lsm_notifier_chain,
545 EXPORT_SYMBOL(call_blocking_lsm_notifier);
547 int register_blocking_lsm_notifier(struct notifier_block *nb)
549 return blocking_notifier_chain_register(&blocking_lsm_notifier_chain,
552 EXPORT_SYMBOL(register_blocking_lsm_notifier);
554 int unregister_blocking_lsm_notifier(struct notifier_block *nb)
556 return blocking_notifier_chain_unregister(&blocking_lsm_notifier_chain,
559 EXPORT_SYMBOL(unregister_blocking_lsm_notifier);
562 * lsm_cred_alloc - allocate a composite cred blob
563 * @cred: the cred that needs a blob
564 * @gfp: allocation type
566 * Allocate the cred blob for all the modules
568 * Returns 0, or -ENOMEM if memory can't be allocated.
570 static int lsm_cred_alloc(struct cred *cred, gfp_t gfp)
572 if (blob_sizes.lbs_cred == 0) {
573 cred->security = NULL;
577 cred->security = kzalloc(blob_sizes.lbs_cred, gfp);
578 if (cred->security == NULL)
584 * lsm_early_cred - during initialization allocate a composite cred blob
585 * @cred: the cred that needs a blob
587 * Allocate the cred blob for all the modules
589 static void __init lsm_early_cred(struct cred *cred)
591 int rc = lsm_cred_alloc(cred, GFP_KERNEL);
594 panic("%s: Early cred alloc failed.\n", __func__);
598 * lsm_file_alloc - allocate a composite file blob
599 * @file: the file that needs a blob
601 * Allocate the file blob for all the modules
603 * Returns 0, or -ENOMEM if memory can't be allocated.
605 static int lsm_file_alloc(struct file *file)
607 if (!lsm_file_cache) {
608 file->f_security = NULL;
612 file->f_security = kmem_cache_zalloc(lsm_file_cache, GFP_KERNEL);
613 if (file->f_security == NULL)
619 * lsm_inode_alloc - allocate a composite inode blob
620 * @inode: the inode that needs a blob
622 * Allocate the inode blob for all the modules
624 * Returns 0, or -ENOMEM if memory can't be allocated.
626 int lsm_inode_alloc(struct inode *inode)
628 if (!lsm_inode_cache) {
629 inode->i_security = NULL;
633 inode->i_security = kmem_cache_zalloc(lsm_inode_cache, GFP_NOFS);
634 if (inode->i_security == NULL)
640 * lsm_task_alloc - allocate a composite task blob
641 * @task: the task that needs a blob
643 * Allocate the task blob for all the modules
645 * Returns 0, or -ENOMEM if memory can't be allocated.
647 static int lsm_task_alloc(struct task_struct *task)
649 if (blob_sizes.lbs_task == 0) {
650 task->security = NULL;
654 task->security = kzalloc(blob_sizes.lbs_task, GFP_KERNEL);
655 if (task->security == NULL)
661 * lsm_ipc_alloc - allocate a composite ipc blob
662 * @kip: the ipc that needs a blob
664 * Allocate the ipc blob for all the modules
666 * Returns 0, or -ENOMEM if memory can't be allocated.
668 static int lsm_ipc_alloc(struct kern_ipc_perm *kip)
670 if (blob_sizes.lbs_ipc == 0) {
671 kip->security = NULL;
675 kip->security = kzalloc(blob_sizes.lbs_ipc, GFP_KERNEL);
676 if (kip->security == NULL)
682 * lsm_msg_msg_alloc - allocate a composite msg_msg blob
683 * @mp: the msg_msg that needs a blob
685 * Allocate the ipc blob for all the modules
687 * Returns 0, or -ENOMEM if memory can't be allocated.
689 static int lsm_msg_msg_alloc(struct msg_msg *mp)
691 if (blob_sizes.lbs_msg_msg == 0) {
696 mp->security = kzalloc(blob_sizes.lbs_msg_msg, GFP_KERNEL);
697 if (mp->security == NULL)
703 * lsm_early_task - during initialization allocate a composite task blob
704 * @task: the task that needs a blob
706 * Allocate the task blob for all the modules
708 static void __init lsm_early_task(struct task_struct *task)
710 int rc = lsm_task_alloc(task);
713 panic("%s: Early task alloc failed.\n", __func__);
717 * lsm_superblock_alloc - allocate a composite superblock blob
718 * @sb: the superblock that needs a blob
720 * Allocate the superblock blob for all the modules
722 * Returns 0, or -ENOMEM if memory can't be allocated.
724 static int lsm_superblock_alloc(struct super_block *sb)
726 if (blob_sizes.lbs_superblock == 0) {
727 sb->s_security = NULL;
731 sb->s_security = kzalloc(blob_sizes.lbs_superblock, GFP_KERNEL);
732 if (sb->s_security == NULL)
738 * The default value of the LSM hook is defined in linux/lsm_hook_defs.h and
739 * can be accessed with:
741 * LSM_RET_DEFAULT(<hook_name>)
743 * The macros below define static constants for the default value of each
746 #define LSM_RET_DEFAULT(NAME) (NAME##_default)
747 #define DECLARE_LSM_RET_DEFAULT_void(DEFAULT, NAME)
748 #define DECLARE_LSM_RET_DEFAULT_int(DEFAULT, NAME) \
749 static const int __maybe_unused LSM_RET_DEFAULT(NAME) = (DEFAULT);
750 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \
751 DECLARE_LSM_RET_DEFAULT_##RET(DEFAULT, NAME)
753 #include <linux/lsm_hook_defs.h>
757 * Hook list operation macros.
760 * This is a hook that does not return a value.
763 * This is a hook that returns a value.
766 #define call_void_hook(FUNC, ...) \
768 struct security_hook_list *P; \
770 hlist_for_each_entry(P, &security_hook_heads.FUNC, list) \
771 P->hook.FUNC(__VA_ARGS__); \
774 #define call_int_hook(FUNC, IRC, ...) ({ \
777 struct security_hook_list *P; \
779 hlist_for_each_entry(P, &security_hook_heads.FUNC, list) { \
780 RC = P->hook.FUNC(__VA_ARGS__); \
788 /* Security operations */
791 * security_binder_set_context_mgr() - Check if becoming binder ctx mgr is ok
792 * @mgr: task credentials of current binder process
794 * Check whether @mgr is allowed to be the binder context manager.
796 * Return: Return 0 if permission is granted.
798 int security_binder_set_context_mgr(const struct cred *mgr)
800 return call_int_hook(binder_set_context_mgr, 0, mgr);
804 * security_binder_transaction() - Check if a binder transaction is allowed
805 * @from: sending process
806 * @to: receiving process
808 * Check whether @from is allowed to invoke a binder transaction call to @to.
810 * Return: Returns 0 if permission is granted.
812 int security_binder_transaction(const struct cred *from,
813 const struct cred *to)
815 return call_int_hook(binder_transaction, 0, from, to);
819 * security_binder_transfer_binder() - Check if a binder transfer is allowed
820 * @from: sending process
821 * @to: receiving process
823 * Check whether @from is allowed to transfer a binder reference to @to.
825 * Return: Returns 0 if permission is granted.
827 int security_binder_transfer_binder(const struct cred *from,
828 const struct cred *to)
830 return call_int_hook(binder_transfer_binder, 0, from, to);
834 * security_binder_transfer_file() - Check if a binder file xfer is allowed
835 * @from: sending process
836 * @to: receiving process
837 * @file: file being transferred
839 * Check whether @from is allowed to transfer @file to @to.
841 * Return: Returns 0 if permission is granted.
843 int security_binder_transfer_file(const struct cred *from,
844 const struct cred *to, const struct file *file)
846 return call_int_hook(binder_transfer_file, 0, from, to, file);
850 * security_ptrace_access_check() - Check if tracing is allowed
851 * @child: target process
852 * @mode: PTRACE_MODE flags
854 * Check permission before allowing the current process to trace the @child
855 * process. Security modules may also want to perform a process tracing check
856 * during an execve in the set_security or apply_creds hooks of tracing check
857 * during an execve in the bprm_set_creds hook of binprm_security_ops if the
858 * process is being traced and its security attributes would be changed by the
861 * Return: Returns 0 if permission is granted.
863 int security_ptrace_access_check(struct task_struct *child, unsigned int mode)
865 return call_int_hook(ptrace_access_check, 0, child, mode);
869 * security_ptrace_traceme() - Check if tracing is allowed
870 * @parent: tracing process
872 * Check that the @parent process has sufficient permission to trace the
873 * current process before allowing the current process to present itself to the
874 * @parent process for tracing.
876 * Return: Returns 0 if permission is granted.
878 int security_ptrace_traceme(struct task_struct *parent)
880 return call_int_hook(ptrace_traceme, 0, parent);
884 * security_capget() - Get the capability sets for a process
885 * @target: target process
886 * @effective: effective capability set
887 * @inheritable: inheritable capability set
888 * @permitted: permitted capability set
890 * Get the @effective, @inheritable, and @permitted capability sets for the
891 * @target process. The hook may also perform permission checking to determine
892 * if the current process is allowed to see the capability sets of the @target
895 * Return: Returns 0 if the capability sets were successfully obtained.
897 int security_capget(const struct task_struct *target,
898 kernel_cap_t *effective,
899 kernel_cap_t *inheritable,
900 kernel_cap_t *permitted)
902 return call_int_hook(capget, 0, target,
903 effective, inheritable, permitted);
907 * security_capset() - Set the capability sets for a process
908 * @new: new credentials for the target process
909 * @old: current credentials of the target process
910 * @effective: effective capability set
911 * @inheritable: inheritable capability set
912 * @permitted: permitted capability set
914 * Set the @effective, @inheritable, and @permitted capability sets for the
917 * Return: Returns 0 and update @new if permission is granted.
919 int security_capset(struct cred *new, const struct cred *old,
920 const kernel_cap_t *effective,
921 const kernel_cap_t *inheritable,
922 const kernel_cap_t *permitted)
924 return call_int_hook(capset, 0, new, old,
925 effective, inheritable, permitted);
929 * security_capable() - Check if a process has the necessary capability
930 * @cred: credentials to examine
931 * @ns: user namespace
932 * @cap: capability requested
933 * @opts: capability check options
935 * Check whether the @tsk process has the @cap capability in the indicated
936 * credentials. @cap contains the capability <include/linux/capability.h>.
937 * @opts contains options for the capable check <include/linux/security.h>.
939 * Return: Returns 0 if the capability is granted.
941 int security_capable(const struct cred *cred,
942 struct user_namespace *ns,
946 return call_int_hook(capable, 0, cred, ns, cap, opts);
950 * security_quotactl() - Check if a quotactl() syscall is allowed for this fs
956 * Check whether the quotactl syscall is allowed for this @sb.
958 * Return: Returns 0 if permission is granted.
960 int security_quotactl(int cmds, int type, int id, struct super_block *sb)
962 return call_int_hook(quotactl, 0, cmds, type, id, sb);
966 * security_quota_on() - Check if QUOTAON is allowed for a dentry
969 * Check whether QUOTAON is allowed for @dentry.
971 * Return: Returns 0 if permission is granted.
973 int security_quota_on(struct dentry *dentry)
975 return call_int_hook(quota_on, 0, dentry);
979 * security_syslog() - Check if accessing the kernel message ring is allowed
980 * @type: SYSLOG_ACTION_* type
982 * Check permission before accessing the kernel message ring or changing
983 * logging to the console. See the syslog(2) manual page for an explanation of
986 * Return: Return 0 if permission is granted.
988 int security_syslog(int type)
990 return call_int_hook(syslog, 0, type);
994 * security_settime64() - Check if changing the system time is allowed
998 * Check permission to change the system time, struct timespec64 is defined in
999 * <include/linux/time64.h> and timezone is defined in <include/linux/time.h>.
1001 * Return: Returns 0 if permission is granted.
1003 int security_settime64(const struct timespec64 *ts, const struct timezone *tz)
1005 return call_int_hook(settime, 0, ts, tz);
1009 * security_vm_enough_memory_mm() - Check if allocating a new mem map is allowed
1011 * @pages: number of pages
1013 * Check permissions for allocating a new virtual mapping. If all LSMs return
1014 * a positive value, __vm_enough_memory() will be called with cap_sys_admin
1015 * set. If at least one LSM returns 0 or negative, __vm_enough_memory() will be
1016 * called with cap_sys_admin cleared.
1018 * Return: Returns 0 if permission is granted by the LSM infrastructure to the
1021 int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1023 struct security_hook_list *hp;
1024 int cap_sys_admin = 1;
1028 * The module will respond with a positive value if
1029 * it thinks the __vm_enough_memory() call should be
1030 * made with the cap_sys_admin set. If all of the modules
1031 * agree that it should be set it will. If any module
1032 * thinks it should not be set it won't.
1034 hlist_for_each_entry(hp, &security_hook_heads.vm_enough_memory, list) {
1035 rc = hp->hook.vm_enough_memory(mm, pages);
1041 return __vm_enough_memory(mm, pages, cap_sys_admin);
1045 * security_bprm_creds_for_exec() - Prepare the credentials for exec()
1046 * @bprm: binary program information
1048 * If the setup in prepare_exec_creds did not setup @bprm->cred->security
1049 * properly for executing @bprm->file, update the LSM's portion of
1050 * @bprm->cred->security to be what commit_creds needs to install for the new
1051 * program. This hook may also optionally check permissions (e.g. for
1052 * transitions between security domains). The hook must set @bprm->secureexec
1053 * to 1 if AT_SECURE should be set to request libc enable secure mode. @bprm
1054 * contains the linux_binprm structure.
1056 * Return: Returns 0 if the hook is successful and permission is granted.
1058 int security_bprm_creds_for_exec(struct linux_binprm *bprm)
1060 return call_int_hook(bprm_creds_for_exec, 0, bprm);
1064 * security_bprm_creds_from_file() - Update linux_binprm creds based on file
1065 * @bprm: binary program information
1066 * @file: associated file
1068 * If @file is setpcap, suid, sgid or otherwise marked to change privilege upon
1069 * exec, update @bprm->cred to reflect that change. This is called after
1070 * finding the binary that will be executed without an interpreter. This
1071 * ensures that the credentials will not be derived from a script that the
1072 * binary will need to reopen, which when reopend may end up being a completely
1073 * different file. This hook may also optionally check permissions (e.g. for
1074 * transitions between security domains). The hook must set @bprm->secureexec
1075 * to 1 if AT_SECURE should be set to request libc enable secure mode. The
1076 * hook must add to @bprm->per_clear any personality flags that should be
1077 * cleared from current->personality. @bprm contains the linux_binprm
1080 * Return: Returns 0 if the hook is successful and permission is granted.
1082 int security_bprm_creds_from_file(struct linux_binprm *bprm, struct file *file)
1084 return call_int_hook(bprm_creds_from_file, 0, bprm, file);
1088 * security_bprm_check() - Mediate binary handler search
1089 * @bprm: binary program information
1091 * This hook mediates the point when a search for a binary handler will begin.
1092 * It allows a check against the @bprm->cred->security value which was set in
1093 * the preceding creds_for_exec call. The argv list and envp list are reliably
1094 * available in @bprm. This hook may be called multiple times during a single
1095 * execve. @bprm contains the linux_binprm structure.
1097 * Return: Returns 0 if the hook is successful and permission is granted.
1099 int security_bprm_check(struct linux_binprm *bprm)
1103 ret = call_int_hook(bprm_check_security, 0, bprm);
1106 return ima_bprm_check(bprm);
1110 * security_bprm_committing_creds() - Install creds for a process during exec()
1111 * @bprm: binary program information
1113 * Prepare to install the new security attributes of a process being
1114 * transformed by an execve operation, based on the old credentials pointed to
1115 * by @current->cred and the information set in @bprm->cred by the
1116 * bprm_creds_for_exec hook. @bprm points to the linux_binprm structure. This
1117 * hook is a good place to perform state changes on the process such as closing
1118 * open file descriptors to which access will no longer be granted when the
1119 * attributes are changed. This is called immediately before commit_creds().
1121 void security_bprm_committing_creds(struct linux_binprm *bprm)
1123 call_void_hook(bprm_committing_creds, bprm);
1127 * security_bprm_committed_creds() - Tidy up after cred install during exec()
1128 * @bprm: binary program information
1130 * Tidy up after the installation of the new security attributes of a process
1131 * being transformed by an execve operation. The new credentials have, by this
1132 * point, been set to @current->cred. @bprm points to the linux_binprm
1133 * structure. This hook is a good place to perform state changes on the
1134 * process such as clearing out non-inheritable signal state. This is called
1135 * immediately after commit_creds().
1137 void security_bprm_committed_creds(struct linux_binprm *bprm)
1139 call_void_hook(bprm_committed_creds, bprm);
1143 * security_fs_context_submount() - Initialise fc->security
1144 * @fc: new filesystem context
1145 * @reference: dentry reference for submount/remount
1147 * Fill out the ->security field for a new fs_context.
1149 * Return: Returns 0 on success or negative error code on failure.
1151 int security_fs_context_submount(struct fs_context *fc, struct super_block *reference)
1153 return call_int_hook(fs_context_submount, 0, fc, reference);
1157 * security_fs_context_dup() - Duplicate a fs_context LSM blob
1158 * @fc: destination filesystem context
1159 * @src_fc: source filesystem context
1161 * Allocate and attach a security structure to sc->security. This pointer is
1162 * initialised to NULL by the caller. @fc indicates the new filesystem context.
1163 * @src_fc indicates the original filesystem context.
1165 * Return: Returns 0 on success or a negative error code on failure.
1167 int security_fs_context_dup(struct fs_context *fc, struct fs_context *src_fc)
1169 return call_int_hook(fs_context_dup, 0, fc, src_fc);
1173 * security_fs_context_parse_param() - Configure a filesystem context
1174 * @fc: filesystem context
1175 * @param: filesystem parameter
1177 * Userspace provided a parameter to configure a superblock. The LSM can
1178 * consume the parameter or return it to the caller for use elsewhere.
1180 * Return: If the parameter is used by the LSM it should return 0, if it is
1181 * returned to the caller -ENOPARAM is returned, otherwise a negative
1182 * error code is returned.
1184 int security_fs_context_parse_param(struct fs_context *fc,
1185 struct fs_parameter *param)
1187 struct security_hook_list *hp;
1191 hlist_for_each_entry(hp, &security_hook_heads.fs_context_parse_param,
1193 trc = hp->hook.fs_context_parse_param(fc, param);
1196 else if (trc != -ENOPARAM)
1203 * security_sb_alloc() - Allocate a super_block LSM blob
1204 * @sb: filesystem superblock
1206 * Allocate and attach a security structure to the sb->s_security field. The
1207 * s_security field is initialized to NULL when the structure is allocated.
1208 * @sb contains the super_block structure to be modified.
1210 * Return: Returns 0 if operation was successful.
1212 int security_sb_alloc(struct super_block *sb)
1214 int rc = lsm_superblock_alloc(sb);
1218 rc = call_int_hook(sb_alloc_security, 0, sb);
1220 security_sb_free(sb);
1225 * security_sb_delete() - Release super_block LSM associated objects
1226 * @sb: filesystem superblock
1228 * Release objects tied to a superblock (e.g. inodes). @sb contains the
1229 * super_block structure being released.
1231 void security_sb_delete(struct super_block *sb)
1233 call_void_hook(sb_delete, sb);
1237 * security_sb_free() - Free a super_block LSM blob
1238 * @sb: filesystem superblock
1240 * Deallocate and clear the sb->s_security field. @sb contains the super_block
1241 * structure to be modified.
1243 void security_sb_free(struct super_block *sb)
1245 call_void_hook(sb_free_security, sb);
1246 kfree(sb->s_security);
1247 sb->s_security = NULL;
1251 * security_free_mnt_opts() - Free memory associated with mount options
1252 * @mnt_opts: LSM processed mount options
1254 * Free memory associated with @mnt_ops.
1256 void security_free_mnt_opts(void **mnt_opts)
1260 call_void_hook(sb_free_mnt_opts, *mnt_opts);
1263 EXPORT_SYMBOL(security_free_mnt_opts);
1266 * security_sb_eat_lsm_opts() - Consume LSM mount options
1267 * @options: mount options
1268 * @mnt_opts: LSM processed mount options
1270 * Eat (scan @options) and save them in @mnt_opts.
1272 * Return: Returns 0 on success, negative values on failure.
1274 int security_sb_eat_lsm_opts(char *options, void **mnt_opts)
1276 return call_int_hook(sb_eat_lsm_opts, 0, options, mnt_opts);
1278 EXPORT_SYMBOL(security_sb_eat_lsm_opts);
1281 * security_sb_mnt_opts_compat() - Check if new mount options are allowed
1282 * @sb: filesystem superblock
1283 * @mnt_opts: new mount options
1285 * Determine if the new mount options in @mnt_opts are allowed given the
1286 * existing mounted filesystem at @sb. @sb superblock being compared.
1288 * Return: Returns 0 if options are compatible.
1290 int security_sb_mnt_opts_compat(struct super_block *sb,
1293 return call_int_hook(sb_mnt_opts_compat, 0, sb, mnt_opts);
1295 EXPORT_SYMBOL(security_sb_mnt_opts_compat);
1298 * security_sb_remount() - Verify no incompatible mount changes during remount
1299 * @sb: filesystem superblock
1300 * @mnt_opts: (re)mount options
1302 * Extracts security system specific mount options and verifies no changes are
1303 * being made to those options.
1305 * Return: Returns 0 if permission is granted.
1307 int security_sb_remount(struct super_block *sb,
1310 return call_int_hook(sb_remount, 0, sb, mnt_opts);
1312 EXPORT_SYMBOL(security_sb_remount);
1315 * security_sb_kern_mount() - Check if a kernel mount is allowed
1316 * @sb: filesystem superblock
1318 * Mount this @sb if allowed by permissions.
1320 * Return: Returns 0 if permission is granted.
1322 int security_sb_kern_mount(struct super_block *sb)
1324 return call_int_hook(sb_kern_mount, 0, sb);
1328 * security_sb_show_options() - Output the mount options for a superblock
1330 * @sb: filesystem superblock
1332 * Show (print on @m) mount options for this @sb.
1334 * Return: Returns 0 on success, negative values on failure.
1336 int security_sb_show_options(struct seq_file *m, struct super_block *sb)
1338 return call_int_hook(sb_show_options, 0, m, sb);
1342 * security_sb_statfs() - Check if accessing fs stats is allowed
1343 * @dentry: superblock handle
1345 * Check permission before obtaining filesystem statistics for the @mnt
1346 * mountpoint. @dentry is a handle on the superblock for the filesystem.
1348 * Return: Returns 0 if permission is granted.
1350 int security_sb_statfs(struct dentry *dentry)
1352 return call_int_hook(sb_statfs, 0, dentry);
1356 * security_sb_mount() - Check permission for mounting a filesystem
1357 * @dev_name: filesystem backing device
1358 * @path: mount point
1359 * @type: filesystem type
1360 * @flags: mount flags
1361 * @data: filesystem specific data
1363 * Check permission before an object specified by @dev_name is mounted on the
1364 * mount point named by @nd. For an ordinary mount, @dev_name identifies a
1365 * device if the file system type requires a device. For a remount
1366 * (@flags & MS_REMOUNT), @dev_name is irrelevant. For a loopback/bind mount
1367 * (@flags & MS_BIND), @dev_name identifies the pathname of the object being
1370 * Return: Returns 0 if permission is granted.
1372 int security_sb_mount(const char *dev_name, const struct path *path,
1373 const char *type, unsigned long flags, void *data)
1375 return call_int_hook(sb_mount, 0, dev_name, path, type, flags, data);
1379 * security_sb_umount() - Check permission for unmounting a filesystem
1380 * @mnt: mounted filesystem
1381 * @flags: unmount flags
1383 * Check permission before the @mnt file system is unmounted.
1385 * Return: Returns 0 if permission is granted.
1387 int security_sb_umount(struct vfsmount *mnt, int flags)
1389 return call_int_hook(sb_umount, 0, mnt, flags);
1393 * security_sb_pivotroot() - Check permissions for pivoting the rootfs
1394 * @old_path: new location for current rootfs
1395 * @new_path: location of the new rootfs
1397 * Check permission before pivoting the root filesystem.
1399 * Return: Returns 0 if permission is granted.
1401 int security_sb_pivotroot(const struct path *old_path,
1402 const struct path *new_path)
1404 return call_int_hook(sb_pivotroot, 0, old_path, new_path);
1408 * security_sb_set_mnt_opts() - Set the mount options for a filesystem
1409 * @sb: filesystem superblock
1410 * @mnt_opts: binary mount options
1411 * @kern_flags: kernel flags (in)
1412 * @set_kern_flags: kernel flags (out)
1414 * Set the security relevant mount options used for a superblock.
1416 * Return: Returns 0 on success, error on failure.
1418 int security_sb_set_mnt_opts(struct super_block *sb,
1420 unsigned long kern_flags,
1421 unsigned long *set_kern_flags)
1423 return call_int_hook(sb_set_mnt_opts,
1424 mnt_opts ? -EOPNOTSUPP : 0, sb,
1425 mnt_opts, kern_flags, set_kern_flags);
1427 EXPORT_SYMBOL(security_sb_set_mnt_opts);
1430 * security_sb_clone_mnt_opts() - Duplicate superblock mount options
1431 * @oldsb: source superblock
1432 * @newsb: destination superblock
1433 * @kern_flags: kernel flags (in)
1434 * @set_kern_flags: kernel flags (out)
1436 * Copy all security options from a given superblock to another.
1438 * Return: Returns 0 on success, error on failure.
1440 int security_sb_clone_mnt_opts(const struct super_block *oldsb,
1441 struct super_block *newsb,
1442 unsigned long kern_flags,
1443 unsigned long *set_kern_flags)
1445 return call_int_hook(sb_clone_mnt_opts, 0, oldsb, newsb,
1446 kern_flags, set_kern_flags);
1448 EXPORT_SYMBOL(security_sb_clone_mnt_opts);
1451 * security_move_mount() - Check permissions for moving a mount
1452 * @from_path: source mount point
1453 * @to_path: destination mount point
1455 * Check permission before a mount is moved.
1457 * Return: Returns 0 if permission is granted.
1459 int security_move_mount(const struct path *from_path,
1460 const struct path *to_path)
1462 return call_int_hook(move_mount, 0, from_path, to_path);
1466 * security_path_notify() - Check if setting a watch is allowed
1469 * @obj_type: file path type
1471 * Check permissions before setting a watch on events as defined by @mask, on
1472 * an object at @path, whose type is defined by @obj_type.
1474 * Return: Returns 0 if permission is granted.
1476 int security_path_notify(const struct path *path, u64 mask,
1477 unsigned int obj_type)
1479 return call_int_hook(path_notify, 0, path, mask, obj_type);
1483 * security_inode_alloc() - Allocate an inode LSM blob
1486 * Allocate and attach a security structure to @inode->i_security. The
1487 * i_security field is initialized to NULL when the inode structure is
1490 * Return: Return 0 if operation was successful.
1492 int security_inode_alloc(struct inode *inode)
1494 int rc = lsm_inode_alloc(inode);
1498 rc = call_int_hook(inode_alloc_security, 0, inode);
1500 security_inode_free(inode);
1504 static void inode_free_by_rcu(struct rcu_head *head)
1507 * The rcu head is at the start of the inode blob
1509 kmem_cache_free(lsm_inode_cache, head);
1513 * security_inode_free() - Free an inode's LSM blob
1516 * Deallocate the inode security structure and set @inode->i_security to NULL.
1518 void security_inode_free(struct inode *inode)
1520 integrity_inode_free(inode);
1521 call_void_hook(inode_free_security, inode);
1523 * The inode may still be referenced in a path walk and
1524 * a call to security_inode_permission() can be made
1525 * after inode_free_security() is called. Ideally, the VFS
1526 * wouldn't do this, but fixing that is a much harder
1527 * job. For now, simply free the i_security via RCU, and
1528 * leave the current inode->i_security pointer intact.
1529 * The inode will be freed after the RCU grace period too.
1531 if (inode->i_security)
1532 call_rcu((struct rcu_head *)inode->i_security,
1537 * security_dentry_init_security() - Perform dentry initialization
1538 * @dentry: the dentry to initialize
1539 * @mode: mode used to determine resource type
1540 * @name: name of the last path component
1541 * @xattr_name: name of the security/LSM xattr
1542 * @ctx: pointer to the resulting LSM context
1543 * @ctxlen: length of @ctx
1545 * Compute a context for a dentry as the inode is not yet available since NFSv4
1546 * has no label backed by an EA anyway. It is important to note that
1547 * @xattr_name does not need to be free'd by the caller, it is a static string.
1549 * Return: Returns 0 on success, negative values on failure.
1551 int security_dentry_init_security(struct dentry *dentry, int mode,
1552 const struct qstr *name,
1553 const char **xattr_name, void **ctx,
1556 struct security_hook_list *hp;
1560 * Only one module will provide a security context.
1562 hlist_for_each_entry(hp, &security_hook_heads.dentry_init_security,
1564 rc = hp->hook.dentry_init_security(dentry, mode, name,
1565 xattr_name, ctx, ctxlen);
1566 if (rc != LSM_RET_DEFAULT(dentry_init_security))
1569 return LSM_RET_DEFAULT(dentry_init_security);
1571 EXPORT_SYMBOL(security_dentry_init_security);
1574 * security_dentry_create_files_as() - Perform dentry initialization
1575 * @dentry: the dentry to initialize
1576 * @mode: mode used to determine resource type
1577 * @name: name of the last path component
1578 * @old: creds to use for LSM context calculations
1579 * @new: creds to modify
1581 * Compute a context for a dentry as the inode is not yet available and set
1582 * that context in passed in creds so that new files are created using that
1583 * context. Context is calculated using the passed in creds and not the creds
1586 * Return: Returns 0 on success, error on failure.
1588 int security_dentry_create_files_as(struct dentry *dentry, int mode,
1590 const struct cred *old, struct cred *new)
1592 return call_int_hook(dentry_create_files_as, 0, dentry, mode,
1595 EXPORT_SYMBOL(security_dentry_create_files_as);
1598 * security_inode_init_security() - Initialize an inode's LSM context
1600 * @dir: parent directory
1601 * @qstr: last component of the pathname
1602 * @initxattrs: callback function to write xattrs
1603 * @fs_data: filesystem specific data
1605 * Obtain the security attribute name suffix and value to set on a newly
1606 * created inode and set up the incore security field for the new inode. This
1607 * hook is called by the fs code as part of the inode creation transaction and
1608 * provides for atomic labeling of the inode, unlike the post_create/mkdir/...
1609 * hooks called by the VFS.
1611 * The hook function is expected to populate the xattrs array, by calling
1612 * lsm_get_xattr_slot() to retrieve the slots reserved by the security module
1613 * with the lbs_xattr_count field of the lsm_blob_sizes structure. For each
1614 * slot, the hook function should set ->name to the attribute name suffix
1615 * (e.g. selinux), to allocate ->value (will be freed by the caller) and set it
1616 * to the attribute value, to set ->value_len to the length of the value. If
1617 * the security module does not use security attributes or does not wish to put
1618 * a security attribute on this particular inode, then it should return
1619 * -EOPNOTSUPP to skip this processing.
1621 * Return: Returns 0 if the LSM successfully initialized all of the inode
1622 * security attributes that are required, negative values otherwise.
1624 int security_inode_init_security(struct inode *inode, struct inode *dir,
1625 const struct qstr *qstr,
1626 const initxattrs initxattrs, void *fs_data)
1628 struct security_hook_list *hp;
1629 struct xattr *new_xattrs = NULL;
1630 int ret = -EOPNOTSUPP, xattr_count = 0;
1632 if (unlikely(IS_PRIVATE(inode)))
1635 if (!blob_sizes.lbs_xattr_count)
1639 /* Allocate +1 for EVM and +1 as terminator. */
1640 new_xattrs = kcalloc(blob_sizes.lbs_xattr_count + 2,
1641 sizeof(*new_xattrs), GFP_NOFS);
1646 hlist_for_each_entry(hp, &security_hook_heads.inode_init_security,
1648 ret = hp->hook.inode_init_security(inode, dir, qstr, new_xattrs,
1650 if (ret && ret != -EOPNOTSUPP)
1653 * As documented in lsm_hooks.h, -EOPNOTSUPP in this context
1654 * means that the LSM is not willing to provide an xattr, not
1655 * that it wants to signal an error. Thus, continue to invoke
1656 * the remaining LSMs.
1660 /* If initxattrs() is NULL, xattr_count is zero, skip the call. */
1664 ret = evm_inode_init_security(inode, dir, qstr, new_xattrs,
1668 ret = initxattrs(inode, new_xattrs, fs_data);
1670 for (; xattr_count > 0; xattr_count--)
1671 kfree(new_xattrs[xattr_count - 1].value);
1673 return (ret == -EOPNOTSUPP) ? 0 : ret;
1675 EXPORT_SYMBOL(security_inode_init_security);
1678 * security_inode_init_security_anon() - Initialize an anonymous inode
1680 * @name: the anonymous inode class
1681 * @context_inode: an optional related inode
1683 * Set up the incore security field for the new anonymous inode and return
1684 * whether the inode creation is permitted by the security module or not.
1686 * Return: Returns 0 on success, -EACCES if the security module denies the
1687 * creation of this inode, or another -errno upon other errors.
1689 int security_inode_init_security_anon(struct inode *inode,
1690 const struct qstr *name,
1691 const struct inode *context_inode)
1693 return call_int_hook(inode_init_security_anon, 0, inode, name,
1697 #ifdef CONFIG_SECURITY_PATH
1699 * security_path_mknod() - Check if creating a special file is allowed
1700 * @dir: parent directory
1702 * @mode: new file mode
1703 * @dev: device number
1705 * Check permissions when creating a file. Note that this hook is called even
1706 * if mknod operation is being done for a regular file.
1708 * Return: Returns 0 if permission is granted.
1710 int security_path_mknod(const struct path *dir, struct dentry *dentry,
1711 umode_t mode, unsigned int dev)
1713 if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1715 return call_int_hook(path_mknod, 0, dir, dentry, mode, dev);
1717 EXPORT_SYMBOL(security_path_mknod);
1720 * security_path_mkdir() - Check if creating a new directory is allowed
1721 * @dir: parent directory
1722 * @dentry: new directory
1723 * @mode: new directory mode
1725 * Check permissions to create a new directory in the existing directory.
1727 * Return: Returns 0 if permission is granted.
1729 int security_path_mkdir(const struct path *dir, struct dentry *dentry,
1732 if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1734 return call_int_hook(path_mkdir, 0, dir, dentry, mode);
1736 EXPORT_SYMBOL(security_path_mkdir);
1739 * security_path_rmdir() - Check if removing a directory is allowed
1740 * @dir: parent directory
1741 * @dentry: directory to remove
1743 * Check the permission to remove a directory.
1745 * Return: Returns 0 if permission is granted.
1747 int security_path_rmdir(const struct path *dir, struct dentry *dentry)
1749 if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1751 return call_int_hook(path_rmdir, 0, dir, dentry);
1755 * security_path_unlink() - Check if removing a hard link is allowed
1756 * @dir: parent directory
1759 * Check the permission to remove a hard link to a file.
1761 * Return: Returns 0 if permission is granted.
1763 int security_path_unlink(const struct path *dir, struct dentry *dentry)
1765 if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1767 return call_int_hook(path_unlink, 0, dir, dentry);
1769 EXPORT_SYMBOL(security_path_unlink);
1772 * security_path_symlink() - Check if creating a symbolic link is allowed
1773 * @dir: parent directory
1774 * @dentry: symbolic link
1775 * @old_name: file pathname
1777 * Check the permission to create a symbolic link to a file.
1779 * Return: Returns 0 if permission is granted.
1781 int security_path_symlink(const struct path *dir, struct dentry *dentry,
1782 const char *old_name)
1784 if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1786 return call_int_hook(path_symlink, 0, dir, dentry, old_name);
1790 * security_path_link - Check if creating a hard link is allowed
1791 * @old_dentry: existing file
1792 * @new_dir: new parent directory
1793 * @new_dentry: new link
1795 * Check permission before creating a new hard link to a file.
1797 * Return: Returns 0 if permission is granted.
1799 int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
1800 struct dentry *new_dentry)
1802 if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry))))
1804 return call_int_hook(path_link, 0, old_dentry, new_dir, new_dentry);
1808 * security_path_rename() - Check if renaming a file is allowed
1809 * @old_dir: parent directory of the old file
1810 * @old_dentry: the old file
1811 * @new_dir: parent directory of the new file
1812 * @new_dentry: the new file
1815 * Check for permission to rename a file or directory.
1817 * Return: Returns 0 if permission is granted.
1819 int security_path_rename(const struct path *old_dir, struct dentry *old_dentry,
1820 const struct path *new_dir, struct dentry *new_dentry,
1823 if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
1824 (d_is_positive(new_dentry) &&
1825 IS_PRIVATE(d_backing_inode(new_dentry)))))
1828 return call_int_hook(path_rename, 0, old_dir, old_dentry, new_dir,
1831 EXPORT_SYMBOL(security_path_rename);
1834 * security_path_truncate() - Check if truncating a file is allowed
1837 * Check permission before truncating the file indicated by path. Note that
1838 * truncation permissions may also be checked based on already opened files,
1839 * using the security_file_truncate() hook.
1841 * Return: Returns 0 if permission is granted.
1843 int security_path_truncate(const struct path *path)
1845 if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1847 return call_int_hook(path_truncate, 0, path);
1851 * security_path_chmod() - Check if changing the file's mode is allowed
1855 * Check for permission to change a mode of the file @path. The new mode is
1856 * specified in @mode which is a bitmask of constants from
1857 * <include/uapi/linux/stat.h>.
1859 * Return: Returns 0 if permission is granted.
1861 int security_path_chmod(const struct path *path, umode_t mode)
1863 if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1865 return call_int_hook(path_chmod, 0, path, mode);
1869 * security_path_chown() - Check if changing the file's owner/group is allowed
1874 * Check for permission to change owner/group of a file or directory.
1876 * Return: Returns 0 if permission is granted.
1878 int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
1880 if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1882 return call_int_hook(path_chown, 0, path, uid, gid);
1886 * security_path_chroot() - Check if changing the root directory is allowed
1889 * Check for permission to change root directory.
1891 * Return: Returns 0 if permission is granted.
1893 int security_path_chroot(const struct path *path)
1895 return call_int_hook(path_chroot, 0, path);
1897 #endif /* CONFIG_SECURITY_PATH */
1900 * security_inode_create() - Check if creating a file is allowed
1901 * @dir: the parent directory
1902 * @dentry: the file being created
1903 * @mode: requested file mode
1905 * Check permission to create a regular file.
1907 * Return: Returns 0 if permission is granted.
1909 int security_inode_create(struct inode *dir, struct dentry *dentry,
1912 if (unlikely(IS_PRIVATE(dir)))
1914 return call_int_hook(inode_create, 0, dir, dentry, mode);
1916 EXPORT_SYMBOL_GPL(security_inode_create);
1919 * security_inode_link() - Check if creating a hard link is allowed
1920 * @old_dentry: existing file
1921 * @dir: new parent directory
1922 * @new_dentry: new link
1924 * Check permission before creating a new hard link to a file.
1926 * Return: Returns 0 if permission is granted.
1928 int security_inode_link(struct dentry *old_dentry, struct inode *dir,
1929 struct dentry *new_dentry)
1931 if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry))))
1933 return call_int_hook(inode_link, 0, old_dentry, dir, new_dentry);
1937 * security_inode_unlink() - Check if removing a hard link is allowed
1938 * @dir: parent directory
1941 * Check the permission to remove a hard link to a file.
1943 * Return: Returns 0 if permission is granted.
1945 int security_inode_unlink(struct inode *dir, struct dentry *dentry)
1947 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
1949 return call_int_hook(inode_unlink, 0, dir, dentry);
1953 * security_inode_symlink() - Check if creating a symbolic link is allowed
1954 * @dir: parent directory
1955 * @dentry: symbolic link
1956 * @old_name: existing filename
1958 * Check the permission to create a symbolic link to a file.
1960 * Return: Returns 0 if permission is granted.
1962 int security_inode_symlink(struct inode *dir, struct dentry *dentry,
1963 const char *old_name)
1965 if (unlikely(IS_PRIVATE(dir)))
1967 return call_int_hook(inode_symlink, 0, dir, dentry, old_name);
1971 * security_inode_mkdir() - Check if creation a new director is allowed
1972 * @dir: parent directory
1973 * @dentry: new directory
1974 * @mode: new directory mode
1976 * Check permissions to create a new directory in the existing directory
1977 * associated with inode structure @dir.
1979 * Return: Returns 0 if permission is granted.
1981 int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1983 if (unlikely(IS_PRIVATE(dir)))
1985 return call_int_hook(inode_mkdir, 0, dir, dentry, mode);
1987 EXPORT_SYMBOL_GPL(security_inode_mkdir);
1990 * security_inode_rmdir() - Check if removing a directory is allowed
1991 * @dir: parent directory
1992 * @dentry: directory to be removed
1994 * Check the permission to remove a directory.
1996 * Return: Returns 0 if permission is granted.
1998 int security_inode_rmdir(struct inode *dir, struct dentry *dentry)
2000 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2002 return call_int_hook(inode_rmdir, 0, dir, dentry);
2006 * security_inode_mknod() - Check if creating a special file is allowed
2007 * @dir: parent directory
2009 * @mode: new file mode
2010 * @dev: device number
2012 * Check permissions when creating a special file (or a socket or a fifo file
2013 * created via the mknod system call). Note that if mknod operation is being
2014 * done for a regular file, then the create hook will be called and not this
2017 * Return: Returns 0 if permission is granted.
2019 int security_inode_mknod(struct inode *dir, struct dentry *dentry,
2020 umode_t mode, dev_t dev)
2022 if (unlikely(IS_PRIVATE(dir)))
2024 return call_int_hook(inode_mknod, 0, dir, dentry, mode, dev);
2028 * security_inode_rename() - Check if renaming a file is allowed
2029 * @old_dir: parent directory of the old file
2030 * @old_dentry: the old file
2031 * @new_dir: parent directory of the new file
2032 * @new_dentry: the new file
2035 * Check for permission to rename a file or directory.
2037 * Return: Returns 0 if permission is granted.
2039 int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
2040 struct inode *new_dir, struct dentry *new_dentry,
2043 if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
2044 (d_is_positive(new_dentry) &&
2045 IS_PRIVATE(d_backing_inode(new_dentry)))))
2048 if (flags & RENAME_EXCHANGE) {
2049 int err = call_int_hook(inode_rename, 0, new_dir, new_dentry,
2050 old_dir, old_dentry);
2055 return call_int_hook(inode_rename, 0, old_dir, old_dentry,
2056 new_dir, new_dentry);
2060 * security_inode_readlink() - Check if reading a symbolic link is allowed
2063 * Check the permission to read the symbolic link.
2065 * Return: Returns 0 if permission is granted.
2067 int security_inode_readlink(struct dentry *dentry)
2069 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2071 return call_int_hook(inode_readlink, 0, dentry);
2075 * security_inode_follow_link() - Check if following a symbolic link is allowed
2076 * @dentry: link dentry
2077 * @inode: link inode
2078 * @rcu: true if in RCU-walk mode
2080 * Check permission to follow a symbolic link when looking up a pathname. If
2081 * @rcu is true, @inode is not stable.
2083 * Return: Returns 0 if permission is granted.
2085 int security_inode_follow_link(struct dentry *dentry, struct inode *inode,
2088 if (unlikely(IS_PRIVATE(inode)))
2090 return call_int_hook(inode_follow_link, 0, dentry, inode, rcu);
2094 * security_inode_permission() - Check if accessing an inode is allowed
2096 * @mask: access mask
2098 * Check permission before accessing an inode. This hook is called by the
2099 * existing Linux permission function, so a security module can use it to
2100 * provide additional checking for existing Linux permission checks. Notice
2101 * that this hook is called when a file is opened (as well as many other
2102 * operations), whereas the file_security_ops permission hook is called when
2103 * the actual read/write operations are performed.
2105 * Return: Returns 0 if permission is granted.
2107 int security_inode_permission(struct inode *inode, int mask)
2109 if (unlikely(IS_PRIVATE(inode)))
2111 return call_int_hook(inode_permission, 0, inode, mask);
2115 * security_inode_setattr() - Check if setting file attributes is allowed
2116 * @idmap: idmap of the mount
2118 * @attr: new attributes
2120 * Check permission before setting file attributes. Note that the kernel call
2121 * to notify_change is performed from several locations, whenever file
2122 * attributes change (such as when a file is truncated, chown/chmod operations,
2123 * transferring disk quotas, etc).
2125 * Return: Returns 0 if permission is granted.
2127 int security_inode_setattr(struct mnt_idmap *idmap,
2128 struct dentry *dentry, struct iattr *attr)
2132 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2134 ret = call_int_hook(inode_setattr, 0, dentry, attr);
2137 return evm_inode_setattr(idmap, dentry, attr);
2139 EXPORT_SYMBOL_GPL(security_inode_setattr);
2142 * security_inode_getattr() - Check if getting file attributes is allowed
2145 * Check permission before obtaining file attributes.
2147 * Return: Returns 0 if permission is granted.
2149 int security_inode_getattr(const struct path *path)
2151 if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
2153 return call_int_hook(inode_getattr, 0, path);
2157 * security_inode_setxattr() - Check if setting file xattrs is allowed
2158 * @idmap: idmap of the mount
2161 * @value: xattr value
2162 * @size: size of xattr value
2165 * Check permission before setting the extended attributes.
2167 * Return: Returns 0 if permission is granted.
2169 int security_inode_setxattr(struct mnt_idmap *idmap,
2170 struct dentry *dentry, const char *name,
2171 const void *value, size_t size, int flags)
2175 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2178 * SELinux and Smack integrate the cap call,
2179 * so assume that all LSMs supplying this call do so.
2181 ret = call_int_hook(inode_setxattr, 1, idmap, dentry, name, value,
2185 ret = cap_inode_setxattr(dentry, name, value, size, flags);
2188 ret = ima_inode_setxattr(dentry, name, value, size);
2191 return evm_inode_setxattr(idmap, dentry, name, value, size);
2195 * security_inode_set_acl() - Check if setting posix acls is allowed
2196 * @idmap: idmap of the mount
2198 * @acl_name: acl name
2201 * Check permission before setting posix acls, the posix acls in @kacl are
2202 * identified by @acl_name.
2204 * Return: Returns 0 if permission is granted.
2206 int security_inode_set_acl(struct mnt_idmap *idmap,
2207 struct dentry *dentry, const char *acl_name,
2208 struct posix_acl *kacl)
2212 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2214 ret = call_int_hook(inode_set_acl, 0, idmap, dentry, acl_name,
2218 ret = ima_inode_set_acl(idmap, dentry, acl_name, kacl);
2221 return evm_inode_set_acl(idmap, dentry, acl_name, kacl);
2225 * security_inode_get_acl() - Check if reading posix acls is allowed
2226 * @idmap: idmap of the mount
2228 * @acl_name: acl name
2230 * Check permission before getting osix acls, the posix acls are identified by
2233 * Return: Returns 0 if permission is granted.
2235 int security_inode_get_acl(struct mnt_idmap *idmap,
2236 struct dentry *dentry, const char *acl_name)
2238 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2240 return call_int_hook(inode_get_acl, 0, idmap, dentry, acl_name);
2244 * security_inode_remove_acl() - Check if removing a posix acl is allowed
2245 * @idmap: idmap of the mount
2247 * @acl_name: acl name
2249 * Check permission before removing posix acls, the posix acls are identified
2252 * Return: Returns 0 if permission is granted.
2254 int security_inode_remove_acl(struct mnt_idmap *idmap,
2255 struct dentry *dentry, const char *acl_name)
2259 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2261 ret = call_int_hook(inode_remove_acl, 0, idmap, dentry, acl_name);
2264 ret = ima_inode_remove_acl(idmap, dentry, acl_name);
2267 return evm_inode_remove_acl(idmap, dentry, acl_name);
2271 * security_inode_post_setxattr() - Update the inode after a setxattr operation
2274 * @value: xattr value
2275 * @size: xattr value size
2278 * Update inode security field after successful setxattr operation.
2280 void security_inode_post_setxattr(struct dentry *dentry, const char *name,
2281 const void *value, size_t size, int flags)
2283 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2285 call_void_hook(inode_post_setxattr, dentry, name, value, size, flags);
2286 evm_inode_post_setxattr(dentry, name, value, size);
2290 * security_inode_getxattr() - Check if xattr access is allowed
2294 * Check permission before obtaining the extended attributes identified by
2295 * @name for @dentry.
2297 * Return: Returns 0 if permission is granted.
2299 int security_inode_getxattr(struct dentry *dentry, const char *name)
2301 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2303 return call_int_hook(inode_getxattr, 0, dentry, name);
2307 * security_inode_listxattr() - Check if listing xattrs is allowed
2310 * Check permission before obtaining the list of extended attribute names for
2313 * Return: Returns 0 if permission is granted.
2315 int security_inode_listxattr(struct dentry *dentry)
2317 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2319 return call_int_hook(inode_listxattr, 0, dentry);
2323 * security_inode_removexattr() - Check if removing an xattr is allowed
2324 * @idmap: idmap of the mount
2328 * Check permission before removing the extended attribute identified by @name
2331 * Return: Returns 0 if permission is granted.
2333 int security_inode_removexattr(struct mnt_idmap *idmap,
2334 struct dentry *dentry, const char *name)
2338 if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2341 * SELinux and Smack integrate the cap call,
2342 * so assume that all LSMs supplying this call do so.
2344 ret = call_int_hook(inode_removexattr, 1, idmap, dentry, name);
2346 ret = cap_inode_removexattr(idmap, dentry, name);
2349 ret = ima_inode_removexattr(dentry, name);
2352 return evm_inode_removexattr(idmap, dentry, name);
2356 * security_inode_need_killpriv() - Check if security_inode_killpriv() required
2357 * @dentry: associated dentry
2359 * Called when an inode has been changed to determine if
2360 * security_inode_killpriv() should be called.
2362 * Return: Return <0 on error to abort the inode change operation, return 0 if
2363 * security_inode_killpriv() does not need to be called, return >0 if
2364 * security_inode_killpriv() does need to be called.
2366 int security_inode_need_killpriv(struct dentry *dentry)
2368 return call_int_hook(inode_need_killpriv, 0, dentry);
2372 * security_inode_killpriv() - The setuid bit is removed, update LSM state
2373 * @idmap: idmap of the mount
2374 * @dentry: associated dentry
2376 * The @dentry's setuid bit is being removed. Remove similar security labels.
2377 * Called with the dentry->d_inode->i_mutex held.
2379 * Return: Return 0 on success. If error is returned, then the operation
2380 * causing setuid bit removal is failed.
2382 int security_inode_killpriv(struct mnt_idmap *idmap,
2383 struct dentry *dentry)
2385 return call_int_hook(inode_killpriv, 0, idmap, dentry);
2389 * security_inode_getsecurity() - Get the xattr security label of an inode
2390 * @idmap: idmap of the mount
2393 * @buffer: security label buffer
2394 * @alloc: allocation flag
2396 * Retrieve a copy of the extended attribute representation of the security
2397 * label associated with @name for @inode via @buffer. Note that @name is the
2398 * remainder of the attribute name after the security prefix has been removed.
2399 * @alloc is used to specify if the call should return a value via the buffer
2400 * or just the value length.
2402 * Return: Returns size of buffer on success.
2404 int security_inode_getsecurity(struct mnt_idmap *idmap,
2405 struct inode *inode, const char *name,
2406 void **buffer, bool alloc)
2408 struct security_hook_list *hp;
2411 if (unlikely(IS_PRIVATE(inode)))
2412 return LSM_RET_DEFAULT(inode_getsecurity);
2414 * Only one module will provide an attribute with a given name.
2416 hlist_for_each_entry(hp, &security_hook_heads.inode_getsecurity, list) {
2417 rc = hp->hook.inode_getsecurity(idmap, inode, name, buffer,
2419 if (rc != LSM_RET_DEFAULT(inode_getsecurity))
2422 return LSM_RET_DEFAULT(inode_getsecurity);
2426 * security_inode_setsecurity() - Set the xattr security label of an inode
2429 * @value: security label
2430 * @size: length of security label
2433 * Set the security label associated with @name for @inode from the extended
2434 * attribute value @value. @size indicates the size of the @value in bytes.
2435 * @flags may be XATTR_CREATE, XATTR_REPLACE, or 0. Note that @name is the
2436 * remainder of the attribute name after the security. prefix has been removed.
2438 * Return: Returns 0 on success.
2440 int security_inode_setsecurity(struct inode *inode, const char *name,
2441 const void *value, size_t size, int flags)
2443 struct security_hook_list *hp;
2446 if (unlikely(IS_PRIVATE(inode)))
2447 return LSM_RET_DEFAULT(inode_setsecurity);
2449 * Only one module will provide an attribute with a given name.
2451 hlist_for_each_entry(hp, &security_hook_heads.inode_setsecurity, list) {
2452 rc = hp->hook.inode_setsecurity(inode, name, value, size,
2454 if (rc != LSM_RET_DEFAULT(inode_setsecurity))
2457 return LSM_RET_DEFAULT(inode_setsecurity);
2461 * security_inode_listsecurity() - List the xattr security label names
2464 * @buffer_size: size of buffer
2466 * Copy the extended attribute names for the security labels associated with
2467 * @inode into @buffer. The maximum size of @buffer is specified by
2468 * @buffer_size. @buffer may be NULL to request the size of the buffer
2471 * Return: Returns number of bytes used/required on success.
2473 int security_inode_listsecurity(struct inode *inode,
2474 char *buffer, size_t buffer_size)
2476 if (unlikely(IS_PRIVATE(inode)))
2478 return call_int_hook(inode_listsecurity, 0, inode, buffer, buffer_size);
2480 EXPORT_SYMBOL(security_inode_listsecurity);
2483 * security_inode_getsecid() - Get an inode's secid
2485 * @secid: secid to return
2487 * Get the secid associated with the node. In case of failure, @secid will be
2490 void security_inode_getsecid(struct inode *inode, u32 *secid)
2492 call_void_hook(inode_getsecid, inode, secid);
2496 * security_inode_copy_up() - Create new creds for an overlayfs copy-up op
2497 * @src: union dentry of copy-up file
2498 * @new: newly created creds
2500 * A file is about to be copied up from lower layer to upper layer of overlay
2501 * filesystem. Security module can prepare a set of new creds and modify as
2502 * need be and return new creds. Caller will switch to new creds temporarily to
2503 * create new file and release newly allocated creds.
2505 * Return: Returns 0 on success or a negative error code on error.
2507 int security_inode_copy_up(struct dentry *src, struct cred **new)
2509 return call_int_hook(inode_copy_up, 0, src, new);
2511 EXPORT_SYMBOL(security_inode_copy_up);
2514 * security_inode_copy_up_xattr() - Filter xattrs in an overlayfs copy-up op
2517 * Filter the xattrs being copied up when a unioned file is copied up from a
2518 * lower layer to the union/overlay layer. The caller is responsible for
2519 * reading and writing the xattrs, this hook is merely a filter.
2521 * Return: Returns 0 to accept the xattr, 1 to discard the xattr, -EOPNOTSUPP
2522 * if the security module does not know about attribute, or a negative
2523 * error code to abort the copy up.
2525 int security_inode_copy_up_xattr(const char *name)
2527 struct security_hook_list *hp;
2531 * The implementation can return 0 (accept the xattr), 1 (discard the
2532 * xattr), -EOPNOTSUPP if it does not know anything about the xattr or
2533 * any other error code in case of an error.
2535 hlist_for_each_entry(hp,
2536 &security_hook_heads.inode_copy_up_xattr, list) {
2537 rc = hp->hook.inode_copy_up_xattr(name);
2538 if (rc != LSM_RET_DEFAULT(inode_copy_up_xattr))
2542 return LSM_RET_DEFAULT(inode_copy_up_xattr);
2544 EXPORT_SYMBOL(security_inode_copy_up_xattr);
2547 * security_kernfs_init_security() - Init LSM context for a kernfs node
2548 * @kn_dir: parent kernfs node
2549 * @kn: the kernfs node to initialize
2551 * Initialize the security context of a newly created kernfs node based on its
2552 * own and its parent's attributes.
2554 * Return: Returns 0 if permission is granted.
2556 int security_kernfs_init_security(struct kernfs_node *kn_dir,
2557 struct kernfs_node *kn)
2559 return call_int_hook(kernfs_init_security, 0, kn_dir, kn);
2563 * security_file_permission() - Check file permissions
2565 * @mask: requested permissions
2567 * Check file permissions before accessing an open file. This hook is called
2568 * by various operations that read or write files. A security module can use
2569 * this hook to perform additional checking on these operations, e.g. to
2570 * revalidate permissions on use to support privilege bracketing or policy
2571 * changes. Notice that this hook is used when the actual read/write
2572 * operations are performed, whereas the inode_security_ops hook is called when
2573 * a file is opened (as well as many other operations). Although this hook can
2574 * be used to revalidate permissions for various system call operations that
2575 * read or write files, it does not address the revalidation of permissions for
2576 * memory-mapped files. Security modules must handle this separately if they
2577 * need such revalidation.
2579 * Return: Returns 0 if permission is granted.
2581 int security_file_permission(struct file *file, int mask)
2585 ret = call_int_hook(file_permission, 0, file, mask);
2589 return fsnotify_perm(file, mask);
2593 * security_file_alloc() - Allocate and init a file's LSM blob
2596 * Allocate and attach a security structure to the file->f_security field. The
2597 * security field is initialized to NULL when the structure is first created.
2599 * Return: Return 0 if the hook is successful and permission is granted.
2601 int security_file_alloc(struct file *file)
2603 int rc = lsm_file_alloc(file);
2607 rc = call_int_hook(file_alloc_security, 0, file);
2609 security_file_free(file);
2614 * security_file_free() - Free a file's LSM blob
2617 * Deallocate and free any security structures stored in file->f_security.
2619 void security_file_free(struct file *file)
2623 call_void_hook(file_free_security, file);
2625 blob = file->f_security;
2627 file->f_security = NULL;
2628 kmem_cache_free(lsm_file_cache, blob);
2633 * security_file_ioctl() - Check if an ioctl is allowed
2634 * @file: associated file
2636 * @arg: ioctl arguments
2638 * Check permission for an ioctl operation on @file. Note that @arg sometimes
2639 * represents a user space pointer; in other cases, it may be a simple integer
2640 * value. When @arg represents a user space pointer, it should never be used
2641 * by the security module.
2643 * Return: Returns 0 if permission is granted.
2645 int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2647 return call_int_hook(file_ioctl, 0, file, cmd, arg);
2649 EXPORT_SYMBOL_GPL(security_file_ioctl);
2652 * security_file_ioctl_compat() - Check if an ioctl is allowed in compat mode
2653 * @file: associated file
2655 * @arg: ioctl arguments
2657 * Compat version of security_file_ioctl() that correctly handles 32-bit
2658 * processes running on 64-bit kernels.
2660 * Return: Returns 0 if permission is granted.
2662 int security_file_ioctl_compat(struct file *file, unsigned int cmd,
2665 return call_int_hook(file_ioctl_compat, 0, file, cmd, arg);
2667 EXPORT_SYMBOL_GPL(security_file_ioctl_compat);
2669 static inline unsigned long mmap_prot(struct file *file, unsigned long prot)
2672 * Does we have PROT_READ and does the application expect
2673 * it to imply PROT_EXEC? If not, nothing to talk about...
2675 if ((prot & (PROT_READ | PROT_EXEC)) != PROT_READ)
2677 if (!(current->personality & READ_IMPLIES_EXEC))
2680 * if that's an anonymous mapping, let it.
2683 return prot | PROT_EXEC;
2685 * ditto if it's not on noexec mount, except that on !MMU we need
2686 * NOMMU_MAP_EXEC (== VM_MAYEXEC) in this case
2688 if (!path_noexec(&file->f_path)) {
2690 if (file->f_op->mmap_capabilities) {
2691 unsigned caps = file->f_op->mmap_capabilities(file);
2692 if (!(caps & NOMMU_MAP_EXEC))
2696 return prot | PROT_EXEC;
2698 /* anything on noexec mount won't get PROT_EXEC */
2703 * security_mmap_file() - Check if mmap'ing a file is allowed
2705 * @prot: protection applied by the kernel
2708 * Check permissions for a mmap operation. The @file may be NULL, e.g. if
2709 * mapping anonymous memory.
2711 * Return: Returns 0 if permission is granted.
2713 int security_mmap_file(struct file *file, unsigned long prot,
2714 unsigned long flags)
2716 unsigned long prot_adj = mmap_prot(file, prot);
2719 ret = call_int_hook(mmap_file, 0, file, prot, prot_adj, flags);
2722 return ima_file_mmap(file, prot, prot_adj, flags);
2726 * security_mmap_addr() - Check if mmap'ing an address is allowed
2729 * Check permissions for a mmap operation at @addr.
2731 * Return: Returns 0 if permission is granted.
2733 int security_mmap_addr(unsigned long addr)
2735 return call_int_hook(mmap_addr, 0, addr);
2739 * security_file_mprotect() - Check if changing memory protections is allowed
2740 * @vma: memory region
2741 * @reqprot: application requested protection
2742 * @prot: protection applied by the kernel
2744 * Check permissions before changing memory access permissions.
2746 * Return: Returns 0 if permission is granted.
2748 int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
2753 ret = call_int_hook(file_mprotect, 0, vma, reqprot, prot);
2756 return ima_file_mprotect(vma, prot);
2760 * security_file_lock() - Check if a file lock is allowed
2762 * @cmd: lock operation (e.g. F_RDLCK, F_WRLCK)
2764 * Check permission before performing file locking operations. Note the hook
2765 * mediates both flock and fcntl style locks.
2767 * Return: Returns 0 if permission is granted.
2769 int security_file_lock(struct file *file, unsigned int cmd)
2771 return call_int_hook(file_lock, 0, file, cmd);
2775 * security_file_fcntl() - Check if fcntl() op is allowed
2777 * @cmd: fcntl command
2778 * @arg: command argument
2780 * Check permission before allowing the file operation specified by @cmd from
2781 * being performed on the file @file. Note that @arg sometimes represents a
2782 * user space pointer; in other cases, it may be a simple integer value. When
2783 * @arg represents a user space pointer, it should never be used by the
2786 * Return: Returns 0 if permission is granted.
2788 int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2790 return call_int_hook(file_fcntl, 0, file, cmd, arg);
2794 * security_file_set_fowner() - Set the file owner info in the LSM blob
2797 * Save owner security information (typically from current->security) in
2798 * file->f_security for later use by the send_sigiotask hook.
2800 * Return: Returns 0 on success.
2802 void security_file_set_fowner(struct file *file)
2804 call_void_hook(file_set_fowner, file);
2808 * security_file_send_sigiotask() - Check if sending SIGIO/SIGURG is allowed
2810 * @fown: signal sender
2811 * @sig: signal to be sent, SIGIO is sent if 0
2813 * Check permission for the file owner @fown to send SIGIO or SIGURG to the
2814 * process @tsk. Note that this hook is sometimes called from interrupt. Note
2815 * that the fown_struct, @fown, is never outside the context of a struct file,
2816 * so the file structure (and associated security information) can always be
2817 * obtained: container_of(fown, struct file, f_owner).
2819 * Return: Returns 0 if permission is granted.
2821 int security_file_send_sigiotask(struct task_struct *tsk,
2822 struct fown_struct *fown, int sig)
2824 return call_int_hook(file_send_sigiotask, 0, tsk, fown, sig);
2828 * security_file_receive() - Check is receiving a file via IPC is allowed
2829 * @file: file being received
2831 * This hook allows security modules to control the ability of a process to
2832 * receive an open file descriptor via socket IPC.
2834 * Return: Returns 0 if permission is granted.
2836 int security_file_receive(struct file *file)
2838 return call_int_hook(file_receive, 0, file);
2842 * security_file_open() - Save open() time state for late use by the LSM
2845 * Save open-time permission checking state for later use upon file_permission,
2846 * and recheck access if anything has changed since inode_permission.
2848 * Return: Returns 0 if permission is granted.
2850 int security_file_open(struct file *file)
2854 ret = call_int_hook(file_open, 0, file);
2858 return fsnotify_perm(file, MAY_OPEN);
2862 * security_file_truncate() - Check if truncating a file is allowed
2865 * Check permission before truncating a file, i.e. using ftruncate. Note that
2866 * truncation permission may also be checked based on the path, using the
2867 * @path_truncate hook.
2869 * Return: Returns 0 if permission is granted.
2871 int security_file_truncate(struct file *file)
2873 return call_int_hook(file_truncate, 0, file);
2877 * security_task_alloc() - Allocate a task's LSM blob
2879 * @clone_flags: flags indicating what is being shared
2881 * Handle allocation of task-related resources.
2883 * Return: Returns a zero on success, negative values on failure.
2885 int security_task_alloc(struct task_struct *task, unsigned long clone_flags)
2887 int rc = lsm_task_alloc(task);
2891 rc = call_int_hook(task_alloc, 0, task, clone_flags);
2893 security_task_free(task);
2898 * security_task_free() - Free a task's LSM blob and related resources
2901 * Handle release of task-related resources. Note that this can be called from
2902 * interrupt context.
2904 void security_task_free(struct task_struct *task)
2906 call_void_hook(task_free, task);
2908 kfree(task->security);
2909 task->security = NULL;
2913 * security_cred_alloc_blank() - Allocate the min memory to allow cred_transfer
2914 * @cred: credentials
2917 * Only allocate sufficient memory and attach to @cred such that
2918 * cred_transfer() will not get ENOMEM.
2920 * Return: Returns 0 on success, negative values on failure.
2922 int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
2924 int rc = lsm_cred_alloc(cred, gfp);
2929 rc = call_int_hook(cred_alloc_blank, 0, cred, gfp);
2931 security_cred_free(cred);
2936 * security_cred_free() - Free the cred's LSM blob and associated resources
2937 * @cred: credentials
2939 * Deallocate and clear the cred->security field in a set of credentials.
2941 void security_cred_free(struct cred *cred)
2944 * There is a failure case in prepare_creds() that
2945 * may result in a call here with ->security being NULL.
2947 if (unlikely(cred->security == NULL))
2950 call_void_hook(cred_free, cred);
2952 kfree(cred->security);
2953 cred->security = NULL;
2957 * security_prepare_creds() - Prepare a new set of credentials
2958 * @new: new credentials
2959 * @old: original credentials
2962 * Prepare a new set of credentials by copying the data from the old set.
2964 * Return: Returns 0 on success, negative values on failure.
2966 int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp)
2968 int rc = lsm_cred_alloc(new, gfp);
2973 rc = call_int_hook(cred_prepare, 0, new, old, gfp);
2975 security_cred_free(new);
2980 * security_transfer_creds() - Transfer creds
2981 * @new: target credentials
2982 * @old: original credentials
2984 * Transfer data from original creds to new creds.
2986 void security_transfer_creds(struct cred *new, const struct cred *old)
2988 call_void_hook(cred_transfer, new, old);
2992 * security_cred_getsecid() - Get the secid from a set of credentials
2994 * @secid: secid value
2996 * Retrieve the security identifier of the cred structure @c. In case of
2997 * failure, @secid will be set to zero.
2999 void security_cred_getsecid(const struct cred *c, u32 *secid)
3002 call_void_hook(cred_getsecid, c, secid);
3004 EXPORT_SYMBOL(security_cred_getsecid);
3007 * security_kernel_act_as() - Set the kernel credentials to act as secid
3011 * Set the credentials for a kernel service to act as (subjective context).
3012 * The current task must be the one that nominated @secid.
3014 * Return: Returns 0 if successful.
3016 int security_kernel_act_as(struct cred *new, u32 secid)
3018 return call_int_hook(kernel_act_as, 0, new, secid);
3022 * security_kernel_create_files_as() - Set file creation context using an inode
3023 * @new: target credentials
3024 * @inode: reference inode
3026 * Set the file creation context in a set of credentials to be the same as the
3027 * objective context of the specified inode. The current task must be the one
3028 * that nominated @inode.
3030 * Return: Returns 0 if successful.
3032 int security_kernel_create_files_as(struct cred *new, struct inode *inode)
3034 return call_int_hook(kernel_create_files_as, 0, new, inode);
3038 * security_kernel_module_request() - Check is loading a module is allowed
3039 * @kmod_name: module name
3041 * Ability to trigger the kernel to automatically upcall to userspace for
3042 * userspace to load a kernel module with the given name.
3044 * Return: Returns 0 if successful.
3046 int security_kernel_module_request(char *kmod_name)
3050 ret = call_int_hook(kernel_module_request, 0, kmod_name);
3053 return integrity_kernel_module_request(kmod_name);
3057 * security_kernel_read_file() - Read a file specified by userspace
3059 * @id: file identifier
3060 * @contents: trust if security_kernel_post_read_file() will be called
3062 * Read a file specified by userspace.
3064 * Return: Returns 0 if permission is granted.
3066 int security_kernel_read_file(struct file *file, enum kernel_read_file_id id,
3071 ret = call_int_hook(kernel_read_file, 0, file, id, contents);
3074 return ima_read_file(file, id, contents);
3076 EXPORT_SYMBOL_GPL(security_kernel_read_file);
3079 * security_kernel_post_read_file() - Read a file specified by userspace
3081 * @buf: file contents
3082 * @size: size of file contents
3083 * @id: file identifier
3085 * Read a file specified by userspace. This must be paired with a prior call
3086 * to security_kernel_read_file() call that indicated this hook would also be
3087 * called, see security_kernel_read_file() for more information.
3089 * Return: Returns 0 if permission is granted.
3091 int security_kernel_post_read_file(struct file *file, char *buf, loff_t size,
3092 enum kernel_read_file_id id)
3096 ret = call_int_hook(kernel_post_read_file, 0, file, buf, size, id);
3099 return ima_post_read_file(file, buf, size, id);
3101 EXPORT_SYMBOL_GPL(security_kernel_post_read_file);
3104 * security_kernel_load_data() - Load data provided by userspace
3105 * @id: data identifier
3106 * @contents: true if security_kernel_post_load_data() will be called
3108 * Load data provided by userspace.
3110 * Return: Returns 0 if permission is granted.
3112 int security_kernel_load_data(enum kernel_load_data_id id, bool contents)
3116 ret = call_int_hook(kernel_load_data, 0, id, contents);
3119 return ima_load_data(id, contents);
3121 EXPORT_SYMBOL_GPL(security_kernel_load_data);
3124 * security_kernel_post_load_data() - Load userspace data from a non-file source
3126 * @size: size of data
3127 * @id: data identifier
3128 * @description: text description of data, specific to the id value
3130 * Load data provided by a non-file source (usually userspace buffer). This
3131 * must be paired with a prior security_kernel_load_data() call that indicated
3132 * this hook would also be called, see security_kernel_load_data() for more
3135 * Return: Returns 0 if permission is granted.
3137 int security_kernel_post_load_data(char *buf, loff_t size,
3138 enum kernel_load_data_id id,
3143 ret = call_int_hook(kernel_post_load_data, 0, buf, size, id,
3147 return ima_post_load_data(buf, size, id, description);
3149 EXPORT_SYMBOL_GPL(security_kernel_post_load_data);
3152 * security_task_fix_setuid() - Update LSM with new user id attributes
3153 * @new: updated credentials
3154 * @old: credentials being replaced
3155 * @flags: LSM_SETID_* flag values
3157 * Update the module's state after setting one or more of the user identity
3158 * attributes of the current process. The @flags parameter indicates which of
3159 * the set*uid system calls invoked this hook. If @new is the set of
3160 * credentials that will be installed. Modifications should be made to this
3161 * rather than to @current->cred.
3163 * Return: Returns 0 on success.
3165 int security_task_fix_setuid(struct cred *new, const struct cred *old,
3168 return call_int_hook(task_fix_setuid, 0, new, old, flags);
3172 * security_task_fix_setgid() - Update LSM with new group id attributes
3173 * @new: updated credentials
3174 * @old: credentials being replaced
3175 * @flags: LSM_SETID_* flag value
3177 * Update the module's state after setting one or more of the group identity
3178 * attributes of the current process. The @flags parameter indicates which of
3179 * the set*gid system calls invoked this hook. @new is the set of credentials
3180 * that will be installed. Modifications should be made to this rather than to
3183 * Return: Returns 0 on success.
3185 int security_task_fix_setgid(struct cred *new, const struct cred *old,
3188 return call_int_hook(task_fix_setgid, 0, new, old, flags);
3192 * security_task_fix_setgroups() - Update LSM with new supplementary groups
3193 * @new: updated credentials
3194 * @old: credentials being replaced
3196 * Update the module's state after setting the supplementary group identity
3197 * attributes of the current process. @new is the set of credentials that will
3198 * be installed. Modifications should be made to this rather than to
3201 * Return: Returns 0 on success.
3203 int security_task_fix_setgroups(struct cred *new, const struct cred *old)
3205 return call_int_hook(task_fix_setgroups, 0, new, old);
3209 * security_task_setpgid() - Check if setting the pgid is allowed
3210 * @p: task being modified
3213 * Check permission before setting the process group identifier of the process
3216 * Return: Returns 0 if permission is granted.
3218 int security_task_setpgid(struct task_struct *p, pid_t pgid)
3220 return call_int_hook(task_setpgid, 0, p, pgid);
3224 * security_task_getpgid() - Check if getting the pgid is allowed
3227 * Check permission before getting the process group identifier of the process
3230 * Return: Returns 0 if permission is granted.
3232 int security_task_getpgid(struct task_struct *p)
3234 return call_int_hook(task_getpgid, 0, p);
3238 * security_task_getsid() - Check if getting the session id is allowed
3241 * Check permission before getting the session identifier of the process @p.
3243 * Return: Returns 0 if permission is granted.
3245 int security_task_getsid(struct task_struct *p)
3247 return call_int_hook(task_getsid, 0, p);
3251 * security_current_getsecid_subj() - Get the current task's subjective secid
3252 * @secid: secid value
3254 * Retrieve the subjective security identifier of the current task and return
3255 * it in @secid. In case of failure, @secid will be set to zero.
3257 void security_current_getsecid_subj(u32 *secid)
3260 call_void_hook(current_getsecid_subj, secid);
3262 EXPORT_SYMBOL(security_current_getsecid_subj);
3265 * security_task_getsecid_obj() - Get a task's objective secid
3267 * @secid: secid value
3269 * Retrieve the objective security identifier of the task_struct in @p and
3270 * return it in @secid. In case of failure, @secid will be set to zero.
3272 void security_task_getsecid_obj(struct task_struct *p, u32 *secid)
3275 call_void_hook(task_getsecid_obj, p, secid);
3277 EXPORT_SYMBOL(security_task_getsecid_obj);
3280 * security_task_setnice() - Check if setting a task's nice value is allowed
3284 * Check permission before setting the nice value of @p to @nice.
3286 * Return: Returns 0 if permission is granted.
3288 int security_task_setnice(struct task_struct *p, int nice)
3290 return call_int_hook(task_setnice, 0, p, nice);
3294 * security_task_setioprio() - Check if setting a task's ioprio is allowed
3296 * @ioprio: ioprio value
3298 * Check permission before setting the ioprio value of @p to @ioprio.
3300 * Return: Returns 0 if permission is granted.
3302 int security_task_setioprio(struct task_struct *p, int ioprio)
3304 return call_int_hook(task_setioprio, 0, p, ioprio);
3308 * security_task_getioprio() - Check if getting a task's ioprio is allowed
3311 * Check permission before getting the ioprio value of @p.
3313 * Return: Returns 0 if permission is granted.
3315 int security_task_getioprio(struct task_struct *p)
3317 return call_int_hook(task_getioprio, 0, p);
3321 * security_task_prlimit() - Check if get/setting resources limits is allowed
3322 * @cred: current task credentials
3323 * @tcred: target task credentials
3324 * @flags: LSM_PRLIMIT_* flag bits indicating a get/set/both
3326 * Check permission before getting and/or setting the resource limits of
3329 * Return: Returns 0 if permission is granted.
3331 int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
3334 return call_int_hook(task_prlimit, 0, cred, tcred, flags);
3338 * security_task_setrlimit() - Check if setting a new rlimit value is allowed
3339 * @p: target task's group leader
3340 * @resource: resource whose limit is being set
3341 * @new_rlim: new resource limit
3343 * Check permission before setting the resource limits of process @p for
3344 * @resource to @new_rlim. The old resource limit values can be examined by
3345 * dereferencing (p->signal->rlim + resource).
3347 * Return: Returns 0 if permission is granted.
3349 int security_task_setrlimit(struct task_struct *p, unsigned int resource,
3350 struct rlimit *new_rlim)
3352 return call_int_hook(task_setrlimit, 0, p, resource, new_rlim);
3356 * security_task_setscheduler() - Check if setting sched policy/param is allowed
3359 * Check permission before setting scheduling policy and/or parameters of
3362 * Return: Returns 0 if permission is granted.
3364 int security_task_setscheduler(struct task_struct *p)
3366 return call_int_hook(task_setscheduler, 0, p);
3370 * security_task_getscheduler() - Check if getting scheduling info is allowed
3373 * Check permission before obtaining scheduling information for process @p.
3375 * Return: Returns 0 if permission is granted.
3377 int security_task_getscheduler(struct task_struct *p)
3379 return call_int_hook(task_getscheduler, 0, p);
3383 * security_task_movememory() - Check if moving memory is allowed
3386 * Check permission before moving memory owned by process @p.
3388 * Return: Returns 0 if permission is granted.
3390 int security_task_movememory(struct task_struct *p)
3392 return call_int_hook(task_movememory, 0, p);
3396 * security_task_kill() - Check if sending a signal is allowed
3397 * @p: target process
3398 * @info: signal information
3399 * @sig: signal value
3400 * @cred: credentials of the signal sender, NULL if @current
3402 * Check permission before sending signal @sig to @p. @info can be NULL, the
3403 * constant 1, or a pointer to a kernel_siginfo structure. If @info is 1 or
3404 * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming from
3405 * the kernel and should typically be permitted. SIGIO signals are handled
3406 * separately by the send_sigiotask hook in file_security_ops.
3408 * Return: Returns 0 if permission is granted.
3410 int security_task_kill(struct task_struct *p, struct kernel_siginfo *info,
3411 int sig, const struct cred *cred)
3413 return call_int_hook(task_kill, 0, p, info, sig, cred);
3417 * security_task_prctl() - Check if a prctl op is allowed
3418 * @option: operation
3424 * Check permission before performing a process control operation on the
3427 * Return: Return -ENOSYS if no-one wanted to handle this op, any other value
3428 * to cause prctl() to return immediately with that value.
3430 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
3431 unsigned long arg4, unsigned long arg5)
3434 int rc = LSM_RET_DEFAULT(task_prctl);
3435 struct security_hook_list *hp;
3437 hlist_for_each_entry(hp, &security_hook_heads.task_prctl, list) {
3438 thisrc = hp->hook.task_prctl(option, arg2, arg3, arg4, arg5);
3439 if (thisrc != LSM_RET_DEFAULT(task_prctl)) {
3449 * security_task_to_inode() - Set the security attributes of a task's inode
3453 * Set the security attributes for an inode based on an associated task's
3454 * security attributes, e.g. for /proc/pid inodes.
3456 void security_task_to_inode(struct task_struct *p, struct inode *inode)
3458 call_void_hook(task_to_inode, p, inode);
3462 * security_create_user_ns() - Check if creating a new userns is allowed
3463 * @cred: prepared creds
3465 * Check permission prior to creating a new user namespace.
3467 * Return: Returns 0 if successful, otherwise < 0 error code.
3469 int security_create_user_ns(const struct cred *cred)
3471 return call_int_hook(userns_create, 0, cred);
3475 * security_ipc_permission() - Check if sysv ipc access is allowed
3476 * @ipcp: ipc permission structure
3477 * @flag: requested permissions
3479 * Check permissions for access to IPC.
3481 * Return: Returns 0 if permission is granted.
3483 int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag)
3485 return call_int_hook(ipc_permission, 0, ipcp, flag);
3489 * security_ipc_getsecid() - Get the sysv ipc object's secid
3490 * @ipcp: ipc permission structure
3491 * @secid: secid pointer
3493 * Get the secid associated with the ipc object. In case of failure, @secid
3494 * will be set to zero.
3496 void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
3499 call_void_hook(ipc_getsecid, ipcp, secid);
3503 * security_msg_msg_alloc() - Allocate a sysv ipc message LSM blob
3504 * @msg: message structure
3506 * Allocate and attach a security structure to the msg->security field. The
3507 * security field is initialized to NULL when the structure is first created.
3509 * Return: Return 0 if operation was successful and permission is granted.
3511 int security_msg_msg_alloc(struct msg_msg *msg)
3513 int rc = lsm_msg_msg_alloc(msg);
3517 rc = call_int_hook(msg_msg_alloc_security, 0, msg);
3519 security_msg_msg_free(msg);
3524 * security_msg_msg_free() - Free a sysv ipc message LSM blob
3525 * @msg: message structure
3527 * Deallocate the security structure for this message.
3529 void security_msg_msg_free(struct msg_msg *msg)
3531 call_void_hook(msg_msg_free_security, msg);
3532 kfree(msg->security);
3533 msg->security = NULL;
3537 * security_msg_queue_alloc() - Allocate a sysv ipc msg queue LSM blob
3538 * @msq: sysv ipc permission structure
3540 * Allocate and attach a security structure to @msg. The security field is
3541 * initialized to NULL when the structure is first created.
3543 * Return: Returns 0 if operation was successful and permission is granted.
3545 int security_msg_queue_alloc(struct kern_ipc_perm *msq)
3547 int rc = lsm_ipc_alloc(msq);
3551 rc = call_int_hook(msg_queue_alloc_security, 0, msq);
3553 security_msg_queue_free(msq);
3558 * security_msg_queue_free() - Free a sysv ipc msg queue LSM blob
3559 * @msq: sysv ipc permission structure
3561 * Deallocate security field @perm->security for the message queue.
3563 void security_msg_queue_free(struct kern_ipc_perm *msq)
3565 call_void_hook(msg_queue_free_security, msq);
3566 kfree(msq->security);
3567 msq->security = NULL;
3571 * security_msg_queue_associate() - Check if a msg queue operation is allowed
3572 * @msq: sysv ipc permission structure
3573 * @msqflg: operation flags
3575 * Check permission when a message queue is requested through the msgget system
3576 * call. This hook is only called when returning the message queue identifier
3577 * for an existing message queue, not when a new message queue is created.
3579 * Return: Return 0 if permission is granted.
3581 int security_msg_queue_associate(struct kern_ipc_perm *msq, int msqflg)
3583 return call_int_hook(msg_queue_associate, 0, msq, msqflg);
3587 * security_msg_queue_msgctl() - Check if a msg queue operation is allowed
3588 * @msq: sysv ipc permission structure
3591 * Check permission when a message control operation specified by @cmd is to be
3592 * performed on the message queue with permissions.
3594 * Return: Returns 0 if permission is granted.
3596 int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd)
3598 return call_int_hook(msg_queue_msgctl, 0, msq, cmd);
3602 * security_msg_queue_msgsnd() - Check if sending a sysv ipc message is allowed
3603 * @msq: sysv ipc permission structure
3605 * @msqflg: operation flags
3607 * Check permission before a message, @msg, is enqueued on the message queue
3608 * with permissions specified in @msq.
3610 * Return: Returns 0 if permission is granted.
3612 int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
3613 struct msg_msg *msg, int msqflg)
3615 return call_int_hook(msg_queue_msgsnd, 0, msq, msg, msqflg);
3619 * security_msg_queue_msgrcv() - Check if receiving a sysv ipc msg is allowed
3620 * @msq: sysv ipc permission structure
3622 * @target: target task
3623 * @type: type of message requested
3624 * @mode: operation flags
3626 * Check permission before a message, @msg, is removed from the message queue.
3627 * The @target task structure contains a pointer to the process that will be
3628 * receiving the message (not equal to the current process when inline receives
3629 * are being performed).
3631 * Return: Returns 0 if permission is granted.
3633 int security_msg_queue_msgrcv(struct kern_ipc_perm *msq, struct msg_msg *msg,
3634 struct task_struct *target, long type, int mode)
3636 return call_int_hook(msg_queue_msgrcv, 0, msq, msg, target, type, mode);
3640 * security_shm_alloc() - Allocate a sysv shm LSM blob
3641 * @shp: sysv ipc permission structure
3643 * Allocate and attach a security structure to the @shp security field. The
3644 * security field is initialized to NULL when the structure is first created.
3646 * Return: Returns 0 if operation was successful and permission is granted.
3648 int security_shm_alloc(struct kern_ipc_perm *shp)
3650 int rc = lsm_ipc_alloc(shp);
3654 rc = call_int_hook(shm_alloc_security, 0, shp);
3656 security_shm_free(shp);
3661 * security_shm_free() - Free a sysv shm LSM blob
3662 * @shp: sysv ipc permission structure
3664 * Deallocate the security structure @perm->security for the memory segment.
3666 void security_shm_free(struct kern_ipc_perm *shp)
3668 call_void_hook(shm_free_security, shp);
3669 kfree(shp->security);
3670 shp->security = NULL;
3674 * security_shm_associate() - Check if a sysv shm operation is allowed
3675 * @shp: sysv ipc permission structure
3676 * @shmflg: operation flags
3678 * Check permission when a shared memory region is requested through the shmget
3679 * system call. This hook is only called when returning the shared memory
3680 * region identifier for an existing region, not when a new shared memory
3681 * region is created.
3683 * Return: Returns 0 if permission is granted.
3685 int security_shm_associate(struct kern_ipc_perm *shp, int shmflg)
3687 return call_int_hook(shm_associate, 0, shp, shmflg);
3691 * security_shm_shmctl() - Check if a sysv shm operation is allowed
3692 * @shp: sysv ipc permission structure
3695 * Check permission when a shared memory control operation specified by @cmd is
3696 * to be performed on the shared memory region with permissions in @shp.
3698 * Return: Return 0 if permission is granted.
3700 int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd)
3702 return call_int_hook(shm_shmctl, 0, shp, cmd);
3706 * security_shm_shmat() - Check if a sysv shm attach operation is allowed
3707 * @shp: sysv ipc permission structure
3708 * @shmaddr: address of memory region to attach
3709 * @shmflg: operation flags
3711 * Check permissions prior to allowing the shmat system call to attach the
3712 * shared memory segment with permissions @shp to the data segment of the
3713 * calling process. The attaching address is specified by @shmaddr.
3715 * Return: Returns 0 if permission is granted.
3717 int security_shm_shmat(struct kern_ipc_perm *shp,
3718 char __user *shmaddr, int shmflg)
3720 return call_int_hook(shm_shmat, 0, shp, shmaddr, shmflg);
3724 * security_sem_alloc() - Allocate a sysv semaphore LSM blob
3725 * @sma: sysv ipc permission structure
3727 * Allocate and attach a security structure to the @sma security field. The
3728 * security field is initialized to NULL when the structure is first created.
3730 * Return: Returns 0 if operation was successful and permission is granted.
3732 int security_sem_alloc(struct kern_ipc_perm *sma)
3734 int rc = lsm_ipc_alloc(sma);
3738 rc = call_int_hook(sem_alloc_security, 0, sma);
3740 security_sem_free(sma);
3745 * security_sem_free() - Free a sysv semaphore LSM blob
3746 * @sma: sysv ipc permission structure
3748 * Deallocate security structure @sma->security for the semaphore.
3750 void security_sem_free(struct kern_ipc_perm *sma)
3752 call_void_hook(sem_free_security, sma);
3753 kfree(sma->security);
3754 sma->security = NULL;
3758 * security_sem_associate() - Check if a sysv semaphore operation is allowed
3759 * @sma: sysv ipc permission structure
3760 * @semflg: operation flags
3762 * Check permission when a semaphore is requested through the semget system
3763 * call. This hook is only called when returning the semaphore identifier for
3764 * an existing semaphore, not when a new one must be created.
3766 * Return: Returns 0 if permission is granted.
3768 int security_sem_associate(struct kern_ipc_perm *sma, int semflg)
3770 return call_int_hook(sem_associate, 0, sma, semflg);
3774 * security_sem_semctl() - Check if a sysv semaphore operation is allowed
3775 * @sma: sysv ipc permission structure
3778 * Check permission when a semaphore operation specified by @cmd is to be
3779 * performed on the semaphore.
3781 * Return: Returns 0 if permission is granted.
3783 int security_sem_semctl(struct kern_ipc_perm *sma, int cmd)
3785 return call_int_hook(sem_semctl, 0, sma, cmd);
3789 * security_sem_semop() - Check if a sysv semaphore operation is allowed
3790 * @sma: sysv ipc permission structure
3791 * @sops: operations to perform
3792 * @nsops: number of operations
3793 * @alter: flag indicating changes will be made
3795 * Check permissions before performing operations on members of the semaphore
3796 * set. If the @alter flag is nonzero, the semaphore set may be modified.
3798 * Return: Returns 0 if permission is granted.
3800 int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops,
3801 unsigned nsops, int alter)
3803 return call_int_hook(sem_semop, 0, sma, sops, nsops, alter);
3807 * security_d_instantiate() - Populate an inode's LSM state based on a dentry
3811 * Fill in @inode security information for a @dentry if allowed.
3813 void security_d_instantiate(struct dentry *dentry, struct inode *inode)
3815 if (unlikely(inode && IS_PRIVATE(inode)))
3817 call_void_hook(d_instantiate, dentry, inode);
3819 EXPORT_SYMBOL(security_d_instantiate);
3822 * security_getprocattr() - Read an attribute for a task
3825 * @name: attribute name
3826 * @value: attribute value
3828 * Read attribute @name for task @p and store it into @value if allowed.
3830 * Return: Returns the length of @value on success, a negative value otherwise.
3832 int security_getprocattr(struct task_struct *p, const char *lsm,
3833 const char *name, char **value)
3835 struct security_hook_list *hp;
3837 hlist_for_each_entry(hp, &security_hook_heads.getprocattr, list) {
3838 if (lsm != NULL && strcmp(lsm, hp->lsm))
3840 return hp->hook.getprocattr(p, name, value);
3842 return LSM_RET_DEFAULT(getprocattr);
3846 * security_setprocattr() - Set an attribute for a task
3848 * @name: attribute name
3849 * @value: attribute value
3850 * @size: attribute value size
3852 * Write (set) the current task's attribute @name to @value, size @size if
3855 * Return: Returns bytes written on success, a negative value otherwise.
3857 int security_setprocattr(const char *lsm, const char *name, void *value,
3860 struct security_hook_list *hp;
3862 hlist_for_each_entry(hp, &security_hook_heads.setprocattr, list) {
3863 if (lsm != NULL && strcmp(lsm, hp->lsm))
3865 return hp->hook.setprocattr(name, value, size);
3867 return LSM_RET_DEFAULT(setprocattr);
3871 * security_netlink_send() - Save info and check if netlink sending is allowed
3872 * @sk: sending socket
3873 * @skb: netlink message
3875 * Save security information for a netlink message so that permission checking
3876 * can be performed when the message is processed. The security information
3877 * can be saved using the eff_cap field of the netlink_skb_parms structure.
3878 * Also may be used to provide fine grained control over message transmission.
3880 * Return: Returns 0 if the information was successfully saved and message is
3881 * allowed to be transmitted.
3883 int security_netlink_send(struct sock *sk, struct sk_buff *skb)
3885 return call_int_hook(netlink_send, 0, sk, skb);
3889 * security_ismaclabel() - Check is the named attribute is a MAC label
3890 * @name: full extended attribute name
3892 * Check if the extended attribute specified by @name represents a MAC label.
3894 * Return: Returns 1 if name is a MAC attribute otherwise returns 0.
3896 int security_ismaclabel(const char *name)
3898 return call_int_hook(ismaclabel, 0, name);
3900 EXPORT_SYMBOL(security_ismaclabel);
3903 * security_secid_to_secctx() - Convert a secid to a secctx
3906 * @seclen: secctx length
3908 * Convert secid to security context. If @secdata is NULL the length of the
3909 * result will be returned in @seclen, but no @secdata will be returned. This
3910 * does mean that the length could change between calls to check the length and
3911 * the next call which actually allocates and returns the @secdata.
3913 * Return: Return 0 on success, error on failure.
3915 int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
3917 struct security_hook_list *hp;
3921 * Currently, only one LSM can implement secid_to_secctx (i.e this
3922 * LSM hook is not "stackable").
3924 hlist_for_each_entry(hp, &security_hook_heads.secid_to_secctx, list) {
3925 rc = hp->hook.secid_to_secctx(secid, secdata, seclen);
3926 if (rc != LSM_RET_DEFAULT(secid_to_secctx))
3930 return LSM_RET_DEFAULT(secid_to_secctx);
3932 EXPORT_SYMBOL(security_secid_to_secctx);
3935 * security_secctx_to_secid() - Convert a secctx to a secid
3937 * @seclen: length of secctx
3940 * Convert security context to secid.
3942 * Return: Returns 0 on success, error on failure.
3944 int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
3947 return call_int_hook(secctx_to_secid, 0, secdata, seclen, secid);
3949 EXPORT_SYMBOL(security_secctx_to_secid);
3952 * security_release_secctx() - Free a secctx buffer
3954 * @seclen: length of secctx
3956 * Release the security context.
3958 void security_release_secctx(char *secdata, u32 seclen)
3960 call_void_hook(release_secctx, secdata, seclen);
3962 EXPORT_SYMBOL(security_release_secctx);
3965 * security_inode_invalidate_secctx() - Invalidate an inode's security label
3968 * Notify the security module that it must revalidate the security context of
3971 void security_inode_invalidate_secctx(struct inode *inode)
3973 call_void_hook(inode_invalidate_secctx, inode);
3975 EXPORT_SYMBOL(security_inode_invalidate_secctx);
3978 * security_inode_notifysecctx() - Nofify the LSM of an inode's security label
3981 * @ctxlen: length of secctx
3983 * Notify the security module of what the security context of an inode should
3984 * be. Initializes the incore security context managed by the security module
3985 * for this inode. Example usage: NFS client invokes this hook to initialize
3986 * the security context in its incore inode to the value provided by the server
3987 * for the file when the server returned the file's attributes to the client.
3988 * Must be called with inode->i_mutex locked.
3990 * Return: Returns 0 on success, error on failure.
3992 int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
3994 return call_int_hook(inode_notifysecctx, 0, inode, ctx, ctxlen);
3996 EXPORT_SYMBOL(security_inode_notifysecctx);
3999 * security_inode_setsecctx() - Change the security label of an inode
4002 * @ctxlen: length of secctx
4004 * Change the security context of an inode. Updates the incore security
4005 * context managed by the security module and invokes the fs code as needed
4006 * (via __vfs_setxattr_noperm) to update any backing xattrs that represent the
4007 * context. Example usage: NFS server invokes this hook to change the security
4008 * context in its incore inode and on the backing filesystem to a value
4009 * provided by the client on a SETATTR operation. Must be called with
4010 * inode->i_mutex locked.
4012 * Return: Returns 0 on success, error on failure.
4014 int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4016 return call_int_hook(inode_setsecctx, 0, dentry, ctx, ctxlen);
4018 EXPORT_SYMBOL(security_inode_setsecctx);
4021 * security_inode_getsecctx() - Get the security label of an inode
4024 * @ctxlen: length of secctx
4026 * On success, returns 0 and fills out @ctx and @ctxlen with the security
4027 * context for the given @inode.
4029 * Return: Returns 0 on success, error on failure.
4031 int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4033 return call_int_hook(inode_getsecctx, -EOPNOTSUPP, inode, ctx, ctxlen);
4035 EXPORT_SYMBOL(security_inode_getsecctx);
4037 #ifdef CONFIG_WATCH_QUEUE
4039 * security_post_notification() - Check if a watch notification can be posted
4040 * @w_cred: credentials of the task that set the watch
4041 * @cred: credentials of the task which triggered the watch
4042 * @n: the notification
4044 * Check to see if a watch notification can be posted to a particular queue.
4046 * Return: Returns 0 if permission is granted.
4048 int security_post_notification(const struct cred *w_cred,
4049 const struct cred *cred,
4050 struct watch_notification *n)
4052 return call_int_hook(post_notification, 0, w_cred, cred, n);
4054 #endif /* CONFIG_WATCH_QUEUE */
4056 #ifdef CONFIG_KEY_NOTIFICATIONS
4058 * security_watch_key() - Check if a task is allowed to watch for key events
4059 * @key: the key to watch
4061 * Check to see if a process is allowed to watch for event notifications from
4064 * Return: Returns 0 if permission is granted.
4066 int security_watch_key(struct key *key)
4068 return call_int_hook(watch_key, 0, key);
4070 #endif /* CONFIG_KEY_NOTIFICATIONS */
4072 #ifdef CONFIG_SECURITY_NETWORK
4074 * security_unix_stream_connect() - Check if a AF_UNIX stream is allowed
4075 * @sock: originating sock
4079 * Check permissions before establishing a Unix domain stream connection
4080 * between @sock and @other.
4082 * The @unix_stream_connect and @unix_may_send hooks were necessary because
4083 * Linux provides an alternative to the conventional file name space for Unix
4084 * domain sockets. Whereas binding and connecting to sockets in the file name
4085 * space is mediated by the typical file permissions (and caught by the mknod
4086 * and permission hooks in inode_security_ops), binding and connecting to
4087 * sockets in the abstract name space is completely unmediated. Sufficient
4088 * control of Unix domain sockets in the abstract name space isn't possible
4089 * using only the socket layer hooks, since we need to know the actual target
4090 * socket, which is not looked up until we are inside the af_unix code.
4092 * Return: Returns 0 if permission is granted.
4094 int security_unix_stream_connect(struct sock *sock, struct sock *other,
4097 return call_int_hook(unix_stream_connect, 0, sock, other, newsk);
4099 EXPORT_SYMBOL(security_unix_stream_connect);
4102 * security_unix_may_send() - Check if AF_UNIX socket can send datagrams
4103 * @sock: originating sock
4106 * Check permissions before connecting or sending datagrams from @sock to
4109 * The @unix_stream_connect and @unix_may_send hooks were necessary because
4110 * Linux provides an alternative to the conventional file name space for Unix
4111 * domain sockets. Whereas binding and connecting to sockets in the file name
4112 * space is mediated by the typical file permissions (and caught by the mknod
4113 * and permission hooks in inode_security_ops), binding and connecting to
4114 * sockets in the abstract name space is completely unmediated. Sufficient
4115 * control of Unix domain sockets in the abstract name space isn't possible
4116 * using only the socket layer hooks, since we need to know the actual target
4117 * socket, which is not looked up until we are inside the af_unix code.
4119 * Return: Returns 0 if permission is granted.
4121 int security_unix_may_send(struct socket *sock, struct socket *other)
4123 return call_int_hook(unix_may_send, 0, sock, other);
4125 EXPORT_SYMBOL(security_unix_may_send);
4128 * security_socket_create() - Check if creating a new socket is allowed
4129 * @family: protocol family
4130 * @type: communications type
4131 * @protocol: requested protocol
4132 * @kern: set to 1 if a kernel socket is requested
4134 * Check permissions prior to creating a new socket.
4136 * Return: Returns 0 if permission is granted.
4138 int security_socket_create(int family, int type, int protocol, int kern)
4140 return call_int_hook(socket_create, 0, family, type, protocol, kern);
4144 * security_socket_post_create() - Initialize a newly created socket
4146 * @family: protocol family
4147 * @type: communications type
4148 * @protocol: requested protocol
4149 * @kern: set to 1 if a kernel socket is requested
4151 * This hook allows a module to update or allocate a per-socket security
4152 * structure. Note that the security field was not added directly to the socket
4153 * structure, but rather, the socket security information is stored in the
4154 * associated inode. Typically, the inode alloc_security hook will allocate
4155 * and attach security information to SOCK_INODE(sock)->i_security. This hook
4156 * may be used to update the SOCK_INODE(sock)->i_security field with additional
4157 * information that wasn't available when the inode was allocated.
4159 * Return: Returns 0 if permission is granted.
4161 int security_socket_post_create(struct socket *sock, int family,
4162 int type, int protocol, int kern)
4164 return call_int_hook(socket_post_create, 0, sock, family, type,
4169 * security_socket_socketpair() - Check if creating a socketpair is allowed
4170 * @socka: first socket
4171 * @sockb: second socket
4173 * Check permissions before creating a fresh pair of sockets.
4175 * Return: Returns 0 if permission is granted and the connection was
4178 int security_socket_socketpair(struct socket *socka, struct socket *sockb)
4180 return call_int_hook(socket_socketpair, 0, socka, sockb);
4182 EXPORT_SYMBOL(security_socket_socketpair);
4185 * security_socket_bind() - Check if a socket bind operation is allowed
4187 * @address: requested bind address
4188 * @addrlen: length of address
4190 * Check permission before socket protocol layer bind operation is performed
4191 * and the socket @sock is bound to the address specified in the @address
4194 * Return: Returns 0 if permission is granted.
4196 int security_socket_bind(struct socket *sock,
4197 struct sockaddr *address, int addrlen)
4199 return call_int_hook(socket_bind, 0, sock, address, addrlen);
4203 * security_socket_connect() - Check if a socket connect operation is allowed
4205 * @address: address of remote connection point
4206 * @addrlen: length of address
4208 * Check permission before socket protocol layer connect operation attempts to
4209 * connect socket @sock to a remote address, @address.
4211 * Return: Returns 0 if permission is granted.
4213 int security_socket_connect(struct socket *sock,
4214 struct sockaddr *address, int addrlen)
4216 return call_int_hook(socket_connect, 0, sock, address, addrlen);
4220 * security_socket_listen() - Check if a socket is allowed to listen
4222 * @backlog: connection queue size
4224 * Check permission before socket protocol layer listen operation.
4226 * Return: Returns 0 if permission is granted.
4228 int security_socket_listen(struct socket *sock, int backlog)
4230 return call_int_hook(socket_listen, 0, sock, backlog);
4234 * security_socket_accept() - Check if a socket is allowed to accept connections
4235 * @sock: listening socket
4236 * @newsock: newly creation connection socket
4238 * Check permission before accepting a new connection. Note that the new
4239 * socket, @newsock, has been created and some information copied to it, but
4240 * the accept operation has not actually been performed.
4242 * Return: Returns 0 if permission is granted.
4244 int security_socket_accept(struct socket *sock, struct socket *newsock)
4246 return call_int_hook(socket_accept, 0, sock, newsock);
4250 * security_socket_sendmsg() - Check is sending a message is allowed
4251 * @sock: sending socket
4252 * @msg: message to send
4253 * @size: size of message
4255 * Check permission before transmitting a message to another socket.
4257 * Return: Returns 0 if permission is granted.
4259 int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size)
4261 return call_int_hook(socket_sendmsg, 0, sock, msg, size);
4265 * security_socket_recvmsg() - Check if receiving a message is allowed
4266 * @sock: receiving socket
4267 * @msg: message to receive
4268 * @size: size of message
4269 * @flags: operational flags
4271 * Check permission before receiving a message from a socket.
4273 * Return: Returns 0 if permission is granted.
4275 int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
4276 int size, int flags)
4278 return call_int_hook(socket_recvmsg, 0, sock, msg, size, flags);
4282 * security_socket_getsockname() - Check if reading the socket addr is allowed
4285 * Check permission before reading the local address (name) of the socket
4288 * Return: Returns 0 if permission is granted.
4290 int security_socket_getsockname(struct socket *sock)
4292 return call_int_hook(socket_getsockname, 0, sock);
4296 * security_socket_getpeername() - Check if reading the peer's addr is allowed
4299 * Check permission before the remote address (name) of a socket object.
4301 * Return: Returns 0 if permission is granted.
4303 int security_socket_getpeername(struct socket *sock)
4305 return call_int_hook(socket_getpeername, 0, sock);
4309 * security_socket_getsockopt() - Check if reading a socket option is allowed
4311 * @level: option's protocol level
4312 * @optname: option name
4314 * Check permissions before retrieving the options associated with socket
4317 * Return: Returns 0 if permission is granted.
4319 int security_socket_getsockopt(struct socket *sock, int level, int optname)
4321 return call_int_hook(socket_getsockopt, 0, sock, level, optname);
4325 * security_socket_setsockopt() - Check if setting a socket option is allowed
4327 * @level: option's protocol level
4328 * @optname: option name
4330 * Check permissions before setting the options associated with socket @sock.
4332 * Return: Returns 0 if permission is granted.
4334 int security_socket_setsockopt(struct socket *sock, int level, int optname)
4336 return call_int_hook(socket_setsockopt, 0, sock, level, optname);
4340 * security_socket_shutdown() - Checks if shutting down the socket is allowed
4342 * @how: flag indicating how sends and receives are handled
4344 * Checks permission before all or part of a connection on the socket @sock is
4347 * Return: Returns 0 if permission is granted.
4349 int security_socket_shutdown(struct socket *sock, int how)
4351 return call_int_hook(socket_shutdown, 0, sock, how);
4355 * security_sock_rcv_skb() - Check if an incoming network packet is allowed
4356 * @sk: destination sock
4357 * @skb: incoming packet
4359 * Check permissions on incoming network packets. This hook is distinct from
4360 * Netfilter's IP input hooks since it is the first time that the incoming
4361 * sk_buff @skb has been associated with a particular socket, @sk. Must not
4362 * sleep inside this hook because some callers hold spinlocks.
4364 * Return: Returns 0 if permission is granted.
4366 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
4368 return call_int_hook(socket_sock_rcv_skb, 0, sk, skb);
4370 EXPORT_SYMBOL(security_sock_rcv_skb);
4373 * security_socket_getpeersec_stream() - Get the remote peer label
4375 * @optval: destination buffer
4376 * @optlen: size of peer label copied into the buffer
4377 * @len: maximum size of the destination buffer
4379 * This hook allows the security module to provide peer socket security state
4380 * for unix or connected tcp sockets to userspace via getsockopt SO_GETPEERSEC.
4381 * For tcp sockets this can be meaningful if the socket is associated with an
4384 * Return: Returns 0 if all is well, otherwise, typical getsockopt return
4387 int security_socket_getpeersec_stream(struct socket *sock, sockptr_t optval,
4388 sockptr_t optlen, unsigned int len)
4390 return call_int_hook(socket_getpeersec_stream, -ENOPROTOOPT, sock,
4391 optval, optlen, len);
4395 * security_socket_getpeersec_dgram() - Get the remote peer label
4397 * @skb: datagram packet
4398 * @secid: remote peer label secid
4400 * This hook allows the security module to provide peer socket security state
4401 * for udp sockets on a per-packet basis to userspace via getsockopt
4402 * SO_GETPEERSEC. The application must first have indicated the IP_PASSSEC
4403 * option via getsockopt. It can then retrieve the security state returned by
4404 * this hook for a packet via the SCM_SECURITY ancillary message type.
4406 * Return: Returns 0 on success, error on failure.
4408 int security_socket_getpeersec_dgram(struct socket *sock,
4409 struct sk_buff *skb, u32 *secid)
4411 return call_int_hook(socket_getpeersec_dgram, -ENOPROTOOPT, sock,
4414 EXPORT_SYMBOL(security_socket_getpeersec_dgram);
4417 * security_sk_alloc() - Allocate and initialize a sock's LSM blob
4419 * @family: protocol family
4420 * @priority: gfp flags
4422 * Allocate and attach a security structure to the sk->sk_security field, which
4423 * is used to copy security attributes between local stream sockets.
4425 * Return: Returns 0 on success, error on failure.
4427 int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
4429 return call_int_hook(sk_alloc_security, 0, sk, family, priority);
4433 * security_sk_free() - Free the sock's LSM blob
4436 * Deallocate security structure.
4438 void security_sk_free(struct sock *sk)
4440 call_void_hook(sk_free_security, sk);
4444 * security_sk_clone() - Clone a sock's LSM state
4445 * @sk: original sock
4446 * @newsk: target sock
4448 * Clone/copy security structure.
4450 void security_sk_clone(const struct sock *sk, struct sock *newsk)
4452 call_void_hook(sk_clone_security, sk, newsk);
4454 EXPORT_SYMBOL(security_sk_clone);
4457 * security_sk_classify_flow() - Set a flow's secid based on socket
4458 * @sk: original socket
4459 * @flic: target flow
4461 * Set the target flow's secid to socket's secid.
4463 void security_sk_classify_flow(const struct sock *sk, struct flowi_common *flic)
4465 call_void_hook(sk_getsecid, sk, &flic->flowic_secid);
4467 EXPORT_SYMBOL(security_sk_classify_flow);
4470 * security_req_classify_flow() - Set a flow's secid based on request_sock
4471 * @req: request_sock
4472 * @flic: target flow
4474 * Sets @flic's secid to @req's secid.
4476 void security_req_classify_flow(const struct request_sock *req,
4477 struct flowi_common *flic)
4479 call_void_hook(req_classify_flow, req, flic);
4481 EXPORT_SYMBOL(security_req_classify_flow);
4484 * security_sock_graft() - Reconcile LSM state when grafting a sock on a socket
4485 * @sk: sock being grafted
4486 * @parent: target parent socket
4488 * Sets @parent's inode secid to @sk's secid and update @sk with any necessary
4489 * LSM state from @parent.
4491 void security_sock_graft(struct sock *sk, struct socket *parent)
4493 call_void_hook(sock_graft, sk, parent);
4495 EXPORT_SYMBOL(security_sock_graft);
4498 * security_inet_conn_request() - Set request_sock state using incoming connect
4499 * @sk: parent listening sock
4500 * @skb: incoming connection
4501 * @req: new request_sock
4503 * Initialize the @req LSM state based on @sk and the incoming connect in @skb.
4505 * Return: Returns 0 if permission is granted.
4507 int security_inet_conn_request(const struct sock *sk,
4508 struct sk_buff *skb, struct request_sock *req)
4510 return call_int_hook(inet_conn_request, 0, sk, skb, req);
4512 EXPORT_SYMBOL(security_inet_conn_request);
4515 * security_inet_csk_clone() - Set new sock LSM state based on request_sock
4517 * @req: connection request_sock
4519 * Set that LSM state of @sock using the LSM state from @req.
4521 void security_inet_csk_clone(struct sock *newsk,
4522 const struct request_sock *req)
4524 call_void_hook(inet_csk_clone, newsk, req);
4528 * security_inet_conn_established() - Update sock's LSM state with connection
4530 * @skb: connection packet
4532 * Update @sock's LSM state to represent a new connection from @skb.
4534 void security_inet_conn_established(struct sock *sk,
4535 struct sk_buff *skb)
4537 call_void_hook(inet_conn_established, sk, skb);
4539 EXPORT_SYMBOL(security_inet_conn_established);
4542 * security_secmark_relabel_packet() - Check if setting a secmark is allowed
4543 * @secid: new secmark value
4545 * Check if the process should be allowed to relabel packets to @secid.
4547 * Return: Returns 0 if permission is granted.
4549 int security_secmark_relabel_packet(u32 secid)
4551 return call_int_hook(secmark_relabel_packet, 0, secid);
4553 EXPORT_SYMBOL(security_secmark_relabel_packet);
4556 * security_secmark_refcount_inc() - Increment the secmark labeling rule count
4558 * Tells the LSM to increment the number of secmark labeling rules loaded.
4560 void security_secmark_refcount_inc(void)
4562 call_void_hook(secmark_refcount_inc);
4564 EXPORT_SYMBOL(security_secmark_refcount_inc);
4567 * security_secmark_refcount_dec() - Decrement the secmark labeling rule count
4569 * Tells the LSM to decrement the number of secmark labeling rules loaded.
4571 void security_secmark_refcount_dec(void)
4573 call_void_hook(secmark_refcount_dec);
4575 EXPORT_SYMBOL(security_secmark_refcount_dec);
4578 * security_tun_dev_alloc_security() - Allocate a LSM blob for a TUN device
4579 * @security: pointer to the LSM blob
4581 * This hook allows a module to allocate a security structure for a TUN device,
4582 * returning the pointer in @security.
4584 * Return: Returns a zero on success, negative values on failure.
4586 int security_tun_dev_alloc_security(void **security)
4588 return call_int_hook(tun_dev_alloc_security, 0, security);
4590 EXPORT_SYMBOL(security_tun_dev_alloc_security);
4593 * security_tun_dev_free_security() - Free a TUN device LSM blob
4594 * @security: LSM blob
4596 * This hook allows a module to free the security structure for a TUN device.
4598 void security_tun_dev_free_security(void *security)
4600 call_void_hook(tun_dev_free_security, security);
4602 EXPORT_SYMBOL(security_tun_dev_free_security);
4605 * security_tun_dev_create() - Check if creating a TUN device is allowed
4607 * Check permissions prior to creating a new TUN device.
4609 * Return: Returns 0 if permission is granted.
4611 int security_tun_dev_create(void)
4613 return call_int_hook(tun_dev_create, 0);
4615 EXPORT_SYMBOL(security_tun_dev_create);
4618 * security_tun_dev_attach_queue() - Check if attaching a TUN queue is allowed
4619 * @security: TUN device LSM blob
4621 * Check permissions prior to attaching to a TUN device queue.
4623 * Return: Returns 0 if permission is granted.
4625 int security_tun_dev_attach_queue(void *security)
4627 return call_int_hook(tun_dev_attach_queue, 0, security);
4629 EXPORT_SYMBOL(security_tun_dev_attach_queue);
4632 * security_tun_dev_attach() - Update TUN device LSM state on attach
4633 * @sk: associated sock
4634 * @security: TUN device LSM blob
4636 * This hook can be used by the module to update any security state associated
4637 * with the TUN device's sock structure.
4639 * Return: Returns 0 if permission is granted.
4641 int security_tun_dev_attach(struct sock *sk, void *security)
4643 return call_int_hook(tun_dev_attach, 0, sk, security);
4645 EXPORT_SYMBOL(security_tun_dev_attach);
4648 * security_tun_dev_open() - Update TUN device LSM state on open
4649 * @security: TUN device LSM blob
4651 * This hook can be used by the module to update any security state associated
4652 * with the TUN device's security structure.
4654 * Return: Returns 0 if permission is granted.
4656 int security_tun_dev_open(void *security)
4658 return call_int_hook(tun_dev_open, 0, security);
4660 EXPORT_SYMBOL(security_tun_dev_open);
4663 * security_sctp_assoc_request() - Update the LSM on a SCTP association req
4664 * @asoc: SCTP association
4665 * @skb: packet requesting the association
4667 * Passes the @asoc and @chunk->skb of the association INIT packet to the LSM.
4669 * Return: Returns 0 on success, error on failure.
4671 int security_sctp_assoc_request(struct sctp_association *asoc,
4672 struct sk_buff *skb)
4674 return call_int_hook(sctp_assoc_request, 0, asoc, skb);
4676 EXPORT_SYMBOL(security_sctp_assoc_request);
4679 * security_sctp_bind_connect() - Validate a list of addrs for a SCTP option
4681 * @optname: SCTP option to validate
4682 * @address: list of IP addresses to validate
4683 * @addrlen: length of the address list
4685 * Validiate permissions required for each address associated with sock @sk.
4686 * Depending on @optname, the addresses will be treated as either a connect or
4687 * bind service. The @addrlen is calculated on each IPv4 and IPv6 address using
4688 * sizeof(struct sockaddr_in) or sizeof(struct sockaddr_in6).
4690 * Return: Returns 0 on success, error on failure.
4692 int security_sctp_bind_connect(struct sock *sk, int optname,
4693 struct sockaddr *address, int addrlen)
4695 return call_int_hook(sctp_bind_connect, 0, sk, optname,
4698 EXPORT_SYMBOL(security_sctp_bind_connect);
4701 * security_sctp_sk_clone() - Clone a SCTP sock's LSM state
4702 * @asoc: SCTP association
4703 * @sk: original sock
4704 * @newsk: target sock
4706 * Called whenever a new socket is created by accept(2) (i.e. a TCP style
4707 * socket) or when a socket is 'peeled off' e.g userspace calls
4710 void security_sctp_sk_clone(struct sctp_association *asoc, struct sock *sk,
4713 call_void_hook(sctp_sk_clone, asoc, sk, newsk);
4715 EXPORT_SYMBOL(security_sctp_sk_clone);
4718 * security_sctp_assoc_established() - Update LSM state when assoc established
4719 * @asoc: SCTP association
4720 * @skb: packet establishing the association
4722 * Passes the @asoc and @chunk->skb of the association COOKIE_ACK packet to the
4725 * Return: Returns 0 if permission is granted.
4727 int security_sctp_assoc_established(struct sctp_association *asoc,
4728 struct sk_buff *skb)
4730 return call_int_hook(sctp_assoc_established, 0, asoc, skb);
4732 EXPORT_SYMBOL(security_sctp_assoc_established);
4735 * security_mptcp_add_subflow() - Inherit the LSM label from the MPTCP socket
4736 * @sk: the owning MPTCP socket
4737 * @ssk: the new subflow
4739 * Update the labeling for the given MPTCP subflow, to match the one of the
4740 * owning MPTCP socket. This hook has to be called after the socket creation and
4741 * initialization via the security_socket_create() and
4742 * security_socket_post_create() LSM hooks.
4744 * Return: Returns 0 on success or a negative error code on failure.
4746 int security_mptcp_add_subflow(struct sock *sk, struct sock *ssk)
4748 return call_int_hook(mptcp_add_subflow, 0, sk, ssk);
4751 #endif /* CONFIG_SECURITY_NETWORK */
4753 #ifdef CONFIG_SECURITY_INFINIBAND
4755 * security_ib_pkey_access() - Check if access to an IB pkey is allowed
4757 * @subnet_prefix: subnet prefix of the port
4760 * Check permission to access a pkey when modifying a QP.
4762 * Return: Returns 0 if permission is granted.
4764 int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey)
4766 return call_int_hook(ib_pkey_access, 0, sec, subnet_prefix, pkey);
4768 EXPORT_SYMBOL(security_ib_pkey_access);
4771 * security_ib_endport_manage_subnet() - Check if SMPs traffic is allowed
4773 * @dev_name: IB device name
4774 * @port_num: port number
4776 * Check permissions to send and receive SMPs on a end port.
4778 * Return: Returns 0 if permission is granted.
4780 int security_ib_endport_manage_subnet(void *sec,
4781 const char *dev_name, u8 port_num)
4783 return call_int_hook(ib_endport_manage_subnet, 0, sec,
4784 dev_name, port_num);
4786 EXPORT_SYMBOL(security_ib_endport_manage_subnet);
4789 * security_ib_alloc_security() - Allocate an Infiniband LSM blob
4792 * Allocate a security structure for Infiniband objects.
4794 * Return: Returns 0 on success, non-zero on failure.
4796 int security_ib_alloc_security(void **sec)
4798 return call_int_hook(ib_alloc_security, 0, sec);
4800 EXPORT_SYMBOL(security_ib_alloc_security);
4803 * security_ib_free_security() - Free an Infiniband LSM blob
4806 * Deallocate an Infiniband security structure.
4808 void security_ib_free_security(void *sec)
4810 call_void_hook(ib_free_security, sec);
4812 EXPORT_SYMBOL(security_ib_free_security);
4813 #endif /* CONFIG_SECURITY_INFINIBAND */
4815 #ifdef CONFIG_SECURITY_NETWORK_XFRM
4817 * security_xfrm_policy_alloc() - Allocate a xfrm policy LSM blob
4818 * @ctxp: xfrm security context being added to the SPD
4819 * @sec_ctx: security label provided by userspace
4822 * Allocate a security structure to the xp->security field; the security field
4823 * is initialized to NULL when the xfrm_policy is allocated.
4825 * Return: Return 0 if operation was successful.
4827 int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
4828 struct xfrm_user_sec_ctx *sec_ctx,
4831 return call_int_hook(xfrm_policy_alloc_security, 0, ctxp, sec_ctx, gfp);
4833 EXPORT_SYMBOL(security_xfrm_policy_alloc);
4836 * security_xfrm_policy_clone() - Clone xfrm policy LSM state
4837 * @old_ctx: xfrm security context
4838 * @new_ctxp: target xfrm security context
4840 * Allocate a security structure in new_ctxp that contains the information from
4841 * the old_ctx structure.
4843 * Return: Return 0 if operation was successful.
4845 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx,
4846 struct xfrm_sec_ctx **new_ctxp)
4848 return call_int_hook(xfrm_policy_clone_security, 0, old_ctx, new_ctxp);
4852 * security_xfrm_policy_free() - Free a xfrm security context
4853 * @ctx: xfrm security context
4855 * Free LSM resources associated with @ctx.
4857 void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
4859 call_void_hook(xfrm_policy_free_security, ctx);
4861 EXPORT_SYMBOL(security_xfrm_policy_free);
4864 * security_xfrm_policy_delete() - Check if deleting a xfrm policy is allowed
4865 * @ctx: xfrm security context
4867 * Authorize deletion of a SPD entry.
4869 * Return: Returns 0 if permission is granted.
4871 int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
4873 return call_int_hook(xfrm_policy_delete_security, 0, ctx);
4877 * security_xfrm_state_alloc() - Allocate a xfrm state LSM blob
4878 * @x: xfrm state being added to the SAD
4879 * @sec_ctx: security label provided by userspace
4881 * Allocate a security structure to the @x->security field; the security field
4882 * is initialized to NULL when the xfrm_state is allocated. Set the context to
4883 * correspond to @sec_ctx.
4885 * Return: Return 0 if operation was successful.
4887 int security_xfrm_state_alloc(struct xfrm_state *x,
4888 struct xfrm_user_sec_ctx *sec_ctx)
4890 return call_int_hook(xfrm_state_alloc, 0, x, sec_ctx);
4892 EXPORT_SYMBOL(security_xfrm_state_alloc);
4895 * security_xfrm_state_alloc_acquire() - Allocate a xfrm state LSM blob
4896 * @x: xfrm state being added to the SAD
4897 * @polsec: associated policy's security context
4898 * @secid: secid from the flow
4900 * Allocate a security structure to the x->security field; the security field
4901 * is initialized to NULL when the xfrm_state is allocated. Set the context to
4902 * correspond to secid.
4904 * Return: Returns 0 if operation was successful.
4906 int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
4907 struct xfrm_sec_ctx *polsec, u32 secid)
4909 return call_int_hook(xfrm_state_alloc_acquire, 0, x, polsec, secid);
4913 * security_xfrm_state_delete() - Check if deleting a xfrm state is allowed
4916 * Authorize deletion of x->security.
4918 * Return: Returns 0 if permission is granted.
4920 int security_xfrm_state_delete(struct xfrm_state *x)
4922 return call_int_hook(xfrm_state_delete_security, 0, x);
4924 EXPORT_SYMBOL(security_xfrm_state_delete);
4927 * security_xfrm_state_free() - Free a xfrm state
4930 * Deallocate x->security.
4932 void security_xfrm_state_free(struct xfrm_state *x)
4934 call_void_hook(xfrm_state_free_security, x);
4938 * security_xfrm_policy_lookup() - Check if using a xfrm policy is allowed
4939 * @ctx: target xfrm security context
4940 * @fl_secid: flow secid used to authorize access
4942 * Check permission when a flow selects a xfrm_policy for processing XFRMs on a
4943 * packet. The hook is called when selecting either a per-socket policy or a
4944 * generic xfrm policy.
4946 * Return: Return 0 if permission is granted, -ESRCH otherwise, or -errno on
4949 int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid)
4951 return call_int_hook(xfrm_policy_lookup, 0, ctx, fl_secid);
4955 * security_xfrm_state_pol_flow_match() - Check for a xfrm match
4956 * @x: xfrm state to match
4957 * @xp: xfrm policy to check for a match
4958 * @flic: flow to check for a match.
4960 * Check @xp and @flic for a match with @x.
4962 * Return: Returns 1 if there is a match.
4964 int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
4965 struct xfrm_policy *xp,
4966 const struct flowi_common *flic)
4968 struct security_hook_list *hp;
4969 int rc = LSM_RET_DEFAULT(xfrm_state_pol_flow_match);
4972 * Since this function is expected to return 0 or 1, the judgment
4973 * becomes difficult if multiple LSMs supply this call. Fortunately,
4974 * we can use the first LSM's judgment because currently only SELinux
4975 * supplies this call.
4977 * For speed optimization, we explicitly break the loop rather than
4980 hlist_for_each_entry(hp, &security_hook_heads.xfrm_state_pol_flow_match,
4982 rc = hp->hook.xfrm_state_pol_flow_match(x, xp, flic);
4989 * security_xfrm_decode_session() - Determine the xfrm secid for a packet
4993 * Decode the packet in @skb and return the security label in @secid.
4995 * Return: Return 0 if all xfrms used have the same secid.
4997 int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
4999 return call_int_hook(xfrm_decode_session, 0, skb, secid, 1);
5002 void security_skb_classify_flow(struct sk_buff *skb, struct flowi_common *flic)
5004 int rc = call_int_hook(xfrm_decode_session, 0, skb, &flic->flowic_secid,
5009 EXPORT_SYMBOL(security_skb_classify_flow);
5010 #endif /* CONFIG_SECURITY_NETWORK_XFRM */
5014 * security_key_alloc() - Allocate and initialize a kernel key LSM blob
5016 * @cred: credentials
5017 * @flags: allocation flags
5019 * Permit allocation of a key and assign security data. Note that key does not
5020 * have a serial number assigned at this point.
5022 * Return: Return 0 if permission is granted, -ve error otherwise.
5024 int security_key_alloc(struct key *key, const struct cred *cred,
5025 unsigned long flags)
5027 return call_int_hook(key_alloc, 0, key, cred, flags);
5031 * security_key_free() - Free a kernel key LSM blob
5034 * Notification of destruction; free security data.
5036 void security_key_free(struct key *key)
5038 call_void_hook(key_free, key);
5042 * security_key_permission() - Check if a kernel key operation is allowed
5043 * @key_ref: key reference
5044 * @cred: credentials of actor requesting access
5045 * @need_perm: requested permissions
5047 * See whether a specific operational right is granted to a process on a key.
5049 * Return: Return 0 if permission is granted, -ve error otherwise.
5051 int security_key_permission(key_ref_t key_ref, const struct cred *cred,
5052 enum key_need_perm need_perm)
5054 return call_int_hook(key_permission, 0, key_ref, cred, need_perm);
5058 * security_key_getsecurity() - Get the key's security label
5060 * @buffer: security label buffer
5062 * Get a textual representation of the security context attached to a key for
5063 * the purposes of honouring KEYCTL_GETSECURITY. This function allocates the
5064 * storage for the NUL-terminated string and the caller should free it.
5066 * Return: Returns the length of @buffer (including terminating NUL) or -ve if
5067 * an error occurs. May also return 0 (and a NULL buffer pointer) if
5068 * there is no security label assigned to the key.
5070 int security_key_getsecurity(struct key *key, char **buffer)
5073 return call_int_hook(key_getsecurity, 0, key, buffer);
5075 #endif /* CONFIG_KEYS */
5079 * security_audit_rule_init() - Allocate and init an LSM audit rule struct
5080 * @field: audit action
5081 * @op: rule operator
5082 * @rulestr: rule context
5083 * @lsmrule: receive buffer for audit rule struct
5085 * Allocate and initialize an LSM audit rule structure.
5087 * Return: Return 0 if @lsmrule has been successfully set, -EINVAL in case of
5090 int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule)
5092 return call_int_hook(audit_rule_init, 0, field, op, rulestr, lsmrule);
5096 * security_audit_rule_known() - Check if an audit rule contains LSM fields
5097 * @krule: audit rule
5099 * Specifies whether given @krule contains any fields related to the current
5102 * Return: Returns 1 in case of relation found, 0 otherwise.
5104 int security_audit_rule_known(struct audit_krule *krule)
5106 return call_int_hook(audit_rule_known, 0, krule);
5110 * security_audit_rule_free() - Free an LSM audit rule struct
5111 * @lsmrule: audit rule struct
5113 * Deallocate the LSM audit rule structure previously allocated by
5114 * audit_rule_init().
5116 void security_audit_rule_free(void *lsmrule)
5118 call_void_hook(audit_rule_free, lsmrule);
5122 * security_audit_rule_match() - Check if a label matches an audit rule
5123 * @secid: security label
5124 * @field: LSM audit field
5125 * @op: matching operator
5126 * @lsmrule: audit rule
5128 * Determine if given @secid matches a rule previously approved by
5129 * security_audit_rule_known().
5131 * Return: Returns 1 if secid matches the rule, 0 if it does not, -ERRNO on
5134 int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule)
5136 return call_int_hook(audit_rule_match, 0, secid, field, op, lsmrule);
5138 #endif /* CONFIG_AUDIT */
5140 #ifdef CONFIG_BPF_SYSCALL
5142 * security_bpf() - Check if the bpf syscall operation is allowed
5144 * @attr: bpf attribute
5147 * Do a initial check for all bpf syscalls after the attribute is copied into
5148 * the kernel. The actual security module can implement their own rules to
5149 * check the specific cmd they need.
5151 * Return: Returns 0 if permission is granted.
5153 int security_bpf(int cmd, union bpf_attr *attr, unsigned int size)
5155 return call_int_hook(bpf, 0, cmd, attr, size);
5159 * security_bpf_map() - Check if access to a bpf map is allowed
5163 * Do a check when the kernel generates and returns a file descriptor for eBPF
5166 * Return: Returns 0 if permission is granted.
5168 int security_bpf_map(struct bpf_map *map, fmode_t fmode)
5170 return call_int_hook(bpf_map, 0, map, fmode);
5174 * security_bpf_prog() - Check if access to a bpf program is allowed
5175 * @prog: bpf program
5177 * Do a check when the kernel generates and returns a file descriptor for eBPF
5180 * Return: Returns 0 if permission is granted.
5182 int security_bpf_prog(struct bpf_prog *prog)
5184 return call_int_hook(bpf_prog, 0, prog);
5188 * security_bpf_map_alloc() - Allocate a bpf map LSM blob
5191 * Initialize the security field inside bpf map.
5193 * Return: Returns 0 on success, error on failure.
5195 int security_bpf_map_alloc(struct bpf_map *map)
5197 return call_int_hook(bpf_map_alloc_security, 0, map);
5201 * security_bpf_prog_alloc() - Allocate a bpf program LSM blob
5202 * @aux: bpf program aux info struct
5204 * Initialize the security field inside bpf program.
5206 * Return: Returns 0 on success, error on failure.
5208 int security_bpf_prog_alloc(struct bpf_prog_aux *aux)
5210 return call_int_hook(bpf_prog_alloc_security, 0, aux);
5214 * security_bpf_map_free() - Free a bpf map's LSM blob
5217 * Clean up the security information stored inside bpf map.
5219 void security_bpf_map_free(struct bpf_map *map)
5221 call_void_hook(bpf_map_free_security, map);
5225 * security_bpf_prog_free() - Free a bpf program's LSM blob
5226 * @aux: bpf program aux info struct
5228 * Clean up the security information stored inside bpf prog.
5230 void security_bpf_prog_free(struct bpf_prog_aux *aux)
5232 call_void_hook(bpf_prog_free_security, aux);
5234 #endif /* CONFIG_BPF_SYSCALL */
5237 * security_locked_down() - Check if a kernel feature is allowed
5238 * @what: requested kernel feature
5240 * Determine whether a kernel feature that potentially enables arbitrary code
5241 * execution in kernel space should be permitted.
5243 * Return: Returns 0 if permission is granted.
5245 int security_locked_down(enum lockdown_reason what)
5247 return call_int_hook(locked_down, 0, what);
5249 EXPORT_SYMBOL(security_locked_down);
5251 #ifdef CONFIG_PERF_EVENTS
5253 * security_perf_event_open() - Check if a perf event open is allowed
5254 * @attr: perf event attribute
5255 * @type: type of event
5257 * Check whether the @type of perf_event_open syscall is allowed.
5259 * Return: Returns 0 if permission is granted.
5261 int security_perf_event_open(struct perf_event_attr *attr, int type)
5263 return call_int_hook(perf_event_open, 0, attr, type);
5267 * security_perf_event_alloc() - Allocate a perf event LSM blob
5268 * @event: perf event
5270 * Allocate and save perf_event security info.
5272 * Return: Returns 0 on success, error on failure.
5274 int security_perf_event_alloc(struct perf_event *event)
5276 return call_int_hook(perf_event_alloc, 0, event);
5280 * security_perf_event_free() - Free a perf event LSM blob
5281 * @event: perf event
5283 * Release (free) perf_event security info.
5285 void security_perf_event_free(struct perf_event *event)
5287 call_void_hook(perf_event_free, event);
5291 * security_perf_event_read() - Check if reading a perf event label is allowed
5292 * @event: perf event
5294 * Read perf_event security info if allowed.
5296 * Return: Returns 0 if permission is granted.
5298 int security_perf_event_read(struct perf_event *event)
5300 return call_int_hook(perf_event_read, 0, event);
5304 * security_perf_event_write() - Check if writing a perf event label is allowed
5305 * @event: perf event
5307 * Write perf_event security info if allowed.
5309 * Return: Returns 0 if permission is granted.
5311 int security_perf_event_write(struct perf_event *event)
5313 return call_int_hook(perf_event_write, 0, event);
5315 #endif /* CONFIG_PERF_EVENTS */
5317 #ifdef CONFIG_IO_URING
5319 * security_uring_override_creds() - Check if overriding creds is allowed
5320 * @new: new credentials
5322 * Check if the current task, executing an io_uring operation, is allowed to
5323 * override it's credentials with @new.
5325 * Return: Returns 0 if permission is granted.
5327 int security_uring_override_creds(const struct cred *new)
5329 return call_int_hook(uring_override_creds, 0, new);
5333 * security_uring_sqpoll() - Check if IORING_SETUP_SQPOLL is allowed
5335 * Check whether the current task is allowed to spawn a io_uring polling thread
5336 * (IORING_SETUP_SQPOLL).
5338 * Return: Returns 0 if permission is granted.
5340 int security_uring_sqpoll(void)
5342 return call_int_hook(uring_sqpoll, 0);
5346 * security_uring_cmd() - Check if a io_uring passthrough command is allowed
5349 * Check whether the file_operations uring_cmd is allowed to run.
5351 * Return: Returns 0 if permission is granted.
5353 int security_uring_cmd(struct io_uring_cmd *ioucmd)
5355 return call_int_hook(uring_cmd, 0, ioucmd);
5357 #endif /* CONFIG_IO_URING */