mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	printk: handle blank console arguments passed in.
If uboot passes a blank string to console_setup then it results in a trashed memory. Ultimately, the kernel crashes during freeing up the memory. This fix checks if there is a blank parameter being passed to console_setup from uboot. In case it detects that the console parameter is blank then it doesn't setup the serial device and it gracefully exits. Link: https://lore.kernel.org/r/20200522065306.83-1-shreyas.joshi@biamp.com Signed-off-by: Shreyas Joshi <shreyas.joshi@biamp.com> Acked-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> [pmladek@suse.com: Better format the commit message and code, remove unnecessary brackets.] Signed-off-by: Petr Mladek <pmladek@suse.com>
This commit is contained in:
		
							parent
							
								
									8ece3b3eb5
								
							
						
					
					
						commit
						48021f9813
					
				
					 1 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
					@ -2200,6 +2200,9 @@ static int __init console_setup(char *str)
 | 
				
			||||||
	char *s, *options, *brl_options = NULL;
 | 
						char *s, *options, *brl_options = NULL;
 | 
				
			||||||
	int idx;
 | 
						int idx;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (str[0] == 0)
 | 
				
			||||||
 | 
							return 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (_braille_console_setup(&str, &brl_options))
 | 
						if (_braille_console_setup(&str, &brl_options))
 | 
				
			||||||
		return 1;
 | 
							return 1;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue