mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	kernel/relay.c: revert "kernel/relay.c: fix potential memory leak"
This reverts commitba62bafe94("kernel/relay.c: fix potential memory leak"). This commit introduced a double free bug, because 'chan' is already freed by the line: kref_put(&chan->kref, relay_destroy_channel); This bug was found by syzkaller, using the BLKTRACESETUP ioctl. Link: http://lkml.kernel.org/r/20180127004759.101823-1-ebiggers3@gmail.com Fixes:ba62bafe94("kernel/relay.c: fix potential memory leak") Signed-off-by: Eric Biggers <ebiggers@google.com> Reported-by: syzbot <syzkaller@googlegroups.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Cc: Zhouyi Zhou <yizhouzhou@ict.ac.cn> Cc: Jens Axboe <axboe@kernel.dk> Cc: <stable@vger.kernel.org> [4.7+] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									28f3a488ed
								
							
						
					
					
						commit
						a1be1f3931
					
				
					 1 changed files with 0 additions and 1 deletions
				
			
		|  | @ -611,7 +611,6 @@ struct rchan *relay_open(const char *base_filename, | ||||||
| 
 | 
 | ||||||
| 	kref_put(&chan->kref, relay_destroy_channel); | 	kref_put(&chan->kref, relay_destroy_channel); | ||||||
| 	mutex_unlock(&relay_channels_mutex); | 	mutex_unlock(&relay_channels_mutex); | ||||||
| 	kfree(chan); |  | ||||||
| 	return NULL; | 	return NULL; | ||||||
| } | } | ||||||
| EXPORT_SYMBOL_GPL(relay_open); | EXPORT_SYMBOL_GPL(relay_open); | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue
	
	 Eric Biggers
						Eric Biggers