aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/inet_diag.c
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@parallels.com>2011-12-06 02:57:06 -0500
committerDavid S. Miller <davem@davemloft.net>2011-12-06 13:58:01 -0500
commit8d34172dfdb762a306cdf58b547aa10d798622ec (patch)
tree5ad5bbd9117ea444eb06b0519c61f77576818d79 /net/ipv4/inet_diag.c
parent7f1fb60c4fc9fb29fbb406ac8c4cfb4e59e168d6 (diff)
sock_diag: Introduce new message type
This type will run the family+protocol based socket dumping. Also prepare the stub function for it. Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_diag.c')
-rw-r--r--net/ipv4/inet_diag.c17
1 files changed, 15 insertions, 2 deletions
diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
index a5f3c40ac3c5..eb6bdfa9480c 100644
--- a/net/ipv4/inet_diag.c
+++ b/net/ipv4/inet_diag.c
@@ -850,7 +850,7 @@ unlock:
850 return skb->len; 850 return skb->len;
851} 851}
852 852
853static int inet_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) 853static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh)
854{ 854{
855 int hdrlen = sizeof(struct inet_diag_req); 855 int hdrlen = sizeof(struct inet_diag_req);
856 856
@@ -877,9 +877,22 @@ static int inet_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
877 return inet_diag_get_exact(skb, nlh); 877 return inet_diag_get_exact(skb, nlh);
878} 878}
879 879
880static int __sock_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
881{
882 return -EOPNOTSUPP;
883}
884
880static int sock_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh) 885static int sock_diag_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
881{ 886{
882 return inet_diag_rcv_msg(skb, nlh); 887 switch (nlh->nlmsg_type) {
888 case TCPDIAG_GETSOCK:
889 case DCCPDIAG_GETSOCK:
890 return inet_diag_rcv_msg_compat(skb, nlh);
891 case SOCK_DIAG_BY_FAMILY:
892 return __sock_diag_rcv_msg(skb, nlh);
893 default:
894 return -EINVAL;
895 }
883} 896}
884 897
885static DEFINE_MUTEX(sock_diag_mutex); 898static DEFINE_MUTEX(sock_diag_mutex);