blob: c29fa4a6228d6f59f9346721d4569cb15002b3c6 [file] [log] [blame]
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -05001/*
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
Paul Moorebfc5e3a2016-12-21 10:39:25 -050027
28/* NOTE: we really do want to use the kernel headers here */
29#define __EXPORTED_HEADERS__
30
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050031#include <stdio.h>
32#include <stdlib.h>
33#include <unistd.h>
34#include <string.h>
35
Trevor Keith5c725132009-09-22 16:43:38 -070036static void usage(char *name)
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050037{
38 printf("usage: %s [-m] policy_file context_file\n", name);
39 exit(1);
40}
41
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040042/* Class/perm mapping support */
43struct security_class_mapping {
44 const char *name;
45 const char *perms[sizeof(unsigned) * 8 + 1];
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050046};
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050047
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040048#include "classmap.h"
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050049#include "initial_sid_to_string.h"
50
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050051int main(int argc, char *argv[])
52{
53 int i, j, mls = 0;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040054 int initial_sid_to_string_len;
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050055 char **arg, *polout, *ctxout;
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040056
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050057 FILE *fout;
58
59 if (argc < 3)
60 usage(argv[0]);
61 arg = argv+1;
62 if (argc==4 && strcmp(argv[1], "-m") == 0) {
63 mls = 1;
64 arg++;
65 }
66 polout = *arg++;
67 ctxout = *arg;
68
69 fout = fopen(polout, "w");
70 if (!fout) {
71 printf("Could not open %s for writing\n", polout);
72 usage(argv[0]);
73 }
74
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050075 /* print out the classes */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040076 for (i = 0; secclass_map[i].name; i++)
77 fprintf(fout, "class %s\n", secclass_map[i].name);
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050078 fprintf(fout, "\n");
79
80 initial_sid_to_string_len = sizeof(initial_sid_to_string) / sizeof (char *);
81 /* print out the sids */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040082 for (i = 1; i < initial_sid_to_string_len; i++)
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050083 fprintf(fout, "sid %s\n", initial_sid_to_string[i]);
84 fprintf(fout, "\n");
85
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050086 /* print out the class permissions */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -040087 for (i = 0; secclass_map[i].name; i++) {
88 struct security_class_mapping *map = &secclass_map[i];
89 fprintf(fout, "class %s\n", map->name);
90 fprintf(fout, "{\n");
91 for (j = 0; map->perms[j]; j++)
92 fprintf(fout, "\t%s\n", map->perms[j]);
93 fprintf(fout, "}\n\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -050094 }
95 fprintf(fout, "\n");
96
97 /* NOW PRINT OUT MLS STUFF */
98 if (mls) {
99 printf("MLS not yet implemented\n");
100 exit(1);
101 }
102
103 /* types, roles, and allows */
104 fprintf(fout, "type base_t;\n");
Laurent Bigonvillefda4d572015-07-07 23:10:52 +0200105 fprintf(fout, "role base_r;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500106 fprintf(fout, "role base_r types { base_t };\n");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400107 for (i = 0; secclass_map[i].name; i++)
108 fprintf(fout, "allow base_t base_t:%s *;\n",
109 secclass_map[i].name);
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500110 fprintf(fout, "user user_u roles { base_r };\n");
111 fprintf(fout, "\n");
112
113 /* default sids */
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400114 for (i = 1; i < initial_sid_to_string_len; i++)
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500115 fprintf(fout, "sid %s user_u:base_r:base_t\n", initial_sid_to_string[i]);
116 fprintf(fout, "\n");
117
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500118 fprintf(fout, "fs_use_xattr ext2 user_u:base_r:base_t;\n");
119 fprintf(fout, "fs_use_xattr ext3 user_u:base_r:base_t;\n");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400120 fprintf(fout, "fs_use_xattr ext4 user_u:base_r:base_t;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500121 fprintf(fout, "fs_use_xattr jfs user_u:base_r:base_t;\n");
122 fprintf(fout, "fs_use_xattr xfs user_u:base_r:base_t;\n");
123 fprintf(fout, "fs_use_xattr reiserfs user_u:base_r:base_t;\n");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400124 fprintf(fout, "fs_use_xattr jffs2 user_u:base_r:base_t;\n");
125 fprintf(fout, "fs_use_xattr gfs2 user_u:base_r:base_t;\n");
126 fprintf(fout, "fs_use_xattr lustre user_u:base_r:base_t;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500127
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400128 fprintf(fout, "fs_use_task eventpollfs user_u:base_r:base_t;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500129 fprintf(fout, "fs_use_task pipefs user_u:base_r:base_t;\n");
130 fprintf(fout, "fs_use_task sockfs user_u:base_r:base_t;\n");
131
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400132 fprintf(fout, "fs_use_trans mqueue user_u:base_r:base_t;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500133 fprintf(fout, "fs_use_trans devpts user_u:base_r:base_t;\n");
Stephen Smalleyc6d3aaa2009-09-30 13:37:50 -0400134 fprintf(fout, "fs_use_trans hugetlbfs user_u:base_r:base_t;\n");
Serge E. Hallyn93c06cb2008-08-26 14:47:57 -0500135 fprintf(fout, "fs_use_trans tmpfs user_u:base_r:base_t;\n");
136 fprintf(fout, "fs_use_trans shm user_u:base_r:base_t;\n");
137
138 fprintf(fout, "genfscon proc / user_u:base_r:base_t\n");
139
140 fclose(fout);
141
142 fout = fopen(ctxout, "w");
143 if (!fout) {
144 printf("Wrote policy, but cannot open %s for writing\n", ctxout);
145 usage(argv[0]);
146 }
147 fprintf(fout, "/ user_u:base_r:base_t\n");
148 fprintf(fout, "/.* user_u:base_r:base_t\n");
149 fclose(fout);
150
151 return 0;
152}