1 #ifndef __SOCK_DIAG_H__
2 #define __SOCK_DIAG_H__
4 #include <linux/netlink.h>
5 #include <linux/user_namespace.h>
6 #include <net/net_namespace.h>
8 #include <uapi/linux/sock_diag.h>
14 struct sock_diag_handler
{
16 int (*dump
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
);
17 int (*get_info
)(struct sk_buff
*skb
, struct sock
*sk
);
18 int (*destroy
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
);
21 int sock_diag_register(const struct sock_diag_handler
*h
);
22 void sock_diag_unregister(const struct sock_diag_handler
*h
);
24 void sock_diag_register_inet_compat(int (*fn
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
));
25 void sock_diag_unregister_inet_compat(int (*fn
)(struct sk_buff
*skb
, struct nlmsghdr
*nlh
));
27 u64
sock_gen_cookie(struct sock
*sk
);
28 int sock_diag_check_cookie(struct sock
*sk
, const __u32
*cookie
);
29 void sock_diag_save_cookie(struct sock
*sk
, __u32
*cookie
);
31 int sock_diag_put_meminfo(struct sock
*sk
, struct sk_buff
*skb
, int attr
);
32 int sock_diag_put_filterinfo(bool may_report_filterinfo
, struct sock
*sk
,
33 struct sk_buff
*skb
, int attrtype
);
36 enum sknetlink_groups
sock_diag_destroy_group(const struct sock
*sk
)
38 switch (sk
->sk_family
) {
40 if (sk
->sk_type
== SOCK_RAW
)
43 switch (sk
->sk_protocol
) {
45 return SKNLGRP_INET_TCP_DESTROY
;
47 return SKNLGRP_INET_UDP_DESTROY
;
52 if (sk
->sk_type
== SOCK_RAW
)
55 switch (sk
->sk_protocol
) {
57 return SKNLGRP_INET6_TCP_DESTROY
;
59 return SKNLGRP_INET6_UDP_DESTROY
;
69 bool sock_diag_has_destroy_listeners(const struct sock
*sk
)
71 const struct net
*n
= sock_net(sk
);
72 const enum sknetlink_groups group
= sock_diag_destroy_group(sk
);
74 return group
!= SKNLGRP_NONE
&& n
->diag_nlsk
&&
75 netlink_has_listeners(n
->diag_nlsk
, group
);
77 void sock_diag_broadcast_destroy(struct sock
*sk
);
79 int sock_diag_destroy(struct sock
*sk
, int err
);