mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	ipv4: Don't use ufo handling on later transformed packets
We might call ip_ufo_append_data() for packets that will be IPsec transformed later. This function should be used just for real udp packets. So we check for rt->dst.header_len which is only nonzero on IPsec handling and call ip_ufo_append_data() just if rt->dst.header_len is zero. Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
		
							parent
							
								
									12fdb4d3ba
								
							
						
					
					
						commit
						c146066ab8
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -828,7 +828,7 @@ static int __ip_append_data(struct sock *sk,
 | 
			
		|||
	cork->length += length;
 | 
			
		||||
	if (((length > mtu) || (skb && skb_is_gso(skb))) &&
 | 
			
		||||
	    (sk->sk_protocol == IPPROTO_UDP) &&
 | 
			
		||||
	    (rt->dst.dev->features & NETIF_F_UFO)) {
 | 
			
		||||
	    (rt->dst.dev->features & NETIF_F_UFO) && !rt->dst.header_len) {
 | 
			
		||||
		err = ip_ufo_append_data(sk, queue, getfrag, from, length,
 | 
			
		||||
					 hh_len, fragheaderlen, transhdrlen,
 | 
			
		||||
					 mtu, flags);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue