forked from mirrors/linux
		
	mm/page_alloc: add __alloc_size attributes for better bounds checking
As already done in GrapheneOS, add the __alloc_size attribute for appropriate page allocator interfaces, to provide additional hinting for better bounds checking, assisting CONFIG_FORTIFY_SOURCE and other compiler optimizations. Link: https://lkml.kernel.org/r/20210930222704.2631604-8-keescook@chromium.org Signed-off-by: Kees Cook <keescook@chromium.org> Co-developed-by: Daniel Micay <danielmicay@gmail.com> Signed-off-by: Daniel Micay <danielmicay@gmail.com> Cc: Andy Whitcroft <apw@canonical.com> Cc: Christoph Lameter <cl@linux.com> Cc: David Rientjes <rientjes@google.com> Cc: Dennis Zhou <dennis@kernel.org> Cc: Dwaipayan Ray <dwaipayanray1@gmail.com> Cc: Joe Perches <joe@perches.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Lukas Bulwahn <lukas.bulwahn@gmail.com> Cc: Miguel Ojeda <ojeda@kernel.org> Cc: Nathan Chancellor <nathan@kernel.org> Cc: Nick Desaulniers <ndesaulniers@google.com> Cc: Pekka Enberg <penberg@kernel.org> Cc: Tejun Heo <tj@kernel.org> Cc: Vlastimil Babka <vbabka@suse.cz> Cc: Alexandre Bounine <alex.bou9@gmail.com> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> Cc: Ira Weiny <ira.weiny@intel.com> Cc: Jing Xiangfeng <jingxiangfeng@huawei.com> Cc: John Hubbard <jhubbard@nvidia.com> Cc: kernel test robot <lkp@intel.com> Cc: Matt Porter <mporter@kernel.crashing.org> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Souptick Joarder <jrdr.linux@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									894f24bb56
								
							
						
					
					
						commit
						abd58f38df
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -608,9 +608,9 @@ static inline struct page *alloc_pages(gfp_t gfp_mask, unsigned int order) | ||||||
| extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); | extern unsigned long __get_free_pages(gfp_t gfp_mask, unsigned int order); | ||||||
| extern unsigned long get_zeroed_page(gfp_t gfp_mask); | extern unsigned long get_zeroed_page(gfp_t gfp_mask); | ||||||
| 
 | 
 | ||||||
| void *alloc_pages_exact(size_t size, gfp_t gfp_mask); | void *alloc_pages_exact(size_t size, gfp_t gfp_mask) __alloc_size(1); | ||||||
| void free_pages_exact(void *virt, size_t size); | void free_pages_exact(void *virt, size_t size); | ||||||
| void * __meminit alloc_pages_exact_nid(int nid, size_t size, gfp_t gfp_mask); | __meminit void *alloc_pages_exact_nid(int nid, size_t size, gfp_t gfp_mask) __alloc_size(1); | ||||||
| 
 | 
 | ||||||
| #define __get_free_page(gfp_mask) \ | #define __get_free_page(gfp_mask) \ | ||||||
| 		__get_free_pages((gfp_mask), 0) | 		__get_free_pages((gfp_mask), 0) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Kees Cook
						Kees Cook