2005-08-12 19:51:49 +04:00
|
|
|
#ifndef _INET_DIAG_H_
|
|
|
|
#define _INET_DIAG_H_ 1
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2012-10-13 13:46:48 +04:00
|
|
|
#include <uapi/linux/inet_diag.h>
|
2009-01-30 19:12:47 +03:00
|
|
|
|
2005-08-12 16:27:49 +04:00
|
|
|
struct sock;
|
|
|
|
struct inet_hashinfo;
|
2011-12-09 10:22:44 +04:00
|
|
|
struct nlattr;
|
2011-12-09 10:23:00 +04:00
|
|
|
struct nlmsghdr;
|
|
|
|
struct sk_buff;
|
2011-12-09 10:23:18 +04:00
|
|
|
struct netlink_callback;
|
2005-08-12 16:27:49 +04:00
|
|
|
|
|
|
|
struct inet_diag_handler {
|
2015-03-10 17:15:54 +03:00
|
|
|
void (*dump)(struct sk_buff *skb,
|
|
|
|
struct netlink_callback *cb,
|
|
|
|
const struct inet_diag_req_v2 *r,
|
|
|
|
struct nlattr *bc);
|
|
|
|
|
|
|
|
int (*dump_one)(struct sk_buff *in_skb,
|
|
|
|
const struct nlmsghdr *nlh,
|
|
|
|
const struct inet_diag_req_v2 *req);
|
|
|
|
|
|
|
|
void (*idiag_get_info)(struct sock *sk,
|
|
|
|
struct inet_diag_msg *r,
|
|
|
|
void *info);
|
|
|
|
__u16 idiag_type;
|
2005-08-12 16:27:49 +04:00
|
|
|
};
|
|
|
|
|
2011-12-09 10:23:00 +04:00
|
|
|
struct inet_connection_sock;
|
|
|
|
int inet_sk_diag_fill(struct sock *sk, struct inet_connection_sock *icsk,
|
2015-03-10 17:15:54 +03:00
|
|
|
struct sk_buff *skb, const struct inet_diag_req_v2 *req,
|
|
|
|
struct user_namespace *user_ns,
|
|
|
|
u32 pid, u32 seq, u16 nlmsg_flags,
|
|
|
|
const struct nlmsghdr *unlh);
|
2011-12-09 10:23:18 +04:00
|
|
|
void inet_diag_dump_icsk(struct inet_hashinfo *h, struct sk_buff *skb,
|
2015-03-10 17:15:54 +03:00
|
|
|
struct netlink_callback *cb,
|
|
|
|
const struct inet_diag_req_v2 *r,
|
|
|
|
struct nlattr *bc);
|
2011-12-09 10:23:18 +04:00
|
|
|
int inet_diag_dump_one_icsk(struct inet_hashinfo *hashinfo,
|
2015-03-10 17:15:54 +03:00
|
|
|
struct sk_buff *in_skb, const struct nlmsghdr *nlh,
|
|
|
|
const struct inet_diag_req_v2 *req);
|
2011-12-09 10:23:18 +04:00
|
|
|
|
2011-12-09 10:22:44 +04:00
|
|
|
int inet_diag_bc_sk(const struct nlattr *_bc, struct sock *sk);
|
2011-12-09 10:21:53 +04:00
|
|
|
|
2005-08-12 16:27:49 +04:00
|
|
|
extern int inet_diag_register(const struct inet_diag_handler *handler);
|
|
|
|
extern void inet_diag_unregister(const struct inet_diag_handler *handler);
|
2005-08-12 19:51:49 +04:00
|
|
|
#endif /* _INET_DIAG_H_ */
|