diff options
Diffstat (limited to 'net/ipv4/ah4.c')
| -rw-r--r-- | net/ipv4/ah4.c | 17 | 
1 files changed, 13 insertions, 4 deletions
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index e8f2617ecd4..a0d8392491c 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c @@ -398,16 +398,25 @@ static void ah4_err(struct sk_buff *skb, u32 info)  	struct ip_auth_hdr *ah = (struct ip_auth_hdr *)(skb->data+(iph->ihl<<2));  	struct xfrm_state *x; -	if (icmp_hdr(skb)->type != ICMP_DEST_UNREACH || -	    icmp_hdr(skb)->code != ICMP_FRAG_NEEDED) +	switch (icmp_hdr(skb)->type) { +	case ICMP_DEST_UNREACH: +		if (icmp_hdr(skb)->code != ICMP_FRAG_NEEDED) +			return; +	case ICMP_REDIRECT: +		break; +	default:  		return; +	}  	x = xfrm_state_lookup(net, skb->mark, (const xfrm_address_t *)&iph->daddr,  			      ah->spi, IPPROTO_AH, AF_INET);  	if (!x)  		return; -	pr_debug("pmtu discovery on SA AH/%08x/%08x\n", -		 ntohl(ah->spi), ntohl(iph->daddr)); + +	if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH) +		ipv4_update_pmtu(skb, net, info, 0, 0, IPPROTO_AH, 0); +	else +		ipv4_redirect(skb, net, 0, 0, IPPROTO_AH, 0);  	xfrm_state_put(x);  }  |