1 #include <linux/module.h>
4 #include <linux/netlink.h>
5 #include <linux/sock_diag.h>
6 #include <linux/netlink_diag.h>
8 #include "af_netlink.h"
10 #ifdef CONFIG_NETLINK_MMAP
11 static int sk_diag_put_ring(struct netlink_ring
*ring
, int nl_type
,
12 struct sk_buff
*nlskb
)
14 struct netlink_diag_ring ndr
;
16 ndr
.ndr_block_size
= ring
->pg_vec_pages
<< PAGE_SHIFT
;
17 ndr
.ndr_block_nr
= ring
->pg_vec_len
;
18 ndr
.ndr_frame_size
= ring
->frame_size
;
19 ndr
.ndr_frame_nr
= ring
->frame_max
+ 1;
21 return nla_put(nlskb
, nl_type
, sizeof(ndr
), &ndr
);
24 static int sk_diag_put_rings_cfg(struct sock
*sk
, struct sk_buff
*nlskb
)
26 struct netlink_sock
*nlk
= nlk_sk(sk
);
29 mutex_lock(&nlk
->pg_vec_lock
);
30 ret
= sk_diag_put_ring(&nlk
->rx_ring
, NETLINK_DIAG_RX_RING
, nlskb
);
32 ret
= sk_diag_put_ring(&nlk
->tx_ring
, NETLINK_DIAG_TX_RING
,
34 mutex_unlock(&nlk
->pg_vec_lock
);
39 static int sk_diag_put_rings_cfg(struct sock
*sk
, struct sk_buff
*nlskb
)
45 static int sk_diag_dump_groups(struct sock
*sk
, struct sk_buff
*nlskb
)
47 struct netlink_sock
*nlk
= nlk_sk(sk
);
49 if (nlk
->groups
== NULL
)
52 return nla_put(nlskb
, NETLINK_DIAG_GROUPS
, NLGRPSZ(nlk
->ngroups
),
56 static int sk_diag_fill(struct sock
*sk
, struct sk_buff
*skb
,
57 struct netlink_diag_req
*req
,
58 u32 portid
, u32 seq
, u32 flags
, int sk_ino
)
61 struct netlink_diag_msg
*rep
;
62 struct netlink_sock
*nlk
= nlk_sk(sk
);
64 nlh
= nlmsg_put(skb
, portid
, seq
, SOCK_DIAG_BY_FAMILY
, sizeof(*rep
),
69 rep
= nlmsg_data(nlh
);
70 rep
->ndiag_family
= AF_NETLINK
;
71 rep
->ndiag_type
= sk
->sk_type
;
72 rep
->ndiag_protocol
= sk
->sk_protocol
;
73 rep
->ndiag_state
= sk
->sk_state
;
75 rep
->ndiag_ino
= sk_ino
;
76 rep
->ndiag_portid
= nlk
->portid
;
77 rep
->ndiag_dst_portid
= nlk
->dst_portid
;
78 rep
->ndiag_dst_group
= nlk
->dst_group
;
79 sock_diag_save_cookie(sk
, rep
->ndiag_cookie
);
81 if ((req
->ndiag_show
& NDIAG_SHOW_GROUPS
) &&
82 sk_diag_dump_groups(sk
, skb
))
85 if ((req
->ndiag_show
& NDIAG_SHOW_MEMINFO
) &&
86 sock_diag_put_meminfo(sk
, skb
, NETLINK_DIAG_MEMINFO
))
89 if ((req
->ndiag_show
& NDIAG_SHOW_RING_CFG
) &&
90 sk_diag_put_rings_cfg(sk
, skb
))
93 return nlmsg_end(skb
, nlh
);
96 nlmsg_cancel(skb
, nlh
);
100 static int __netlink_diag_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
,
101 int protocol
, int s_num
)
103 struct netlink_table
*tbl
= &nl_table
[protocol
];
104 struct nl_portid_hash
*hash
= &tbl
->hash
;
105 struct net
*net
= sock_net(skb
->sk
);
106 struct netlink_diag_req
*req
;
108 int ret
= 0, num
= 0, i
;
110 req
= nlmsg_data(cb
->nlh
);
112 for (i
= 0; i
<= hash
->mask
; i
++) {
113 sk_for_each(sk
, &hash
->table
[i
]) {
114 if (!net_eq(sock_net(sk
), net
))
121 if (sk_diag_fill(sk
, skb
, req
,
122 NETLINK_CB(cb
->skb
).portid
,
125 sock_i_ino(sk
)) < 0) {
134 sk_for_each_bound(sk
, &tbl
->mc_list
) {
137 if (!net_eq(sock_net(sk
), net
))
144 if (sk_diag_fill(sk
, skb
, req
,
145 NETLINK_CB(cb
->skb
).portid
,
148 sock_i_ino(sk
)) < 0) {
156 cb
->args
[1] = protocol
;
161 static int netlink_diag_dump(struct sk_buff
*skb
, struct netlink_callback
*cb
)
163 struct netlink_diag_req
*req
;
164 int s_num
= cb
->args
[0];
166 req
= nlmsg_data(cb
->nlh
);
168 read_lock(&nl_table_lock
);
170 if (req
->sdiag_protocol
== NDIAG_PROTO_ALL
) {
173 for (i
= cb
->args
[1]; i
< MAX_LINKS
; i
++) {
174 if (__netlink_diag_dump(skb
, cb
, i
, s_num
))
179 if (req
->sdiag_protocol
>= MAX_LINKS
) {
180 read_unlock(&nl_table_lock
);
184 __netlink_diag_dump(skb
, cb
, req
->sdiag_protocol
, s_num
);
187 read_unlock(&nl_table_lock
);
192 static int netlink_diag_handler_dump(struct sk_buff
*skb
, struct nlmsghdr
*h
)
194 int hdrlen
= sizeof(struct netlink_diag_req
);
195 struct net
*net
= sock_net(skb
->sk
);
197 if (nlmsg_len(h
) < hdrlen
)
200 if (h
->nlmsg_flags
& NLM_F_DUMP
) {
201 struct netlink_dump_control c
= {
202 .dump
= netlink_diag_dump
,
204 return netlink_dump_start(net
->diag_nlsk
, skb
, h
, &c
);
209 static const struct sock_diag_handler netlink_diag_handler
= {
210 .family
= AF_NETLINK
,
211 .dump
= netlink_diag_handler_dump
,
214 static int __init
netlink_diag_init(void)
216 return sock_diag_register(&netlink_diag_handler
);
219 static void __exit
netlink_diag_exit(void)
221 sock_diag_unregister(&netlink_diag_handler
);
224 module_init(netlink_diag_init
);
225 module_exit(netlink_diag_exit
);
226 MODULE_LICENSE("GPL");
227 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_NETLINK
, NETLINK_SOCK_DIAG
, 16 /* AF_NETLINK */);