summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorWinnie Hsu <whsu@nvidia.com>2011-09-12 18:32:00 -0700
committerVarun Colbert <vcolbert@nvidia.com>2011-09-13 21:13:27 -0700
commit22e4feecf5b232acd30a3e82842aee466f9c50cf (patch)
tree59b0c9052e1174d76e772aa82eed0582869024f3 /security
parent4f97853f7bf47601c8e029e4111892cf20ed6e30 (diff)
security: Add config flag for Android specific caps
Add CONFIG_ANDROID_PARANOID_NETWORK inside commoncap.c. Change-Id: I1cf092e9d5465c144e1b5ca022ee4e48f6d5739c Signed-off-by: Winnie Hsu <whsu@nvidia.com> Reviewed-on: http://git-master/r/51930 Reviewed-by: Allen Martin <amartin@nvidia.com>
Diffstat (limited to 'security')
-rw-r--r--security/commoncap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/commoncap.c b/security/commoncap.c
index 36f46d188a2d..13476bee2266 100644
--- a/security/commoncap.c
+++ b/security/commoncap.c
@@ -87,11 +87,12 @@ EXPORT_SYMBOL(cap_netlink_recv);
int cap_capable(struct task_struct *tsk, const struct cred *cred,
struct user_namespace *targ_ns, int cap, int audit)
{
+#ifdef CONFIG_ANDROID_PARANOID_NETWORK
if (cap == CAP_NET_RAW && in_egroup_p(AID_NET_RAW))
return 0;
if (cap == CAP_NET_ADMIN && in_egroup_p(AID_NET_ADMIN))
return 0;
-
+#endif
for (;;) {
/* The creator of the user namespace has all caps. */
if (targ_ns != &init_user_ns && targ_ns->creator == cred->user)