1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * mdp - make dummy policy
6 * When pointed at a kernel tree, builds a dummy policy for that kernel
7 * with exactly one type with full rights to itself.
9 * Copyright (C) IBM Corporation, 2006
11 * Authors: Serge E. Hallyn <serue@us.ibm.com>
15 /* NOTE: we really do want to use the kernel headers here */
16 #define __EXPORTED_HEADERS__
22 #include <linux/kconfig.h>
24 static void usage(char *name
)
26 printf("usage: %s [-m] policy_file context_file\n", name
);
30 /* Class/perm mapping support */
31 struct security_class_mapping
{
33 const char *perms
[sizeof(unsigned) * 8 + 1];
37 #include "initial_sid_to_string.h"
38 #include "policycap_names.h"
40 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
42 int main(int argc
, char *argv
[])
45 int initial_sid_to_string_len
;
46 char **arg
, *polout
, *ctxout
;
53 if (argc
==4 && strcmp(argv
[1], "-m") == 0) {
60 fout
= fopen(polout
, "w");
62 printf("Could not open %s for writing\n", polout
);
66 /* print out the classes */
67 for (i
= 0; secclass_map
[i
].name
; i
++)
68 fprintf(fout
, "class %s\n", secclass_map
[i
].name
);
71 initial_sid_to_string_len
= sizeof(initial_sid_to_string
) / sizeof (char *);
72 /* print out the sids */
73 for (i
= 1; i
< initial_sid_to_string_len
; i
++) {
74 const char *name
= initial_sid_to_string
[i
];
77 fprintf(fout
, "sid %s\n", name
);
79 fprintf(fout
, "sid unused%d\n", i
);
83 /* print out the class permissions */
84 for (i
= 0; secclass_map
[i
].name
; i
++) {
85 struct security_class_mapping
*map
= &secclass_map
[i
];
86 fprintf(fout
, "class %s\n", map
->name
);
88 for (j
= 0; map
->perms
[j
]; j
++)
89 fprintf(fout
, "\t%s\n", map
->perms
[j
]);
90 fprintf(fout
, "}\n\n");
94 /* print out mls declarations and constraints */
96 fprintf(fout
, "sensitivity s0;\n");
97 fprintf(fout
, "sensitivity s1;\n");
98 fprintf(fout
, "dominance { s0 s1 }\n");
99 fprintf(fout
, "category c0;\n");
100 fprintf(fout
, "category c1;\n");
101 fprintf(fout
, "level s0:c0.c1;\n");
102 fprintf(fout
, "level s1:c0.c1;\n");
103 #define SYSTEMLOW "s0"
104 #define SYSTEMHIGH "s1:c0.c1"
105 for (i
= 0; secclass_map
[i
].name
; i
++) {
106 struct security_class_mapping
*map
= &secclass_map
[i
];
108 fprintf(fout
, "mlsconstrain %s {\n", map
->name
);
109 for (j
= 0; map
->perms
[j
]; j
++)
110 fprintf(fout
, "\t%s\n", map
->perms
[j
]);
112 * This requires all subjects and objects to be
113 * single-level (l2 eq h2), and that the subject
114 * level dominate the object level (h1 dom h2)
115 * in order to have any permissions to it.
117 fprintf(fout
, "} (l2 eq h2 and h1 dom h2);\n\n");
121 /* enable all policy capabilities */
122 for (i
= 0; i
< ARRAY_SIZE(selinux_policycap_names
); i
++)
123 fprintf(fout
, "policycap %s;\n", selinux_policycap_names
[i
]);
125 /* types, roles, and allows */
126 fprintf(fout
, "type base_t;\n");
127 fprintf(fout
, "role base_r;\n");
128 fprintf(fout
, "role base_r types { base_t };\n");
129 for (i
= 0; secclass_map
[i
].name
; i
++)
130 fprintf(fout
, "allow base_t base_t:%s *;\n",
131 secclass_map
[i
].name
);
132 fprintf(fout
, "user user_u roles { base_r }");
134 fprintf(fout
, " level %s range %s - %s", SYSTEMLOW
,
135 SYSTEMLOW
, SYSTEMHIGH
);
136 fprintf(fout
, ";\n");
138 #define SUBJUSERROLETYPE "user_u:base_r:base_t"
139 #define OBJUSERROLETYPE "user_u:object_r:base_t"
142 for (i
= 1; i
< initial_sid_to_string_len
; i
++) {
143 const char *name
= initial_sid_to_string
[i
];
146 fprintf(fout
, "sid %s ", name
);
148 fprintf(fout
, "sid unused%d\n", i
);
149 fprintf(fout
, SUBJUSERROLETYPE
"%s\n",
150 mls
? ":" SYSTEMLOW
: "");
154 #define FS_USE(behavior, fstype) \
155 fprintf(fout, "fs_use_%s %s " OBJUSERROLETYPE "%s;\n", \
156 behavior, fstype, mls ? ":" SYSTEMLOW : "")
159 * Filesystems whose inode labels can be fetched via getxattr.
161 #ifdef CONFIG_EXT2_FS_SECURITY
162 FS_USE("xattr", "ext2");
164 #ifdef CONFIG_EXT4_FS_SECURITY
165 #ifdef CONFIG_EXT4_USE_FOR_EXT2
166 FS_USE("xattr", "ext2");
168 FS_USE("xattr", "ext3");
169 FS_USE("xattr", "ext4");
171 #ifdef CONFIG_JFS_SECURITY
172 FS_USE("xattr", "jfs");
174 #ifdef CONFIG_REISERFS_FS_SECURITY
175 FS_USE("xattr", "reiserfs");
177 #ifdef CONFIG_JFFS2_FS_SECURITY
178 FS_USE("xattr", "jffs2");
181 FS_USE("xattr", "xfs");
183 #ifdef CONFIG_GFS2_FS
184 FS_USE("xattr", "gfs2");
186 #ifdef CONFIG_BTRFS_FS
187 FS_USE("xattr", "btrfs");
189 #ifdef CONFIG_F2FS_FS_SECURITY
190 FS_USE("xattr", "f2fs");
192 #ifdef CONFIG_OCFS2_FS
193 FS_USE("xattr", "ocsfs2");
195 #ifdef CONFIG_OVERLAY_FS
196 FS_USE("xattr", "overlay");
198 #ifdef CONFIG_SQUASHFS_XATTR
199 FS_USE("xattr", "squashfs");
203 * Filesystems whose inodes are labeled from allocating task.
205 FS_USE("task", "pipefs");
206 FS_USE("task", "sockfs");
209 * Filesystems whose inode labels are computed from both
210 * the allocating task and the superblock label.
212 #ifdef CONFIG_UNIX98_PTYS
213 FS_USE("trans", "devpts");
215 #ifdef CONFIG_HUGETLBFS
216 FS_USE("trans", "hugetlbfs");
219 FS_USE("trans", "tmpfs");
221 #ifdef CONFIG_DEVTMPFS
222 FS_USE("trans", "devtmpfs");
224 #ifdef CONFIG_POSIX_MQUEUE
225 FS_USE("trans", "mqueue");
228 #define GENFSCON(fstype, prefix) \
229 fprintf(fout, "genfscon %s %s " OBJUSERROLETYPE "%s\n", \
230 fstype, prefix, mls ? ":" SYSTEMLOW : "")
233 * Filesystems whose inodes are labeled from path prefix match
234 * relative to the filesystem root. Depending on the filesystem,
235 * only a single label for all inodes may be supported. Here
236 * we list the filesystem types for which per-file labeling is
237 * supported using genfscon; any other filesystem type can also
238 * be added by only with a single entry for all of its inodes.
240 #ifdef CONFIG_PROC_FS
241 GENFSCON("proc", "/");
243 #ifdef CONFIG_SECURITY_SELINUX
244 GENFSCON("selinuxfs", "/");
247 GENFSCON("sysfs", "/");
249 #ifdef CONFIG_DEBUG_FS
250 GENFSCON("debugfs", "/");
252 #ifdef CONFIG_TRACING
253 GENFSCON("tracefs", "/");
256 GENFSCON("pstore", "/");
258 GENFSCON("cgroup", "/");
259 GENFSCON("cgroup2", "/");
263 fout
= fopen(ctxout
, "w");
265 printf("Wrote policy, but cannot open %s for writing\n", ctxout
);
268 fprintf(fout
, "/ " OBJUSERROLETYPE
"%s\n", mls
? ":" SYSTEMLOW
: "");
269 fprintf(fout
, "/.* " OBJUSERROLETYPE
"%s\n", mls
? ":" SYSTEMLOW
: "");