blob: 4aa6dac0e7fe26b4ad85e7811a121c4dad1b600e [file] [log] [blame]
Nicholas Flintham1e3d3112013-04-10 10:48:38 +01001/*
2 *
3 * mdp - make dummy policy
4 *
5 * When pointed at a kernel tree, builds a dummy policy for that kernel
6 * with exactly one type with full rights to itself.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 *
22 * Copyright (C) IBM Corporation, 2006
23 *
24 * Authors: Serge E. Hallyn <serue@us.ibm.com>
25 */
26
27#include <stdio.h>
28#include <stdlib.h>
29#include <unistd.h>
30#include <string.h>
31
32static void usage(char *name)
33{
34 printf("usage: %s [-m] policy_file context_file\n", name);
35 exit(1);
36}
37
38struct security_class_mapping {
39 const char *name;
40 const char *perms[sizeof(unsigned) * 8 + 1];
41};
42
43#include "classmap.h"
44#include "initial_sid_to_string.h"
45
46int main(int argc, char *argv[])
47{
48 int i, j, mls = 0;
49 int initial_sid_to_string_len;
50 char **arg, *polout, *ctxout;
51
52 FILE *fout;
53
54 if (argc < 3)
55 usage(argv[0]);
56 arg = argv+1;
57 if (argc==4 && strcmp(argv[1], "-m") == 0) {
58 mls = 1;
59 arg++;
60 }
61 polout = *arg++;
62 ctxout = *arg;
63
64 fout = fopen(polout, "w");
65 if (!fout) {
66 printf("Could not open %s for writing\n", polout);
67 usage(argv[0]);
68 }
69
70
71 for (i = 0; secclass_map[i].name; i++)
72 fprintf(fout, "class %s\n", secclass_map[i].name);
73 fprintf(fout, "\n");
74
75 initial_sid_to_string_len = sizeof(initial_sid_to_string) / sizeof (char *);
76
77 for (i = 1; i < initial_sid_to_string_len; i++)
78 fprintf(fout, "sid %s\n", initial_sid_to_string[i]);
79 fprintf(fout, "\n");
80
81
82 for (i = 0; secclass_map[i].name; i++) {
83 struct security_class_mapping *map = &secclass_map[i];
84 fprintf(fout, "class %s\n", map->name);
85 fprintf(fout, "{\n");
86 for (j = 0; map->perms[j]; j++)
87 fprintf(fout, "\t%s\n", map->perms[j]);
88 fprintf(fout, "}\n\n");
89 }
90 fprintf(fout, "\n");
91
92
93 if (mls) {
94 printf("MLS not yet implemented\n");
95 exit(1);
96 }
97
98
99 fprintf(fout, "type base_t;\n");
100 fprintf(fout, "role base_r types { base_t };\n");
101 for (i = 0; secclass_map[i].name; i++)
102 fprintf(fout, "allow base_t base_t:%s *;\n",
103 secclass_map[i].name);
104 fprintf(fout, "user user_u roles { base_r };\n");
105 fprintf(fout, "\n");
106
107
108 for (i = 1; i < initial_sid_to_string_len; i++)
109 fprintf(fout, "sid %s user_u:base_r:base_t\n", initial_sid_to_string[i]);
110 fprintf(fout, "\n");
111
112 fprintf(fout, "fs_use_xattr ext2 user_u:base_r:base_t;\n");
113 fprintf(fout, "fs_use_xattr ext3 user_u:base_r:base_t;\n");
114 fprintf(fout, "fs_use_xattr ext4 user_u:base_r:base_t;\n");
115 fprintf(fout, "fs_use_xattr jfs user_u:base_r:base_t;\n");
116 fprintf(fout, "fs_use_xattr xfs user_u:base_r:base_t;\n");
117 fprintf(fout, "fs_use_xattr reiserfs user_u:base_r:base_t;\n");
118 fprintf(fout, "fs_use_xattr jffs2 user_u:base_r:base_t;\n");
119 fprintf(fout, "fs_use_xattr gfs2 user_u:base_r:base_t;\n");
120 fprintf(fout, "fs_use_xattr lustre user_u:base_r:base_t;\n");
121
122 fprintf(fout, "fs_use_task eventpollfs user_u:base_r:base_t;\n");
123 fprintf(fout, "fs_use_task pipefs user_u:base_r:base_t;\n");
124 fprintf(fout, "fs_use_task sockfs user_u:base_r:base_t;\n");
125
126 fprintf(fout, "fs_use_trans mqueue user_u:base_r:base_t;\n");
127 fprintf(fout, "fs_use_trans devpts user_u:base_r:base_t;\n");
128 fprintf(fout, "fs_use_trans hugetlbfs user_u:base_r:base_t;\n");
129 fprintf(fout, "fs_use_trans tmpfs user_u:base_r:base_t;\n");
130 fprintf(fout, "fs_use_trans shm user_u:base_r:base_t;\n");
131
132 fprintf(fout, "genfscon proc / user_u:base_r:base_t\n");
133
134 fclose(fout);
135
136 fout = fopen(ctxout, "w");
137 if (!fout) {
138 printf("Wrote policy, but cannot open %s for writing\n", ctxout);
139 usage(argv[0]);
140 }
141 fprintf(fout, "/ user_u:base_r:base_t\n");
142 fprintf(fout, "/.* user_u:base_r:base_t\n");
143 fclose(fout);
144
145 return 0;
146}