diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2011-12-09 01:23:18 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-09 14:14:08 -0500 |
commit | 1942c518ca017f376b267a7c5e78c15d37202442 (patch) | |
tree | 9ead5443adf15f2264240c928ff2514349fdcade /net/ipv4/tcp_diag.c | |
parent | 3c4d05c8056724aff3abc20650807dd828fded54 (diff) |
inet_diag: Generalize inet_diag dump and get_exact calls
Introduce two callbacks in inet_diag_handler -- one for dumping all
sockets (with filters) and the other one for dumping a single sk.
Replace direct calls to icsk handlers with indirect calls to callbacks
provided by handlers.
Make existing TCP and DCCP handlers use provided helpers for icsk-s.
The UDP diag module will provide its own.
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_diag.c')
-rw-r--r-- | net/ipv4/tcp_diag.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/net/ipv4/tcp_diag.c b/net/ipv4/tcp_diag.c index 42e6bec7bd3e..6334b1f71f2d 100644 --- a/net/ipv4/tcp_diag.c +++ b/net/ipv4/tcp_diag.c | |||
@@ -34,8 +34,21 @@ static void tcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r, | |||
34 | tcp_get_info(sk, info); | 34 | tcp_get_info(sk, info); |
35 | } | 35 | } |
36 | 36 | ||
37 | static void tcp_diag_dump(struct sk_buff *skb, struct netlink_callback *cb, | ||
38 | struct inet_diag_req *r, struct nlattr *bc) | ||
39 | { | ||
40 | inet_diag_dump_icsk(&tcp_hashinfo, skb, cb, r, bc); | ||
41 | } | ||
42 | |||
43 | static int tcp_diag_dump_one(struct sk_buff *in_skb, const struct nlmsghdr *nlh, | ||
44 | struct inet_diag_req *req) | ||
45 | { | ||
46 | return inet_diag_dump_one_icsk(&tcp_hashinfo, in_skb, nlh, req); | ||
47 | } | ||
48 | |||
37 | static const struct inet_diag_handler tcp_diag_handler = { | 49 | static const struct inet_diag_handler tcp_diag_handler = { |
38 | .idiag_hashinfo = &tcp_hashinfo, | 50 | .dump = tcp_diag_dump, |
51 | .dump_one = tcp_diag_dump_one, | ||
39 | .idiag_get_info = tcp_diag_get_info, | 52 | .idiag_get_info = tcp_diag_get_info, |
40 | .idiag_type = IPPROTO_TCP, | 53 | .idiag_type = IPPROTO_TCP, |
41 | }; | 54 | }; |