mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	virtio_net: fix use after free on allocation failure
In the extremely unlikely event that driver initialization fails after RX buffers are added, virtio net frees RX buffers while VQs are still active, potentially causing device to use a freed buffer. To fix, reset device first - same as we do on device removal. Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
		
							parent
							
								
									64b4cc3911
								
							
						
					
					
						commit
						0246555550
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -1830,6 +1830,8 @@ static int virtnet_probe(struct virtio_device *vdev)
 | 
			
		|||
	return 0;
 | 
			
		||||
 | 
			
		||||
free_recv_bufs:
 | 
			
		||||
	vi->vdev->config->reset(vdev);
 | 
			
		||||
 | 
			
		||||
	free_receive_bufs(vi);
 | 
			
		||||
	unregister_netdev(dev);
 | 
			
		||||
free_vqs:
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue