Arnaldo Carvalho de Melo | 73c1f4a | 2005-08-12 12:51:49 -0300 | [diff] [blame] | 1 | #ifndef _INET_DIAG_H_ |
| 2 | #define _INET_DIAG_H_ 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 4 | #include <uapi/linux/inet_diag.h> |
Jaswinder Singh Rajput | 2df005b | 2009-01-30 21:42:47 +0530 | [diff] [blame] | 5 | |
Lorenzo Colitti | b613f56 | 2015-12-16 12:30:02 +0900 | [diff] [blame] | 6 | struct net; |
Arnaldo Carvalho de Melo | 4f5736c | 2005-08-12 09:27:49 -0300 | [diff] [blame] | 7 | struct sock; |
| 8 | struct inet_hashinfo; |
Pavel Emelyanov | 8d07d15 | 2011-12-09 06:22:44 +0000 | [diff] [blame] | 9 | struct nlattr; |
Pavel Emelyanov | 3c4d05c | 2011-12-09 06:23:00 +0000 | [diff] [blame] | 10 | struct nlmsghdr; |
| 11 | struct sk_buff; |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 12 | struct netlink_callback; |
Arnaldo Carvalho de Melo | 4f5736c | 2005-08-12 09:27:49 -0300 | [diff] [blame] | 13 | |
| 14 | struct inet_diag_handler { |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 15 | void (*dump)(struct sk_buff *skb, |
| 16 | struct netlink_callback *cb, |
| 17 | const struct inet_diag_req_v2 *r, |
| 18 | struct nlattr *bc); |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 19 | |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 20 | int (*dump_one)(struct sk_buff *in_skb, |
| 21 | const struct nlmsghdr *nlh, |
| 22 | const struct inet_diag_req_v2 *req); |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 23 | |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 24 | void (*idiag_get_info)(struct sock *sk, |
| 25 | struct inet_diag_msg *r, |
| 26 | void *info); |
Lorenzo Colitti | 6eb5d2e | 2015-12-16 12:30:04 +0900 | [diff] [blame] | 27 | |
| 28 | int (*destroy)(struct sk_buff *in_skb, |
| 29 | const struct inet_diag_req_v2 *req); |
| 30 | |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 31 | __u16 idiag_type; |
Craig Gallek | 3fd22af | 2015-06-15 11:26:19 -0400 | [diff] [blame] | 32 | __u16 idiag_info_size; |
Arnaldo Carvalho de Melo | 4f5736c | 2005-08-12 09:27:49 -0300 | [diff] [blame] | 33 | }; |
| 34 | |
Pavel Emelyanov | 3c4d05c | 2011-12-09 06:23:00 +0000 | [diff] [blame] | 35 | struct inet_connection_sock; |
| 36 | int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk, |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 37 | struct sk_buff *skb, const struct inet_diag_req_v2 *req, |
| 38 | struct user_namespace *user_ns, |
| 39 | u32 pid, u32 seq, u16 nlmsg_flags, |
| 40 | const struct nlmsghdr *unlh); |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 41 | void inet_diag_dump_icsk(struct inet_hashinfo *h, struct sk_buff *skb, |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 42 | struct netlink_callback *cb, |
| 43 | const struct inet_diag_req_v2 *r, |
| 44 | struct nlattr *bc); |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 45 | int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo, |
Eric Dumazet | 34160ea | 2015-03-10 07:15:54 -0700 | [diff] [blame] | 46 | struct sk_buff *in_skb, const struct nlmsghdr *nlh, |
| 47 | const struct inet_diag_req_v2 *req); |
Pavel Emelyanov | 1942c51 | 2011-12-09 06:23:18 +0000 | [diff] [blame] | 48 | |
Lorenzo Colitti | b613f56 | 2015-12-16 12:30:02 +0900 | [diff] [blame] | 49 | struct sock *inet_diag_find_one_icsk(struct net *net, |
| 50 | struct inet_hashinfo *hashinfo, |
| 51 | const struct inet_diag_req_v2 *req); |
| 52 | |
Pavel Emelyanov | 8d07d15 | 2011-12-09 06:22:44 +0000 | [diff] [blame] | 53 | int inet_diag_bc_sk(const struct nlattr *_bc, struct sock *sk); |
Pavel Emelyanov | b005ab4 | 2011-12-09 06:21:53 +0000 | [diff] [blame] | 54 | |
Arnaldo Carvalho de Melo | 4f5736c | 2005-08-12 09:27:49 -0300 | [diff] [blame] | 55 | extern int inet_diag_register(const struct inet_diag_handler *handler); |
| 56 | extern void inet_diag_unregister(const struct inet_diag_handler *handler); |
Arnaldo Carvalho de Melo | 73c1f4a | 2005-08-12 12:51:49 -0300 | [diff] [blame] | 57 | #endif /* _INET_DIAG_H_ */ |