GNU Linux-libre 6.8.9-gnu
[releases.git] / security / security.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Security plug functions
4  *
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>
10  */
11
12 #define pr_fmt(fmt) "LSM: " fmt
13
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>
32 #include <linux/overflow.h>
33 #include <net/flow.h>
34
35 /* How many LSMs were built into the kernel? */
36 #define LSM_COUNT (__end_lsm_info - __start_lsm_info)
37
38 /*
39  * How many LSMs are built into the kernel as determined at
40  * build time. Used to determine fixed array sizes.
41  * The capability module is accounted for by CONFIG_SECURITY
42  */
43 #define LSM_CONFIG_COUNT ( \
44         (IS_ENABLED(CONFIG_SECURITY) ? 1 : 0) + \
45         (IS_ENABLED(CONFIG_SECURITY_SELINUX) ? 1 : 0) + \
46         (IS_ENABLED(CONFIG_SECURITY_SMACK) ? 1 : 0) + \
47         (IS_ENABLED(CONFIG_SECURITY_TOMOYO) ? 1 : 0) + \
48         (IS_ENABLED(CONFIG_SECURITY_APPARMOR) ? 1 : 0) + \
49         (IS_ENABLED(CONFIG_SECURITY_YAMA) ? 1 : 0) + \
50         (IS_ENABLED(CONFIG_SECURITY_LOADPIN) ? 1 : 0) + \
51         (IS_ENABLED(CONFIG_SECURITY_SAFESETID) ? 1 : 0) + \
52         (IS_ENABLED(CONFIG_SECURITY_LOCKDOWN_LSM) ? 1 : 0) + \
53         (IS_ENABLED(CONFIG_BPF_LSM) ? 1 : 0) + \
54         (IS_ENABLED(CONFIG_SECURITY_LANDLOCK) ? 1 : 0))
55
56 /*
57  * These are descriptions of the reasons that can be passed to the
58  * security_locked_down() LSM hook. Placing this array here allows
59  * all security modules to use the same descriptions for auditing
60  * purposes.
61  */
62 const char *const lockdown_reasons[LOCKDOWN_CONFIDENTIALITY_MAX + 1] = {
63         [LOCKDOWN_NONE] = "none",
64         [LOCKDOWN_MODULE_SIGNATURE] = "unsigned module loading",
65         [LOCKDOWN_DEV_MEM] = "/dev/mem,kmem,port",
66         [LOCKDOWN_EFI_TEST] = "/dev/efi_test access",
67         [LOCKDOWN_KEXEC] = "kexec of unsigned images",
68         [LOCKDOWN_HIBERNATION] = "hibernation",
69         [LOCKDOWN_PCI_ACCESS] = "direct PCI access",
70         [LOCKDOWN_IOPORT] = "raw io port access",
71         [LOCKDOWN_MSR] = "raw MSR access",
72         [LOCKDOWN_ACPI_TABLES] = "modifying ACPI tables",
73         [LOCKDOWN_DEVICE_TREE] = "modifying device tree contents",
74         [LOCKDOWN_PCMCIA_CIS] = "direct PCMCIA CIS storage",
75         [LOCKDOWN_TIOCSSERIAL] = "reconfiguration of serial port IO",
76         [LOCKDOWN_MODULE_PARAMETERS] = "unsafe module parameters",
77         [LOCKDOWN_MMIOTRACE] = "unsafe mmio",
78         [LOCKDOWN_DEBUGFS] = "debugfs access",
79         [LOCKDOWN_XMON_WR] = "xmon write access",
80         [LOCKDOWN_BPF_WRITE_USER] = "use of bpf to write user RAM",
81         [LOCKDOWN_DBG_WRITE_KERNEL] = "use of kgdb/kdb to write kernel RAM",
82         [LOCKDOWN_RTAS_ERROR_INJECTION] = "RTAS error injection",
83         [LOCKDOWN_INTEGRITY_MAX] = "integrity",
84         [LOCKDOWN_KCORE] = "/proc/kcore access",
85         [LOCKDOWN_KPROBES] = "use of kprobes",
86         [LOCKDOWN_BPF_READ_KERNEL] = "use of bpf to read kernel RAM",
87         [LOCKDOWN_DBG_READ_KERNEL] = "use of kgdb/kdb to read kernel RAM",
88         [LOCKDOWN_PERF] = "unsafe use of perf",
89         [LOCKDOWN_TRACEFS] = "use of tracefs",
90         [LOCKDOWN_XMON_RW] = "xmon read and write access",
91         [LOCKDOWN_XFRM_SECRET] = "xfrm SA secret",
92         [LOCKDOWN_CONFIDENTIALITY_MAX] = "confidentiality",
93 };
94
95 struct security_hook_heads security_hook_heads __ro_after_init;
96 static BLOCKING_NOTIFIER_HEAD(blocking_lsm_notifier_chain);
97
98 static struct kmem_cache *lsm_file_cache;
99 static struct kmem_cache *lsm_inode_cache;
100
101 char *lsm_names;
102 static struct lsm_blob_sizes blob_sizes __ro_after_init;
103
104 /* Boot-time LSM user choice */
105 static __initdata const char *chosen_lsm_order;
106 static __initdata const char *chosen_major_lsm;
107
108 static __initconst const char *const builtin_lsm_order = CONFIG_LSM;
109
110 /* Ordered list of LSMs to initialize. */
111 static __initdata struct lsm_info **ordered_lsms;
112 static __initdata struct lsm_info *exclusive;
113
114 static __initdata bool debug;
115 #define init_debug(...)                                         \
116         do {                                                    \
117                 if (debug)                                      \
118                         pr_info(__VA_ARGS__);                   \
119         } while (0)
120
121 static bool __init is_enabled(struct lsm_info *lsm)
122 {
123         if (!lsm->enabled)
124                 return false;
125
126         return *lsm->enabled;
127 }
128
129 /* Mark an LSM's enabled flag. */
130 static int lsm_enabled_true __initdata = 1;
131 static int lsm_enabled_false __initdata = 0;
132 static void __init set_enabled(struct lsm_info *lsm, bool enabled)
133 {
134         /*
135          * When an LSM hasn't configured an enable variable, we can use
136          * a hard-coded location for storing the default enabled state.
137          */
138         if (!lsm->enabled) {
139                 if (enabled)
140                         lsm->enabled = &lsm_enabled_true;
141                 else
142                         lsm->enabled = &lsm_enabled_false;
143         } else if (lsm->enabled == &lsm_enabled_true) {
144                 if (!enabled)
145                         lsm->enabled = &lsm_enabled_false;
146         } else if (lsm->enabled == &lsm_enabled_false) {
147                 if (enabled)
148                         lsm->enabled = &lsm_enabled_true;
149         } else {
150                 *lsm->enabled = enabled;
151         }
152 }
153
154 /* Is an LSM already listed in the ordered LSMs list? */
155 static bool __init exists_ordered_lsm(struct lsm_info *lsm)
156 {
157         struct lsm_info **check;
158
159         for (check = ordered_lsms; *check; check++)
160                 if (*check == lsm)
161                         return true;
162
163         return false;
164 }
165
166 /* Append an LSM to the list of ordered LSMs to initialize. */
167 static int last_lsm __initdata;
168 static void __init append_ordered_lsm(struct lsm_info *lsm, const char *from)
169 {
170         /* Ignore duplicate selections. */
171         if (exists_ordered_lsm(lsm))
172                 return;
173
174         if (WARN(last_lsm == LSM_COUNT, "%s: out of LSM slots!?\n", from))
175                 return;
176
177         /* Enable this LSM, if it is not already set. */
178         if (!lsm->enabled)
179                 lsm->enabled = &lsm_enabled_true;
180         ordered_lsms[last_lsm++] = lsm;
181
182         init_debug("%s ordered: %s (%s)\n", from, lsm->name,
183                    is_enabled(lsm) ? "enabled" : "disabled");
184 }
185
186 /* Is an LSM allowed to be initialized? */
187 static bool __init lsm_allowed(struct lsm_info *lsm)
188 {
189         /* Skip if the LSM is disabled. */
190         if (!is_enabled(lsm))
191                 return false;
192
193         /* Not allowed if another exclusive LSM already initialized. */
194         if ((lsm->flags & LSM_FLAG_EXCLUSIVE) && exclusive) {
195                 init_debug("exclusive disabled: %s\n", lsm->name);
196                 return false;
197         }
198
199         return true;
200 }
201
202 static void __init lsm_set_blob_size(int *need, int *lbs)
203 {
204         int offset;
205
206         if (*need <= 0)
207                 return;
208
209         offset = ALIGN(*lbs, sizeof(void *));
210         *lbs = offset + *need;
211         *need = offset;
212 }
213
214 static void __init lsm_set_blob_sizes(struct lsm_blob_sizes *needed)
215 {
216         if (!needed)
217                 return;
218
219         lsm_set_blob_size(&needed->lbs_cred, &blob_sizes.lbs_cred);
220         lsm_set_blob_size(&needed->lbs_file, &blob_sizes.lbs_file);
221         /*
222          * The inode blob gets an rcu_head in addition to
223          * what the modules might need.
224          */
225         if (needed->lbs_inode && blob_sizes.lbs_inode == 0)
226                 blob_sizes.lbs_inode = sizeof(struct rcu_head);
227         lsm_set_blob_size(&needed->lbs_inode, &blob_sizes.lbs_inode);
228         lsm_set_blob_size(&needed->lbs_ipc, &blob_sizes.lbs_ipc);
229         lsm_set_blob_size(&needed->lbs_msg_msg, &blob_sizes.lbs_msg_msg);
230         lsm_set_blob_size(&needed->lbs_superblock, &blob_sizes.lbs_superblock);
231         lsm_set_blob_size(&needed->lbs_task, &blob_sizes.lbs_task);
232         lsm_set_blob_size(&needed->lbs_xattr_count,
233                           &blob_sizes.lbs_xattr_count);
234 }
235
236 /* Prepare LSM for initialization. */
237 static void __init prepare_lsm(struct lsm_info *lsm)
238 {
239         int enabled = lsm_allowed(lsm);
240
241         /* Record enablement (to handle any following exclusive LSMs). */
242         set_enabled(lsm, enabled);
243
244         /* If enabled, do pre-initialization work. */
245         if (enabled) {
246                 if ((lsm->flags & LSM_FLAG_EXCLUSIVE) && !exclusive) {
247                         exclusive = lsm;
248                         init_debug("exclusive chosen:   %s\n", lsm->name);
249                 }
250
251                 lsm_set_blob_sizes(lsm->blobs);
252         }
253 }
254
255 /* Initialize a given LSM, if it is enabled. */
256 static void __init initialize_lsm(struct lsm_info *lsm)
257 {
258         if (is_enabled(lsm)) {
259                 int ret;
260
261                 init_debug("initializing %s\n", lsm->name);
262                 ret = lsm->init();
263                 WARN(ret, "%s failed to initialize: %d\n", lsm->name, ret);
264         }
265 }
266
267 /*
268  * Current index to use while initializing the lsm id list.
269  */
270 u32 lsm_active_cnt __ro_after_init;
271 const struct lsm_id *lsm_idlist[LSM_CONFIG_COUNT];
272
273 /* Populate ordered LSMs list from comma-separated LSM name list. */
274 static void __init ordered_lsm_parse(const char *order, const char *origin)
275 {
276         struct lsm_info *lsm;
277         char *sep, *name, *next;
278
279         /* LSM_ORDER_FIRST is always first. */
280         for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
281                 if (lsm->order == LSM_ORDER_FIRST)
282                         append_ordered_lsm(lsm, "  first");
283         }
284
285         /* Process "security=", if given. */
286         if (chosen_major_lsm) {
287                 struct lsm_info *major;
288
289                 /*
290                  * To match the original "security=" behavior, this
291                  * explicitly does NOT fallback to another Legacy Major
292                  * if the selected one was separately disabled: disable
293                  * all non-matching Legacy Major LSMs.
294                  */
295                 for (major = __start_lsm_info; major < __end_lsm_info;
296                      major++) {
297                         if ((major->flags & LSM_FLAG_LEGACY_MAJOR) &&
298                             strcmp(major->name, chosen_major_lsm) != 0) {
299                                 set_enabled(major, false);
300                                 init_debug("security=%s disabled: %s (only one legacy major LSM)\n",
301                                            chosen_major_lsm, major->name);
302                         }
303                 }
304         }
305
306         sep = kstrdup(order, GFP_KERNEL);
307         next = sep;
308         /* Walk the list, looking for matching LSMs. */
309         while ((name = strsep(&next, ",")) != NULL) {
310                 bool found = false;
311
312                 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
313                         if (strcmp(lsm->name, name) == 0) {
314                                 if (lsm->order == LSM_ORDER_MUTABLE)
315                                         append_ordered_lsm(lsm, origin);
316                                 found = true;
317                         }
318                 }
319
320                 if (!found)
321                         init_debug("%s ignored: %s (not built into kernel)\n",
322                                    origin, name);
323         }
324
325         /* Process "security=", if given. */
326         if (chosen_major_lsm) {
327                 for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
328                         if (exists_ordered_lsm(lsm))
329                                 continue;
330                         if (strcmp(lsm->name, chosen_major_lsm) == 0)
331                                 append_ordered_lsm(lsm, "security=");
332                 }
333         }
334
335         /* LSM_ORDER_LAST is always last. */
336         for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
337                 if (lsm->order == LSM_ORDER_LAST)
338                         append_ordered_lsm(lsm, "   last");
339         }
340
341         /* Disable all LSMs not in the ordered list. */
342         for (lsm = __start_lsm_info; lsm < __end_lsm_info; lsm++) {
343                 if (exists_ordered_lsm(lsm))
344                         continue;
345                 set_enabled(lsm, false);
346                 init_debug("%s skipped: %s (not in requested order)\n",
347                            origin, lsm->name);
348         }
349
350         kfree(sep);
351 }
352
353 static void __init lsm_early_cred(struct cred *cred);
354 static void __init lsm_early_task(struct task_struct *task);
355
356 static int lsm_append(const char *new, char **result);
357
358 static void __init report_lsm_order(void)
359 {
360         struct lsm_info **lsm, *early;
361         int first = 0;
362
363         pr_info("initializing lsm=");
364
365         /* Report each enabled LSM name, comma separated. */
366         for (early = __start_early_lsm_info;
367              early < __end_early_lsm_info; early++)
368                 if (is_enabled(early))
369                         pr_cont("%s%s", first++ == 0 ? "" : ",", early->name);
370         for (lsm = ordered_lsms; *lsm; lsm++)
371                 if (is_enabled(*lsm))
372                         pr_cont("%s%s", first++ == 0 ? "" : ",", (*lsm)->name);
373
374         pr_cont("\n");
375 }
376
377 static void __init ordered_lsm_init(void)
378 {
379         struct lsm_info **lsm;
380
381         ordered_lsms = kcalloc(LSM_COUNT + 1, sizeof(*ordered_lsms),
382                                GFP_KERNEL);
383
384         if (chosen_lsm_order) {
385                 if (chosen_major_lsm) {
386                         pr_warn("security=%s is ignored because it is superseded by lsm=%s\n",
387                                 chosen_major_lsm, chosen_lsm_order);
388                         chosen_major_lsm = NULL;
389                 }
390                 ordered_lsm_parse(chosen_lsm_order, "cmdline");
391         } else
392                 ordered_lsm_parse(builtin_lsm_order, "builtin");
393
394         for (lsm = ordered_lsms; *lsm; lsm++)
395                 prepare_lsm(*lsm);
396
397         report_lsm_order();
398
399         init_debug("cred blob size       = %d\n", blob_sizes.lbs_cred);
400         init_debug("file blob size       = %d\n", blob_sizes.lbs_file);
401         init_debug("inode blob size      = %d\n", blob_sizes.lbs_inode);
402         init_debug("ipc blob size        = %d\n", blob_sizes.lbs_ipc);
403         init_debug("msg_msg blob size    = %d\n", blob_sizes.lbs_msg_msg);
404         init_debug("superblock blob size = %d\n", blob_sizes.lbs_superblock);
405         init_debug("task blob size       = %d\n", blob_sizes.lbs_task);
406         init_debug("xattr slots          = %d\n", blob_sizes.lbs_xattr_count);
407
408         /*
409          * Create any kmem_caches needed for blobs
410          */
411         if (blob_sizes.lbs_file)
412                 lsm_file_cache = kmem_cache_create("lsm_file_cache",
413                                                    blob_sizes.lbs_file, 0,
414                                                    SLAB_PANIC, NULL);
415         if (blob_sizes.lbs_inode)
416                 lsm_inode_cache = kmem_cache_create("lsm_inode_cache",
417                                                     blob_sizes.lbs_inode, 0,
418                                                     SLAB_PANIC, NULL);
419
420         lsm_early_cred((struct cred *) current->cred);
421         lsm_early_task(current);
422         for (lsm = ordered_lsms; *lsm; lsm++)
423                 initialize_lsm(*lsm);
424
425         kfree(ordered_lsms);
426 }
427
428 int __init early_security_init(void)
429 {
430         struct lsm_info *lsm;
431
432 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \
433         INIT_HLIST_HEAD(&security_hook_heads.NAME);
434 #include "linux/lsm_hook_defs.h"
435 #undef LSM_HOOK
436
437         for (lsm = __start_early_lsm_info; lsm < __end_early_lsm_info; lsm++) {
438                 if (!lsm->enabled)
439                         lsm->enabled = &lsm_enabled_true;
440                 prepare_lsm(lsm);
441                 initialize_lsm(lsm);
442         }
443
444         return 0;
445 }
446
447 /**
448  * security_init - initializes the security framework
449  *
450  * This should be called early in the kernel initialization sequence.
451  */
452 int __init security_init(void)
453 {
454         struct lsm_info *lsm;
455
456         init_debug("legacy security=%s\n", chosen_major_lsm ? : " *unspecified*");
457         init_debug("  CONFIG_LSM=%s\n", builtin_lsm_order);
458         init_debug("boot arg lsm=%s\n", chosen_lsm_order ? : " *unspecified*");
459
460         /*
461          * Append the names of the early LSM modules now that kmalloc() is
462          * available
463          */
464         for (lsm = __start_early_lsm_info; lsm < __end_early_lsm_info; lsm++) {
465                 init_debug("  early started: %s (%s)\n", lsm->name,
466                            is_enabled(lsm) ? "enabled" : "disabled");
467                 if (lsm->enabled)
468                         lsm_append(lsm->name, &lsm_names);
469         }
470
471         /* Load LSMs in specified order. */
472         ordered_lsm_init();
473
474         return 0;
475 }
476
477 /* Save user chosen LSM */
478 static int __init choose_major_lsm(char *str)
479 {
480         chosen_major_lsm = str;
481         return 1;
482 }
483 __setup("security=", choose_major_lsm);
484
485 /* Explicitly choose LSM initialization order. */
486 static int __init choose_lsm_order(char *str)
487 {
488         chosen_lsm_order = str;
489         return 1;
490 }
491 __setup("lsm=", choose_lsm_order);
492
493 /* Enable LSM order debugging. */
494 static int __init enable_debug(char *str)
495 {
496         debug = true;
497         return 1;
498 }
499 __setup("lsm.debug", enable_debug);
500
501 static bool match_last_lsm(const char *list, const char *lsm)
502 {
503         const char *last;
504
505         if (WARN_ON(!list || !lsm))
506                 return false;
507         last = strrchr(list, ',');
508         if (last)
509                 /* Pass the comma, strcmp() will check for '\0' */
510                 last++;
511         else
512                 last = list;
513         return !strcmp(last, lsm);
514 }
515
516 static int lsm_append(const char *new, char **result)
517 {
518         char *cp;
519
520         if (*result == NULL) {
521                 *result = kstrdup(new, GFP_KERNEL);
522                 if (*result == NULL)
523                         return -ENOMEM;
524         } else {
525                 /* Check if it is the last registered name */
526                 if (match_last_lsm(*result, new))
527                         return 0;
528                 cp = kasprintf(GFP_KERNEL, "%s,%s", *result, new);
529                 if (cp == NULL)
530                         return -ENOMEM;
531                 kfree(*result);
532                 *result = cp;
533         }
534         return 0;
535 }
536
537 /**
538  * security_add_hooks - Add a modules hooks to the hook lists.
539  * @hooks: the hooks to add
540  * @count: the number of hooks to add
541  * @lsmid: the identification information for the security module
542  *
543  * Each LSM has to register its hooks with the infrastructure.
544  */
545 void __init security_add_hooks(struct security_hook_list *hooks, int count,
546                                const struct lsm_id *lsmid)
547 {
548         int i;
549
550         /*
551          * A security module may call security_add_hooks() more
552          * than once during initialization, and LSM initialization
553          * is serialized. Landlock is one such case.
554          * Look at the previous entry, if there is one, for duplication.
555          */
556         if (lsm_active_cnt == 0 || lsm_idlist[lsm_active_cnt - 1] != lsmid) {
557                 if (lsm_active_cnt >= LSM_CONFIG_COUNT)
558                         panic("%s Too many LSMs registered.\n", __func__);
559                 lsm_idlist[lsm_active_cnt++] = lsmid;
560         }
561
562         for (i = 0; i < count; i++) {
563                 hooks[i].lsmid = lsmid;
564                 hlist_add_tail_rcu(&hooks[i].list, hooks[i].head);
565         }
566
567         /*
568          * Don't try to append during early_security_init(), we'll come back
569          * and fix this up afterwards.
570          */
571         if (slab_is_available()) {
572                 if (lsm_append(lsmid->name, &lsm_names) < 0)
573                         panic("%s - Cannot get early memory.\n", __func__);
574         }
575 }
576
577 int call_blocking_lsm_notifier(enum lsm_event event, void *data)
578 {
579         return blocking_notifier_call_chain(&blocking_lsm_notifier_chain,
580                                             event, data);
581 }
582 EXPORT_SYMBOL(call_blocking_lsm_notifier);
583
584 int register_blocking_lsm_notifier(struct notifier_block *nb)
585 {
586         return blocking_notifier_chain_register(&blocking_lsm_notifier_chain,
587                                                 nb);
588 }
589 EXPORT_SYMBOL(register_blocking_lsm_notifier);
590
591 int unregister_blocking_lsm_notifier(struct notifier_block *nb)
592 {
593         return blocking_notifier_chain_unregister(&blocking_lsm_notifier_chain,
594                                                   nb);
595 }
596 EXPORT_SYMBOL(unregister_blocking_lsm_notifier);
597
598 /**
599  * lsm_cred_alloc - allocate a composite cred blob
600  * @cred: the cred that needs a blob
601  * @gfp: allocation type
602  *
603  * Allocate the cred blob for all the modules
604  *
605  * Returns 0, or -ENOMEM if memory can't be allocated.
606  */
607 static int lsm_cred_alloc(struct cred *cred, gfp_t gfp)
608 {
609         if (blob_sizes.lbs_cred == 0) {
610                 cred->security = NULL;
611                 return 0;
612         }
613
614         cred->security = kzalloc(blob_sizes.lbs_cred, gfp);
615         if (cred->security == NULL)
616                 return -ENOMEM;
617         return 0;
618 }
619
620 /**
621  * lsm_early_cred - during initialization allocate a composite cred blob
622  * @cred: the cred that needs a blob
623  *
624  * Allocate the cred blob for all the modules
625  */
626 static void __init lsm_early_cred(struct cred *cred)
627 {
628         int rc = lsm_cred_alloc(cred, GFP_KERNEL);
629
630         if (rc)
631                 panic("%s: Early cred alloc failed.\n", __func__);
632 }
633
634 /**
635  * lsm_file_alloc - allocate a composite file blob
636  * @file: the file that needs a blob
637  *
638  * Allocate the file blob for all the modules
639  *
640  * Returns 0, or -ENOMEM if memory can't be allocated.
641  */
642 static int lsm_file_alloc(struct file *file)
643 {
644         if (!lsm_file_cache) {
645                 file->f_security = NULL;
646                 return 0;
647         }
648
649         file->f_security = kmem_cache_zalloc(lsm_file_cache, GFP_KERNEL);
650         if (file->f_security == NULL)
651                 return -ENOMEM;
652         return 0;
653 }
654
655 /**
656  * lsm_inode_alloc - allocate a composite inode blob
657  * @inode: the inode that needs a blob
658  *
659  * Allocate the inode blob for all the modules
660  *
661  * Returns 0, or -ENOMEM if memory can't be allocated.
662  */
663 int lsm_inode_alloc(struct inode *inode)
664 {
665         if (!lsm_inode_cache) {
666                 inode->i_security = NULL;
667                 return 0;
668         }
669
670         inode->i_security = kmem_cache_zalloc(lsm_inode_cache, GFP_NOFS);
671         if (inode->i_security == NULL)
672                 return -ENOMEM;
673         return 0;
674 }
675
676 /**
677  * lsm_task_alloc - allocate a composite task blob
678  * @task: the task that needs a blob
679  *
680  * Allocate the task blob for all the modules
681  *
682  * Returns 0, or -ENOMEM if memory can't be allocated.
683  */
684 static int lsm_task_alloc(struct task_struct *task)
685 {
686         if (blob_sizes.lbs_task == 0) {
687                 task->security = NULL;
688                 return 0;
689         }
690
691         task->security = kzalloc(blob_sizes.lbs_task, GFP_KERNEL);
692         if (task->security == NULL)
693                 return -ENOMEM;
694         return 0;
695 }
696
697 /**
698  * lsm_ipc_alloc - allocate a composite ipc blob
699  * @kip: the ipc that needs a blob
700  *
701  * Allocate the ipc blob for all the modules
702  *
703  * Returns 0, or -ENOMEM if memory can't be allocated.
704  */
705 static int lsm_ipc_alloc(struct kern_ipc_perm *kip)
706 {
707         if (blob_sizes.lbs_ipc == 0) {
708                 kip->security = NULL;
709                 return 0;
710         }
711
712         kip->security = kzalloc(blob_sizes.lbs_ipc, GFP_KERNEL);
713         if (kip->security == NULL)
714                 return -ENOMEM;
715         return 0;
716 }
717
718 /**
719  * lsm_msg_msg_alloc - allocate a composite msg_msg blob
720  * @mp: the msg_msg that needs a blob
721  *
722  * Allocate the ipc blob for all the modules
723  *
724  * Returns 0, or -ENOMEM if memory can't be allocated.
725  */
726 static int lsm_msg_msg_alloc(struct msg_msg *mp)
727 {
728         if (blob_sizes.lbs_msg_msg == 0) {
729                 mp->security = NULL;
730                 return 0;
731         }
732
733         mp->security = kzalloc(blob_sizes.lbs_msg_msg, GFP_KERNEL);
734         if (mp->security == NULL)
735                 return -ENOMEM;
736         return 0;
737 }
738
739 /**
740  * lsm_early_task - during initialization allocate a composite task blob
741  * @task: the task that needs a blob
742  *
743  * Allocate the task blob for all the modules
744  */
745 static void __init lsm_early_task(struct task_struct *task)
746 {
747         int rc = lsm_task_alloc(task);
748
749         if (rc)
750                 panic("%s: Early task alloc failed.\n", __func__);
751 }
752
753 /**
754  * lsm_superblock_alloc - allocate a composite superblock blob
755  * @sb: the superblock that needs a blob
756  *
757  * Allocate the superblock blob for all the modules
758  *
759  * Returns 0, or -ENOMEM if memory can't be allocated.
760  */
761 static int lsm_superblock_alloc(struct super_block *sb)
762 {
763         if (blob_sizes.lbs_superblock == 0) {
764                 sb->s_security = NULL;
765                 return 0;
766         }
767
768         sb->s_security = kzalloc(blob_sizes.lbs_superblock, GFP_KERNEL);
769         if (sb->s_security == NULL)
770                 return -ENOMEM;
771         return 0;
772 }
773
774 /**
775  * lsm_fill_user_ctx - Fill a user space lsm_ctx structure
776  * @uctx: a userspace LSM context to be filled
777  * @uctx_len: available uctx size (input), used uctx size (output)
778  * @val: the new LSM context value
779  * @val_len: the size of the new LSM context value
780  * @id: LSM id
781  * @flags: LSM defined flags
782  *
783  * Fill all of the fields in a userspace lsm_ctx structure.  If @uctx is NULL
784  * simply calculate the required size to output via @utc_len and return
785  * success.
786  *
787  * Returns 0 on success, -E2BIG if userspace buffer is not large enough,
788  * -EFAULT on a copyout error, -ENOMEM if memory can't be allocated.
789  */
790 int lsm_fill_user_ctx(struct lsm_ctx __user *uctx, u32 *uctx_len,
791                       void *val, size_t val_len,
792                       u64 id, u64 flags)
793 {
794         struct lsm_ctx *nctx = NULL;
795         size_t nctx_len;
796         int rc = 0;
797
798         nctx_len = ALIGN(struct_size(nctx, ctx, val_len), sizeof(void *));
799         if (nctx_len > *uctx_len) {
800                 rc = -E2BIG;
801                 goto out;
802         }
803
804         /* no buffer - return success/0 and set @uctx_len to the req size */
805         if (!uctx)
806                 goto out;
807
808         nctx = kzalloc(nctx_len, GFP_KERNEL);
809         if (nctx == NULL) {
810                 rc = -ENOMEM;
811                 goto out;
812         }
813         nctx->id = id;
814         nctx->flags = flags;
815         nctx->len = nctx_len;
816         nctx->ctx_len = val_len;
817         memcpy(nctx->ctx, val, val_len);
818
819         if (copy_to_user(uctx, nctx, nctx_len))
820                 rc = -EFAULT;
821
822 out:
823         kfree(nctx);
824         *uctx_len = nctx_len;
825         return rc;
826 }
827
828 /*
829  * The default value of the LSM hook is defined in linux/lsm_hook_defs.h and
830  * can be accessed with:
831  *
832  *      LSM_RET_DEFAULT(<hook_name>)
833  *
834  * The macros below define static constants for the default value of each
835  * LSM hook.
836  */
837 #define LSM_RET_DEFAULT(NAME) (NAME##_default)
838 #define DECLARE_LSM_RET_DEFAULT_void(DEFAULT, NAME)
839 #define DECLARE_LSM_RET_DEFAULT_int(DEFAULT, NAME) \
840         static const int __maybe_unused LSM_RET_DEFAULT(NAME) = (DEFAULT);
841 #define LSM_HOOK(RET, DEFAULT, NAME, ...) \
842         DECLARE_LSM_RET_DEFAULT_##RET(DEFAULT, NAME)
843
844 #include <linux/lsm_hook_defs.h>
845 #undef LSM_HOOK
846
847 /*
848  * Hook list operation macros.
849  *
850  * call_void_hook:
851  *      This is a hook that does not return a value.
852  *
853  * call_int_hook:
854  *      This is a hook that returns a value.
855  */
856
857 #define call_void_hook(FUNC, ...)                               \
858         do {                                                    \
859                 struct security_hook_list *P;                   \
860                                                                 \
861                 hlist_for_each_entry(P, &security_hook_heads.FUNC, list) \
862                         P->hook.FUNC(__VA_ARGS__);              \
863         } while (0)
864
865 #define call_int_hook(FUNC, IRC, ...) ({                        \
866         int RC = IRC;                                           \
867         do {                                                    \
868                 struct security_hook_list *P;                   \
869                                                                 \
870                 hlist_for_each_entry(P, &security_hook_heads.FUNC, list) { \
871                         RC = P->hook.FUNC(__VA_ARGS__);         \
872                         if (RC != 0)                            \
873                                 break;                          \
874                 }                                               \
875         } while (0);                                            \
876         RC;                                                     \
877 })
878
879 /* Security operations */
880
881 /**
882  * security_binder_set_context_mgr() - Check if becoming binder ctx mgr is ok
883  * @mgr: task credentials of current binder process
884  *
885  * Check whether @mgr is allowed to be the binder context manager.
886  *
887  * Return: Return 0 if permission is granted.
888  */
889 int security_binder_set_context_mgr(const struct cred *mgr)
890 {
891         return call_int_hook(binder_set_context_mgr, 0, mgr);
892 }
893
894 /**
895  * security_binder_transaction() - Check if a binder transaction is allowed
896  * @from: sending process
897  * @to: receiving process
898  *
899  * Check whether @from is allowed to invoke a binder transaction call to @to.
900  *
901  * Return: Returns 0 if permission is granted.
902  */
903 int security_binder_transaction(const struct cred *from,
904                                 const struct cred *to)
905 {
906         return call_int_hook(binder_transaction, 0, from, to);
907 }
908
909 /**
910  * security_binder_transfer_binder() - Check if a binder transfer is allowed
911  * @from: sending process
912  * @to: receiving process
913  *
914  * Check whether @from is allowed to transfer a binder reference to @to.
915  *
916  * Return: Returns 0 if permission is granted.
917  */
918 int security_binder_transfer_binder(const struct cred *from,
919                                     const struct cred *to)
920 {
921         return call_int_hook(binder_transfer_binder, 0, from, to);
922 }
923
924 /**
925  * security_binder_transfer_file() - Check if a binder file xfer is allowed
926  * @from: sending process
927  * @to: receiving process
928  * @file: file being transferred
929  *
930  * Check whether @from is allowed to transfer @file to @to.
931  *
932  * Return: Returns 0 if permission is granted.
933  */
934 int security_binder_transfer_file(const struct cred *from,
935                                   const struct cred *to, const struct file *file)
936 {
937         return call_int_hook(binder_transfer_file, 0, from, to, file);
938 }
939
940 /**
941  * security_ptrace_access_check() - Check if tracing is allowed
942  * @child: target process
943  * @mode: PTRACE_MODE flags
944  *
945  * Check permission before allowing the current process to trace the @child
946  * process.  Security modules may also want to perform a process tracing check
947  * during an execve in the set_security or apply_creds hooks of tracing check
948  * during an execve in the bprm_set_creds hook of binprm_security_ops if the
949  * process is being traced and its security attributes would be changed by the
950  * execve.
951  *
952  * Return: Returns 0 if permission is granted.
953  */
954 int security_ptrace_access_check(struct task_struct *child, unsigned int mode)
955 {
956         return call_int_hook(ptrace_access_check, 0, child, mode);
957 }
958
959 /**
960  * security_ptrace_traceme() - Check if tracing is allowed
961  * @parent: tracing process
962  *
963  * Check that the @parent process has sufficient permission to trace the
964  * current process before allowing the current process to present itself to the
965  * @parent process for tracing.
966  *
967  * Return: Returns 0 if permission is granted.
968  */
969 int security_ptrace_traceme(struct task_struct *parent)
970 {
971         return call_int_hook(ptrace_traceme, 0, parent);
972 }
973
974 /**
975  * security_capget() - Get the capability sets for a process
976  * @target: target process
977  * @effective: effective capability set
978  * @inheritable: inheritable capability set
979  * @permitted: permitted capability set
980  *
981  * Get the @effective, @inheritable, and @permitted capability sets for the
982  * @target process.  The hook may also perform permission checking to determine
983  * if the current process is allowed to see the capability sets of the @target
984  * process.
985  *
986  * Return: Returns 0 if the capability sets were successfully obtained.
987  */
988 int security_capget(const struct task_struct *target,
989                     kernel_cap_t *effective,
990                     kernel_cap_t *inheritable,
991                     kernel_cap_t *permitted)
992 {
993         return call_int_hook(capget, 0, target,
994                              effective, inheritable, permitted);
995 }
996
997 /**
998  * security_capset() - Set the capability sets for a process
999  * @new: new credentials for the target process
1000  * @old: current credentials of the target process
1001  * @effective: effective capability set
1002  * @inheritable: inheritable capability set
1003  * @permitted: permitted capability set
1004  *
1005  * Set the @effective, @inheritable, and @permitted capability sets for the
1006  * current process.
1007  *
1008  * Return: Returns 0 and update @new if permission is granted.
1009  */
1010 int security_capset(struct cred *new, const struct cred *old,
1011                     const kernel_cap_t *effective,
1012                     const kernel_cap_t *inheritable,
1013                     const kernel_cap_t *permitted)
1014 {
1015         return call_int_hook(capset, 0, new, old,
1016                              effective, inheritable, permitted);
1017 }
1018
1019 /**
1020  * security_capable() - Check if a process has the necessary capability
1021  * @cred: credentials to examine
1022  * @ns: user namespace
1023  * @cap: capability requested
1024  * @opts: capability check options
1025  *
1026  * Check whether the @tsk process has the @cap capability in the indicated
1027  * credentials.  @cap contains the capability <include/linux/capability.h>.
1028  * @opts contains options for the capable check <include/linux/security.h>.
1029  *
1030  * Return: Returns 0 if the capability is granted.
1031  */
1032 int security_capable(const struct cred *cred,
1033                      struct user_namespace *ns,
1034                      int cap,
1035                      unsigned int opts)
1036 {
1037         return call_int_hook(capable, 0, cred, ns, cap, opts);
1038 }
1039
1040 /**
1041  * security_quotactl() - Check if a quotactl() syscall is allowed for this fs
1042  * @cmds: commands
1043  * @type: type
1044  * @id: id
1045  * @sb: filesystem
1046  *
1047  * Check whether the quotactl syscall is allowed for this @sb.
1048  *
1049  * Return: Returns 0 if permission is granted.
1050  */
1051 int security_quotactl(int cmds, int type, int id, const struct super_block *sb)
1052 {
1053         return call_int_hook(quotactl, 0, cmds, type, id, sb);
1054 }
1055
1056 /**
1057  * security_quota_on() - Check if QUOTAON is allowed for a dentry
1058  * @dentry: dentry
1059  *
1060  * Check whether QUOTAON is allowed for @dentry.
1061  *
1062  * Return: Returns 0 if permission is granted.
1063  */
1064 int security_quota_on(struct dentry *dentry)
1065 {
1066         return call_int_hook(quota_on, 0, dentry);
1067 }
1068
1069 /**
1070  * security_syslog() - Check if accessing the kernel message ring is allowed
1071  * @type: SYSLOG_ACTION_* type
1072  *
1073  * Check permission before accessing the kernel message ring or changing
1074  * logging to the console.  See the syslog(2) manual page for an explanation of
1075  * the @type values.
1076  *
1077  * Return: Return 0 if permission is granted.
1078  */
1079 int security_syslog(int type)
1080 {
1081         return call_int_hook(syslog, 0, type);
1082 }
1083
1084 /**
1085  * security_settime64() - Check if changing the system time is allowed
1086  * @ts: new time
1087  * @tz: timezone
1088  *
1089  * Check permission to change the system time, struct timespec64 is defined in
1090  * <include/linux/time64.h> and timezone is defined in <include/linux/time.h>.
1091  *
1092  * Return: Returns 0 if permission is granted.
1093  */
1094 int security_settime64(const struct timespec64 *ts, const struct timezone *tz)
1095 {
1096         return call_int_hook(settime, 0, ts, tz);
1097 }
1098
1099 /**
1100  * security_vm_enough_memory_mm() - Check if allocating a new mem map is allowed
1101  * @mm: mm struct
1102  * @pages: number of pages
1103  *
1104  * Check permissions for allocating a new virtual mapping.  If all LSMs return
1105  * a positive value, __vm_enough_memory() will be called with cap_sys_admin
1106  * set. If at least one LSM returns 0 or negative, __vm_enough_memory() will be
1107  * called with cap_sys_admin cleared.
1108  *
1109  * Return: Returns 0 if permission is granted by the LSM infrastructure to the
1110  *         caller.
1111  */
1112 int security_vm_enough_memory_mm(struct mm_struct *mm, long pages)
1113 {
1114         struct security_hook_list *hp;
1115         int cap_sys_admin = 1;
1116         int rc;
1117
1118         /*
1119          * The module will respond with a positive value if
1120          * it thinks the __vm_enough_memory() call should be
1121          * made with the cap_sys_admin set. If all of the modules
1122          * agree that it should be set it will. If any module
1123          * thinks it should not be set it won't.
1124          */
1125         hlist_for_each_entry(hp, &security_hook_heads.vm_enough_memory, list) {
1126                 rc = hp->hook.vm_enough_memory(mm, pages);
1127                 if (rc <= 0) {
1128                         cap_sys_admin = 0;
1129                         break;
1130                 }
1131         }
1132         return __vm_enough_memory(mm, pages, cap_sys_admin);
1133 }
1134
1135 /**
1136  * security_bprm_creds_for_exec() - Prepare the credentials for exec()
1137  * @bprm: binary program information
1138  *
1139  * If the setup in prepare_exec_creds did not setup @bprm->cred->security
1140  * properly for executing @bprm->file, update the LSM's portion of
1141  * @bprm->cred->security to be what commit_creds needs to install for the new
1142  * program.  This hook may also optionally check permissions (e.g. for
1143  * transitions between security domains).  The hook must set @bprm->secureexec
1144  * to 1 if AT_SECURE should be set to request libc enable secure mode.  @bprm
1145  * contains the linux_binprm structure.
1146  *
1147  * Return: Returns 0 if the hook is successful and permission is granted.
1148  */
1149 int security_bprm_creds_for_exec(struct linux_binprm *bprm)
1150 {
1151         return call_int_hook(bprm_creds_for_exec, 0, bprm);
1152 }
1153
1154 /**
1155  * security_bprm_creds_from_file() - Update linux_binprm creds based on file
1156  * @bprm: binary program information
1157  * @file: associated file
1158  *
1159  * If @file is setpcap, suid, sgid or otherwise marked to change privilege upon
1160  * exec, update @bprm->cred to reflect that change. This is called after
1161  * finding the binary that will be executed without an interpreter.  This
1162  * ensures that the credentials will not be derived from a script that the
1163  * binary will need to reopen, which when reopend may end up being a completely
1164  * different file.  This hook may also optionally check permissions (e.g. for
1165  * transitions between security domains).  The hook must set @bprm->secureexec
1166  * to 1 if AT_SECURE should be set to request libc enable secure mode.  The
1167  * hook must add to @bprm->per_clear any personality flags that should be
1168  * cleared from current->personality.  @bprm contains the linux_binprm
1169  * structure.
1170  *
1171  * Return: Returns 0 if the hook is successful and permission is granted.
1172  */
1173 int security_bprm_creds_from_file(struct linux_binprm *bprm, const struct file *file)
1174 {
1175         return call_int_hook(bprm_creds_from_file, 0, bprm, file);
1176 }
1177
1178 /**
1179  * security_bprm_check() - Mediate binary handler search
1180  * @bprm: binary program information
1181  *
1182  * This hook mediates the point when a search for a binary handler will begin.
1183  * It allows a check against the @bprm->cred->security value which was set in
1184  * the preceding creds_for_exec call.  The argv list and envp list are reliably
1185  * available in @bprm.  This hook may be called multiple times during a single
1186  * execve.  @bprm contains the linux_binprm structure.
1187  *
1188  * Return: Returns 0 if the hook is successful and permission is granted.
1189  */
1190 int security_bprm_check(struct linux_binprm *bprm)
1191 {
1192         int ret;
1193
1194         ret = call_int_hook(bprm_check_security, 0, bprm);
1195         if (ret)
1196                 return ret;
1197         return ima_bprm_check(bprm);
1198 }
1199
1200 /**
1201  * security_bprm_committing_creds() - Install creds for a process during exec()
1202  * @bprm: binary program information
1203  *
1204  * Prepare to install the new security attributes of a process being
1205  * transformed by an execve operation, based on the old credentials pointed to
1206  * by @current->cred and the information set in @bprm->cred by the
1207  * bprm_creds_for_exec hook.  @bprm points to the linux_binprm structure.  This
1208  * hook is a good place to perform state changes on the process such as closing
1209  * open file descriptors to which access will no longer be granted when the
1210  * attributes are changed.  This is called immediately before commit_creds().
1211  */
1212 void security_bprm_committing_creds(const struct linux_binprm *bprm)
1213 {
1214         call_void_hook(bprm_committing_creds, bprm);
1215 }
1216
1217 /**
1218  * security_bprm_committed_creds() - Tidy up after cred install during exec()
1219  * @bprm: binary program information
1220  *
1221  * Tidy up after the installation of the new security attributes of a process
1222  * being transformed by an execve operation.  The new credentials have, by this
1223  * point, been set to @current->cred.  @bprm points to the linux_binprm
1224  * structure.  This hook is a good place to perform state changes on the
1225  * process such as clearing out non-inheritable signal state.  This is called
1226  * immediately after commit_creds().
1227  */
1228 void security_bprm_committed_creds(const struct linux_binprm *bprm)
1229 {
1230         call_void_hook(bprm_committed_creds, bprm);
1231 }
1232
1233 /**
1234  * security_fs_context_submount() - Initialise fc->security
1235  * @fc: new filesystem context
1236  * @reference: dentry reference for submount/remount
1237  *
1238  * Fill out the ->security field for a new fs_context.
1239  *
1240  * Return: Returns 0 on success or negative error code on failure.
1241  */
1242 int security_fs_context_submount(struct fs_context *fc, struct super_block *reference)
1243 {
1244         return call_int_hook(fs_context_submount, 0, fc, reference);
1245 }
1246
1247 /**
1248  * security_fs_context_dup() - Duplicate a fs_context LSM blob
1249  * @fc: destination filesystem context
1250  * @src_fc: source filesystem context
1251  *
1252  * Allocate and attach a security structure to sc->security.  This pointer is
1253  * initialised to NULL by the caller.  @fc indicates the new filesystem context.
1254  * @src_fc indicates the original filesystem context.
1255  *
1256  * Return: Returns 0 on success or a negative error code on failure.
1257  */
1258 int security_fs_context_dup(struct fs_context *fc, struct fs_context *src_fc)
1259 {
1260         return call_int_hook(fs_context_dup, 0, fc, src_fc);
1261 }
1262
1263 /**
1264  * security_fs_context_parse_param() - Configure a filesystem context
1265  * @fc: filesystem context
1266  * @param: filesystem parameter
1267  *
1268  * Userspace provided a parameter to configure a superblock.  The LSM can
1269  * consume the parameter or return it to the caller for use elsewhere.
1270  *
1271  * Return: If the parameter is used by the LSM it should return 0, if it is
1272  *         returned to the caller -ENOPARAM is returned, otherwise a negative
1273  *         error code is returned.
1274  */
1275 int security_fs_context_parse_param(struct fs_context *fc,
1276                                     struct fs_parameter *param)
1277 {
1278         struct security_hook_list *hp;
1279         int trc;
1280         int rc = -ENOPARAM;
1281
1282         hlist_for_each_entry(hp, &security_hook_heads.fs_context_parse_param,
1283                              list) {
1284                 trc = hp->hook.fs_context_parse_param(fc, param);
1285                 if (trc == 0)
1286                         rc = 0;
1287                 else if (trc != -ENOPARAM)
1288                         return trc;
1289         }
1290         return rc;
1291 }
1292
1293 /**
1294  * security_sb_alloc() - Allocate a super_block LSM blob
1295  * @sb: filesystem superblock
1296  *
1297  * Allocate and attach a security structure to the sb->s_security field.  The
1298  * s_security field is initialized to NULL when the structure is allocated.
1299  * @sb contains the super_block structure to be modified.
1300  *
1301  * Return: Returns 0 if operation was successful.
1302  */
1303 int security_sb_alloc(struct super_block *sb)
1304 {
1305         int rc = lsm_superblock_alloc(sb);
1306
1307         if (unlikely(rc))
1308                 return rc;
1309         rc = call_int_hook(sb_alloc_security, 0, sb);
1310         if (unlikely(rc))
1311                 security_sb_free(sb);
1312         return rc;
1313 }
1314
1315 /**
1316  * security_sb_delete() - Release super_block LSM associated objects
1317  * @sb: filesystem superblock
1318  *
1319  * Release objects tied to a superblock (e.g. inodes).  @sb contains the
1320  * super_block structure being released.
1321  */
1322 void security_sb_delete(struct super_block *sb)
1323 {
1324         call_void_hook(sb_delete, sb);
1325 }
1326
1327 /**
1328  * security_sb_free() - Free a super_block LSM blob
1329  * @sb: filesystem superblock
1330  *
1331  * Deallocate and clear the sb->s_security field.  @sb contains the super_block
1332  * structure to be modified.
1333  */
1334 void security_sb_free(struct super_block *sb)
1335 {
1336         call_void_hook(sb_free_security, sb);
1337         kfree(sb->s_security);
1338         sb->s_security = NULL;
1339 }
1340
1341 /**
1342  * security_free_mnt_opts() - Free memory associated with mount options
1343  * @mnt_opts: LSM processed mount options
1344  *
1345  * Free memory associated with @mnt_ops.
1346  */
1347 void security_free_mnt_opts(void **mnt_opts)
1348 {
1349         if (!*mnt_opts)
1350                 return;
1351         call_void_hook(sb_free_mnt_opts, *mnt_opts);
1352         *mnt_opts = NULL;
1353 }
1354 EXPORT_SYMBOL(security_free_mnt_opts);
1355
1356 /**
1357  * security_sb_eat_lsm_opts() - Consume LSM mount options
1358  * @options: mount options
1359  * @mnt_opts: LSM processed mount options
1360  *
1361  * Eat (scan @options) and save them in @mnt_opts.
1362  *
1363  * Return: Returns 0 on success, negative values on failure.
1364  */
1365 int security_sb_eat_lsm_opts(char *options, void **mnt_opts)
1366 {
1367         return call_int_hook(sb_eat_lsm_opts, 0, options, mnt_opts);
1368 }
1369 EXPORT_SYMBOL(security_sb_eat_lsm_opts);
1370
1371 /**
1372  * security_sb_mnt_opts_compat() - Check if new mount options are allowed
1373  * @sb: filesystem superblock
1374  * @mnt_opts: new mount options
1375  *
1376  * Determine if the new mount options in @mnt_opts are allowed given the
1377  * existing mounted filesystem at @sb.  @sb superblock being compared.
1378  *
1379  * Return: Returns 0 if options are compatible.
1380  */
1381 int security_sb_mnt_opts_compat(struct super_block *sb,
1382                                 void *mnt_opts)
1383 {
1384         return call_int_hook(sb_mnt_opts_compat, 0, sb, mnt_opts);
1385 }
1386 EXPORT_SYMBOL(security_sb_mnt_opts_compat);
1387
1388 /**
1389  * security_sb_remount() - Verify no incompatible mount changes during remount
1390  * @sb: filesystem superblock
1391  * @mnt_opts: (re)mount options
1392  *
1393  * Extracts security system specific mount options and verifies no changes are
1394  * being made to those options.
1395  *
1396  * Return: Returns 0 if permission is granted.
1397  */
1398 int security_sb_remount(struct super_block *sb,
1399                         void *mnt_opts)
1400 {
1401         return call_int_hook(sb_remount, 0, sb, mnt_opts);
1402 }
1403 EXPORT_SYMBOL(security_sb_remount);
1404
1405 /**
1406  * security_sb_kern_mount() - Check if a kernel mount is allowed
1407  * @sb: filesystem superblock
1408  *
1409  * Mount this @sb if allowed by permissions.
1410  *
1411  * Return: Returns 0 if permission is granted.
1412  */
1413 int security_sb_kern_mount(const struct super_block *sb)
1414 {
1415         return call_int_hook(sb_kern_mount, 0, sb);
1416 }
1417
1418 /**
1419  * security_sb_show_options() - Output the mount options for a superblock
1420  * @m: output file
1421  * @sb: filesystem superblock
1422  *
1423  * Show (print on @m) mount options for this @sb.
1424  *
1425  * Return: Returns 0 on success, negative values on failure.
1426  */
1427 int security_sb_show_options(struct seq_file *m, struct super_block *sb)
1428 {
1429         return call_int_hook(sb_show_options, 0, m, sb);
1430 }
1431
1432 /**
1433  * security_sb_statfs() - Check if accessing fs stats is allowed
1434  * @dentry: superblock handle
1435  *
1436  * Check permission before obtaining filesystem statistics for the @mnt
1437  * mountpoint.  @dentry is a handle on the superblock for the filesystem.
1438  *
1439  * Return: Returns 0 if permission is granted.
1440  */
1441 int security_sb_statfs(struct dentry *dentry)
1442 {
1443         return call_int_hook(sb_statfs, 0, dentry);
1444 }
1445
1446 /**
1447  * security_sb_mount() - Check permission for mounting a filesystem
1448  * @dev_name: filesystem backing device
1449  * @path: mount point
1450  * @type: filesystem type
1451  * @flags: mount flags
1452  * @data: filesystem specific data
1453  *
1454  * Check permission before an object specified by @dev_name is mounted on the
1455  * mount point named by @nd.  For an ordinary mount, @dev_name identifies a
1456  * device if the file system type requires a device.  For a remount
1457  * (@flags & MS_REMOUNT), @dev_name is irrelevant.  For a loopback/bind mount
1458  * (@flags & MS_BIND), @dev_name identifies the pathname of the object being
1459  * mounted.
1460  *
1461  * Return: Returns 0 if permission is granted.
1462  */
1463 int security_sb_mount(const char *dev_name, const struct path *path,
1464                       const char *type, unsigned long flags, void *data)
1465 {
1466         return call_int_hook(sb_mount, 0, dev_name, path, type, flags, data);
1467 }
1468
1469 /**
1470  * security_sb_umount() - Check permission for unmounting a filesystem
1471  * @mnt: mounted filesystem
1472  * @flags: unmount flags
1473  *
1474  * Check permission before the @mnt file system is unmounted.
1475  *
1476  * Return: Returns 0 if permission is granted.
1477  */
1478 int security_sb_umount(struct vfsmount *mnt, int flags)
1479 {
1480         return call_int_hook(sb_umount, 0, mnt, flags);
1481 }
1482
1483 /**
1484  * security_sb_pivotroot() - Check permissions for pivoting the rootfs
1485  * @old_path: new location for current rootfs
1486  * @new_path: location of the new rootfs
1487  *
1488  * Check permission before pivoting the root filesystem.
1489  *
1490  * Return: Returns 0 if permission is granted.
1491  */
1492 int security_sb_pivotroot(const struct path *old_path,
1493                           const struct path *new_path)
1494 {
1495         return call_int_hook(sb_pivotroot, 0, old_path, new_path);
1496 }
1497
1498 /**
1499  * security_sb_set_mnt_opts() - Set the mount options for a filesystem
1500  * @sb: filesystem superblock
1501  * @mnt_opts: binary mount options
1502  * @kern_flags: kernel flags (in)
1503  * @set_kern_flags: kernel flags (out)
1504  *
1505  * Set the security relevant mount options used for a superblock.
1506  *
1507  * Return: Returns 0 on success, error on failure.
1508  */
1509 int security_sb_set_mnt_opts(struct super_block *sb,
1510                              void *mnt_opts,
1511                              unsigned long kern_flags,
1512                              unsigned long *set_kern_flags)
1513 {
1514         return call_int_hook(sb_set_mnt_opts,
1515                              mnt_opts ? -EOPNOTSUPP : 0, sb,
1516                              mnt_opts, kern_flags, set_kern_flags);
1517 }
1518 EXPORT_SYMBOL(security_sb_set_mnt_opts);
1519
1520 /**
1521  * security_sb_clone_mnt_opts() - Duplicate superblock mount options
1522  * @oldsb: source superblock
1523  * @newsb: destination superblock
1524  * @kern_flags: kernel flags (in)
1525  * @set_kern_flags: kernel flags (out)
1526  *
1527  * Copy all security options from a given superblock to another.
1528  *
1529  * Return: Returns 0 on success, error on failure.
1530  */
1531 int security_sb_clone_mnt_opts(const struct super_block *oldsb,
1532                                struct super_block *newsb,
1533                                unsigned long kern_flags,
1534                                unsigned long *set_kern_flags)
1535 {
1536         return call_int_hook(sb_clone_mnt_opts, 0, oldsb, newsb,
1537                              kern_flags, set_kern_flags);
1538 }
1539 EXPORT_SYMBOL(security_sb_clone_mnt_opts);
1540
1541 /**
1542  * security_move_mount() - Check permissions for moving a mount
1543  * @from_path: source mount point
1544  * @to_path: destination mount point
1545  *
1546  * Check permission before a mount is moved.
1547  *
1548  * Return: Returns 0 if permission is granted.
1549  */
1550 int security_move_mount(const struct path *from_path,
1551                         const struct path *to_path)
1552 {
1553         return call_int_hook(move_mount, 0, from_path, to_path);
1554 }
1555
1556 /**
1557  * security_path_notify() - Check if setting a watch is allowed
1558  * @path: file path
1559  * @mask: event mask
1560  * @obj_type: file path type
1561  *
1562  * Check permissions before setting a watch on events as defined by @mask, on
1563  * an object at @path, whose type is defined by @obj_type.
1564  *
1565  * Return: Returns 0 if permission is granted.
1566  */
1567 int security_path_notify(const struct path *path, u64 mask,
1568                          unsigned int obj_type)
1569 {
1570         return call_int_hook(path_notify, 0, path, mask, obj_type);
1571 }
1572
1573 /**
1574  * security_inode_alloc() - Allocate an inode LSM blob
1575  * @inode: the inode
1576  *
1577  * Allocate and attach a security structure to @inode->i_security.  The
1578  * i_security field is initialized to NULL when the inode structure is
1579  * allocated.
1580  *
1581  * Return: Return 0 if operation was successful.
1582  */
1583 int security_inode_alloc(struct inode *inode)
1584 {
1585         int rc = lsm_inode_alloc(inode);
1586
1587         if (unlikely(rc))
1588                 return rc;
1589         rc = call_int_hook(inode_alloc_security, 0, inode);
1590         if (unlikely(rc))
1591                 security_inode_free(inode);
1592         return rc;
1593 }
1594
1595 static void inode_free_by_rcu(struct rcu_head *head)
1596 {
1597         /*
1598          * The rcu head is at the start of the inode blob
1599          */
1600         kmem_cache_free(lsm_inode_cache, head);
1601 }
1602
1603 /**
1604  * security_inode_free() - Free an inode's LSM blob
1605  * @inode: the inode
1606  *
1607  * Deallocate the inode security structure and set @inode->i_security to NULL.
1608  */
1609 void security_inode_free(struct inode *inode)
1610 {
1611         integrity_inode_free(inode);
1612         call_void_hook(inode_free_security, inode);
1613         /*
1614          * The inode may still be referenced in a path walk and
1615          * a call to security_inode_permission() can be made
1616          * after inode_free_security() is called. Ideally, the VFS
1617          * wouldn't do this, but fixing that is a much harder
1618          * job. For now, simply free the i_security via RCU, and
1619          * leave the current inode->i_security pointer intact.
1620          * The inode will be freed after the RCU grace period too.
1621          */
1622         if (inode->i_security)
1623                 call_rcu((struct rcu_head *)inode->i_security,
1624                          inode_free_by_rcu);
1625 }
1626
1627 /**
1628  * security_dentry_init_security() - Perform dentry initialization
1629  * @dentry: the dentry to initialize
1630  * @mode: mode used to determine resource type
1631  * @name: name of the last path component
1632  * @xattr_name: name of the security/LSM xattr
1633  * @ctx: pointer to the resulting LSM context
1634  * @ctxlen: length of @ctx
1635  *
1636  * Compute a context for a dentry as the inode is not yet available since NFSv4
1637  * has no label backed by an EA anyway.  It is important to note that
1638  * @xattr_name does not need to be free'd by the caller, it is a static string.
1639  *
1640  * Return: Returns 0 on success, negative values on failure.
1641  */
1642 int security_dentry_init_security(struct dentry *dentry, int mode,
1643                                   const struct qstr *name,
1644                                   const char **xattr_name, void **ctx,
1645                                   u32 *ctxlen)
1646 {
1647         struct security_hook_list *hp;
1648         int rc;
1649
1650         /*
1651          * Only one module will provide a security context.
1652          */
1653         hlist_for_each_entry(hp, &security_hook_heads.dentry_init_security,
1654                              list) {
1655                 rc = hp->hook.dentry_init_security(dentry, mode, name,
1656                                                    xattr_name, ctx, ctxlen);
1657                 if (rc != LSM_RET_DEFAULT(dentry_init_security))
1658                         return rc;
1659         }
1660         return LSM_RET_DEFAULT(dentry_init_security);
1661 }
1662 EXPORT_SYMBOL(security_dentry_init_security);
1663
1664 /**
1665  * security_dentry_create_files_as() - Perform dentry initialization
1666  * @dentry: the dentry to initialize
1667  * @mode: mode used to determine resource type
1668  * @name: name of the last path component
1669  * @old: creds to use for LSM context calculations
1670  * @new: creds to modify
1671  *
1672  * Compute a context for a dentry as the inode is not yet available and set
1673  * that context in passed in creds so that new files are created using that
1674  * context. Context is calculated using the passed in creds and not the creds
1675  * of the caller.
1676  *
1677  * Return: Returns 0 on success, error on failure.
1678  */
1679 int security_dentry_create_files_as(struct dentry *dentry, int mode,
1680                                     struct qstr *name,
1681                                     const struct cred *old, struct cred *new)
1682 {
1683         return call_int_hook(dentry_create_files_as, 0, dentry, mode,
1684                              name, old, new);
1685 }
1686 EXPORT_SYMBOL(security_dentry_create_files_as);
1687
1688 /**
1689  * security_inode_init_security() - Initialize an inode's LSM context
1690  * @inode: the inode
1691  * @dir: parent directory
1692  * @qstr: last component of the pathname
1693  * @initxattrs: callback function to write xattrs
1694  * @fs_data: filesystem specific data
1695  *
1696  * Obtain the security attribute name suffix and value to set on a newly
1697  * created inode and set up the incore security field for the new inode.  This
1698  * hook is called by the fs code as part of the inode creation transaction and
1699  * provides for atomic labeling of the inode, unlike the post_create/mkdir/...
1700  * hooks called by the VFS.
1701  *
1702  * The hook function is expected to populate the xattrs array, by calling
1703  * lsm_get_xattr_slot() to retrieve the slots reserved by the security module
1704  * with the lbs_xattr_count field of the lsm_blob_sizes structure.  For each
1705  * slot, the hook function should set ->name to the attribute name suffix
1706  * (e.g. selinux), to allocate ->value (will be freed by the caller) and set it
1707  * to the attribute value, to set ->value_len to the length of the value.  If
1708  * the security module does not use security attributes or does not wish to put
1709  * a security attribute on this particular inode, then it should return
1710  * -EOPNOTSUPP to skip this processing.
1711  *
1712  * Return: Returns 0 if the LSM successfully initialized all of the inode
1713  *         security attributes that are required, negative values otherwise.
1714  */
1715 int security_inode_init_security(struct inode *inode, struct inode *dir,
1716                                  const struct qstr *qstr,
1717                                  const initxattrs initxattrs, void *fs_data)
1718 {
1719         struct security_hook_list *hp;
1720         struct xattr *new_xattrs = NULL;
1721         int ret = -EOPNOTSUPP, xattr_count = 0;
1722
1723         if (unlikely(IS_PRIVATE(inode)))
1724                 return 0;
1725
1726         if (!blob_sizes.lbs_xattr_count)
1727                 return 0;
1728
1729         if (initxattrs) {
1730                 /* Allocate +1 for EVM and +1 as terminator. */
1731                 new_xattrs = kcalloc(blob_sizes.lbs_xattr_count + 2,
1732                                      sizeof(*new_xattrs), GFP_NOFS);
1733                 if (!new_xattrs)
1734                         return -ENOMEM;
1735         }
1736
1737         hlist_for_each_entry(hp, &security_hook_heads.inode_init_security,
1738                              list) {
1739                 ret = hp->hook.inode_init_security(inode, dir, qstr, new_xattrs,
1740                                                   &xattr_count);
1741                 if (ret && ret != -EOPNOTSUPP)
1742                         goto out;
1743                 /*
1744                  * As documented in lsm_hooks.h, -EOPNOTSUPP in this context
1745                  * means that the LSM is not willing to provide an xattr, not
1746                  * that it wants to signal an error. Thus, continue to invoke
1747                  * the remaining LSMs.
1748                  */
1749         }
1750
1751         /* If initxattrs() is NULL, xattr_count is zero, skip the call. */
1752         if (!xattr_count)
1753                 goto out;
1754
1755         ret = evm_inode_init_security(inode, dir, qstr, new_xattrs,
1756                                       &xattr_count);
1757         if (ret)
1758                 goto out;
1759         ret = initxattrs(inode, new_xattrs, fs_data);
1760 out:
1761         for (; xattr_count > 0; xattr_count--)
1762                 kfree(new_xattrs[xattr_count - 1].value);
1763         kfree(new_xattrs);
1764         return (ret == -EOPNOTSUPP) ? 0 : ret;
1765 }
1766 EXPORT_SYMBOL(security_inode_init_security);
1767
1768 /**
1769  * security_inode_init_security_anon() - Initialize an anonymous inode
1770  * @inode: the inode
1771  * @name: the anonymous inode class
1772  * @context_inode: an optional related inode
1773  *
1774  * Set up the incore security field for the new anonymous inode and return
1775  * whether the inode creation is permitted by the security module or not.
1776  *
1777  * Return: Returns 0 on success, -EACCES if the security module denies the
1778  * creation of this inode, or another -errno upon other errors.
1779  */
1780 int security_inode_init_security_anon(struct inode *inode,
1781                                       const struct qstr *name,
1782                                       const struct inode *context_inode)
1783 {
1784         return call_int_hook(inode_init_security_anon, 0, inode, name,
1785                              context_inode);
1786 }
1787
1788 #ifdef CONFIG_SECURITY_PATH
1789 /**
1790  * security_path_mknod() - Check if creating a special file is allowed
1791  * @dir: parent directory
1792  * @dentry: new file
1793  * @mode: new file mode
1794  * @dev: device number
1795  *
1796  * Check permissions when creating a file. Note that this hook is called even
1797  * if mknod operation is being done for a regular file.
1798  *
1799  * Return: Returns 0 if permission is granted.
1800  */
1801 int security_path_mknod(const struct path *dir, struct dentry *dentry,
1802                         umode_t mode, unsigned int dev)
1803 {
1804         if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1805                 return 0;
1806         return call_int_hook(path_mknod, 0, dir, dentry, mode, dev);
1807 }
1808 EXPORT_SYMBOL(security_path_mknod);
1809
1810 /**
1811  * security_path_mkdir() - Check if creating a new directory is allowed
1812  * @dir: parent directory
1813  * @dentry: new directory
1814  * @mode: new directory mode
1815  *
1816  * Check permissions to create a new directory in the existing directory.
1817  *
1818  * Return: Returns 0 if permission is granted.
1819  */
1820 int security_path_mkdir(const struct path *dir, struct dentry *dentry,
1821                         umode_t mode)
1822 {
1823         if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1824                 return 0;
1825         return call_int_hook(path_mkdir, 0, dir, dentry, mode);
1826 }
1827 EXPORT_SYMBOL(security_path_mkdir);
1828
1829 /**
1830  * security_path_rmdir() - Check if removing a directory is allowed
1831  * @dir: parent directory
1832  * @dentry: directory to remove
1833  *
1834  * Check the permission to remove a directory.
1835  *
1836  * Return: Returns 0 if permission is granted.
1837  */
1838 int security_path_rmdir(const struct path *dir, struct dentry *dentry)
1839 {
1840         if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1841                 return 0;
1842         return call_int_hook(path_rmdir, 0, dir, dentry);
1843 }
1844
1845 /**
1846  * security_path_unlink() - Check if removing a hard link is allowed
1847  * @dir: parent directory
1848  * @dentry: file
1849  *
1850  * Check the permission to remove a hard link to a file.
1851  *
1852  * Return: Returns 0 if permission is granted.
1853  */
1854 int security_path_unlink(const struct path *dir, struct dentry *dentry)
1855 {
1856         if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1857                 return 0;
1858         return call_int_hook(path_unlink, 0, dir, dentry);
1859 }
1860 EXPORT_SYMBOL(security_path_unlink);
1861
1862 /**
1863  * security_path_symlink() - Check if creating a symbolic link is allowed
1864  * @dir: parent directory
1865  * @dentry: symbolic link
1866  * @old_name: file pathname
1867  *
1868  * Check the permission to create a symbolic link to a file.
1869  *
1870  * Return: Returns 0 if permission is granted.
1871  */
1872 int security_path_symlink(const struct path *dir, struct dentry *dentry,
1873                           const char *old_name)
1874 {
1875         if (unlikely(IS_PRIVATE(d_backing_inode(dir->dentry))))
1876                 return 0;
1877         return call_int_hook(path_symlink, 0, dir, dentry, old_name);
1878 }
1879
1880 /**
1881  * security_path_link - Check if creating a hard link is allowed
1882  * @old_dentry: existing file
1883  * @new_dir: new parent directory
1884  * @new_dentry: new link
1885  *
1886  * Check permission before creating a new hard link to a file.
1887  *
1888  * Return: Returns 0 if permission is granted.
1889  */
1890 int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
1891                        struct dentry *new_dentry)
1892 {
1893         if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry))))
1894                 return 0;
1895         return call_int_hook(path_link, 0, old_dentry, new_dir, new_dentry);
1896 }
1897
1898 /**
1899  * security_path_rename() - Check if renaming a file is allowed
1900  * @old_dir: parent directory of the old file
1901  * @old_dentry: the old file
1902  * @new_dir: parent directory of the new file
1903  * @new_dentry: the new file
1904  * @flags: flags
1905  *
1906  * Check for permission to rename a file or directory.
1907  *
1908  * Return: Returns 0 if permission is granted.
1909  */
1910 int security_path_rename(const struct path *old_dir, struct dentry *old_dentry,
1911                          const struct path *new_dir, struct dentry *new_dentry,
1912                          unsigned int flags)
1913 {
1914         if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
1915                      (d_is_positive(new_dentry) &&
1916                       IS_PRIVATE(d_backing_inode(new_dentry)))))
1917                 return 0;
1918
1919         return call_int_hook(path_rename, 0, old_dir, old_dentry, new_dir,
1920                              new_dentry, flags);
1921 }
1922 EXPORT_SYMBOL(security_path_rename);
1923
1924 /**
1925  * security_path_truncate() - Check if truncating a file is allowed
1926  * @path: file
1927  *
1928  * Check permission before truncating the file indicated by path.  Note that
1929  * truncation permissions may also be checked based on already opened files,
1930  * using the security_file_truncate() hook.
1931  *
1932  * Return: Returns 0 if permission is granted.
1933  */
1934 int security_path_truncate(const struct path *path)
1935 {
1936         if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1937                 return 0;
1938         return call_int_hook(path_truncate, 0, path);
1939 }
1940
1941 /**
1942  * security_path_chmod() - Check if changing the file's mode is allowed
1943  * @path: file
1944  * @mode: new mode
1945  *
1946  * Check for permission to change a mode of the file @path. The new mode is
1947  * specified in @mode which is a bitmask of constants from
1948  * <include/uapi/linux/stat.h>.
1949  *
1950  * Return: Returns 0 if permission is granted.
1951  */
1952 int security_path_chmod(const struct path *path, umode_t mode)
1953 {
1954         if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1955                 return 0;
1956         return call_int_hook(path_chmod, 0, path, mode);
1957 }
1958
1959 /**
1960  * security_path_chown() - Check if changing the file's owner/group is allowed
1961  * @path: file
1962  * @uid: file owner
1963  * @gid: file group
1964  *
1965  * Check for permission to change owner/group of a file or directory.
1966  *
1967  * Return: Returns 0 if permission is granted.
1968  */
1969 int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
1970 {
1971         if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
1972                 return 0;
1973         return call_int_hook(path_chown, 0, path, uid, gid);
1974 }
1975
1976 /**
1977  * security_path_chroot() - Check if changing the root directory is allowed
1978  * @path: directory
1979  *
1980  * Check for permission to change root directory.
1981  *
1982  * Return: Returns 0 if permission is granted.
1983  */
1984 int security_path_chroot(const struct path *path)
1985 {
1986         return call_int_hook(path_chroot, 0, path);
1987 }
1988 #endif /* CONFIG_SECURITY_PATH */
1989
1990 /**
1991  * security_inode_create() - Check if creating a file is allowed
1992  * @dir: the parent directory
1993  * @dentry: the file being created
1994  * @mode: requested file mode
1995  *
1996  * Check permission to create a regular file.
1997  *
1998  * Return: Returns 0 if permission is granted.
1999  */
2000 int security_inode_create(struct inode *dir, struct dentry *dentry,
2001                           umode_t mode)
2002 {
2003         if (unlikely(IS_PRIVATE(dir)))
2004                 return 0;
2005         return call_int_hook(inode_create, 0, dir, dentry, mode);
2006 }
2007 EXPORT_SYMBOL_GPL(security_inode_create);
2008
2009 /**
2010  * security_inode_link() - Check if creating a hard link is allowed
2011  * @old_dentry: existing file
2012  * @dir: new parent directory
2013  * @new_dentry: new link
2014  *
2015  * Check permission before creating a new hard link to a file.
2016  *
2017  * Return: Returns 0 if permission is granted.
2018  */
2019 int security_inode_link(struct dentry *old_dentry, struct inode *dir,
2020                         struct dentry *new_dentry)
2021 {
2022         if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry))))
2023                 return 0;
2024         return call_int_hook(inode_link, 0, old_dentry, dir, new_dentry);
2025 }
2026
2027 /**
2028  * security_inode_unlink() - Check if removing a hard link is allowed
2029  * @dir: parent directory
2030  * @dentry: file
2031  *
2032  * Check the permission to remove a hard link to a file.
2033  *
2034  * Return: Returns 0 if permission is granted.
2035  */
2036 int security_inode_unlink(struct inode *dir, struct dentry *dentry)
2037 {
2038         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2039                 return 0;
2040         return call_int_hook(inode_unlink, 0, dir, dentry);
2041 }
2042
2043 /**
2044  * security_inode_symlink() - Check if creating a symbolic link is allowed
2045  * @dir: parent directory
2046  * @dentry: symbolic link
2047  * @old_name: existing filename
2048  *
2049  * Check the permission to create a symbolic link to a file.
2050  *
2051  * Return: Returns 0 if permission is granted.
2052  */
2053 int security_inode_symlink(struct inode *dir, struct dentry *dentry,
2054                            const char *old_name)
2055 {
2056         if (unlikely(IS_PRIVATE(dir)))
2057                 return 0;
2058         return call_int_hook(inode_symlink, 0, dir, dentry, old_name);
2059 }
2060
2061 /**
2062  * security_inode_mkdir() - Check if creation a new director is allowed
2063  * @dir: parent directory
2064  * @dentry: new directory
2065  * @mode: new directory mode
2066  *
2067  * Check permissions to create a new directory in the existing directory
2068  * associated with inode structure @dir.
2069  *
2070  * Return: Returns 0 if permission is granted.
2071  */
2072 int security_inode_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
2073 {
2074         if (unlikely(IS_PRIVATE(dir)))
2075                 return 0;
2076         return call_int_hook(inode_mkdir, 0, dir, dentry, mode);
2077 }
2078 EXPORT_SYMBOL_GPL(security_inode_mkdir);
2079
2080 /**
2081  * security_inode_rmdir() - Check if removing a directory is allowed
2082  * @dir: parent directory
2083  * @dentry: directory to be removed
2084  *
2085  * Check the permission to remove a directory.
2086  *
2087  * Return: Returns 0 if permission is granted.
2088  */
2089 int security_inode_rmdir(struct inode *dir, struct dentry *dentry)
2090 {
2091         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2092                 return 0;
2093         return call_int_hook(inode_rmdir, 0, dir, dentry);
2094 }
2095
2096 /**
2097  * security_inode_mknod() - Check if creating a special file is allowed
2098  * @dir: parent directory
2099  * @dentry: new file
2100  * @mode: new file mode
2101  * @dev: device number
2102  *
2103  * Check permissions when creating a special file (or a socket or a fifo file
2104  * created via the mknod system call).  Note that if mknod operation is being
2105  * done for a regular file, then the create hook will be called and not this
2106  * hook.
2107  *
2108  * Return: Returns 0 if permission is granted.
2109  */
2110 int security_inode_mknod(struct inode *dir, struct dentry *dentry,
2111                          umode_t mode, dev_t dev)
2112 {
2113         if (unlikely(IS_PRIVATE(dir)))
2114                 return 0;
2115         return call_int_hook(inode_mknod, 0, dir, dentry, mode, dev);
2116 }
2117
2118 /**
2119  * security_inode_rename() - Check if renaming a file is allowed
2120  * @old_dir: parent directory of the old file
2121  * @old_dentry: the old file
2122  * @new_dir: parent directory of the new file
2123  * @new_dentry: the new file
2124  * @flags: flags
2125  *
2126  * Check for permission to rename a file or directory.
2127  *
2128  * Return: Returns 0 if permission is granted.
2129  */
2130 int security_inode_rename(struct inode *old_dir, struct dentry *old_dentry,
2131                           struct inode *new_dir, struct dentry *new_dentry,
2132                           unsigned int flags)
2133 {
2134         if (unlikely(IS_PRIVATE(d_backing_inode(old_dentry)) ||
2135                      (d_is_positive(new_dentry) &&
2136                       IS_PRIVATE(d_backing_inode(new_dentry)))))
2137                 return 0;
2138
2139         if (flags & RENAME_EXCHANGE) {
2140                 int err = call_int_hook(inode_rename, 0, new_dir, new_dentry,
2141                                         old_dir, old_dentry);
2142                 if (err)
2143                         return err;
2144         }
2145
2146         return call_int_hook(inode_rename, 0, old_dir, old_dentry,
2147                              new_dir, new_dentry);
2148 }
2149
2150 /**
2151  * security_inode_readlink() - Check if reading a symbolic link is allowed
2152  * @dentry: link
2153  *
2154  * Check the permission to read the symbolic link.
2155  *
2156  * Return: Returns 0 if permission is granted.
2157  */
2158 int security_inode_readlink(struct dentry *dentry)
2159 {
2160         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2161                 return 0;
2162         return call_int_hook(inode_readlink, 0, dentry);
2163 }
2164
2165 /**
2166  * security_inode_follow_link() - Check if following a symbolic link is allowed
2167  * @dentry: link dentry
2168  * @inode: link inode
2169  * @rcu: true if in RCU-walk mode
2170  *
2171  * Check permission to follow a symbolic link when looking up a pathname.  If
2172  * @rcu is true, @inode is not stable.
2173  *
2174  * Return: Returns 0 if permission is granted.
2175  */
2176 int security_inode_follow_link(struct dentry *dentry, struct inode *inode,
2177                                bool rcu)
2178 {
2179         if (unlikely(IS_PRIVATE(inode)))
2180                 return 0;
2181         return call_int_hook(inode_follow_link, 0, dentry, inode, rcu);
2182 }
2183
2184 /**
2185  * security_inode_permission() - Check if accessing an inode is allowed
2186  * @inode: inode
2187  * @mask: access mask
2188  *
2189  * Check permission before accessing an inode.  This hook is called by the
2190  * existing Linux permission function, so a security module can use it to
2191  * provide additional checking for existing Linux permission checks.  Notice
2192  * that this hook is called when a file is opened (as well as many other
2193  * operations), whereas the file_security_ops permission hook is called when
2194  * the actual read/write operations are performed.
2195  *
2196  * Return: Returns 0 if permission is granted.
2197  */
2198 int security_inode_permission(struct inode *inode, int mask)
2199 {
2200         if (unlikely(IS_PRIVATE(inode)))
2201                 return 0;
2202         return call_int_hook(inode_permission, 0, inode, mask);
2203 }
2204
2205 /**
2206  * security_inode_setattr() - Check if setting file attributes is allowed
2207  * @idmap: idmap of the mount
2208  * @dentry: file
2209  * @attr: new attributes
2210  *
2211  * Check permission before setting file attributes.  Note that the kernel call
2212  * to notify_change is performed from several locations, whenever file
2213  * attributes change (such as when a file is truncated, chown/chmod operations,
2214  * transferring disk quotas, etc).
2215  *
2216  * Return: Returns 0 if permission is granted.
2217  */
2218 int security_inode_setattr(struct mnt_idmap *idmap,
2219                            struct dentry *dentry, struct iattr *attr)
2220 {
2221         int ret;
2222
2223         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2224                 return 0;
2225         ret = call_int_hook(inode_setattr, 0, dentry, attr);
2226         if (ret)
2227                 return ret;
2228         return evm_inode_setattr(idmap, dentry, attr);
2229 }
2230 EXPORT_SYMBOL_GPL(security_inode_setattr);
2231
2232 /**
2233  * security_inode_getattr() - Check if getting file attributes is allowed
2234  * @path: file
2235  *
2236  * Check permission before obtaining file attributes.
2237  *
2238  * Return: Returns 0 if permission is granted.
2239  */
2240 int security_inode_getattr(const struct path *path)
2241 {
2242         if (unlikely(IS_PRIVATE(d_backing_inode(path->dentry))))
2243                 return 0;
2244         return call_int_hook(inode_getattr, 0, path);
2245 }
2246
2247 /**
2248  * security_inode_setxattr() - Check if setting file xattrs is allowed
2249  * @idmap: idmap of the mount
2250  * @dentry: file
2251  * @name: xattr name
2252  * @value: xattr value
2253  * @size: size of xattr value
2254  * @flags: flags
2255  *
2256  * Check permission before setting the extended attributes.
2257  *
2258  * Return: Returns 0 if permission is granted.
2259  */
2260 int security_inode_setxattr(struct mnt_idmap *idmap,
2261                             struct dentry *dentry, const char *name,
2262                             const void *value, size_t size, int flags)
2263 {
2264         int ret;
2265
2266         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2267                 return 0;
2268         /*
2269          * SELinux and Smack integrate the cap call,
2270          * so assume that all LSMs supplying this call do so.
2271          */
2272         ret = call_int_hook(inode_setxattr, 1, idmap, dentry, name, value,
2273                             size, flags);
2274
2275         if (ret == 1)
2276                 ret = cap_inode_setxattr(dentry, name, value, size, flags);
2277         if (ret)
2278                 return ret;
2279         ret = ima_inode_setxattr(dentry, name, value, size);
2280         if (ret)
2281                 return ret;
2282         return evm_inode_setxattr(idmap, dentry, name, value, size);
2283 }
2284
2285 /**
2286  * security_inode_set_acl() - Check if setting posix acls is allowed
2287  * @idmap: idmap of the mount
2288  * @dentry: file
2289  * @acl_name: acl name
2290  * @kacl: acl struct
2291  *
2292  * Check permission before setting posix acls, the posix acls in @kacl are
2293  * identified by @acl_name.
2294  *
2295  * Return: Returns 0 if permission is granted.
2296  */
2297 int security_inode_set_acl(struct mnt_idmap *idmap,
2298                            struct dentry *dentry, const char *acl_name,
2299                            struct posix_acl *kacl)
2300 {
2301         int ret;
2302
2303         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2304                 return 0;
2305         ret = call_int_hook(inode_set_acl, 0, idmap, dentry, acl_name,
2306                             kacl);
2307         if (ret)
2308                 return ret;
2309         ret = ima_inode_set_acl(idmap, dentry, acl_name, kacl);
2310         if (ret)
2311                 return ret;
2312         return evm_inode_set_acl(idmap, dentry, acl_name, kacl);
2313 }
2314
2315 /**
2316  * security_inode_get_acl() - Check if reading posix acls is allowed
2317  * @idmap: idmap of the mount
2318  * @dentry: file
2319  * @acl_name: acl name
2320  *
2321  * Check permission before getting osix acls, the posix acls are identified by
2322  * @acl_name.
2323  *
2324  * Return: Returns 0 if permission is granted.
2325  */
2326 int security_inode_get_acl(struct mnt_idmap *idmap,
2327                            struct dentry *dentry, const char *acl_name)
2328 {
2329         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2330                 return 0;
2331         return call_int_hook(inode_get_acl, 0, idmap, dentry, acl_name);
2332 }
2333
2334 /**
2335  * security_inode_remove_acl() - Check if removing a posix acl is allowed
2336  * @idmap: idmap of the mount
2337  * @dentry: file
2338  * @acl_name: acl name
2339  *
2340  * Check permission before removing posix acls, the posix acls are identified
2341  * by @acl_name.
2342  *
2343  * Return: Returns 0 if permission is granted.
2344  */
2345 int security_inode_remove_acl(struct mnt_idmap *idmap,
2346                               struct dentry *dentry, const char *acl_name)
2347 {
2348         int ret;
2349
2350         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2351                 return 0;
2352         ret = call_int_hook(inode_remove_acl, 0, idmap, dentry, acl_name);
2353         if (ret)
2354                 return ret;
2355         ret = ima_inode_remove_acl(idmap, dentry, acl_name);
2356         if (ret)
2357                 return ret;
2358         return evm_inode_remove_acl(idmap, dentry, acl_name);
2359 }
2360
2361 /**
2362  * security_inode_post_setxattr() - Update the inode after a setxattr operation
2363  * @dentry: file
2364  * @name: xattr name
2365  * @value: xattr value
2366  * @size: xattr value size
2367  * @flags: flags
2368  *
2369  * Update inode security field after successful setxattr operation.
2370  */
2371 void security_inode_post_setxattr(struct dentry *dentry, const char *name,
2372                                   const void *value, size_t size, int flags)
2373 {
2374         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2375                 return;
2376         call_void_hook(inode_post_setxattr, dentry, name, value, size, flags);
2377         evm_inode_post_setxattr(dentry, name, value, size);
2378 }
2379
2380 /**
2381  * security_inode_getxattr() - Check if xattr access is allowed
2382  * @dentry: file
2383  * @name: xattr name
2384  *
2385  * Check permission before obtaining the extended attributes identified by
2386  * @name for @dentry.
2387  *
2388  * Return: Returns 0 if permission is granted.
2389  */
2390 int security_inode_getxattr(struct dentry *dentry, const char *name)
2391 {
2392         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2393                 return 0;
2394         return call_int_hook(inode_getxattr, 0, dentry, name);
2395 }
2396
2397 /**
2398  * security_inode_listxattr() - Check if listing xattrs is allowed
2399  * @dentry: file
2400  *
2401  * Check permission before obtaining the list of extended attribute names for
2402  * @dentry.
2403  *
2404  * Return: Returns 0 if permission is granted.
2405  */
2406 int security_inode_listxattr(struct dentry *dentry)
2407 {
2408         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2409                 return 0;
2410         return call_int_hook(inode_listxattr, 0, dentry);
2411 }
2412
2413 /**
2414  * security_inode_removexattr() - Check if removing an xattr is allowed
2415  * @idmap: idmap of the mount
2416  * @dentry: file
2417  * @name: xattr name
2418  *
2419  * Check permission before removing the extended attribute identified by @name
2420  * for @dentry.
2421  *
2422  * Return: Returns 0 if permission is granted.
2423  */
2424 int security_inode_removexattr(struct mnt_idmap *idmap,
2425                                struct dentry *dentry, const char *name)
2426 {
2427         int ret;
2428
2429         if (unlikely(IS_PRIVATE(d_backing_inode(dentry))))
2430                 return 0;
2431         /*
2432          * SELinux and Smack integrate the cap call,
2433          * so assume that all LSMs supplying this call do so.
2434          */
2435         ret = call_int_hook(inode_removexattr, 1, idmap, dentry, name);
2436         if (ret == 1)
2437                 ret = cap_inode_removexattr(idmap, dentry, name);
2438         if (ret)
2439                 return ret;
2440         ret = ima_inode_removexattr(dentry, name);
2441         if (ret)
2442                 return ret;
2443         return evm_inode_removexattr(idmap, dentry, name);
2444 }
2445
2446 /**
2447  * security_inode_need_killpriv() - Check if security_inode_killpriv() required
2448  * @dentry: associated dentry
2449  *
2450  * Called when an inode has been changed to determine if
2451  * security_inode_killpriv() should be called.
2452  *
2453  * Return: Return <0 on error to abort the inode change operation, return 0 if
2454  *         security_inode_killpriv() does not need to be called, return >0 if
2455  *         security_inode_killpriv() does need to be called.
2456  */
2457 int security_inode_need_killpriv(struct dentry *dentry)
2458 {
2459         return call_int_hook(inode_need_killpriv, 0, dentry);
2460 }
2461
2462 /**
2463  * security_inode_killpriv() - The setuid bit is removed, update LSM state
2464  * @idmap: idmap of the mount
2465  * @dentry: associated dentry
2466  *
2467  * The @dentry's setuid bit is being removed.  Remove similar security labels.
2468  * Called with the dentry->d_inode->i_mutex held.
2469  *
2470  * Return: Return 0 on success.  If error is returned, then the operation
2471  *         causing setuid bit removal is failed.
2472  */
2473 int security_inode_killpriv(struct mnt_idmap *idmap,
2474                             struct dentry *dentry)
2475 {
2476         return call_int_hook(inode_killpriv, 0, idmap, dentry);
2477 }
2478
2479 /**
2480  * security_inode_getsecurity() - Get the xattr security label of an inode
2481  * @idmap: idmap of the mount
2482  * @inode: inode
2483  * @name: xattr name
2484  * @buffer: security label buffer
2485  * @alloc: allocation flag
2486  *
2487  * Retrieve a copy of the extended attribute representation of the security
2488  * label associated with @name for @inode via @buffer.  Note that @name is the
2489  * remainder of the attribute name after the security prefix has been removed.
2490  * @alloc is used to specify if the call should return a value via the buffer
2491  * or just the value length.
2492  *
2493  * Return: Returns size of buffer on success.
2494  */
2495 int security_inode_getsecurity(struct mnt_idmap *idmap,
2496                                struct inode *inode, const char *name,
2497                                void **buffer, bool alloc)
2498 {
2499         struct security_hook_list *hp;
2500         int rc;
2501
2502         if (unlikely(IS_PRIVATE(inode)))
2503                 return LSM_RET_DEFAULT(inode_getsecurity);
2504         /*
2505          * Only one module will provide an attribute with a given name.
2506          */
2507         hlist_for_each_entry(hp, &security_hook_heads.inode_getsecurity, list) {
2508                 rc = hp->hook.inode_getsecurity(idmap, inode, name, buffer,
2509                                                 alloc);
2510                 if (rc != LSM_RET_DEFAULT(inode_getsecurity))
2511                         return rc;
2512         }
2513         return LSM_RET_DEFAULT(inode_getsecurity);
2514 }
2515
2516 /**
2517  * security_inode_setsecurity() - Set the xattr security label of an inode
2518  * @inode: inode
2519  * @name: xattr name
2520  * @value: security label
2521  * @size: length of security label
2522  * @flags: flags
2523  *
2524  * Set the security label associated with @name for @inode from the extended
2525  * attribute value @value.  @size indicates the size of the @value in bytes.
2526  * @flags may be XATTR_CREATE, XATTR_REPLACE, or 0. Note that @name is the
2527  * remainder of the attribute name after the security. prefix has been removed.
2528  *
2529  * Return: Returns 0 on success.
2530  */
2531 int security_inode_setsecurity(struct inode *inode, const char *name,
2532                                const void *value, size_t size, int flags)
2533 {
2534         struct security_hook_list *hp;
2535         int rc;
2536
2537         if (unlikely(IS_PRIVATE(inode)))
2538                 return LSM_RET_DEFAULT(inode_setsecurity);
2539         /*
2540          * Only one module will provide an attribute with a given name.
2541          */
2542         hlist_for_each_entry(hp, &security_hook_heads.inode_setsecurity, list) {
2543                 rc = hp->hook.inode_setsecurity(inode, name, value, size,
2544                                                 flags);
2545                 if (rc != LSM_RET_DEFAULT(inode_setsecurity))
2546                         return rc;
2547         }
2548         return LSM_RET_DEFAULT(inode_setsecurity);
2549 }
2550
2551 /**
2552  * security_inode_listsecurity() - List the xattr security label names
2553  * @inode: inode
2554  * @buffer: buffer
2555  * @buffer_size: size of buffer
2556  *
2557  * Copy the extended attribute names for the security labels associated with
2558  * @inode into @buffer.  The maximum size of @buffer is specified by
2559  * @buffer_size.  @buffer may be NULL to request the size of the buffer
2560  * required.
2561  *
2562  * Return: Returns number of bytes used/required on success.
2563  */
2564 int security_inode_listsecurity(struct inode *inode,
2565                                 char *buffer, size_t buffer_size)
2566 {
2567         if (unlikely(IS_PRIVATE(inode)))
2568                 return 0;
2569         return call_int_hook(inode_listsecurity, 0, inode, buffer, buffer_size);
2570 }
2571 EXPORT_SYMBOL(security_inode_listsecurity);
2572
2573 /**
2574  * security_inode_getsecid() - Get an inode's secid
2575  * @inode: inode
2576  * @secid: secid to return
2577  *
2578  * Get the secid associated with the node.  In case of failure, @secid will be
2579  * set to zero.
2580  */
2581 void security_inode_getsecid(struct inode *inode, u32 *secid)
2582 {
2583         call_void_hook(inode_getsecid, inode, secid);
2584 }
2585
2586 /**
2587  * security_inode_copy_up() - Create new creds for an overlayfs copy-up op
2588  * @src: union dentry of copy-up file
2589  * @new: newly created creds
2590  *
2591  * A file is about to be copied up from lower layer to upper layer of overlay
2592  * filesystem. Security module can prepare a set of new creds and modify as
2593  * need be and return new creds. Caller will switch to new creds temporarily to
2594  * create new file and release newly allocated creds.
2595  *
2596  * Return: Returns 0 on success or a negative error code on error.
2597  */
2598 int security_inode_copy_up(struct dentry *src, struct cred **new)
2599 {
2600         return call_int_hook(inode_copy_up, 0, src, new);
2601 }
2602 EXPORT_SYMBOL(security_inode_copy_up);
2603
2604 /**
2605  * security_inode_copy_up_xattr() - Filter xattrs in an overlayfs copy-up op
2606  * @name: xattr name
2607  *
2608  * Filter the xattrs being copied up when a unioned file is copied up from a
2609  * lower layer to the union/overlay layer.   The caller is responsible for
2610  * reading and writing the xattrs, this hook is merely a filter.
2611  *
2612  * Return: Returns 0 to accept the xattr, 1 to discard the xattr, -EOPNOTSUPP
2613  *         if the security module does not know about attribute, or a negative
2614  *         error code to abort the copy up.
2615  */
2616 int security_inode_copy_up_xattr(const char *name)
2617 {
2618         struct security_hook_list *hp;
2619         int rc;
2620
2621         /*
2622          * The implementation can return 0 (accept the xattr), 1 (discard the
2623          * xattr), -EOPNOTSUPP if it does not know anything about the xattr or
2624          * any other error code in case of an error.
2625          */
2626         hlist_for_each_entry(hp,
2627                              &security_hook_heads.inode_copy_up_xattr, list) {
2628                 rc = hp->hook.inode_copy_up_xattr(name);
2629                 if (rc != LSM_RET_DEFAULT(inode_copy_up_xattr))
2630                         return rc;
2631         }
2632
2633         return evm_inode_copy_up_xattr(name);
2634 }
2635 EXPORT_SYMBOL(security_inode_copy_up_xattr);
2636
2637 /**
2638  * security_kernfs_init_security() - Init LSM context for a kernfs node
2639  * @kn_dir: parent kernfs node
2640  * @kn: the kernfs node to initialize
2641  *
2642  * Initialize the security context of a newly created kernfs node based on its
2643  * own and its parent's attributes.
2644  *
2645  * Return: Returns 0 if permission is granted.
2646  */
2647 int security_kernfs_init_security(struct kernfs_node *kn_dir,
2648                                   struct kernfs_node *kn)
2649 {
2650         return call_int_hook(kernfs_init_security, 0, kn_dir, kn);
2651 }
2652
2653 /**
2654  * security_file_permission() - Check file permissions
2655  * @file: file
2656  * @mask: requested permissions
2657  *
2658  * Check file permissions before accessing an open file.  This hook is called
2659  * by various operations that read or write files.  A security module can use
2660  * this hook to perform additional checking on these operations, e.g. to
2661  * revalidate permissions on use to support privilege bracketing or policy
2662  * changes.  Notice that this hook is used when the actual read/write
2663  * operations are performed, whereas the inode_security_ops hook is called when
2664  * a file is opened (as well as many other operations).  Although this hook can
2665  * be used to revalidate permissions for various system call operations that
2666  * read or write files, it does not address the revalidation of permissions for
2667  * memory-mapped files.  Security modules must handle this separately if they
2668  * need such revalidation.
2669  *
2670  * Return: Returns 0 if permission is granted.
2671  */
2672 int security_file_permission(struct file *file, int mask)
2673 {
2674         return call_int_hook(file_permission, 0, file, mask);
2675 }
2676
2677 /**
2678  * security_file_alloc() - Allocate and init a file's LSM blob
2679  * @file: the file
2680  *
2681  * Allocate and attach a security structure to the file->f_security field.  The
2682  * security field is initialized to NULL when the structure is first created.
2683  *
2684  * Return: Return 0 if the hook is successful and permission is granted.
2685  */
2686 int security_file_alloc(struct file *file)
2687 {
2688         int rc = lsm_file_alloc(file);
2689
2690         if (rc)
2691                 return rc;
2692         rc = call_int_hook(file_alloc_security, 0, file);
2693         if (unlikely(rc))
2694                 security_file_free(file);
2695         return rc;
2696 }
2697
2698 /**
2699  * security_file_free() - Free a file's LSM blob
2700  * @file: the file
2701  *
2702  * Deallocate and free any security structures stored in file->f_security.
2703  */
2704 void security_file_free(struct file *file)
2705 {
2706         void *blob;
2707
2708         call_void_hook(file_free_security, file);
2709
2710         blob = file->f_security;
2711         if (blob) {
2712                 file->f_security = NULL;
2713                 kmem_cache_free(lsm_file_cache, blob);
2714         }
2715 }
2716
2717 /**
2718  * security_file_ioctl() - Check if an ioctl is allowed
2719  * @file: associated file
2720  * @cmd: ioctl cmd
2721  * @arg: ioctl arguments
2722  *
2723  * Check permission for an ioctl operation on @file.  Note that @arg sometimes
2724  * represents a user space pointer; in other cases, it may be a simple integer
2725  * value.  When @arg represents a user space pointer, it should never be used
2726  * by the security module.
2727  *
2728  * Return: Returns 0 if permission is granted.
2729  */
2730 int security_file_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
2731 {
2732         return call_int_hook(file_ioctl, 0, file, cmd, arg);
2733 }
2734 EXPORT_SYMBOL_GPL(security_file_ioctl);
2735
2736 /**
2737  * security_file_ioctl_compat() - Check if an ioctl is allowed in compat mode
2738  * @file: associated file
2739  * @cmd: ioctl cmd
2740  * @arg: ioctl arguments
2741  *
2742  * Compat version of security_file_ioctl() that correctly handles 32-bit
2743  * processes running on 64-bit kernels.
2744  *
2745  * Return: Returns 0 if permission is granted.
2746  */
2747 int security_file_ioctl_compat(struct file *file, unsigned int cmd,
2748                                unsigned long arg)
2749 {
2750         return call_int_hook(file_ioctl_compat, 0, file, cmd, arg);
2751 }
2752 EXPORT_SYMBOL_GPL(security_file_ioctl_compat);
2753
2754 static inline unsigned long mmap_prot(struct file *file, unsigned long prot)
2755 {
2756         /*
2757          * Does we have PROT_READ and does the application expect
2758          * it to imply PROT_EXEC?  If not, nothing to talk about...
2759          */
2760         if ((prot & (PROT_READ | PROT_EXEC)) != PROT_READ)
2761                 return prot;
2762         if (!(current->personality & READ_IMPLIES_EXEC))
2763                 return prot;
2764         /*
2765          * if that's an anonymous mapping, let it.
2766          */
2767         if (!file)
2768                 return prot | PROT_EXEC;
2769         /*
2770          * ditto if it's not on noexec mount, except that on !MMU we need
2771          * NOMMU_MAP_EXEC (== VM_MAYEXEC) in this case
2772          */
2773         if (!path_noexec(&file->f_path)) {
2774 #ifndef CONFIG_MMU
2775                 if (file->f_op->mmap_capabilities) {
2776                         unsigned caps = file->f_op->mmap_capabilities(file);
2777                         if (!(caps & NOMMU_MAP_EXEC))
2778                                 return prot;
2779                 }
2780 #endif
2781                 return prot | PROT_EXEC;
2782         }
2783         /* anything on noexec mount won't get PROT_EXEC */
2784         return prot;
2785 }
2786
2787 /**
2788  * security_mmap_file() - Check if mmap'ing a file is allowed
2789  * @file: file
2790  * @prot: protection applied by the kernel
2791  * @flags: flags
2792  *
2793  * Check permissions for a mmap operation.  The @file may be NULL, e.g. if
2794  * mapping anonymous memory.
2795  *
2796  * Return: Returns 0 if permission is granted.
2797  */
2798 int security_mmap_file(struct file *file, unsigned long prot,
2799                        unsigned long flags)
2800 {
2801         unsigned long prot_adj = mmap_prot(file, prot);
2802         int ret;
2803
2804         ret = call_int_hook(mmap_file, 0, file, prot, prot_adj, flags);
2805         if (ret)
2806                 return ret;
2807         return ima_file_mmap(file, prot, prot_adj, flags);
2808 }
2809
2810 /**
2811  * security_mmap_addr() - Check if mmap'ing an address is allowed
2812  * @addr: address
2813  *
2814  * Check permissions for a mmap operation at @addr.
2815  *
2816  * Return: Returns 0 if permission is granted.
2817  */
2818 int security_mmap_addr(unsigned long addr)
2819 {
2820         return call_int_hook(mmap_addr, 0, addr);
2821 }
2822
2823 /**
2824  * security_file_mprotect() - Check if changing memory protections is allowed
2825  * @vma: memory region
2826  * @reqprot: application requested protection
2827  * @prot: protection applied by the kernel
2828  *
2829  * Check permissions before changing memory access permissions.
2830  *
2831  * Return: Returns 0 if permission is granted.
2832  */
2833 int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
2834                            unsigned long prot)
2835 {
2836         int ret;
2837
2838         ret = call_int_hook(file_mprotect, 0, vma, reqprot, prot);
2839         if (ret)
2840                 return ret;
2841         return ima_file_mprotect(vma, prot);
2842 }
2843
2844 /**
2845  * security_file_lock() - Check if a file lock is allowed
2846  * @file: file
2847  * @cmd: lock operation (e.g. F_RDLCK, F_WRLCK)
2848  *
2849  * Check permission before performing file locking operations.  Note the hook
2850  * mediates both flock and fcntl style locks.
2851  *
2852  * Return: Returns 0 if permission is granted.
2853  */
2854 int security_file_lock(struct file *file, unsigned int cmd)
2855 {
2856         return call_int_hook(file_lock, 0, file, cmd);
2857 }
2858
2859 /**
2860  * security_file_fcntl() - Check if fcntl() op is allowed
2861  * @file: file
2862  * @cmd: fcntl command
2863  * @arg: command argument
2864  *
2865  * Check permission before allowing the file operation specified by @cmd from
2866  * being performed on the file @file.  Note that @arg sometimes represents a
2867  * user space pointer; in other cases, it may be a simple integer value.  When
2868  * @arg represents a user space pointer, it should never be used by the
2869  * security module.
2870  *
2871  * Return: Returns 0 if permission is granted.
2872  */
2873 int security_file_fcntl(struct file *file, unsigned int cmd, unsigned long arg)
2874 {
2875         return call_int_hook(file_fcntl, 0, file, cmd, arg);
2876 }
2877
2878 /**
2879  * security_file_set_fowner() - Set the file owner info in the LSM blob
2880  * @file: the file
2881  *
2882  * Save owner security information (typically from current->security) in
2883  * file->f_security for later use by the send_sigiotask hook.
2884  *
2885  * Return: Returns 0 on success.
2886  */
2887 void security_file_set_fowner(struct file *file)
2888 {
2889         call_void_hook(file_set_fowner, file);
2890 }
2891
2892 /**
2893  * security_file_send_sigiotask() - Check if sending SIGIO/SIGURG is allowed
2894  * @tsk: target task
2895  * @fown: signal sender
2896  * @sig: signal to be sent, SIGIO is sent if 0
2897  *
2898  * Check permission for the file owner @fown to send SIGIO or SIGURG to the
2899  * process @tsk.  Note that this hook is sometimes called from interrupt.  Note
2900  * that the fown_struct, @fown, is never outside the context of a struct file,
2901  * so the file structure (and associated security information) can always be
2902  * obtained: container_of(fown, struct file, f_owner).
2903  *
2904  * Return: Returns 0 if permission is granted.
2905  */
2906 int security_file_send_sigiotask(struct task_struct *tsk,
2907                                  struct fown_struct *fown, int sig)
2908 {
2909         return call_int_hook(file_send_sigiotask, 0, tsk, fown, sig);
2910 }
2911
2912 /**
2913  * security_file_receive() - Check is receiving a file via IPC is allowed
2914  * @file: file being received
2915  *
2916  * This hook allows security modules to control the ability of a process to
2917  * receive an open file descriptor via socket IPC.
2918  *
2919  * Return: Returns 0 if permission is granted.
2920  */
2921 int security_file_receive(struct file *file)
2922 {
2923         return call_int_hook(file_receive, 0, file);
2924 }
2925
2926 /**
2927  * security_file_open() - Save open() time state for late use by the LSM
2928  * @file:
2929  *
2930  * Save open-time permission checking state for later use upon file_permission,
2931  * and recheck access if anything has changed since inode_permission.
2932  *
2933  * Return: Returns 0 if permission is granted.
2934  */
2935 int security_file_open(struct file *file)
2936 {
2937         int ret;
2938
2939         ret = call_int_hook(file_open, 0, file);
2940         if (ret)
2941                 return ret;
2942
2943         return fsnotify_open_perm(file);
2944 }
2945
2946 /**
2947  * security_file_truncate() - Check if truncating a file is allowed
2948  * @file: file
2949  *
2950  * Check permission before truncating a file, i.e. using ftruncate.  Note that
2951  * truncation permission may also be checked based on the path, using the
2952  * @path_truncate hook.
2953  *
2954  * Return: Returns 0 if permission is granted.
2955  */
2956 int security_file_truncate(struct file *file)
2957 {
2958         return call_int_hook(file_truncate, 0, file);
2959 }
2960
2961 /**
2962  * security_task_alloc() - Allocate a task's LSM blob
2963  * @task: the task
2964  * @clone_flags: flags indicating what is being shared
2965  *
2966  * Handle allocation of task-related resources.
2967  *
2968  * Return: Returns a zero on success, negative values on failure.
2969  */
2970 int security_task_alloc(struct task_struct *task, unsigned long clone_flags)
2971 {
2972         int rc = lsm_task_alloc(task);
2973
2974         if (rc)
2975                 return rc;
2976         rc = call_int_hook(task_alloc, 0, task, clone_flags);
2977         if (unlikely(rc))
2978                 security_task_free(task);
2979         return rc;
2980 }
2981
2982 /**
2983  * security_task_free() - Free a task's LSM blob and related resources
2984  * @task: task
2985  *
2986  * Handle release of task-related resources.  Note that this can be called from
2987  * interrupt context.
2988  */
2989 void security_task_free(struct task_struct *task)
2990 {
2991         call_void_hook(task_free, task);
2992
2993         kfree(task->security);
2994         task->security = NULL;
2995 }
2996
2997 /**
2998  * security_cred_alloc_blank() - Allocate the min memory to allow cred_transfer
2999  * @cred: credentials
3000  * @gfp: gfp flags
3001  *
3002  * Only allocate sufficient memory and attach to @cred such that
3003  * cred_transfer() will not get ENOMEM.
3004  *
3005  * Return: Returns 0 on success, negative values on failure.
3006  */
3007 int security_cred_alloc_blank(struct cred *cred, gfp_t gfp)
3008 {
3009         int rc = lsm_cred_alloc(cred, gfp);
3010
3011         if (rc)
3012                 return rc;
3013
3014         rc = call_int_hook(cred_alloc_blank, 0, cred, gfp);
3015         if (unlikely(rc))
3016                 security_cred_free(cred);
3017         return rc;
3018 }
3019
3020 /**
3021  * security_cred_free() - Free the cred's LSM blob and associated resources
3022  * @cred: credentials
3023  *
3024  * Deallocate and clear the cred->security field in a set of credentials.
3025  */
3026 void security_cred_free(struct cred *cred)
3027 {
3028         /*
3029          * There is a failure case in prepare_creds() that
3030          * may result in a call here with ->security being NULL.
3031          */
3032         if (unlikely(cred->security == NULL))
3033                 return;
3034
3035         call_void_hook(cred_free, cred);
3036
3037         kfree(cred->security);
3038         cred->security = NULL;
3039 }
3040
3041 /**
3042  * security_prepare_creds() - Prepare a new set of credentials
3043  * @new: new credentials
3044  * @old: original credentials
3045  * @gfp: gfp flags
3046  *
3047  * Prepare a new set of credentials by copying the data from the old set.
3048  *
3049  * Return: Returns 0 on success, negative values on failure.
3050  */
3051 int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp)
3052 {
3053         int rc = lsm_cred_alloc(new, gfp);
3054
3055         if (rc)
3056                 return rc;
3057
3058         rc = call_int_hook(cred_prepare, 0, new, old, gfp);
3059         if (unlikely(rc))
3060                 security_cred_free(new);
3061         return rc;
3062 }
3063
3064 /**
3065  * security_transfer_creds() - Transfer creds
3066  * @new: target credentials
3067  * @old: original credentials
3068  *
3069  * Transfer data from original creds to new creds.
3070  */
3071 void security_transfer_creds(struct cred *new, const struct cred *old)
3072 {
3073         call_void_hook(cred_transfer, new, old);
3074 }
3075
3076 /**
3077  * security_cred_getsecid() - Get the secid from a set of credentials
3078  * @c: credentials
3079  * @secid: secid value
3080  *
3081  * Retrieve the security identifier of the cred structure @c.  In case of
3082  * failure, @secid will be set to zero.
3083  */
3084 void security_cred_getsecid(const struct cred *c, u32 *secid)
3085 {
3086         *secid = 0;
3087         call_void_hook(cred_getsecid, c, secid);
3088 }
3089 EXPORT_SYMBOL(security_cred_getsecid);
3090
3091 /**
3092  * security_kernel_act_as() - Set the kernel credentials to act as secid
3093  * @new: credentials
3094  * @secid: secid
3095  *
3096  * Set the credentials for a kernel service to act as (subjective context).
3097  * The current task must be the one that nominated @secid.
3098  *
3099  * Return: Returns 0 if successful.
3100  */
3101 int security_kernel_act_as(struct cred *new, u32 secid)
3102 {
3103         return call_int_hook(kernel_act_as, 0, new, secid);
3104 }
3105
3106 /**
3107  * security_kernel_create_files_as() - Set file creation context using an inode
3108  * @new: target credentials
3109  * @inode: reference inode
3110  *
3111  * Set the file creation context in a set of credentials to be the same as the
3112  * objective context of the specified inode.  The current task must be the one
3113  * that nominated @inode.
3114  *
3115  * Return: Returns 0 if successful.
3116  */
3117 int security_kernel_create_files_as(struct cred *new, struct inode *inode)
3118 {
3119         return call_int_hook(kernel_create_files_as, 0, new, inode);
3120 }
3121
3122 /**
3123  * security_kernel_module_request() - Check is loading a module is allowed
3124  * @kmod_name: module name
3125  *
3126  * Ability to trigger the kernel to automatically upcall to userspace for
3127  * userspace to load a kernel module with the given name.
3128  *
3129  * Return: Returns 0 if successful.
3130  */
3131 int security_kernel_module_request(char *kmod_name)
3132 {
3133         int ret;
3134
3135         ret = call_int_hook(kernel_module_request, 0, kmod_name);
3136         if (ret)
3137                 return ret;
3138         return integrity_kernel_module_request(kmod_name);
3139 }
3140
3141 /**
3142  * security_kernel_read_file() - Read a file specified by userspace
3143  * @file: file
3144  * @id: file identifier
3145  * @contents: trust if security_kernel_post_read_file() will be called
3146  *
3147  * Read a file specified by userspace.
3148  *
3149  * Return: Returns 0 if permission is granted.
3150  */
3151 int security_kernel_read_file(struct file *file, enum kernel_read_file_id id,
3152                               bool contents)
3153 {
3154         int ret;
3155
3156         ret = call_int_hook(kernel_read_file, 0, file, id, contents);
3157         if (ret)
3158                 return ret;
3159         return ima_read_file(file, id, contents);
3160 }
3161 EXPORT_SYMBOL_GPL(security_kernel_read_file);
3162
3163 /**
3164  * security_kernel_post_read_file() - Read a file specified by userspace
3165  * @file: file
3166  * @buf: file contents
3167  * @size: size of file contents
3168  * @id: file identifier
3169  *
3170  * Read a file specified by userspace.  This must be paired with a prior call
3171  * to security_kernel_read_file() call that indicated this hook would also be
3172  * called, see security_kernel_read_file() for more information.
3173  *
3174  * Return: Returns 0 if permission is granted.
3175  */
3176 int security_kernel_post_read_file(struct file *file, char *buf, loff_t size,
3177                                    enum kernel_read_file_id id)
3178 {
3179         int ret;
3180
3181         ret = call_int_hook(kernel_post_read_file, 0, file, buf, size, id);
3182         if (ret)
3183                 return ret;
3184         return ima_post_read_file(file, buf, size, id);
3185 }
3186 EXPORT_SYMBOL_GPL(security_kernel_post_read_file);
3187
3188 /**
3189  * security_kernel_load_data() - Load data provided by userspace
3190  * @id: data identifier
3191  * @contents: true if security_kernel_post_load_data() will be called
3192  *
3193  * Load data provided by userspace.
3194  *
3195  * Return: Returns 0 if permission is granted.
3196  */
3197 int security_kernel_load_data(enum kernel_load_data_id id, bool contents)
3198 {
3199         int ret;
3200
3201         ret = call_int_hook(kernel_load_data, 0, id, contents);
3202         if (ret)
3203                 return ret;
3204         return ima_load_data(id, contents);
3205 }
3206 EXPORT_SYMBOL_GPL(security_kernel_load_data);
3207
3208 /**
3209  * security_kernel_post_load_data() - Load userspace data from a non-file source
3210  * @buf: data
3211  * @size: size of data
3212  * @id: data identifier
3213  * @description: text description of data, specific to the id value
3214  *
3215  * Load data provided by a non-file source (usually userspace buffer).  This
3216  * must be paired with a prior security_kernel_load_data() call that indicated
3217  * this hook would also be called, see security_kernel_load_data() for more
3218  * information.
3219  *
3220  * Return: Returns 0 if permission is granted.
3221  */
3222 int security_kernel_post_load_data(char *buf, loff_t size,
3223                                    enum kernel_load_data_id id,
3224                                    char *description)
3225 {
3226         int ret;
3227
3228         ret = call_int_hook(kernel_post_load_data, 0, buf, size, id,
3229                             description);
3230         if (ret)
3231                 return ret;
3232         return ima_post_load_data(buf, size, id, description);
3233 }
3234 EXPORT_SYMBOL_GPL(security_kernel_post_load_data);
3235
3236 /**
3237  * security_task_fix_setuid() - Update LSM with new user id attributes
3238  * @new: updated credentials
3239  * @old: credentials being replaced
3240  * @flags: LSM_SETID_* flag values
3241  *
3242  * Update the module's state after setting one or more of the user identity
3243  * attributes of the current process.  The @flags parameter indicates which of
3244  * the set*uid system calls invoked this hook.  If @new is the set of
3245  * credentials that will be installed.  Modifications should be made to this
3246  * rather than to @current->cred.
3247  *
3248  * Return: Returns 0 on success.
3249  */
3250 int security_task_fix_setuid(struct cred *new, const struct cred *old,
3251                              int flags)
3252 {
3253         return call_int_hook(task_fix_setuid, 0, new, old, flags);
3254 }
3255
3256 /**
3257  * security_task_fix_setgid() - Update LSM with new group id attributes
3258  * @new: updated credentials
3259  * @old: credentials being replaced
3260  * @flags: LSM_SETID_* flag value
3261  *
3262  * Update the module's state after setting one or more of the group identity
3263  * attributes of the current process.  The @flags parameter indicates which of
3264  * the set*gid system calls invoked this hook.  @new is the set of credentials
3265  * that will be installed.  Modifications should be made to this rather than to
3266  * @current->cred.
3267  *
3268  * Return: Returns 0 on success.
3269  */
3270 int security_task_fix_setgid(struct cred *new, const struct cred *old,
3271                              int flags)
3272 {
3273         return call_int_hook(task_fix_setgid, 0, new, old, flags);
3274 }
3275
3276 /**
3277  * security_task_fix_setgroups() - Update LSM with new supplementary groups
3278  * @new: updated credentials
3279  * @old: credentials being replaced
3280  *
3281  * Update the module's state after setting the supplementary group identity
3282  * attributes of the current process.  @new is the set of credentials that will
3283  * be installed.  Modifications should be made to this rather than to
3284  * @current->cred.
3285  *
3286  * Return: Returns 0 on success.
3287  */
3288 int security_task_fix_setgroups(struct cred *new, const struct cred *old)
3289 {
3290         return call_int_hook(task_fix_setgroups, 0, new, old);
3291 }
3292
3293 /**
3294  * security_task_setpgid() - Check if setting the pgid is allowed
3295  * @p: task being modified
3296  * @pgid: new pgid
3297  *
3298  * Check permission before setting the process group identifier of the process
3299  * @p to @pgid.
3300  *
3301  * Return: Returns 0 if permission is granted.
3302  */
3303 int security_task_setpgid(struct task_struct *p, pid_t pgid)
3304 {
3305         return call_int_hook(task_setpgid, 0, p, pgid);
3306 }
3307
3308 /**
3309  * security_task_getpgid() - Check if getting the pgid is allowed
3310  * @p: task
3311  *
3312  * Check permission before getting the process group identifier of the process
3313  * @p.
3314  *
3315  * Return: Returns 0 if permission is granted.
3316  */
3317 int security_task_getpgid(struct task_struct *p)
3318 {
3319         return call_int_hook(task_getpgid, 0, p);
3320 }
3321
3322 /**
3323  * security_task_getsid() - Check if getting the session id is allowed
3324  * @p: task
3325  *
3326  * Check permission before getting the session identifier of the process @p.
3327  *
3328  * Return: Returns 0 if permission is granted.
3329  */
3330 int security_task_getsid(struct task_struct *p)
3331 {
3332         return call_int_hook(task_getsid, 0, p);
3333 }
3334
3335 /**
3336  * security_current_getsecid_subj() - Get the current task's subjective secid
3337  * @secid: secid value
3338  *
3339  * Retrieve the subjective security identifier of the current task and return
3340  * it in @secid.  In case of failure, @secid will be set to zero.
3341  */
3342 void security_current_getsecid_subj(u32 *secid)
3343 {
3344         *secid = 0;
3345         call_void_hook(current_getsecid_subj, secid);
3346 }
3347 EXPORT_SYMBOL(security_current_getsecid_subj);
3348
3349 /**
3350  * security_task_getsecid_obj() - Get a task's objective secid
3351  * @p: target task
3352  * @secid: secid value
3353  *
3354  * Retrieve the objective security identifier of the task_struct in @p and
3355  * return it in @secid. In case of failure, @secid will be set to zero.
3356  */
3357 void security_task_getsecid_obj(struct task_struct *p, u32 *secid)
3358 {
3359         *secid = 0;
3360         call_void_hook(task_getsecid_obj, p, secid);
3361 }
3362 EXPORT_SYMBOL(security_task_getsecid_obj);
3363
3364 /**
3365  * security_task_setnice() - Check if setting a task's nice value is allowed
3366  * @p: target task
3367  * @nice: nice value
3368  *
3369  * Check permission before setting the nice value of @p to @nice.
3370  *
3371  * Return: Returns 0 if permission is granted.
3372  */
3373 int security_task_setnice(struct task_struct *p, int nice)
3374 {
3375         return call_int_hook(task_setnice, 0, p, nice);
3376 }
3377
3378 /**
3379  * security_task_setioprio() - Check if setting a task's ioprio is allowed
3380  * @p: target task
3381  * @ioprio: ioprio value
3382  *
3383  * Check permission before setting the ioprio value of @p to @ioprio.
3384  *
3385  * Return: Returns 0 if permission is granted.
3386  */
3387 int security_task_setioprio(struct task_struct *p, int ioprio)
3388 {
3389         return call_int_hook(task_setioprio, 0, p, ioprio);
3390 }
3391
3392 /**
3393  * security_task_getioprio() - Check if getting a task's ioprio is allowed
3394  * @p: task
3395  *
3396  * Check permission before getting the ioprio value of @p.
3397  *
3398  * Return: Returns 0 if permission is granted.
3399  */
3400 int security_task_getioprio(struct task_struct *p)
3401 {
3402         return call_int_hook(task_getioprio, 0, p);
3403 }
3404
3405 /**
3406  * security_task_prlimit() - Check if get/setting resources limits is allowed
3407  * @cred: current task credentials
3408  * @tcred: target task credentials
3409  * @flags: LSM_PRLIMIT_* flag bits indicating a get/set/both
3410  *
3411  * Check permission before getting and/or setting the resource limits of
3412  * another task.
3413  *
3414  * Return: Returns 0 if permission is granted.
3415  */
3416 int security_task_prlimit(const struct cred *cred, const struct cred *tcred,
3417                           unsigned int flags)
3418 {
3419         return call_int_hook(task_prlimit, 0, cred, tcred, flags);
3420 }
3421
3422 /**
3423  * security_task_setrlimit() - Check if setting a new rlimit value is allowed
3424  * @p: target task's group leader
3425  * @resource: resource whose limit is being set
3426  * @new_rlim: new resource limit
3427  *
3428  * Check permission before setting the resource limits of process @p for
3429  * @resource to @new_rlim.  The old resource limit values can be examined by
3430  * dereferencing (p->signal->rlim + resource).
3431  *
3432  * Return: Returns 0 if permission is granted.
3433  */
3434 int security_task_setrlimit(struct task_struct *p, unsigned int resource,
3435                             struct rlimit *new_rlim)
3436 {
3437         return call_int_hook(task_setrlimit, 0, p, resource, new_rlim);
3438 }
3439
3440 /**
3441  * security_task_setscheduler() - Check if setting sched policy/param is allowed
3442  * @p: target task
3443  *
3444  * Check permission before setting scheduling policy and/or parameters of
3445  * process @p.
3446  *
3447  * Return: Returns 0 if permission is granted.
3448  */
3449 int security_task_setscheduler(struct task_struct *p)
3450 {
3451         return call_int_hook(task_setscheduler, 0, p);
3452 }
3453
3454 /**
3455  * security_task_getscheduler() - Check if getting scheduling info is allowed
3456  * @p: target task
3457  *
3458  * Check permission before obtaining scheduling information for process @p.
3459  *
3460  * Return: Returns 0 if permission is granted.
3461  */
3462 int security_task_getscheduler(struct task_struct *p)
3463 {
3464         return call_int_hook(task_getscheduler, 0, p);
3465 }
3466
3467 /**
3468  * security_task_movememory() - Check if moving memory is allowed
3469  * @p: task
3470  *
3471  * Check permission before moving memory owned by process @p.
3472  *
3473  * Return: Returns 0 if permission is granted.
3474  */
3475 int security_task_movememory(struct task_struct *p)
3476 {
3477         return call_int_hook(task_movememory, 0, p);
3478 }
3479
3480 /**
3481  * security_task_kill() - Check if sending a signal is allowed
3482  * @p: target process
3483  * @info: signal information
3484  * @sig: signal value
3485  * @cred: credentials of the signal sender, NULL if @current
3486  *
3487  * Check permission before sending signal @sig to @p.  @info can be NULL, the
3488  * constant 1, or a pointer to a kernel_siginfo structure.  If @info is 1 or
3489  * SI_FROMKERNEL(info) is true, then the signal should be viewed as coming from
3490  * the kernel and should typically be permitted.  SIGIO signals are handled
3491  * separately by the send_sigiotask hook in file_security_ops.
3492  *
3493  * Return: Returns 0 if permission is granted.
3494  */
3495 int security_task_kill(struct task_struct *p, struct kernel_siginfo *info,
3496                        int sig, const struct cred *cred)
3497 {
3498         return call_int_hook(task_kill, 0, p, info, sig, cred);
3499 }
3500
3501 /**
3502  * security_task_prctl() - Check if a prctl op is allowed
3503  * @option: operation
3504  * @arg2: argument
3505  * @arg3: argument
3506  * @arg4: argument
3507  * @arg5: argument
3508  *
3509  * Check permission before performing a process control operation on the
3510  * current process.
3511  *
3512  * Return: Return -ENOSYS if no-one wanted to handle this op, any other value
3513  *         to cause prctl() to return immediately with that value.
3514  */
3515 int security_task_prctl(int option, unsigned long arg2, unsigned long arg3,
3516                         unsigned long arg4, unsigned long arg5)
3517 {
3518         int thisrc;
3519         int rc = LSM_RET_DEFAULT(task_prctl);
3520         struct security_hook_list *hp;
3521
3522         hlist_for_each_entry(hp, &security_hook_heads.task_prctl, list) {
3523                 thisrc = hp->hook.task_prctl(option, arg2, arg3, arg4, arg5);
3524                 if (thisrc != LSM_RET_DEFAULT(task_prctl)) {
3525                         rc = thisrc;
3526                         if (thisrc != 0)
3527                                 break;
3528                 }
3529         }
3530         return rc;
3531 }
3532
3533 /**
3534  * security_task_to_inode() - Set the security attributes of a task's inode
3535  * @p: task
3536  * @inode: inode
3537  *
3538  * Set the security attributes for an inode based on an associated task's
3539  * security attributes, e.g. for /proc/pid inodes.
3540  */
3541 void security_task_to_inode(struct task_struct *p, struct inode *inode)
3542 {
3543         call_void_hook(task_to_inode, p, inode);
3544 }
3545
3546 /**
3547  * security_create_user_ns() - Check if creating a new userns is allowed
3548  * @cred: prepared creds
3549  *
3550  * Check permission prior to creating a new user namespace.
3551  *
3552  * Return: Returns 0 if successful, otherwise < 0 error code.
3553  */
3554 int security_create_user_ns(const struct cred *cred)
3555 {
3556         return call_int_hook(userns_create, 0, cred);
3557 }
3558
3559 /**
3560  * security_ipc_permission() - Check if sysv ipc access is allowed
3561  * @ipcp: ipc permission structure
3562  * @flag: requested permissions
3563  *
3564  * Check permissions for access to IPC.
3565  *
3566  * Return: Returns 0 if permission is granted.
3567  */
3568 int security_ipc_permission(struct kern_ipc_perm *ipcp, short flag)
3569 {
3570         return call_int_hook(ipc_permission, 0, ipcp, flag);
3571 }
3572
3573 /**
3574  * security_ipc_getsecid() - Get the sysv ipc object's secid
3575  * @ipcp: ipc permission structure
3576  * @secid: secid pointer
3577  *
3578  * Get the secid associated with the ipc object.  In case of failure, @secid
3579  * will be set to zero.
3580  */
3581 void security_ipc_getsecid(struct kern_ipc_perm *ipcp, u32 *secid)
3582 {
3583         *secid = 0;
3584         call_void_hook(ipc_getsecid, ipcp, secid);
3585 }
3586
3587 /**
3588  * security_msg_msg_alloc() - Allocate a sysv ipc message LSM blob
3589  * @msg: message structure
3590  *
3591  * Allocate and attach a security structure to the msg->security field.  The
3592  * security field is initialized to NULL when the structure is first created.
3593  *
3594  * Return: Return 0 if operation was successful and permission is granted.
3595  */
3596 int security_msg_msg_alloc(struct msg_msg *msg)
3597 {
3598         int rc = lsm_msg_msg_alloc(msg);
3599
3600         if (unlikely(rc))
3601                 return rc;
3602         rc = call_int_hook(msg_msg_alloc_security, 0, msg);
3603         if (unlikely(rc))
3604                 security_msg_msg_free(msg);
3605         return rc;
3606 }
3607
3608 /**
3609  * security_msg_msg_free() - Free a sysv ipc message LSM blob
3610  * @msg: message structure
3611  *
3612  * Deallocate the security structure for this message.
3613  */
3614 void security_msg_msg_free(struct msg_msg *msg)
3615 {
3616         call_void_hook(msg_msg_free_security, msg);
3617         kfree(msg->security);
3618         msg->security = NULL;
3619 }
3620
3621 /**
3622  * security_msg_queue_alloc() - Allocate a sysv ipc msg queue LSM blob
3623  * @msq: sysv ipc permission structure
3624  *
3625  * Allocate and attach a security structure to @msg. The security field is
3626  * initialized to NULL when the structure is first created.
3627  *
3628  * Return: Returns 0 if operation was successful and permission is granted.
3629  */
3630 int security_msg_queue_alloc(struct kern_ipc_perm *msq)
3631 {
3632         int rc = lsm_ipc_alloc(msq);
3633
3634         if (unlikely(rc))
3635                 return rc;
3636         rc = call_int_hook(msg_queue_alloc_security, 0, msq);
3637         if (unlikely(rc))
3638                 security_msg_queue_free(msq);
3639         return rc;
3640 }
3641
3642 /**
3643  * security_msg_queue_free() - Free a sysv ipc msg queue LSM blob
3644  * @msq: sysv ipc permission structure
3645  *
3646  * Deallocate security field @perm->security for the message queue.
3647  */
3648 void security_msg_queue_free(struct kern_ipc_perm *msq)
3649 {
3650         call_void_hook(msg_queue_free_security, msq);
3651         kfree(msq->security);
3652         msq->security = NULL;
3653 }
3654
3655 /**
3656  * security_msg_queue_associate() - Check if a msg queue operation is allowed
3657  * @msq: sysv ipc permission structure
3658  * @msqflg: operation flags
3659  *
3660  * Check permission when a message queue is requested through the msgget system
3661  * call. This hook is only called when returning the message queue identifier
3662  * for an existing message queue, not when a new message queue is created.
3663  *
3664  * Return: Return 0 if permission is granted.
3665  */
3666 int security_msg_queue_associate(struct kern_ipc_perm *msq, int msqflg)
3667 {
3668         return call_int_hook(msg_queue_associate, 0, msq, msqflg);
3669 }
3670
3671 /**
3672  * security_msg_queue_msgctl() - Check if a msg queue operation is allowed
3673  * @msq: sysv ipc permission structure
3674  * @cmd: operation
3675  *
3676  * Check permission when a message control operation specified by @cmd is to be
3677  * performed on the message queue with permissions.
3678  *
3679  * Return: Returns 0 if permission is granted.
3680  */
3681 int security_msg_queue_msgctl(struct kern_ipc_perm *msq, int cmd)
3682 {
3683         return call_int_hook(msg_queue_msgctl, 0, msq, cmd);
3684 }
3685
3686 /**
3687  * security_msg_queue_msgsnd() - Check if sending a sysv ipc message is allowed
3688  * @msq: sysv ipc permission structure
3689  * @msg: message
3690  * @msqflg: operation flags
3691  *
3692  * Check permission before a message, @msg, is enqueued on the message queue
3693  * with permissions specified in @msq.
3694  *
3695  * Return: Returns 0 if permission is granted.
3696  */
3697 int security_msg_queue_msgsnd(struct kern_ipc_perm *msq,
3698                               struct msg_msg *msg, int msqflg)
3699 {
3700         return call_int_hook(msg_queue_msgsnd, 0, msq, msg, msqflg);
3701 }
3702
3703 /**
3704  * security_msg_queue_msgrcv() - Check if receiving a sysv ipc msg is allowed
3705  * @msq: sysv ipc permission structure
3706  * @msg: message
3707  * @target: target task
3708  * @type: type of message requested
3709  * @mode: operation flags
3710  *
3711  * Check permission before a message, @msg, is removed from the message queue.
3712  * The @target task structure contains a pointer to the process that will be
3713  * receiving the message (not equal to the current process when inline receives
3714  * are being performed).
3715  *
3716  * Return: Returns 0 if permission is granted.
3717  */
3718 int security_msg_queue_msgrcv(struct kern_ipc_perm *msq, struct msg_msg *msg,
3719                               struct task_struct *target, long type, int mode)
3720 {
3721         return call_int_hook(msg_queue_msgrcv, 0, msq, msg, target, type, mode);
3722 }
3723
3724 /**
3725  * security_shm_alloc() - Allocate a sysv shm LSM blob
3726  * @shp: sysv ipc permission structure
3727  *
3728  * Allocate and attach a security structure to the @shp security field.  The
3729  * security field is initialized to NULL when the structure is first created.
3730  *
3731  * Return: Returns 0 if operation was successful and permission is granted.
3732  */
3733 int security_shm_alloc(struct kern_ipc_perm *shp)
3734 {
3735         int rc = lsm_ipc_alloc(shp);
3736
3737         if (unlikely(rc))
3738                 return rc;
3739         rc = call_int_hook(shm_alloc_security, 0, shp);
3740         if (unlikely(rc))
3741                 security_shm_free(shp);
3742         return rc;
3743 }
3744
3745 /**
3746  * security_shm_free() - Free a sysv shm LSM blob
3747  * @shp: sysv ipc permission structure
3748  *
3749  * Deallocate the security structure @perm->security for the memory segment.
3750  */
3751 void security_shm_free(struct kern_ipc_perm *shp)
3752 {
3753         call_void_hook(shm_free_security, shp);
3754         kfree(shp->security);
3755         shp->security = NULL;
3756 }
3757
3758 /**
3759  * security_shm_associate() - Check if a sysv shm operation is allowed
3760  * @shp: sysv ipc permission structure
3761  * @shmflg: operation flags
3762  *
3763  * Check permission when a shared memory region is requested through the shmget
3764  * system call. This hook is only called when returning the shared memory
3765  * region identifier for an existing region, not when a new shared memory
3766  * region is created.
3767  *
3768  * Return: Returns 0 if permission is granted.
3769  */
3770 int security_shm_associate(struct kern_ipc_perm *shp, int shmflg)
3771 {
3772         return call_int_hook(shm_associate, 0, shp, shmflg);
3773 }
3774
3775 /**
3776  * security_shm_shmctl() - Check if a sysv shm operation is allowed
3777  * @shp: sysv ipc permission structure
3778  * @cmd: operation
3779  *
3780  * Check permission when a shared memory control operation specified by @cmd is
3781  * to be performed on the shared memory region with permissions in @shp.
3782  *
3783  * Return: Return 0 if permission is granted.
3784  */
3785 int security_shm_shmctl(struct kern_ipc_perm *shp, int cmd)
3786 {
3787         return call_int_hook(shm_shmctl, 0, shp, cmd);
3788 }
3789
3790 /**
3791  * security_shm_shmat() - Check if a sysv shm attach operation is allowed
3792  * @shp: sysv ipc permission structure
3793  * @shmaddr: address of memory region to attach
3794  * @shmflg: operation flags
3795  *
3796  * Check permissions prior to allowing the shmat system call to attach the
3797  * shared memory segment with permissions @shp to the data segment of the
3798  * calling process. The attaching address is specified by @shmaddr.
3799  *
3800  * Return: Returns 0 if permission is granted.
3801  */
3802 int security_shm_shmat(struct kern_ipc_perm *shp,
3803                        char __user *shmaddr, int shmflg)
3804 {
3805         return call_int_hook(shm_shmat, 0, shp, shmaddr, shmflg);
3806 }
3807
3808 /**
3809  * security_sem_alloc() - Allocate a sysv semaphore LSM blob
3810  * @sma: sysv ipc permission structure
3811  *
3812  * Allocate and attach a security structure to the @sma security field. The
3813  * security field is initialized to NULL when the structure is first created.
3814  *
3815  * Return: Returns 0 if operation was successful and permission is granted.
3816  */
3817 int security_sem_alloc(struct kern_ipc_perm *sma)
3818 {
3819         int rc = lsm_ipc_alloc(sma);
3820
3821         if (unlikely(rc))
3822                 return rc;
3823         rc = call_int_hook(sem_alloc_security, 0, sma);
3824         if (unlikely(rc))
3825                 security_sem_free(sma);
3826         return rc;
3827 }
3828
3829 /**
3830  * security_sem_free() - Free a sysv semaphore LSM blob
3831  * @sma: sysv ipc permission structure
3832  *
3833  * Deallocate security structure @sma->security for the semaphore.
3834  */
3835 void security_sem_free(struct kern_ipc_perm *sma)
3836 {
3837         call_void_hook(sem_free_security, sma);
3838         kfree(sma->security);
3839         sma->security = NULL;
3840 }
3841
3842 /**
3843  * security_sem_associate() - Check if a sysv semaphore operation is allowed
3844  * @sma: sysv ipc permission structure
3845  * @semflg: operation flags
3846  *
3847  * Check permission when a semaphore is requested through the semget system
3848  * call. This hook is only called when returning the semaphore identifier for
3849  * an existing semaphore, not when a new one must be created.
3850  *
3851  * Return: Returns 0 if permission is granted.
3852  */
3853 int security_sem_associate(struct kern_ipc_perm *sma, int semflg)
3854 {
3855         return call_int_hook(sem_associate, 0, sma, semflg);
3856 }
3857
3858 /**
3859  * security_sem_semctl() - Check if a sysv semaphore operation is allowed
3860  * @sma: sysv ipc permission structure
3861  * @cmd: operation
3862  *
3863  * Check permission when a semaphore operation specified by @cmd is to be
3864  * performed on the semaphore.
3865  *
3866  * Return: Returns 0 if permission is granted.
3867  */
3868 int security_sem_semctl(struct kern_ipc_perm *sma, int cmd)
3869 {
3870         return call_int_hook(sem_semctl, 0, sma, cmd);
3871 }
3872
3873 /**
3874  * security_sem_semop() - Check if a sysv semaphore operation is allowed
3875  * @sma: sysv ipc permission structure
3876  * @sops: operations to perform
3877  * @nsops: number of operations
3878  * @alter: flag indicating changes will be made
3879  *
3880  * Check permissions before performing operations on members of the semaphore
3881  * set. If the @alter flag is nonzero, the semaphore set may be modified.
3882  *
3883  * Return: Returns 0 if permission is granted.
3884  */
3885 int security_sem_semop(struct kern_ipc_perm *sma, struct sembuf *sops,
3886                        unsigned nsops, int alter)
3887 {
3888         return call_int_hook(sem_semop, 0, sma, sops, nsops, alter);
3889 }
3890
3891 /**
3892  * security_d_instantiate() - Populate an inode's LSM state based on a dentry
3893  * @dentry: dentry
3894  * @inode: inode
3895  *
3896  * Fill in @inode security information for a @dentry if allowed.
3897  */
3898 void security_d_instantiate(struct dentry *dentry, struct inode *inode)
3899 {
3900         if (unlikely(inode && IS_PRIVATE(inode)))
3901                 return;
3902         call_void_hook(d_instantiate, dentry, inode);
3903 }
3904 EXPORT_SYMBOL(security_d_instantiate);
3905
3906 /*
3907  * Please keep this in sync with it's counterpart in security/lsm_syscalls.c
3908  */
3909
3910 /**
3911  * security_getselfattr - Read an LSM attribute of the current process.
3912  * @attr: which attribute to return
3913  * @uctx: the user-space destination for the information, or NULL
3914  * @size: pointer to the size of space available to receive the data
3915  * @flags: special handling options. LSM_FLAG_SINGLE indicates that only
3916  * attributes associated with the LSM identified in the passed @ctx be
3917  * reported.
3918  *
3919  * A NULL value for @uctx can be used to get both the number of attributes
3920  * and the size of the data.
3921  *
3922  * Returns the number of attributes found on success, negative value
3923  * on error. @size is reset to the total size of the data.
3924  * If @size is insufficient to contain the data -E2BIG is returned.
3925  */
3926 int security_getselfattr(unsigned int attr, struct lsm_ctx __user *uctx,
3927                          u32 __user *size, u32 flags)
3928 {
3929         struct security_hook_list *hp;
3930         struct lsm_ctx lctx = { .id = LSM_ID_UNDEF, };
3931         u8 __user *base = (u8 __user *)uctx;
3932         u32 entrysize;
3933         u32 total = 0;
3934         u32 left;
3935         bool toobig = false;
3936         bool single = false;
3937         int count = 0;
3938         int rc;
3939
3940         if (attr == LSM_ATTR_UNDEF)
3941                 return -EINVAL;
3942         if (size == NULL)
3943                 return -EINVAL;
3944         if (get_user(left, size))
3945                 return -EFAULT;
3946
3947         if (flags) {
3948                 /*
3949                  * Only flag supported is LSM_FLAG_SINGLE
3950                  */
3951                 if (flags != LSM_FLAG_SINGLE || !uctx)
3952                         return -EINVAL;
3953                 if (copy_from_user(&lctx, uctx, sizeof(lctx)))
3954                         return -EFAULT;
3955                 /*
3956                  * If the LSM ID isn't specified it is an error.
3957                  */
3958                 if (lctx.id == LSM_ID_UNDEF)
3959                         return -EINVAL;
3960                 single = true;
3961         }
3962
3963         /*
3964          * In the usual case gather all the data from the LSMs.
3965          * In the single case only get the data from the LSM specified.
3966          */
3967         hlist_for_each_entry(hp, &security_hook_heads.getselfattr, list) {
3968                 if (single && lctx.id != hp->lsmid->id)
3969                         continue;
3970                 entrysize = left;
3971                 if (base)
3972                         uctx = (struct lsm_ctx __user *)(base + total);
3973                 rc = hp->hook.getselfattr(attr, uctx, &entrysize, flags);
3974                 if (rc == -EOPNOTSUPP) {
3975                         rc = 0;
3976                         continue;
3977                 }
3978                 if (rc == -E2BIG) {
3979                         rc = 0;
3980                         left = 0;
3981                         toobig = true;
3982                 } else if (rc < 0)
3983                         return rc;
3984                 else
3985                         left -= entrysize;
3986
3987                 total += entrysize;
3988                 count += rc;
3989                 if (single)
3990                         break;
3991         }
3992         if (put_user(total, size))
3993                 return -EFAULT;
3994         if (toobig)
3995                 return -E2BIG;
3996         if (count == 0)
3997                 return LSM_RET_DEFAULT(getselfattr);
3998         return count;
3999 }
4000
4001 /*
4002  * Please keep this in sync with it's counterpart in security/lsm_syscalls.c
4003  */
4004
4005 /**
4006  * security_setselfattr - Set an LSM attribute on the current process.
4007  * @attr: which attribute to set
4008  * @uctx: the user-space source for the information
4009  * @size: the size of the data
4010  * @flags: reserved for future use, must be 0
4011  *
4012  * Set an LSM attribute for the current process. The LSM, attribute
4013  * and new value are included in @uctx.
4014  *
4015  * Returns 0 on success, -EINVAL if the input is inconsistent, -EFAULT
4016  * if the user buffer is inaccessible, E2BIG if size is too big, or an
4017  * LSM specific failure.
4018  */
4019 int security_setselfattr(unsigned int attr, struct lsm_ctx __user *uctx,
4020                          u32 size, u32 flags)
4021 {
4022         struct security_hook_list *hp;
4023         struct lsm_ctx *lctx;
4024         int rc = LSM_RET_DEFAULT(setselfattr);
4025         u64 required_len;
4026
4027         if (flags)
4028                 return -EINVAL;
4029         if (size < sizeof(*lctx))
4030                 return -EINVAL;
4031         if (size > PAGE_SIZE)
4032                 return -E2BIG;
4033
4034         lctx = memdup_user(uctx, size);
4035         if (IS_ERR(lctx))
4036                 return PTR_ERR(lctx);
4037
4038         if (size < lctx->len ||
4039             check_add_overflow(sizeof(*lctx), lctx->ctx_len, &required_len) ||
4040             lctx->len < required_len) {
4041                 rc = -EINVAL;
4042                 goto free_out;
4043         }
4044
4045         hlist_for_each_entry(hp, &security_hook_heads.setselfattr, list)
4046                 if ((hp->lsmid->id) == lctx->id) {
4047                         rc = hp->hook.setselfattr(attr, lctx, size, flags);
4048                         break;
4049                 }
4050
4051 free_out:
4052         kfree(lctx);
4053         return rc;
4054 }
4055
4056 /**
4057  * security_getprocattr() - Read an attribute for a task
4058  * @p: the task
4059  * @lsmid: LSM identification
4060  * @name: attribute name
4061  * @value: attribute value
4062  *
4063  * Read attribute @name for task @p and store it into @value if allowed.
4064  *
4065  * Return: Returns the length of @value on success, a negative value otherwise.
4066  */
4067 int security_getprocattr(struct task_struct *p, int lsmid, const char *name,
4068                          char **value)
4069 {
4070         struct security_hook_list *hp;
4071
4072         hlist_for_each_entry(hp, &security_hook_heads.getprocattr, list) {
4073                 if (lsmid != 0 && lsmid != hp->lsmid->id)
4074                         continue;
4075                 return hp->hook.getprocattr(p, name, value);
4076         }
4077         return LSM_RET_DEFAULT(getprocattr);
4078 }
4079
4080 /**
4081  * security_setprocattr() - Set an attribute for a task
4082  * @lsmid: LSM identification
4083  * @name: attribute name
4084  * @value: attribute value
4085  * @size: attribute value size
4086  *
4087  * Write (set) the current task's attribute @name to @value, size @size if
4088  * allowed.
4089  *
4090  * Return: Returns bytes written on success, a negative value otherwise.
4091  */
4092 int security_setprocattr(int lsmid, const char *name, void *value, size_t size)
4093 {
4094         struct security_hook_list *hp;
4095
4096         hlist_for_each_entry(hp, &security_hook_heads.setprocattr, list) {
4097                 if (lsmid != 0 && lsmid != hp->lsmid->id)
4098                         continue;
4099                 return hp->hook.setprocattr(name, value, size);
4100         }
4101         return LSM_RET_DEFAULT(setprocattr);
4102 }
4103
4104 /**
4105  * security_netlink_send() - Save info and check if netlink sending is allowed
4106  * @sk: sending socket
4107  * @skb: netlink message
4108  *
4109  * Save security information for a netlink message so that permission checking
4110  * can be performed when the message is processed.  The security information
4111  * can be saved using the eff_cap field of the netlink_skb_parms structure.
4112  * Also may be used to provide fine grained control over message transmission.
4113  *
4114  * Return: Returns 0 if the information was successfully saved and message is
4115  *         allowed to be transmitted.
4116  */
4117 int security_netlink_send(struct sock *sk, struct sk_buff *skb)
4118 {
4119         return call_int_hook(netlink_send, 0, sk, skb);
4120 }
4121
4122 /**
4123  * security_ismaclabel() - Check is the named attribute is a MAC label
4124  * @name: full extended attribute name
4125  *
4126  * Check if the extended attribute specified by @name represents a MAC label.
4127  *
4128  * Return: Returns 1 if name is a MAC attribute otherwise returns 0.
4129  */
4130 int security_ismaclabel(const char *name)
4131 {
4132         return call_int_hook(ismaclabel, 0, name);
4133 }
4134 EXPORT_SYMBOL(security_ismaclabel);
4135
4136 /**
4137  * security_secid_to_secctx() - Convert a secid to a secctx
4138  * @secid: secid
4139  * @secdata: secctx
4140  * @seclen: secctx length
4141  *
4142  * Convert secid to security context.  If @secdata is NULL the length of the
4143  * result will be returned in @seclen, but no @secdata will be returned.  This
4144  * does mean that the length could change between calls to check the length and
4145  * the next call which actually allocates and returns the @secdata.
4146  *
4147  * Return: Return 0 on success, error on failure.
4148  */
4149 int security_secid_to_secctx(u32 secid, char **secdata, u32 *seclen)
4150 {
4151         struct security_hook_list *hp;
4152         int rc;
4153
4154         /*
4155          * Currently, only one LSM can implement secid_to_secctx (i.e this
4156          * LSM hook is not "stackable").
4157          */
4158         hlist_for_each_entry(hp, &security_hook_heads.secid_to_secctx, list) {
4159                 rc = hp->hook.secid_to_secctx(secid, secdata, seclen);
4160                 if (rc != LSM_RET_DEFAULT(secid_to_secctx))
4161                         return rc;
4162         }
4163
4164         return LSM_RET_DEFAULT(secid_to_secctx);
4165 }
4166 EXPORT_SYMBOL(security_secid_to_secctx);
4167
4168 /**
4169  * security_secctx_to_secid() - Convert a secctx to a secid
4170  * @secdata: secctx
4171  * @seclen: length of secctx
4172  * @secid: secid
4173  *
4174  * Convert security context to secid.
4175  *
4176  * Return: Returns 0 on success, error on failure.
4177  */
4178 int security_secctx_to_secid(const char *secdata, u32 seclen, u32 *secid)
4179 {
4180         *secid = 0;
4181         return call_int_hook(secctx_to_secid, 0, secdata, seclen, secid);
4182 }
4183 EXPORT_SYMBOL(security_secctx_to_secid);
4184
4185 /**
4186  * security_release_secctx() - Free a secctx buffer
4187  * @secdata: secctx
4188  * @seclen: length of secctx
4189  *
4190  * Release the security context.
4191  */
4192 void security_release_secctx(char *secdata, u32 seclen)
4193 {
4194         call_void_hook(release_secctx, secdata, seclen);
4195 }
4196 EXPORT_SYMBOL(security_release_secctx);
4197
4198 /**
4199  * security_inode_invalidate_secctx() - Invalidate an inode's security label
4200  * @inode: inode
4201  *
4202  * Notify the security module that it must revalidate the security context of
4203  * an inode.
4204  */
4205 void security_inode_invalidate_secctx(struct inode *inode)
4206 {
4207         call_void_hook(inode_invalidate_secctx, inode);
4208 }
4209 EXPORT_SYMBOL(security_inode_invalidate_secctx);
4210
4211 /**
4212  * security_inode_notifysecctx() - Notify the LSM of an inode's security label
4213  * @inode: inode
4214  * @ctx: secctx
4215  * @ctxlen: length of secctx
4216  *
4217  * Notify the security module of what the security context of an inode should
4218  * be.  Initializes the incore security context managed by the security module
4219  * for this inode.  Example usage: NFS client invokes this hook to initialize
4220  * the security context in its incore inode to the value provided by the server
4221  * for the file when the server returned the file's attributes to the client.
4222  * Must be called with inode->i_mutex locked.
4223  *
4224  * Return: Returns 0 on success, error on failure.
4225  */
4226 int security_inode_notifysecctx(struct inode *inode, void *ctx, u32 ctxlen)
4227 {
4228         return call_int_hook(inode_notifysecctx, 0, inode, ctx, ctxlen);
4229 }
4230 EXPORT_SYMBOL(security_inode_notifysecctx);
4231
4232 /**
4233  * security_inode_setsecctx() - Change the security label of an inode
4234  * @dentry: inode
4235  * @ctx: secctx
4236  * @ctxlen: length of secctx
4237  *
4238  * Change the security context of an inode.  Updates the incore security
4239  * context managed by the security module and invokes the fs code as needed
4240  * (via __vfs_setxattr_noperm) to update any backing xattrs that represent the
4241  * context.  Example usage: NFS server invokes this hook to change the security
4242  * context in its incore inode and on the backing filesystem to a value
4243  * provided by the client on a SETATTR operation.  Must be called with
4244  * inode->i_mutex locked.
4245  *
4246  * Return: Returns 0 on success, error on failure.
4247  */
4248 int security_inode_setsecctx(struct dentry *dentry, void *ctx, u32 ctxlen)
4249 {
4250         return call_int_hook(inode_setsecctx, 0, dentry, ctx, ctxlen);
4251 }
4252 EXPORT_SYMBOL(security_inode_setsecctx);
4253
4254 /**
4255  * security_inode_getsecctx() - Get the security label of an inode
4256  * @inode: inode
4257  * @ctx: secctx
4258  * @ctxlen: length of secctx
4259  *
4260  * On success, returns 0 and fills out @ctx and @ctxlen with the security
4261  * context for the given @inode.
4262  *
4263  * Return: Returns 0 on success, error on failure.
4264  */
4265 int security_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
4266 {
4267         struct security_hook_list *hp;
4268         int rc;
4269
4270         /*
4271          * Only one module will provide a security context.
4272          */
4273         hlist_for_each_entry(hp, &security_hook_heads.inode_getsecctx, list) {
4274                 rc = hp->hook.inode_getsecctx(inode, ctx, ctxlen);
4275                 if (rc != LSM_RET_DEFAULT(inode_getsecctx))
4276                         return rc;
4277         }
4278
4279         return LSM_RET_DEFAULT(inode_getsecctx);
4280 }
4281 EXPORT_SYMBOL(security_inode_getsecctx);
4282
4283 #ifdef CONFIG_WATCH_QUEUE
4284 /**
4285  * security_post_notification() - Check if a watch notification can be posted
4286  * @w_cred: credentials of the task that set the watch
4287  * @cred: credentials of the task which triggered the watch
4288  * @n: the notification
4289  *
4290  * Check to see if a watch notification can be posted to a particular queue.
4291  *
4292  * Return: Returns 0 if permission is granted.
4293  */
4294 int security_post_notification(const struct cred *w_cred,
4295                                const struct cred *cred,
4296                                struct watch_notification *n)
4297 {
4298         return call_int_hook(post_notification, 0, w_cred, cred, n);
4299 }
4300 #endif /* CONFIG_WATCH_QUEUE */
4301
4302 #ifdef CONFIG_KEY_NOTIFICATIONS
4303 /**
4304  * security_watch_key() - Check if a task is allowed to watch for key events
4305  * @key: the key to watch
4306  *
4307  * Check to see if a process is allowed to watch for event notifications from
4308  * a key or keyring.
4309  *
4310  * Return: Returns 0 if permission is granted.
4311  */
4312 int security_watch_key(struct key *key)
4313 {
4314         return call_int_hook(watch_key, 0, key);
4315 }
4316 #endif /* CONFIG_KEY_NOTIFICATIONS */
4317
4318 #ifdef CONFIG_SECURITY_NETWORK
4319 /**
4320  * security_unix_stream_connect() - Check if a AF_UNIX stream is allowed
4321  * @sock: originating sock
4322  * @other: peer sock
4323  * @newsk: new sock
4324  *
4325  * Check permissions before establishing a Unix domain stream connection
4326  * between @sock and @other.
4327  *
4328  * The @unix_stream_connect and @unix_may_send hooks were necessary because
4329  * Linux provides an alternative to the conventional file name space for Unix
4330  * domain sockets.  Whereas binding and connecting to sockets in the file name
4331  * space is mediated by the typical file permissions (and caught by the mknod
4332  * and permission hooks in inode_security_ops), binding and connecting to
4333  * sockets in the abstract name space is completely unmediated.  Sufficient
4334  * control of Unix domain sockets in the abstract name space isn't possible
4335  * using only the socket layer hooks, since we need to know the actual target
4336  * socket, which is not looked up until we are inside the af_unix code.
4337  *
4338  * Return: Returns 0 if permission is granted.
4339  */
4340 int security_unix_stream_connect(struct sock *sock, struct sock *other,
4341                                  struct sock *newsk)
4342 {
4343         return call_int_hook(unix_stream_connect, 0, sock, other, newsk);
4344 }
4345 EXPORT_SYMBOL(security_unix_stream_connect);
4346
4347 /**
4348  * security_unix_may_send() - Check if AF_UNIX socket can send datagrams
4349  * @sock: originating sock
4350  * @other: peer sock
4351  *
4352  * Check permissions before connecting or sending datagrams from @sock to
4353  * @other.
4354  *
4355  * The @unix_stream_connect and @unix_may_send hooks were necessary because
4356  * Linux provides an alternative to the conventional file name space for Unix
4357  * domain sockets.  Whereas binding and connecting to sockets in the file name
4358  * space is mediated by the typical file permissions (and caught by the mknod
4359  * and permission hooks in inode_security_ops), binding and connecting to
4360  * sockets in the abstract name space is completely unmediated.  Sufficient
4361  * control of Unix domain sockets in the abstract name space isn't possible
4362  * using only the socket layer hooks, since we need to know the actual target
4363  * socket, which is not looked up until we are inside the af_unix code.
4364  *
4365  * Return: Returns 0 if permission is granted.
4366  */
4367 int security_unix_may_send(struct socket *sock,  struct socket *other)
4368 {
4369         return call_int_hook(unix_may_send, 0, sock, other);
4370 }
4371 EXPORT_SYMBOL(security_unix_may_send);
4372
4373 /**
4374  * security_socket_create() - Check if creating a new socket is allowed
4375  * @family: protocol family
4376  * @type: communications type
4377  * @protocol: requested protocol
4378  * @kern: set to 1 if a kernel socket is requested
4379  *
4380  * Check permissions prior to creating a new socket.
4381  *
4382  * Return: Returns 0 if permission is granted.
4383  */
4384 int security_socket_create(int family, int type, int protocol, int kern)
4385 {
4386         return call_int_hook(socket_create, 0, family, type, protocol, kern);
4387 }
4388
4389 /**
4390  * security_socket_post_create() - Initialize a newly created socket
4391  * @sock: socket
4392  * @family: protocol family
4393  * @type: communications type
4394  * @protocol: requested protocol
4395  * @kern: set to 1 if a kernel socket is requested
4396  *
4397  * This hook allows a module to update or allocate a per-socket security
4398  * structure. Note that the security field was not added directly to the socket
4399  * structure, but rather, the socket security information is stored in the
4400  * associated inode.  Typically, the inode alloc_security hook will allocate
4401  * and attach security information to SOCK_INODE(sock)->i_security.  This hook
4402  * may be used to update the SOCK_INODE(sock)->i_security field with additional
4403  * information that wasn't available when the inode was allocated.
4404  *
4405  * Return: Returns 0 if permission is granted.
4406  */
4407 int security_socket_post_create(struct socket *sock, int family,
4408                                 int type, int protocol, int kern)
4409 {
4410         return call_int_hook(socket_post_create, 0, sock, family, type,
4411                              protocol, kern);
4412 }
4413
4414 /**
4415  * security_socket_socketpair() - Check if creating a socketpair is allowed
4416  * @socka: first socket
4417  * @sockb: second socket
4418  *
4419  * Check permissions before creating a fresh pair of sockets.
4420  *
4421  * Return: Returns 0 if permission is granted and the connection was
4422  *         established.
4423  */
4424 int security_socket_socketpair(struct socket *socka, struct socket *sockb)
4425 {
4426         return call_int_hook(socket_socketpair, 0, socka, sockb);
4427 }
4428 EXPORT_SYMBOL(security_socket_socketpair);
4429
4430 /**
4431  * security_socket_bind() - Check if a socket bind operation is allowed
4432  * @sock: socket
4433  * @address: requested bind address
4434  * @addrlen: length of address
4435  *
4436  * Check permission before socket protocol layer bind operation is performed
4437  * and the socket @sock is bound to the address specified in the @address
4438  * parameter.
4439  *
4440  * Return: Returns 0 if permission is granted.
4441  */
4442 int security_socket_bind(struct socket *sock,
4443                          struct sockaddr *address, int addrlen)
4444 {
4445         return call_int_hook(socket_bind, 0, sock, address, addrlen);
4446 }
4447
4448 /**
4449  * security_socket_connect() - Check if a socket connect operation is allowed
4450  * @sock: socket
4451  * @address: address of remote connection point
4452  * @addrlen: length of address
4453  *
4454  * Check permission before socket protocol layer connect operation attempts to
4455  * connect socket @sock to a remote address, @address.
4456  *
4457  * Return: Returns 0 if permission is granted.
4458  */
4459 int security_socket_connect(struct socket *sock,
4460                             struct sockaddr *address, int addrlen)
4461 {
4462         return call_int_hook(socket_connect, 0, sock, address, addrlen);
4463 }
4464
4465 /**
4466  * security_socket_listen() - Check if a socket is allowed to listen
4467  * @sock: socket
4468  * @backlog: connection queue size
4469  *
4470  * Check permission before socket protocol layer listen operation.
4471  *
4472  * Return: Returns 0 if permission is granted.
4473  */
4474 int security_socket_listen(struct socket *sock, int backlog)
4475 {
4476         return call_int_hook(socket_listen, 0, sock, backlog);
4477 }
4478
4479 /**
4480  * security_socket_accept() - Check if a socket is allowed to accept connections
4481  * @sock: listening socket
4482  * @newsock: newly creation connection socket
4483  *
4484  * Check permission before accepting a new connection.  Note that the new
4485  * socket, @newsock, has been created and some information copied to it, but
4486  * the accept operation has not actually been performed.
4487  *
4488  * Return: Returns 0 if permission is granted.
4489  */
4490 int security_socket_accept(struct socket *sock, struct socket *newsock)
4491 {
4492         return call_int_hook(socket_accept, 0, sock, newsock);
4493 }
4494
4495 /**
4496  * security_socket_sendmsg() - Check is sending a message is allowed
4497  * @sock: sending socket
4498  * @msg: message to send
4499  * @size: size of message
4500  *
4501  * Check permission before transmitting a message to another socket.
4502  *
4503  * Return: Returns 0 if permission is granted.
4504  */
4505 int security_socket_sendmsg(struct socket *sock, struct msghdr *msg, int size)
4506 {
4507         return call_int_hook(socket_sendmsg, 0, sock, msg, size);
4508 }
4509
4510 /**
4511  * security_socket_recvmsg() - Check if receiving a message is allowed
4512  * @sock: receiving socket
4513  * @msg: message to receive
4514  * @size: size of message
4515  * @flags: operational flags
4516  *
4517  * Check permission before receiving a message from a socket.
4518  *
4519  * Return: Returns 0 if permission is granted.
4520  */
4521 int security_socket_recvmsg(struct socket *sock, struct msghdr *msg,
4522                             int size, int flags)
4523 {
4524         return call_int_hook(socket_recvmsg, 0, sock, msg, size, flags);
4525 }
4526
4527 /**
4528  * security_socket_getsockname() - Check if reading the socket addr is allowed
4529  * @sock: socket
4530  *
4531  * Check permission before reading the local address (name) of the socket
4532  * object.
4533  *
4534  * Return: Returns 0 if permission is granted.
4535  */
4536 int security_socket_getsockname(struct socket *sock)
4537 {
4538         return call_int_hook(socket_getsockname, 0, sock);
4539 }
4540
4541 /**
4542  * security_socket_getpeername() - Check if reading the peer's addr is allowed
4543  * @sock: socket
4544  *
4545  * Check permission before the remote address (name) of a socket object.
4546  *
4547  * Return: Returns 0 if permission is granted.
4548  */
4549 int security_socket_getpeername(struct socket *sock)
4550 {
4551         return call_int_hook(socket_getpeername, 0, sock);
4552 }
4553
4554 /**
4555  * security_socket_getsockopt() - Check if reading a socket option is allowed
4556  * @sock: socket
4557  * @level: option's protocol level
4558  * @optname: option name
4559  *
4560  * Check permissions before retrieving the options associated with socket
4561  * @sock.
4562  *
4563  * Return: Returns 0 if permission is granted.
4564  */
4565 int security_socket_getsockopt(struct socket *sock, int level, int optname)
4566 {
4567         return call_int_hook(socket_getsockopt, 0, sock, level, optname);
4568 }
4569
4570 /**
4571  * security_socket_setsockopt() - Check if setting a socket option is allowed
4572  * @sock: socket
4573  * @level: option's protocol level
4574  * @optname: option name
4575  *
4576  * Check permissions before setting the options associated with socket @sock.
4577  *
4578  * Return: Returns 0 if permission is granted.
4579  */
4580 int security_socket_setsockopt(struct socket *sock, int level, int optname)
4581 {
4582         return call_int_hook(socket_setsockopt, 0, sock, level, optname);
4583 }
4584
4585 /**
4586  * security_socket_shutdown() - Checks if shutting down the socket is allowed
4587  * @sock: socket
4588  * @how: flag indicating how sends and receives are handled
4589  *
4590  * Checks permission before all or part of a connection on the socket @sock is
4591  * shut down.
4592  *
4593  * Return: Returns 0 if permission is granted.
4594  */
4595 int security_socket_shutdown(struct socket *sock, int how)
4596 {
4597         return call_int_hook(socket_shutdown, 0, sock, how);
4598 }
4599
4600 /**
4601  * security_sock_rcv_skb() - Check if an incoming network packet is allowed
4602  * @sk: destination sock
4603  * @skb: incoming packet
4604  *
4605  * Check permissions on incoming network packets.  This hook is distinct from
4606  * Netfilter's IP input hooks since it is the first time that the incoming
4607  * sk_buff @skb has been associated with a particular socket, @sk.  Must not
4608  * sleep inside this hook because some callers hold spinlocks.
4609  *
4610  * Return: Returns 0 if permission is granted.
4611  */
4612 int security_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
4613 {
4614         return call_int_hook(socket_sock_rcv_skb, 0, sk, skb);
4615 }
4616 EXPORT_SYMBOL(security_sock_rcv_skb);
4617
4618 /**
4619  * security_socket_getpeersec_stream() - Get the remote peer label
4620  * @sock: socket
4621  * @optval: destination buffer
4622  * @optlen: size of peer label copied into the buffer
4623  * @len: maximum size of the destination buffer
4624  *
4625  * This hook allows the security module to provide peer socket security state
4626  * for unix or connected tcp sockets to userspace via getsockopt SO_GETPEERSEC.
4627  * For tcp sockets this can be meaningful if the socket is associated with an
4628  * ipsec SA.
4629  *
4630  * Return: Returns 0 if all is well, otherwise, typical getsockopt return
4631  *         values.
4632  */
4633 int security_socket_getpeersec_stream(struct socket *sock, sockptr_t optval,
4634                                       sockptr_t optlen, unsigned int len)
4635 {
4636         struct security_hook_list *hp;
4637         int rc;
4638
4639         /*
4640          * Only one module will provide a security context.
4641          */
4642         hlist_for_each_entry(hp, &security_hook_heads.socket_getpeersec_stream,
4643                              list) {
4644                 rc = hp->hook.socket_getpeersec_stream(sock, optval, optlen,
4645                                                        len);
4646                 if (rc != LSM_RET_DEFAULT(socket_getpeersec_stream))
4647                         return rc;
4648         }
4649         return LSM_RET_DEFAULT(socket_getpeersec_stream);
4650 }
4651
4652 /**
4653  * security_socket_getpeersec_dgram() - Get the remote peer label
4654  * @sock: socket
4655  * @skb: datagram packet
4656  * @secid: remote peer label secid
4657  *
4658  * This hook allows the security module to provide peer socket security state
4659  * for udp sockets on a per-packet basis to userspace via getsockopt
4660  * SO_GETPEERSEC. The application must first have indicated the IP_PASSSEC
4661  * option via getsockopt. It can then retrieve the security state returned by
4662  * this hook for a packet via the SCM_SECURITY ancillary message type.
4663  *
4664  * Return: Returns 0 on success, error on failure.
4665  */
4666 int security_socket_getpeersec_dgram(struct socket *sock,
4667                                      struct sk_buff *skb, u32 *secid)
4668 {
4669         struct security_hook_list *hp;
4670         int rc;
4671
4672         /*
4673          * Only one module will provide a security context.
4674          */
4675         hlist_for_each_entry(hp, &security_hook_heads.socket_getpeersec_dgram,
4676                              list) {
4677                 rc = hp->hook.socket_getpeersec_dgram(sock, skb, secid);
4678                 if (rc != LSM_RET_DEFAULT(socket_getpeersec_dgram))
4679                         return rc;
4680         }
4681         return LSM_RET_DEFAULT(socket_getpeersec_dgram);
4682 }
4683 EXPORT_SYMBOL(security_socket_getpeersec_dgram);
4684
4685 /**
4686  * security_sk_alloc() - Allocate and initialize a sock's LSM blob
4687  * @sk: sock
4688  * @family: protocol family
4689  * @priority: gfp flags
4690  *
4691  * Allocate and attach a security structure to the sk->sk_security field, which
4692  * is used to copy security attributes between local stream sockets.
4693  *
4694  * Return: Returns 0 on success, error on failure.
4695  */
4696 int security_sk_alloc(struct sock *sk, int family, gfp_t priority)
4697 {
4698         return call_int_hook(sk_alloc_security, 0, sk, family, priority);
4699 }
4700
4701 /**
4702  * security_sk_free() - Free the sock's LSM blob
4703  * @sk: sock
4704  *
4705  * Deallocate security structure.
4706  */
4707 void security_sk_free(struct sock *sk)
4708 {
4709         call_void_hook(sk_free_security, sk);
4710 }
4711
4712 /**
4713  * security_sk_clone() - Clone a sock's LSM state
4714  * @sk: original sock
4715  * @newsk: target sock
4716  *
4717  * Clone/copy security structure.
4718  */
4719 void security_sk_clone(const struct sock *sk, struct sock *newsk)
4720 {
4721         call_void_hook(sk_clone_security, sk, newsk);
4722 }
4723 EXPORT_SYMBOL(security_sk_clone);
4724
4725 /**
4726  * security_sk_classify_flow() - Set a flow's secid based on socket
4727  * @sk: original socket
4728  * @flic: target flow
4729  *
4730  * Set the target flow's secid to socket's secid.
4731  */
4732 void security_sk_classify_flow(const struct sock *sk, struct flowi_common *flic)
4733 {
4734         call_void_hook(sk_getsecid, sk, &flic->flowic_secid);
4735 }
4736 EXPORT_SYMBOL(security_sk_classify_flow);
4737
4738 /**
4739  * security_req_classify_flow() - Set a flow's secid based on request_sock
4740  * @req: request_sock
4741  * @flic: target flow
4742  *
4743  * Sets @flic's secid to @req's secid.
4744  */
4745 void security_req_classify_flow(const struct request_sock *req,
4746                                 struct flowi_common *flic)
4747 {
4748         call_void_hook(req_classify_flow, req, flic);
4749 }
4750 EXPORT_SYMBOL(security_req_classify_flow);
4751
4752 /**
4753  * security_sock_graft() - Reconcile LSM state when grafting a sock on a socket
4754  * @sk: sock being grafted
4755  * @parent: target parent socket
4756  *
4757  * Sets @parent's inode secid to @sk's secid and update @sk with any necessary
4758  * LSM state from @parent.
4759  */
4760 void security_sock_graft(struct sock *sk, struct socket *parent)
4761 {
4762         call_void_hook(sock_graft, sk, parent);
4763 }
4764 EXPORT_SYMBOL(security_sock_graft);
4765
4766 /**
4767  * security_inet_conn_request() - Set request_sock state using incoming connect
4768  * @sk: parent listening sock
4769  * @skb: incoming connection
4770  * @req: new request_sock
4771  *
4772  * Initialize the @req LSM state based on @sk and the incoming connect in @skb.
4773  *
4774  * Return: Returns 0 if permission is granted.
4775  */
4776 int security_inet_conn_request(const struct sock *sk,
4777                                struct sk_buff *skb, struct request_sock *req)
4778 {
4779         return call_int_hook(inet_conn_request, 0, sk, skb, req);
4780 }
4781 EXPORT_SYMBOL(security_inet_conn_request);
4782
4783 /**
4784  * security_inet_csk_clone() - Set new sock LSM state based on request_sock
4785  * @newsk: new sock
4786  * @req: connection request_sock
4787  *
4788  * Set that LSM state of @sock using the LSM state from @req.
4789  */
4790 void security_inet_csk_clone(struct sock *newsk,
4791                              const struct request_sock *req)
4792 {
4793         call_void_hook(inet_csk_clone, newsk, req);
4794 }
4795
4796 /**
4797  * security_inet_conn_established() - Update sock's LSM state with connection
4798  * @sk: sock
4799  * @skb: connection packet
4800  *
4801  * Update @sock's LSM state to represent a new connection from @skb.
4802  */
4803 void security_inet_conn_established(struct sock *sk,
4804                                     struct sk_buff *skb)
4805 {
4806         call_void_hook(inet_conn_established, sk, skb);
4807 }
4808 EXPORT_SYMBOL(security_inet_conn_established);
4809
4810 /**
4811  * security_secmark_relabel_packet() - Check if setting a secmark is allowed
4812  * @secid: new secmark value
4813  *
4814  * Check if the process should be allowed to relabel packets to @secid.
4815  *
4816  * Return: Returns 0 if permission is granted.
4817  */
4818 int security_secmark_relabel_packet(u32 secid)
4819 {
4820         return call_int_hook(secmark_relabel_packet, 0, secid);
4821 }
4822 EXPORT_SYMBOL(security_secmark_relabel_packet);
4823
4824 /**
4825  * security_secmark_refcount_inc() - Increment the secmark labeling rule count
4826  *
4827  * Tells the LSM to increment the number of secmark labeling rules loaded.
4828  */
4829 void security_secmark_refcount_inc(void)
4830 {
4831         call_void_hook(secmark_refcount_inc);
4832 }
4833 EXPORT_SYMBOL(security_secmark_refcount_inc);
4834
4835 /**
4836  * security_secmark_refcount_dec() - Decrement the secmark labeling rule count
4837  *
4838  * Tells the LSM to decrement the number of secmark labeling rules loaded.
4839  */
4840 void security_secmark_refcount_dec(void)
4841 {
4842         call_void_hook(secmark_refcount_dec);
4843 }
4844 EXPORT_SYMBOL(security_secmark_refcount_dec);
4845
4846 /**
4847  * security_tun_dev_alloc_security() - Allocate a LSM blob for a TUN device
4848  * @security: pointer to the LSM blob
4849  *
4850  * This hook allows a module to allocate a security structure for a TUN device,
4851  * returning the pointer in @security.
4852  *
4853  * Return: Returns a zero on success, negative values on failure.
4854  */
4855 int security_tun_dev_alloc_security(void **security)
4856 {
4857         return call_int_hook(tun_dev_alloc_security, 0, security);
4858 }
4859 EXPORT_SYMBOL(security_tun_dev_alloc_security);
4860
4861 /**
4862  * security_tun_dev_free_security() - Free a TUN device LSM blob
4863  * @security: LSM blob
4864  *
4865  * This hook allows a module to free the security structure for a TUN device.
4866  */
4867 void security_tun_dev_free_security(void *security)
4868 {
4869         call_void_hook(tun_dev_free_security, security);
4870 }
4871 EXPORT_SYMBOL(security_tun_dev_free_security);
4872
4873 /**
4874  * security_tun_dev_create() - Check if creating a TUN device is allowed
4875  *
4876  * Check permissions prior to creating a new TUN device.
4877  *
4878  * Return: Returns 0 if permission is granted.
4879  */
4880 int security_tun_dev_create(void)
4881 {
4882         return call_int_hook(tun_dev_create, 0);
4883 }
4884 EXPORT_SYMBOL(security_tun_dev_create);
4885
4886 /**
4887  * security_tun_dev_attach_queue() - Check if attaching a TUN queue is allowed
4888  * @security: TUN device LSM blob
4889  *
4890  * Check permissions prior to attaching to a TUN device queue.
4891  *
4892  * Return: Returns 0 if permission is granted.
4893  */
4894 int security_tun_dev_attach_queue(void *security)
4895 {
4896         return call_int_hook(tun_dev_attach_queue, 0, security);
4897 }
4898 EXPORT_SYMBOL(security_tun_dev_attach_queue);
4899
4900 /**
4901  * security_tun_dev_attach() - Update TUN device LSM state on attach
4902  * @sk: associated sock
4903  * @security: TUN device LSM blob
4904  *
4905  * This hook can be used by the module to update any security state associated
4906  * with the TUN device's sock structure.
4907  *
4908  * Return: Returns 0 if permission is granted.
4909  */
4910 int security_tun_dev_attach(struct sock *sk, void *security)
4911 {
4912         return call_int_hook(tun_dev_attach, 0, sk, security);
4913 }
4914 EXPORT_SYMBOL(security_tun_dev_attach);
4915
4916 /**
4917  * security_tun_dev_open() - Update TUN device LSM state on open
4918  * @security: TUN device LSM blob
4919  *
4920  * This hook can be used by the module to update any security state associated
4921  * with the TUN device's security structure.
4922  *
4923  * Return: Returns 0 if permission is granted.
4924  */
4925 int security_tun_dev_open(void *security)
4926 {
4927         return call_int_hook(tun_dev_open, 0, security);
4928 }
4929 EXPORT_SYMBOL(security_tun_dev_open);
4930
4931 /**
4932  * security_sctp_assoc_request() - Update the LSM on a SCTP association req
4933  * @asoc: SCTP association
4934  * @skb: packet requesting the association
4935  *
4936  * Passes the @asoc and @chunk->skb of the association INIT packet to the LSM.
4937  *
4938  * Return: Returns 0 on success, error on failure.
4939  */
4940 int security_sctp_assoc_request(struct sctp_association *asoc,
4941                                 struct sk_buff *skb)
4942 {
4943         return call_int_hook(sctp_assoc_request, 0, asoc, skb);
4944 }
4945 EXPORT_SYMBOL(security_sctp_assoc_request);
4946
4947 /**
4948  * security_sctp_bind_connect() - Validate a list of addrs for a SCTP option
4949  * @sk: socket
4950  * @optname: SCTP option to validate
4951  * @address: list of IP addresses to validate
4952  * @addrlen: length of the address list
4953  *
4954  * Validiate permissions required for each address associated with sock @sk.
4955  * Depending on @optname, the addresses will be treated as either a connect or
4956  * bind service. The @addrlen is calculated on each IPv4 and IPv6 address using
4957  * sizeof(struct sockaddr_in) or sizeof(struct sockaddr_in6).
4958  *
4959  * Return: Returns 0 on success, error on failure.
4960  */
4961 int security_sctp_bind_connect(struct sock *sk, int optname,
4962                                struct sockaddr *address, int addrlen)
4963 {
4964         return call_int_hook(sctp_bind_connect, 0, sk, optname,
4965                              address, addrlen);
4966 }
4967 EXPORT_SYMBOL(security_sctp_bind_connect);
4968
4969 /**
4970  * security_sctp_sk_clone() - Clone a SCTP sock's LSM state
4971  * @asoc: SCTP association
4972  * @sk: original sock
4973  * @newsk: target sock
4974  *
4975  * Called whenever a new socket is created by accept(2) (i.e. a TCP style
4976  * socket) or when a socket is 'peeled off' e.g userspace calls
4977  * sctp_peeloff(3).
4978  */
4979 void security_sctp_sk_clone(struct sctp_association *asoc, struct sock *sk,
4980                             struct sock *newsk)
4981 {
4982         call_void_hook(sctp_sk_clone, asoc, sk, newsk);
4983 }
4984 EXPORT_SYMBOL(security_sctp_sk_clone);
4985
4986 /**
4987  * security_sctp_assoc_established() - Update LSM state when assoc established
4988  * @asoc: SCTP association
4989  * @skb: packet establishing the association
4990  *
4991  * Passes the @asoc and @chunk->skb of the association COOKIE_ACK packet to the
4992  * security module.
4993  *
4994  * Return: Returns 0 if permission is granted.
4995  */
4996 int security_sctp_assoc_established(struct sctp_association *asoc,
4997                                     struct sk_buff *skb)
4998 {
4999         return call_int_hook(sctp_assoc_established, 0, asoc, skb);
5000 }
5001 EXPORT_SYMBOL(security_sctp_assoc_established);
5002
5003 /**
5004  * security_mptcp_add_subflow() - Inherit the LSM label from the MPTCP socket
5005  * @sk: the owning MPTCP socket
5006  * @ssk: the new subflow
5007  *
5008  * Update the labeling for the given MPTCP subflow, to match the one of the
5009  * owning MPTCP socket. This hook has to be called after the socket creation and
5010  * initialization via the security_socket_create() and
5011  * security_socket_post_create() LSM hooks.
5012  *
5013  * Return: Returns 0 on success or a negative error code on failure.
5014  */
5015 int security_mptcp_add_subflow(struct sock *sk, struct sock *ssk)
5016 {
5017         return call_int_hook(mptcp_add_subflow, 0, sk, ssk);
5018 }
5019
5020 #endif  /* CONFIG_SECURITY_NETWORK */
5021
5022 #ifdef CONFIG_SECURITY_INFINIBAND
5023 /**
5024  * security_ib_pkey_access() - Check if access to an IB pkey is allowed
5025  * @sec: LSM blob
5026  * @subnet_prefix: subnet prefix of the port
5027  * @pkey: IB pkey
5028  *
5029  * Check permission to access a pkey when modifying a QP.
5030  *
5031  * Return: Returns 0 if permission is granted.
5032  */
5033 int security_ib_pkey_access(void *sec, u64 subnet_prefix, u16 pkey)
5034 {
5035         return call_int_hook(ib_pkey_access, 0, sec, subnet_prefix, pkey);
5036 }
5037 EXPORT_SYMBOL(security_ib_pkey_access);
5038
5039 /**
5040  * security_ib_endport_manage_subnet() - Check if SMPs traffic is allowed
5041  * @sec: LSM blob
5042  * @dev_name: IB device name
5043  * @port_num: port number
5044  *
5045  * Check permissions to send and receive SMPs on a end port.
5046  *
5047  * Return: Returns 0 if permission is granted.
5048  */
5049 int security_ib_endport_manage_subnet(void *sec,
5050                                       const char *dev_name, u8 port_num)
5051 {
5052         return call_int_hook(ib_endport_manage_subnet, 0, sec,
5053                              dev_name, port_num);
5054 }
5055 EXPORT_SYMBOL(security_ib_endport_manage_subnet);
5056
5057 /**
5058  * security_ib_alloc_security() - Allocate an Infiniband LSM blob
5059  * @sec: LSM blob
5060  *
5061  * Allocate a security structure for Infiniband objects.
5062  *
5063  * Return: Returns 0 on success, non-zero on failure.
5064  */
5065 int security_ib_alloc_security(void **sec)
5066 {
5067         return call_int_hook(ib_alloc_security, 0, sec);
5068 }
5069 EXPORT_SYMBOL(security_ib_alloc_security);
5070
5071 /**
5072  * security_ib_free_security() - Free an Infiniband LSM blob
5073  * @sec: LSM blob
5074  *
5075  * Deallocate an Infiniband security structure.
5076  */
5077 void security_ib_free_security(void *sec)
5078 {
5079         call_void_hook(ib_free_security, sec);
5080 }
5081 EXPORT_SYMBOL(security_ib_free_security);
5082 #endif  /* CONFIG_SECURITY_INFINIBAND */
5083
5084 #ifdef CONFIG_SECURITY_NETWORK_XFRM
5085 /**
5086  * security_xfrm_policy_alloc() - Allocate a xfrm policy LSM blob
5087  * @ctxp: xfrm security context being added to the SPD
5088  * @sec_ctx: security label provided by userspace
5089  * @gfp: gfp flags
5090  *
5091  * Allocate a security structure to the xp->security field; the security field
5092  * is initialized to NULL when the xfrm_policy is allocated.
5093  *
5094  * Return:  Return 0 if operation was successful.
5095  */
5096 int security_xfrm_policy_alloc(struct xfrm_sec_ctx **ctxp,
5097                                struct xfrm_user_sec_ctx *sec_ctx,
5098                                gfp_t gfp)
5099 {
5100         return call_int_hook(xfrm_policy_alloc_security, 0, ctxp, sec_ctx, gfp);
5101 }
5102 EXPORT_SYMBOL(security_xfrm_policy_alloc);
5103
5104 /**
5105  * security_xfrm_policy_clone() - Clone xfrm policy LSM state
5106  * @old_ctx: xfrm security context
5107  * @new_ctxp: target xfrm security context
5108  *
5109  * Allocate a security structure in new_ctxp that contains the information from
5110  * the old_ctx structure.
5111  *
5112  * Return: Return 0 if operation was successful.
5113  */
5114 int security_xfrm_policy_clone(struct xfrm_sec_ctx *old_ctx,
5115                                struct xfrm_sec_ctx **new_ctxp)
5116 {
5117         return call_int_hook(xfrm_policy_clone_security, 0, old_ctx, new_ctxp);
5118 }
5119
5120 /**
5121  * security_xfrm_policy_free() - Free a xfrm security context
5122  * @ctx: xfrm security context
5123  *
5124  * Free LSM resources associated with @ctx.
5125  */
5126 void security_xfrm_policy_free(struct xfrm_sec_ctx *ctx)
5127 {
5128         call_void_hook(xfrm_policy_free_security, ctx);
5129 }
5130 EXPORT_SYMBOL(security_xfrm_policy_free);
5131
5132 /**
5133  * security_xfrm_policy_delete() - Check if deleting a xfrm policy is allowed
5134  * @ctx: xfrm security context
5135  *
5136  * Authorize deletion of a SPD entry.
5137  *
5138  * Return: Returns 0 if permission is granted.
5139  */
5140 int security_xfrm_policy_delete(struct xfrm_sec_ctx *ctx)
5141 {
5142         return call_int_hook(xfrm_policy_delete_security, 0, ctx);
5143 }
5144
5145 /**
5146  * security_xfrm_state_alloc() - Allocate a xfrm state LSM blob
5147  * @x: xfrm state being added to the SAD
5148  * @sec_ctx: security label provided by userspace
5149  *
5150  * Allocate a security structure to the @x->security field; the security field
5151  * is initialized to NULL when the xfrm_state is allocated. Set the context to
5152  * correspond to @sec_ctx.
5153  *
5154  * Return: Return 0 if operation was successful.
5155  */
5156 int security_xfrm_state_alloc(struct xfrm_state *x,
5157                               struct xfrm_user_sec_ctx *sec_ctx)
5158 {
5159         return call_int_hook(xfrm_state_alloc, 0, x, sec_ctx);
5160 }
5161 EXPORT_SYMBOL(security_xfrm_state_alloc);
5162
5163 /**
5164  * security_xfrm_state_alloc_acquire() - Allocate a xfrm state LSM blob
5165  * @x: xfrm state being added to the SAD
5166  * @polsec: associated policy's security context
5167  * @secid: secid from the flow
5168  *
5169  * Allocate a security structure to the x->security field; the security field
5170  * is initialized to NULL when the xfrm_state is allocated.  Set the context to
5171  * correspond to secid.
5172  *
5173  * Return: Returns 0 if operation was successful.
5174  */
5175 int security_xfrm_state_alloc_acquire(struct xfrm_state *x,
5176                                       struct xfrm_sec_ctx *polsec, u32 secid)
5177 {
5178         return call_int_hook(xfrm_state_alloc_acquire, 0, x, polsec, secid);
5179 }
5180
5181 /**
5182  * security_xfrm_state_delete() - Check if deleting a xfrm state is allowed
5183  * @x: xfrm state
5184  *
5185  * Authorize deletion of x->security.
5186  *
5187  * Return: Returns 0 if permission is granted.
5188  */
5189 int security_xfrm_state_delete(struct xfrm_state *x)
5190 {
5191         return call_int_hook(xfrm_state_delete_security, 0, x);
5192 }
5193 EXPORT_SYMBOL(security_xfrm_state_delete);
5194
5195 /**
5196  * security_xfrm_state_free() - Free a xfrm state
5197  * @x: xfrm state
5198  *
5199  * Deallocate x->security.
5200  */
5201 void security_xfrm_state_free(struct xfrm_state *x)
5202 {
5203         call_void_hook(xfrm_state_free_security, x);
5204 }
5205
5206 /**
5207  * security_xfrm_policy_lookup() - Check if using a xfrm policy is allowed
5208  * @ctx: target xfrm security context
5209  * @fl_secid: flow secid used to authorize access
5210  *
5211  * Check permission when a flow selects a xfrm_policy for processing XFRMs on a
5212  * packet.  The hook is called when selecting either a per-socket policy or a
5213  * generic xfrm policy.
5214  *
5215  * Return: Return 0 if permission is granted, -ESRCH otherwise, or -errno on
5216  *         other errors.
5217  */
5218 int security_xfrm_policy_lookup(struct xfrm_sec_ctx *ctx, u32 fl_secid)
5219 {
5220         return call_int_hook(xfrm_policy_lookup, 0, ctx, fl_secid);
5221 }
5222
5223 /**
5224  * security_xfrm_state_pol_flow_match() - Check for a xfrm match
5225  * @x: xfrm state to match
5226  * @xp: xfrm policy to check for a match
5227  * @flic: flow to check for a match.
5228  *
5229  * Check @xp and @flic for a match with @x.
5230  *
5231  * Return: Returns 1 if there is a match.
5232  */
5233 int security_xfrm_state_pol_flow_match(struct xfrm_state *x,
5234                                        struct xfrm_policy *xp,
5235                                        const struct flowi_common *flic)
5236 {
5237         struct security_hook_list *hp;
5238         int rc = LSM_RET_DEFAULT(xfrm_state_pol_flow_match);
5239
5240         /*
5241          * Since this function is expected to return 0 or 1, the judgment
5242          * becomes difficult if multiple LSMs supply this call. Fortunately,
5243          * we can use the first LSM's judgment because currently only SELinux
5244          * supplies this call.
5245          *
5246          * For speed optimization, we explicitly break the loop rather than
5247          * using the macro
5248          */
5249         hlist_for_each_entry(hp, &security_hook_heads.xfrm_state_pol_flow_match,
5250                              list) {
5251                 rc = hp->hook.xfrm_state_pol_flow_match(x, xp, flic);
5252                 break;
5253         }
5254         return rc;
5255 }
5256
5257 /**
5258  * security_xfrm_decode_session() - Determine the xfrm secid for a packet
5259  * @skb: xfrm packet
5260  * @secid: secid
5261  *
5262  * Decode the packet in @skb and return the security label in @secid.
5263  *
5264  * Return: Return 0 if all xfrms used have the same secid.
5265  */
5266 int security_xfrm_decode_session(struct sk_buff *skb, u32 *secid)
5267 {
5268         return call_int_hook(xfrm_decode_session, 0, skb, secid, 1);
5269 }
5270
5271 void security_skb_classify_flow(struct sk_buff *skb, struct flowi_common *flic)
5272 {
5273         int rc = call_int_hook(xfrm_decode_session, 0, skb, &flic->flowic_secid,
5274                                0);
5275
5276         BUG_ON(rc);
5277 }
5278 EXPORT_SYMBOL(security_skb_classify_flow);
5279 #endif  /* CONFIG_SECURITY_NETWORK_XFRM */
5280
5281 #ifdef CONFIG_KEYS
5282 /**
5283  * security_key_alloc() - Allocate and initialize a kernel key LSM blob
5284  * @key: key
5285  * @cred: credentials
5286  * @flags: allocation flags
5287  *
5288  * Permit allocation of a key and assign security data. Note that key does not
5289  * have a serial number assigned at this point.
5290  *
5291  * Return: Return 0 if permission is granted, -ve error otherwise.
5292  */
5293 int security_key_alloc(struct key *key, const struct cred *cred,
5294                        unsigned long flags)
5295 {
5296         return call_int_hook(key_alloc, 0, key, cred, flags);
5297 }
5298
5299 /**
5300  * security_key_free() - Free a kernel key LSM blob
5301  * @key: key
5302  *
5303  * Notification of destruction; free security data.
5304  */
5305 void security_key_free(struct key *key)
5306 {
5307         call_void_hook(key_free, key);
5308 }
5309
5310 /**
5311  * security_key_permission() - Check if a kernel key operation is allowed
5312  * @key_ref: key reference
5313  * @cred: credentials of actor requesting access
5314  * @need_perm: requested permissions
5315  *
5316  * See whether a specific operational right is granted to a process on a key.
5317  *
5318  * Return: Return 0 if permission is granted, -ve error otherwise.
5319  */
5320 int security_key_permission(key_ref_t key_ref, const struct cred *cred,
5321                             enum key_need_perm need_perm)
5322 {
5323         return call_int_hook(key_permission, 0, key_ref, cred, need_perm);
5324 }
5325
5326 /**
5327  * security_key_getsecurity() - Get the key's security label
5328  * @key: key
5329  * @buffer: security label buffer
5330  *
5331  * Get a textual representation of the security context attached to a key for
5332  * the purposes of honouring KEYCTL_GETSECURITY.  This function allocates the
5333  * storage for the NUL-terminated string and the caller should free it.
5334  *
5335  * Return: Returns the length of @buffer (including terminating NUL) or -ve if
5336  *         an error occurs.  May also return 0 (and a NULL buffer pointer) if
5337  *         there is no security label assigned to the key.
5338  */
5339 int security_key_getsecurity(struct key *key, char **buffer)
5340 {
5341         *buffer = NULL;
5342         return call_int_hook(key_getsecurity, 0, key, buffer);
5343 }
5344 #endif  /* CONFIG_KEYS */
5345
5346 #ifdef CONFIG_AUDIT
5347 /**
5348  * security_audit_rule_init() - Allocate and init an LSM audit rule struct
5349  * @field: audit action
5350  * @op: rule operator
5351  * @rulestr: rule context
5352  * @lsmrule: receive buffer for audit rule struct
5353  *
5354  * Allocate and initialize an LSM audit rule structure.
5355  *
5356  * Return: Return 0 if @lsmrule has been successfully set, -EINVAL in case of
5357  *         an invalid rule.
5358  */
5359 int security_audit_rule_init(u32 field, u32 op, char *rulestr, void **lsmrule)
5360 {
5361         return call_int_hook(audit_rule_init, 0, field, op, rulestr, lsmrule);
5362 }
5363
5364 /**
5365  * security_audit_rule_known() - Check if an audit rule contains LSM fields
5366  * @krule: audit rule
5367  *
5368  * Specifies whether given @krule contains any fields related to the current
5369  * LSM.
5370  *
5371  * Return: Returns 1 in case of relation found, 0 otherwise.
5372  */
5373 int security_audit_rule_known(struct audit_krule *krule)
5374 {
5375         return call_int_hook(audit_rule_known, 0, krule);
5376 }
5377
5378 /**
5379  * security_audit_rule_free() - Free an LSM audit rule struct
5380  * @lsmrule: audit rule struct
5381  *
5382  * Deallocate the LSM audit rule structure previously allocated by
5383  * audit_rule_init().
5384  */
5385 void security_audit_rule_free(void *lsmrule)
5386 {
5387         call_void_hook(audit_rule_free, lsmrule);
5388 }
5389
5390 /**
5391  * security_audit_rule_match() - Check if a label matches an audit rule
5392  * @secid: security label
5393  * @field: LSM audit field
5394  * @op: matching operator
5395  * @lsmrule: audit rule
5396  *
5397  * Determine if given @secid matches a rule previously approved by
5398  * security_audit_rule_known().
5399  *
5400  * Return: Returns 1 if secid matches the rule, 0 if it does not, -ERRNO on
5401  *         failure.
5402  */
5403 int security_audit_rule_match(u32 secid, u32 field, u32 op, void *lsmrule)
5404 {
5405         return call_int_hook(audit_rule_match, 0, secid, field, op, lsmrule);
5406 }
5407 #endif /* CONFIG_AUDIT */
5408
5409 #ifdef CONFIG_BPF_SYSCALL
5410 /**
5411  * security_bpf() - Check if the bpf syscall operation is allowed
5412  * @cmd: command
5413  * @attr: bpf attribute
5414  * @size: size
5415  *
5416  * Do a initial check for all bpf syscalls after the attribute is copied into
5417  * the kernel. The actual security module can implement their own rules to
5418  * check the specific cmd they need.
5419  *
5420  * Return: Returns 0 if permission is granted.
5421  */
5422 int security_bpf(int cmd, union bpf_attr *attr, unsigned int size)
5423 {
5424         return call_int_hook(bpf, 0, cmd, attr, size);
5425 }
5426
5427 /**
5428  * security_bpf_map() - Check if access to a bpf map is allowed
5429  * @map: bpf map
5430  * @fmode: mode
5431  *
5432  * Do a check when the kernel generates and returns a file descriptor for eBPF
5433  * maps.
5434  *
5435  * Return: Returns 0 if permission is granted.
5436  */
5437 int security_bpf_map(struct bpf_map *map, fmode_t fmode)
5438 {
5439         return call_int_hook(bpf_map, 0, map, fmode);
5440 }
5441
5442 /**
5443  * security_bpf_prog() - Check if access to a bpf program is allowed
5444  * @prog: bpf program
5445  *
5446  * Do a check when the kernel generates and returns a file descriptor for eBPF
5447  * programs.
5448  *
5449  * Return: Returns 0 if permission is granted.
5450  */
5451 int security_bpf_prog(struct bpf_prog *prog)
5452 {
5453         return call_int_hook(bpf_prog, 0, prog);
5454 }
5455
5456 /**
5457  * security_bpf_map_alloc() - Allocate a bpf map LSM blob
5458  * @map: bpf map
5459  *
5460  * Initialize the security field inside bpf map.
5461  *
5462  * Return: Returns 0 on success, error on failure.
5463  */
5464 int security_bpf_map_alloc(struct bpf_map *map)
5465 {
5466         return call_int_hook(bpf_map_alloc_security, 0, map);
5467 }
5468
5469 /**
5470  * security_bpf_prog_alloc() - Allocate a bpf program LSM blob
5471  * @aux: bpf program aux info struct
5472  *
5473  * Initialize the security field inside bpf program.
5474  *
5475  * Return: Returns 0 on success, error on failure.
5476  */
5477 int security_bpf_prog_alloc(struct bpf_prog_aux *aux)
5478 {
5479         return call_int_hook(bpf_prog_alloc_security, 0, aux);
5480 }
5481
5482 /**
5483  * security_bpf_map_free() - Free a bpf map's LSM blob
5484  * @map: bpf map
5485  *
5486  * Clean up the security information stored inside bpf map.
5487  */
5488 void security_bpf_map_free(struct bpf_map *map)
5489 {
5490         call_void_hook(bpf_map_free_security, map);
5491 }
5492
5493 /**
5494  * security_bpf_prog_free() - Free a bpf program's LSM blob
5495  * @aux: bpf program aux info struct
5496  *
5497  * Clean up the security information stored inside bpf prog.
5498  */
5499 void security_bpf_prog_free(struct bpf_prog_aux *aux)
5500 {
5501         call_void_hook(bpf_prog_free_security, aux);
5502 }
5503 #endif /* CONFIG_BPF_SYSCALL */
5504
5505 /**
5506  * security_locked_down() - Check if a kernel feature is allowed
5507  * @what: requested kernel feature
5508  *
5509  * Determine whether a kernel feature that potentially enables arbitrary code
5510  * execution in kernel space should be permitted.
5511  *
5512  * Return: Returns 0 if permission is granted.
5513  */
5514 int security_locked_down(enum lockdown_reason what)
5515 {
5516         return call_int_hook(locked_down, 0, what);
5517 }
5518 EXPORT_SYMBOL(security_locked_down);
5519
5520 #ifdef CONFIG_PERF_EVENTS
5521 /**
5522  * security_perf_event_open() - Check if a perf event open is allowed
5523  * @attr: perf event attribute
5524  * @type: type of event
5525  *
5526  * Check whether the @type of perf_event_open syscall is allowed.
5527  *
5528  * Return: Returns 0 if permission is granted.
5529  */
5530 int security_perf_event_open(struct perf_event_attr *attr, int type)
5531 {
5532         return call_int_hook(perf_event_open, 0, attr, type);
5533 }
5534
5535 /**
5536  * security_perf_event_alloc() - Allocate a perf event LSM blob
5537  * @event: perf event
5538  *
5539  * Allocate and save perf_event security info.
5540  *
5541  * Return: Returns 0 on success, error on failure.
5542  */
5543 int security_perf_event_alloc(struct perf_event *event)
5544 {
5545         return call_int_hook(perf_event_alloc, 0, event);
5546 }
5547
5548 /**
5549  * security_perf_event_free() - Free a perf event LSM blob
5550  * @event: perf event
5551  *
5552  * Release (free) perf_event security info.
5553  */
5554 void security_perf_event_free(struct perf_event *event)
5555 {
5556         call_void_hook(perf_event_free, event);
5557 }
5558
5559 /**
5560  * security_perf_event_read() - Check if reading a perf event label is allowed
5561  * @event: perf event
5562  *
5563  * Read perf_event security info if allowed.
5564  *
5565  * Return: Returns 0 if permission is granted.
5566  */
5567 int security_perf_event_read(struct perf_event *event)
5568 {
5569         return call_int_hook(perf_event_read, 0, event);
5570 }
5571
5572 /**
5573  * security_perf_event_write() - Check if writing a perf event label is allowed
5574  * @event: perf event
5575  *
5576  * Write perf_event security info if allowed.
5577  *
5578  * Return: Returns 0 if permission is granted.
5579  */
5580 int security_perf_event_write(struct perf_event *event)
5581 {
5582         return call_int_hook(perf_event_write, 0, event);
5583 }
5584 #endif /* CONFIG_PERF_EVENTS */
5585
5586 #ifdef CONFIG_IO_URING
5587 /**
5588  * security_uring_override_creds() - Check if overriding creds is allowed
5589  * @new: new credentials
5590  *
5591  * Check if the current task, executing an io_uring operation, is allowed to
5592  * override it's credentials with @new.
5593  *
5594  * Return: Returns 0 if permission is granted.
5595  */
5596 int security_uring_override_creds(const struct cred *new)
5597 {
5598         return call_int_hook(uring_override_creds, 0, new);
5599 }
5600
5601 /**
5602  * security_uring_sqpoll() - Check if IORING_SETUP_SQPOLL is allowed
5603  *
5604  * Check whether the current task is allowed to spawn a io_uring polling thread
5605  * (IORING_SETUP_SQPOLL).
5606  *
5607  * Return: Returns 0 if permission is granted.
5608  */
5609 int security_uring_sqpoll(void)
5610 {
5611         return call_int_hook(uring_sqpoll, 0);
5612 }
5613
5614 /**
5615  * security_uring_cmd() - Check if a io_uring passthrough command is allowed
5616  * @ioucmd: command
5617  *
5618  * Check whether the file_operations uring_cmd is allowed to run.
5619  *
5620  * Return: Returns 0 if permission is granted.
5621  */
5622 int security_uring_cmd(struct io_uring_cmd *ioucmd)
5623 {
5624         return call_int_hook(uring_cmd, 0, ioucmd);
5625 }
5626 #endif /* CONFIG_IO_URING */