diff options
author | Robert Love <rlove@google.com> | 2008-10-15 15:35:44 -0400 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:08:47 -0700 |
commit | 8affb4e2680f7b11294f67ba6cd6f539ba543846 (patch) | |
tree | cc4039c2166ce9acd8f37611513bf100e40e5b29 /net/Kconfig | |
parent | 6a4e6432fc9e6e00cf295987c4e5e19d4d5bd9cd (diff) | |
download | kernel_samsung_aries-8affb4e2680f7b11294f67ba6cd6f539ba543846.zip kernel_samsung_aries-8affb4e2680f7b11294f67ba6cd6f539ba543846.tar.gz kernel_samsung_aries-8affb4e2680f7b11294f67ba6cd6f539ba543846.tar.bz2 |
Paranoid network.
With CONFIG_ANDROID_PARANOID_NETWORK, require specific uids/gids to instantiate
network sockets.
Signed-off-by: Robert Love <rlove@google.com>
paranoid networking: Use in_egroup_p() to check group membership
The previous group_search() caused trouble for partners with module builds.
in_egroup_p() is also cleaner.
Signed-off-by: Nick Pelly <npelly@google.com>
Fix 2.6.29 build.
Signed-off-by: Arve Hjønnevåg <arve@android.com>
net: Fix compilation of the IPv6 module
Fix compilation of the IPv6 module -- current->euid does not exist anymore,
current_euid() is what needs to be used.
Signed-off-by: Steinar H. Gunderson <sesse@google.com>
Diffstat (limited to 'net/Kconfig')
-rw-r--r-- | net/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/Kconfig b/net/Kconfig index 878151c..f2856d7 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -79,6 +79,12 @@ source "net/netlabel/Kconfig" endif # if INET +config ANDROID_PARANOID_NETWORK + bool "Only allow certain groups to create sockets" + default y + help + none + config NETWORK_SECMARK bool "Security Marking" help |