aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inet_diag.c
diff options
context:
space:
mode:
authorLevin, Alexander (Sasha Levin) <alexander.levin@one.verizon.com>2017-08-17 00:35:11 +0000
committerDavid S. Miller <davem@davemloft.net>2017-08-18 16:10:50 -0700
commit0888e372c37fa31882c8ed89fb2f8188b08b6718 (patch)
treeefc001ab308929078bc49a5c673ccf8ae8f334f4 /net/ipv4/inet_diag.c
parentmacvlan: add offload features for encapsulation (diff)
downloadlinux-dev-0888e372c37fa31882c8ed89fb2f8188b08b6718.tar.xz
linux-dev-0888e372c37fa31882c8ed89fb2f8188b08b6718.zip
net: inet: diag: expose sockets cgroup classid
This is useful for directly looking up a task based on class id rather than having to scan through all open file descriptors. Signed-off-by: Sasha Levin <alexander.levin@verizon.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/ipv4/inet_diag.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
index 3828b3a805cd..67325d5832d7 100644
--- a/net/ipv4/inet_diag.c
+++ b/net/ipv4/inet_diag.c
@@ -274,6 +274,17 @@ int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
goto errout;
}
+ if (ext & (1 << (INET_DIAG_CLASS_ID - 1))) {
+ u32 classid = 0;
+
+#ifdef CONFIG_SOCK_CGROUP_DATA
+ classid = sock_cgroup_classid(&sk->sk_cgrp_data);
+#endif
+
+ if (nla_put_u32(skb, INET_DIAG_CLASS_ID, classid))
+ goto errout;
+ }
+
out:
nlmsg_end(skb, nlh);
return 0;