Skip to content

Commit

Permalink
netfilter: conntrack: skip verification of zero UDP checksum
Browse files Browse the repository at this point in the history
The checksum is optional for UDP packets. However nf_reject would
previously require a valid checksum to elicit a response such as
ICMP_DEST_UNREACH.

Add some logic to nf_reject_verify_csum to determine if a UDP packet has
a zero checksum and should therefore not be verified.

Signed-off-by: Kevin Mitchell <[email protected]>
Signed-off-by: Pablo Neira Ayuso <[email protected]>
  • Loading branch information
arkevmitch authored and ummakynes committed May 13, 2022
1 parent 3412e16 commit 4f9bd53
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 9 deletions.
21 changes: 17 additions & 4 deletions include/net/netfilter/nf_reject.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,28 @@
#include <linux/types.h>
#include <uapi/linux/in.h>

static inline bool nf_reject_verify_csum(__u8 proto)
static inline bool nf_reject_verify_csum(struct sk_buff *skb, int dataoff,
__u8 proto)
{
/* Skip protocols that don't use 16-bit one's complement checksum
* of the entire payload.
*/
switch (proto) {
/* Protocols with optional checksums. */
case IPPROTO_UDP: {
const struct udphdr *udp_hdr;
struct udphdr _udp_hdr;

udp_hdr = skb_header_pointer(skb, dataoff,
sizeof(_udp_hdr),
&_udp_hdr);
if (!udp_hdr || udp_hdr->check)
return true;

return false;
}
case IPPROTO_GRE:

/* Protocols with other integrity checks. */
case IPPROTO_AH:
case IPPROTO_ESP:
Expand All @@ -19,9 +35,6 @@ static inline bool nf_reject_verify_csum(__u8 proto)
/* Protocols with partial checksums. */
case IPPROTO_UDPLITE:
case IPPROTO_DCCP:

/* Protocols with optional checksums. */
case IPPROTO_GRE:
return false;
}
return true;
Expand Down
10 changes: 7 additions & 3 deletions net/ipv4/netfilter/nf_reject_ipv4.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ struct sk_buff *nf_reject_skb_v4_unreach(struct net *net,
struct iphdr *niph;
struct icmphdr *icmph;
unsigned int len;
int dataoff;
__wsum csum;
u8 proto;

Expand All @@ -99,10 +100,11 @@ struct sk_buff *nf_reject_skb_v4_unreach(struct net *net,
if (pskb_trim_rcsum(oldskb, ntohs(ip_hdr(oldskb)->tot_len)))
return NULL;

dataoff = ip_hdrlen(oldskb);
proto = ip_hdr(oldskb)->protocol;

if (!skb_csum_unnecessary(oldskb) &&
nf_reject_verify_csum(proto) &&
nf_reject_verify_csum(oldskb, dataoff, proto) &&
nf_ip_checksum(oldskb, hook, ip_hdrlen(oldskb), proto))
return NULL;

Expand Down Expand Up @@ -311,6 +313,7 @@ EXPORT_SYMBOL_GPL(nf_send_reset);
void nf_send_unreach(struct sk_buff *skb_in, int code, int hook)
{
struct iphdr *iph = ip_hdr(skb_in);
int dataoff = ip_hdrlen(skb_in);
u8 proto = iph->protocol;

if (iph->frag_off & htons(IP_OFFSET))
Expand All @@ -320,12 +323,13 @@ void nf_send_unreach(struct sk_buff *skb_in, int code, int hook)
nf_reject_fill_skb_dst(skb_in) < 0)
return;

if (skb_csum_unnecessary(skb_in) || !nf_reject_verify_csum(proto)) {
if (skb_csum_unnecessary(skb_in) ||
!nf_reject_verify_csum(skb_in, dataoff, proto)) {
icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
return;
}

if (nf_ip_checksum(skb_in, hook, ip_hdrlen(skb_in), proto) == 0)
if (nf_ip_checksum(skb_in, hook, dataoff, proto) == 0)
icmp_send(skb_in, ICMP_DEST_UNREACH, code, 0);
}
EXPORT_SYMBOL_GPL(nf_send_unreach);
Expand Down
4 changes: 2 additions & 2 deletions net/ipv6/netfilter/nf_reject_ipv6.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static bool nf_reject_v6_csum_ok(struct sk_buff *skb, int hook)
if (thoff < 0 || thoff >= skb->len || (fo & htons(~0x7)) != 0)
return false;

if (!nf_reject_verify_csum(proto))
if (!nf_reject_verify_csum(skb, thoff, proto))
return true;

return nf_ip6_checksum(skb, hook, thoff, proto) == 0;
Expand Down Expand Up @@ -388,7 +388,7 @@ static bool reject6_csum_ok(struct sk_buff *skb, int hook)
if (thoff < 0 || thoff >= skb->len || (fo & htons(~0x7)) != 0)
return false;

if (!nf_reject_verify_csum(proto))
if (!nf_reject_verify_csum(skb, thoff, proto))
return true;

return nf_ip6_checksum(skb, hook, thoff, proto) == 0;
Expand Down

0 comments on commit 4f9bd53

Please sign in to comment.