2011-12-06 15:58:03 +08:00
|
|
|
#ifndef __SOCK_DIAG_H__
|
|
|
|
#define __SOCK_DIAG_H__
|
2011-12-15 10:42:42 +08:00
|
|
|
|
2011-12-30 08:52:21 +08:00
|
|
|
#include <linux/types.h>
|
2011-12-15 10:42:42 +08:00
|
|
|
|
2011-12-30 08:52:21 +08:00
|
|
|
#define SOCK_DIAG_BY_FAMILY 20
|
2011-12-06 15:58:03 +08:00
|
|
|
|
|
|
|
struct sock_diag_req {
|
|
|
|
__u8 sdiag_family;
|
|
|
|
__u8 sdiag_protocol;
|
|
|
|
};
|
|
|
|
|
2011-12-30 08:53:13 +08:00
|
|
|
enum {
|
|
|
|
SK_MEMINFO_RMEM_ALLOC,
|
|
|
|
SK_MEMINFO_RCVBUF,
|
|
|
|
SK_MEMINFO_WMEM_ALLOC,
|
|
|
|
SK_MEMINFO_SNDBUF,
|
|
|
|
SK_MEMINFO_FWD_ALLOC,
|
|
|
|
SK_MEMINFO_WMEM_QUEUED,
|
|
|
|
SK_MEMINFO_OPTMEM,
|
2012-06-04 11:50:35 +08:00
|
|
|
SK_MEMINFO_BACKLOG,
|
2011-12-30 08:53:13 +08:00
|
|
|
|
|
|
|
SK_MEMINFO_VARS,
|
|
|
|
};
|
|
|
|
|
2011-12-30 08:52:21 +08:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
struct sk_buff;
|
|
|
|
struct nlmsghdr;
|
2011-12-30 08:53:13 +08:00
|
|
|
struct sock;
|
2011-12-30 08:52:21 +08:00
|
|
|
|
2011-12-06 15:58:03 +08:00
|
|
|
struct sock_diag_handler {
|
|
|
|
__u8 family;
|
|
|
|
int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh);
|
|
|
|
};
|
|
|
|
|
2012-04-25 02:21:07 +08:00
|
|
|
int sock_diag_register(const struct sock_diag_handler *h);
|
|
|
|
void sock_diag_unregister(const struct sock_diag_handler *h);
|
2011-12-06 15:58:03 +08:00
|
|
|
|
|
|
|
void sock_diag_register_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
|
|
|
|
void sock_diag_unregister_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
|
|
|
|
|
2011-12-15 10:43:44 +08:00
|
|
|
int sock_diag_check_cookie(void *sk, __u32 *cookie);
|
|
|
|
void sock_diag_save_cookie(void *sk, __u32 *cookie);
|
|
|
|
|
2011-12-30 08:53:13 +08:00
|
|
|
int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attr);
|
|
|
|
|
2011-12-30 08:52:21 +08:00
|
|
|
#endif /* KERNEL */
|
2011-12-06 15:58:03 +08:00
|
|
|
#endif
|