diff options
author | Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | 2011-09-10 02:23:54 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2011-09-13 18:27:05 -0400 |
commit | 059d84dbb3897d4ee494a9c842c5dda54316cb47 (patch) | |
tree | 483ca0cb613b1304184b92f075b3f5283d36c723 /security/tomoyo/Kconfig | |
parent | d58e0da854376841ac99defeb117a83f086715c6 (diff) |
TOMOYO: Add socket operation restriction support.
This patch adds support for permission checks for PF_INET/PF_INET6/PF_UNIX
socket's bind()/listen()/connect()/send() operations.
Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/tomoyo/Kconfig')
-rw-r--r-- | security/tomoyo/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/tomoyo/Kconfig b/security/tomoyo/Kconfig index 7c7f8c16c10f..8eb779b9d77f 100644 --- a/security/tomoyo/Kconfig +++ b/security/tomoyo/Kconfig | |||
@@ -1,8 +1,10 @@ | |||
1 | config SECURITY_TOMOYO | 1 | config SECURITY_TOMOYO |
2 | bool "TOMOYO Linux Support" | 2 | bool "TOMOYO Linux Support" |
3 | depends on SECURITY | 3 | depends on SECURITY |
4 | depends on NET | ||
4 | select SECURITYFS | 5 | select SECURITYFS |
5 | select SECURITY_PATH | 6 | select SECURITY_PATH |
7 | select SECURITY_NETWORK | ||
6 | default n | 8 | default n |
7 | help | 9 | help |
8 | This selects TOMOYO Linux, pathname-based access control. | 10 | This selects TOMOYO Linux, pathname-based access control. |