blob: 76f4fd7ca21df52311a483c9b09c8af0fd1eb880 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
;; SPDX-FileCopyrightText: © 2023 Dominick Grift <dominick.grift@defensec.nl>
;; SPDX-License-Identifier: Unlicense
(block mod
(blockinherit .file.macro_template_dirs)
(blockinherit .file.macro_template_lnk_files)
(blockinherit .file.mod.template))
(in file
(block mod
(macro load_all_files ((type ARG1))
(allow ARG1 typeattr (system (module_load))))
(macro map_all_files ((type ARG1))
(allow ARG1 typeattr (file (map))))
(macro type ((type ARG1))
(typeattributeset typeattr ARG1))
(blockinherit file.all_macro_template_files)
(typeattribute typeattr)
(call data.type (typeattr))
(block base_template
(blockabstract base_template)
(blockinherit .file.base_template)
(call .file.mod.type (file)))
(block template
(blockabstract template)
(macro load_file_files ((type ARG1))
(allow ARG1 file (system (module_load))))
(macro map_file_files ((type ARG1))
(allow ARG1 file (file (map))))
(blockinherit .file.macro_template_files)
(blockinherit .file.mod.base_template))))
(in sys
(call .file.mod.load_all_files (unconfined.typeattr)))
(in sys.moduleload
(neverallow not_typeattr .file.mod.typeattr (system (module_load))))
|