Bug 207119

Summary: Possible null pointer dereference in rand_initialize()
Product: Drivers Reporter: Dongyang Zhan (zhandy)
Component: Console/FramebuffersAssignee: James Simmons (jsimmons)
Status: NEW ---    
Severity: normal    
Priority: P1    
Hardware: All   
OS: Linux   
Kernel Version: Linux 4.17 Subsystem:
Regression: No Bisected commit-id:

Description Dongyang Zhan 2020-04-05 15:46:12 UTC
In Linux 4.17, rand_initialize() in /drivers/char/random.c does not handles the failure of memory allocation. When crng = kmalloc_node(sizeof(struct crng_state),
GFP_KERNEL | __GFP_NOFAIL, i) fails, accessing this pointer memory via this pointer crng->lock will cause a null pointer dereference bug.

Source code link:
https://elixir.bootlin.com/linux/v4.10.17/source/drivers/char/random.c#L1656

Source code:
crng = kmalloc_node(sizeof(struct crng_state),
				    GFP_KERNEL | __GFP_NOFAIL, i);
		spin_lock_init(&crng->lock); // dose not check if crng is null.
		crng_initialize(crng);