mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-03 13:13:52 +07:00
netfilter: nf_ct_sip: handle non-linear skbs
Handle non-linear skbs by linearizing them instead of silently failing. Long term the helper should be fixed to either work with non-linear skbs directly by using the string search API or work on a copy of the data. Based on patch by Jason Gunthorpe <jgunthorpe@obsidianresearch.com> Signed-off-by: Patrick McHardy <kaber@trash.net>
This commit is contained in:
parent
736d58e3a2
commit
a1d7c1b4b8
@ -1393,10 +1393,8 @@ static int sip_help_tcp(struct sk_buff *skb, unsigned int protoff,
|
|||||||
|
|
||||||
nf_ct_refresh(ct, skb, sip_timeout * HZ);
|
nf_ct_refresh(ct, skb, sip_timeout * HZ);
|
||||||
|
|
||||||
if (skb_is_nonlinear(skb)) {
|
if (unlikely(skb_linearize(skb)))
|
||||||
pr_debug("Copy of skbuff not supported yet.\n");
|
return NF_DROP;
|
||||||
return NF_ACCEPT;
|
|
||||||
}
|
|
||||||
|
|
||||||
dptr = skb->data + dataoff;
|
dptr = skb->data + dataoff;
|
||||||
datalen = skb->len - dataoff;
|
datalen = skb->len - dataoff;
|
||||||
@ -1455,10 +1453,8 @@ static int sip_help_udp(struct sk_buff *skb, unsigned int protoff,
|
|||||||
|
|
||||||
nf_ct_refresh(ct, skb, sip_timeout * HZ);
|
nf_ct_refresh(ct, skb, sip_timeout * HZ);
|
||||||
|
|
||||||
if (skb_is_nonlinear(skb)) {
|
if (unlikely(skb_linearize(skb)))
|
||||||
pr_debug("Copy of skbuff not supported yet.\n");
|
return NF_DROP;
|
||||||
return NF_ACCEPT;
|
|
||||||
}
|
|
||||||
|
|
||||||
dptr = skb->data + dataoff;
|
dptr = skb->data + dataoff;
|
||||||
datalen = skb->len - dataoff;
|
datalen = skb->len - dataoff;
|
||||||
|
Loading…
Reference in New Issue
Block a user