* [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification
@ 2023-08-25 2:14 Xiao Liang
2023-08-25 3:11 ` Florian Westphal
0 siblings, 1 reply; 5+ messages in thread
From: Xiao Liang @ 2023-08-25 2:14 UTC (permalink / raw)
To: netfilter-devel; +Cc: Florian Westphal
nft_tcp_header_pointer() may copy TCP header if it's not linear.
In that case, we should modify the packet rather than the buffer, after
proper skb_ensure_writable().
Signed-off-by: Xiao Liang <shaw.leon@gmail.com>
---
net/netfilter/nft_exthdr.c | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/net/netfilter/nft_exthdr.c b/net/netfilter/nft_exthdr.c
index 7f856ceb3a66..2189ccc1119c 100644
--- a/net/netfilter/nft_exthdr.c
+++ b/net/netfilter/nft_exthdr.c
@@ -254,13 +254,12 @@ static void nft_exthdr_tcp_set_eval(const struct nft_expr *expr,
goto err;
if (skb_ensure_writable(pkt->skb,
- nft_thoff(pkt) + i + priv->len))
+ nft_thoff(pkt) + i + priv->offset +
+ priv->len))
goto err;
- tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff,
- &tcphdr_len);
- if (!tcph)
- goto err;
+ tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt));
+ opt = (u8 *)tcph;
offset = i + priv->offset;
@@ -325,9 +324,9 @@ static void nft_exthdr_tcp_strip_eval(const struct nft_expr *expr,
if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len))
goto drop;
- opt = (u8 *)nft_tcp_header_pointer(pkt, sizeof(buff), buff, &tcphdr_len);
- if (!opt)
- goto err;
+ tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt));
+ opt = (u8 *)tcph;
+
for (i = sizeof(*tcph); i < tcphdr_len - 1; i += optl) {
unsigned int j;
--
2.42.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification
2023-08-25 2:14 [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification Xiao Liang
@ 2023-08-25 3:11 ` Florian Westphal
2023-08-25 3:23 ` Xiao Liang
2023-08-25 3:34 ` Xiao Liang
0 siblings, 2 replies; 5+ messages in thread
From: Florian Westphal @ 2023-08-25 3:11 UTC (permalink / raw)
To: Xiao Liang; +Cc: netfilter-devel, Florian Westphal
Xiao Liang <shaw.leon@gmail.com> wrote:
> nft_tcp_header_pointer() may copy TCP header if it's not linear.
> In that case, we should modify the packet rather than the buffer, after
> proper skb_ensure_writable().
Fixes: 99d1712bc41c ("netfilter: exthdr: tcp option set support")
I do not understand this changelog.
The bug is that skb_ensure_writable() size is too small, hence
nft_tcp_header_pointer() may return a pointer to local stack
buffer.
> Signed-off-by: Xiao Liang <shaw.leon@gmail.com>
> ---
> net/netfilter/nft_exthdr.c | 15 +++++++--------
> 1 file changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/net/netfilter/nft_exthdr.c b/net/netfilter/nft_exthdr.c
> index 7f856ceb3a66..2189ccc1119c 100644
> --- a/net/netfilter/nft_exthdr.c
> +++ b/net/netfilter/nft_exthdr.c
> @@ -254,13 +254,12 @@ static void nft_exthdr_tcp_set_eval(const struct nft_expr *expr,
> goto err;
>
> if (skb_ensure_writable(pkt->skb,
> - nft_thoff(pkt) + i + priv->len))
> + nft_thoff(pkt) + i + priv->offset +
> + priv->len))
[..]
> - tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff,
> - &tcphdr_len);
> - if (!tcph)
> - goto err;
> + tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt));
> + opt = (u8 *)tcph;
This modification is not related to the bug?
If you think this is better, then please say that the 'do not use
nft_tcp_header_pointer' is an unrelated cleanup in the commit message.
But I would prefer to not mix functional and non-functional changes.
Also, the use of the nft_tcp_header_pointer() helper is the reason why
this doesn't result in memory corruption.
> @@ -325,9 +324,9 @@ static void nft_exthdr_tcp_strip_eval(const struct nft_expr *expr,
> if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len))
Just use the above in nft_exthdr_tcp_set_eval and place it before the loop?
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification
2023-08-25 3:11 ` Florian Westphal
@ 2023-08-25 3:23 ` Xiao Liang
2023-08-25 3:34 ` Xiao Liang
1 sibling, 0 replies; 5+ messages in thread
From: Xiao Liang @ 2023-08-25 3:23 UTC (permalink / raw)
To: Florian Westphal; +Cc: netfilter-devel
On Fri, Aug 25, 2023 at 11:11 AM Florian Westphal <fw@strlen.de> wrote:
>
> > @@ -325,9 +324,9 @@ static void nft_exthdr_tcp_strip_eval(const struct nft_expr *expr,
> > if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len))
>
> Just use the above in nft_exthdr_tcp_set_eval and place it before the loop?
Sure. Need to pull the entire TCP header with skb_ensure_writable() then.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification
2023-08-25 3:11 ` Florian Westphal
2023-08-25 3:23 ` Xiao Liang
@ 2023-08-25 3:34 ` Xiao Liang
2023-08-25 3:52 ` Florian Westphal
1 sibling, 1 reply; 5+ messages in thread
From: Xiao Liang @ 2023-08-25 3:34 UTC (permalink / raw)
To: Florian Westphal; +Cc: netfilter-devel
On Fri, Aug 25, 2023 at 11:11 AM Florian Westphal <fw@strlen.de> wrote:
> > - tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff,
> > - &tcphdr_len);
> > - if (!tcph)
> > - goto err;
> > + tcph = (struct tcphdr *)(pkt->skb->data + nft_thoff(pkt));
> > + opt = (u8 *)tcph;
>
> This modification is not related to the bug?
>
> If you think this is better, then please say that the 'do not use
> nft_tcp_header_pointer' is an unrelated cleanup in the commit message.
>
> But I would prefer to not mix functional and non-functional changes.
> Also, the use of the nft_tcp_header_pointer() helper is the reason why
> this doesn't result in memory corruption.
I think this makes it explicit that
"we are modifying the original packet"
rather than
"we are modifying the packet because above skb_ensure_writable() is enough"
>
> > @@ -325,9 +324,9 @@ static void nft_exthdr_tcp_strip_eval(const struct nft_expr *expr,
> > if (skb_ensure_writable(pkt->skb, nft_thoff(pkt) + tcphdr_len))
>
> Just use the above in nft_exthdr_tcp_set_eval and place it before the loop?
In this case, all TCP headers will be pulled even if they don't have
the target option.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification
2023-08-25 3:34 ` Xiao Liang
@ 2023-08-25 3:52 ` Florian Westphal
0 siblings, 0 replies; 5+ messages in thread
From: Florian Westphal @ 2023-08-25 3:52 UTC (permalink / raw)
To: Xiao Liang; +Cc: Florian Westphal, netfilter-devel
Xiao Liang <shaw.leon@gmail.com> wrote:
> > But I would prefer to not mix functional and non-functional changes.
> > Also, the use of the nft_tcp_header_pointer() helper is the reason why
> > this doesn't result in memory corruption.
>
> I think this makes it explicit that
> "we are modifying the original packet"
> rather than
> "we are modifying the packet because above skb_ensure_writable() is enough"
OK, I won't argue here.
> > Just use the above in nft_exthdr_tcp_set_eval and place it before the loop?
>
> In this case, all TCP headers will be pulled even if they don't have
> the target option.
Keep it simple.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-08-25 3:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-25 2:14 [PATCH nf] netfilter: nft_exthdr: Fix non-linear header modification Xiao Liang
2023-08-25 3:11 ` Florian Westphal
2023-08-25 3:23 ` Xiao Liang
2023-08-25 3:34 ` Xiao Liang
2023-08-25 3:52 ` Florian Westphal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).