mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	bpf: fix BTF limits
vmlinux BTF has more than 64k types.
Its string section is also at the offset larger than 64k.
Adjust both limits to make in-kernel BTF verifier successfully parse in-kernel BTF.
Fixes: 69b693f0ae ("bpf: btf: Introduce BPF Type Format (BTF)")
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Martin KaFai Lau <kafai@fb.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
			
			
This commit is contained in:
		
							parent
							
								
									9eea984979
								
							
						
					
					
						commit
						a0791f0df7
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -22,9 +22,9 @@ struct btf_header { | |||
| }; | ||||
| 
 | ||||
| /* Max # of type identifier */ | ||||
| #define BTF_MAX_TYPE	0x0000ffff | ||||
| #define BTF_MAX_TYPE	0x000fffff | ||||
| /* Max offset into the string section */ | ||||
| #define BTF_MAX_NAME_OFFSET	0x0000ffff | ||||
| #define BTF_MAX_NAME_OFFSET	0x00ffffff | ||||
| /* Max # of struct/union/enum members or func args */ | ||||
| #define BTF_MAX_VLEN	0xffff | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Alexei Starovoitov
						Alexei Starovoitov