-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TOMOYO: Add built-in policy support.
To be able to start using enforcing mode from the early stage of boot sequence, this patch adds support for built-in policy configuration (and next patch adds support for activating access control without calling external policy loader program). Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: James Morris <jmorris@namei.org>
- Loading branch information
Tetsuo Handa
authored and
James Morris
committed
Jun 28, 2011
1 parent
b22b8b9
commit efe836a
Showing
4 changed files
with
108 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
obj-y = audit.o common.o domain.o file.o gc.o group.o load_policy.o memory.o mount.o realpath.o securityfs_if.o tomoyo.o util.o | ||
|
||
$(obj)/policy/profile.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/profile.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/exception_policy.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating a default policy/exception_policy.conf | ||
@echo initialize_domain /sbin/modprobe from any >> $@ | ||
@echo initialize_domain /sbin/hotplug from any >> $@ | ||
|
||
$(obj)/policy/domain_policy.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/domain_policy.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/manager.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/manager.conf | ||
@touch $@ | ||
|
||
$(obj)/policy/stat.conf: | ||
@mkdir -p $(obj)/policy/ | ||
@echo Creating an empty policy/stat.conf | ||
@touch $@ | ||
|
||
$(obj)/builtin-policy.h: $(obj)/policy/profile.conf $(obj)/policy/exception_policy.conf $(obj)/policy/domain_policy.conf $(obj)/policy/manager.conf $(obj)/policy/stat.conf | ||
@echo Generating built-in policy for TOMOYO 2.4.x. | ||
@echo "static char tomoyo_builtin_profile[] __initdata =" > $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/profile.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_exception_policy[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/exception_policy.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_domain_policy[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/domain_policy.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_manager[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/manager.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@echo "static char tomoyo_builtin_stat[] __initdata =" >> $@.tmp | ||
@sed -e 's/\\/\\\\/g' -e 's/\"/\\"/g' -e 's/\(.*\)/"\1\\n"/' < $(obj)/policy/stat.conf >> $@.tmp | ||
@echo "\"\";" >> $@.tmp | ||
@mv $@.tmp $@ | ||
|
||
$(obj)/common.o: $(obj)/builtin-policy.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters