mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 16:54:21 +00:00 
			
		
		
		
	ipv6: Fix out-of-bounds access in ipv6_find_tlv()
optlen is fetched without checking whether there is more than one byte to parse.
It can lead to out-of-bounds access.
Found by InfoTeCS on behalf of Linux Verification Center
(linuxtesting.org) with SVACE.
Fixes: c61a404325 ("[IPV6]: Find option offset by type.")
Signed-off-by: Gavrilov Ilia <Ilia.Gavrilov@infotecs.ru>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
			
			
This commit is contained in:
		
							parent
							
								
									ba46c96db9
								
							
						
					
					
						commit
						878ecb0897
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		|  | @ -143,6 +143,8 @@ int ipv6_find_tlv(const struct sk_buff *skb, int offset, int type) | |||
| 			optlen = 1; | ||||
| 			break; | ||||
| 		default: | ||||
| 			if (len < 2) | ||||
| 				goto bad; | ||||
| 			optlen = nh[offset + 1] + 2; | ||||
| 			if (optlen > len) | ||||
| 				goto bad; | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Gavrilov Ilia
						Gavrilov Ilia