mirror of
https://github.com/torvalds/linux.git
synced 2026-05-21 05:18:45 +02:00
netfilter: nfnetlink: use original skbuff when committing/aborting
This allows us to access the original content of the batch from the commit and the abort paths. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
fcfa8f493f
commit
fc04733a1a
|
|
@ -333,7 +333,7 @@ static void nfnetlink_rcv_batch(struct sk_buff *skb, struct nlmsghdr *nlh,
|
|||
* original skb.
|
||||
*/
|
||||
if (err == -EAGAIN) {
|
||||
ss->abort(skb);
|
||||
ss->abort(oskb);
|
||||
nfnl_unlock(subsys_id);
|
||||
kfree_skb(nskb);
|
||||
goto replay;
|
||||
|
|
@ -357,9 +357,9 @@ static void nfnetlink_rcv_batch(struct sk_buff *skb, struct nlmsghdr *nlh,
|
|||
}
|
||||
done:
|
||||
if (success && done)
|
||||
ss->commit(skb);
|
||||
ss->commit(oskb);
|
||||
else
|
||||
ss->abort(skb);
|
||||
ss->abort(oskb);
|
||||
|
||||
nfnl_unlock(subsys_id);
|
||||
kfree_skb(nskb);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user