提交 f2a0e45f 编写于 作者: L Leon Romanovsky 提交者: Jason Gunthorpe

RDMA/nldev: Don't expose number of not-visible entries

Netlink dumpit handshake exchanges the index from which kernel should
start to return its value, in current code, this index included
not-visible in this PID items too and indirectly revealed the number of
entries.
Signed-off-by: NLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: NJason Gunthorpe <jgg@mellanox.com>
上级 1b8b7788
......@@ -1123,13 +1123,10 @@ static int res_get_common_dumpit(struct sk_buff *skb,
* objects.
*/
xa_for_each(&rt->xa, id, res) {
if (idx < start)
goto next;
if (!is_visible_in_pid_ns(res))
goto next;
continue;
if (!rdma_restrack_get(res))
if (idx < start || !rdma_restrack_get(res))
goto next;
xa_unlock(&rt->xa);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册