mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
netfilter: nfnetlink_acct: fix incomplete dumping of objects
Fix broken incomplete object dumping if the list of objects does not fit into one single netlink message. Reported-by: Gabriel Lazar <Gabriel.Lazar@com.utcluj.ro> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
5343a7f8be
commit
991a6b735f
@ -149,9 +149,12 @@ nfnl_acct_dump(struct sk_buff *skb, struct netlink_callback *cb)
|
|||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
list_for_each_entry_rcu(cur, &nfnl_acct_list, head) {
|
list_for_each_entry_rcu(cur, &nfnl_acct_list, head) {
|
||||||
if (last && cur != last)
|
if (last) {
|
||||||
continue;
|
if (cur != last)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
last = NULL;
|
||||||
|
}
|
||||||
if (nfnl_acct_fill_info(skb, NETLINK_CB(cb->skb).portid,
|
if (nfnl_acct_fill_info(skb, NETLINK_CB(cb->skb).portid,
|
||||||
cb->nlh->nlmsg_seq,
|
cb->nlh->nlmsg_seq,
|
||||||
NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
|
NFNL_MSG_TYPE(cb->nlh->nlmsg_type),
|
||||||
|
Loading…
Reference in New Issue
Block a user