Skip to content

Commit

Permalink
printk/console: Always disable boot consoles that use init memory bef…
Browse files Browse the repository at this point in the history
…ore it is freed

Commit 4c30c6f ("kernel/printk: do not turn off bootconsole in
printk_late_init() if keep_bootcon") added a check on keep_bootcon to
ensure that boot consoles were kept around until the real console is
registered.

This can lead to problems if the boot console data and code are in the
init section, since it can be freed before the boot console is
unregistered.

Commit 81cc26f ("printk: only unregister boot consoles when
necessary") fixed this a better way. It allowed to keep boot consoles
that did not use init data. Unfortunately it did not remove the check
of keep_bootcon.

This can lead to crashes and weird panics when the bootconsole is
accessed after free, especially if page poisoning is in use and the
code / data have been overwritten with a poison value.

To prevent this, always free the boot console if it is within the init
section. In addition, print a warning about that the console is removed
prematurely.

Finally there is a new comment how to avoid the warning. It replaced
an explanation that duplicated a more comprehensive function
description few lines above.

Fixes: 4c30c6f ("kernel/printk: do not turn off bootconsole in printk_late_init() if keep_bootcon")
Link: http://lkml.kernel.org/r/[email protected]
Cc: Steven Rostedt <[email protected]>
Cc: Andrew Morton <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Jiri Slaby <[email protected]>
Cc: "David S. Miller" <[email protected]>
Cc: Alan Cox <[email protected]>
Cc: "Fabio M. Di Nitto" <[email protected]>
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Matt Redfearn <[email protected]>
[[email protected]: print the warning, code and comments clean up]
Reviewed-by: Sergey Senozhatsky <[email protected]>
Signed-off-by: Petr Mladek <[email protected]>
  • Loading branch information
mpredfearn authored and pmladek committed Jul 27, 2017
1 parent aec47ca commit 2b1be68
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions kernel/printk/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -2650,26 +2650,24 @@ void __init console_init(void)
* makes it difficult to diagnose problems that occur during this time.
*
* To mitigate this problem somewhat, only unregister consoles whose memory
* intersects with the init section. Note that code exists elsewhere to get
* rid of the boot console as soon as the proper console shows up, so there
* won't be side-effects from postponing the removal.
* intersects with the init section. Note that all other boot consoles will
* get unregistred when the real preferred console is registered.
*/
static int __init printk_late_init(void)
{
struct console *con;
int ret;

for_each_console(con) {
if (!keep_bootcon && con->flags & CON_BOOT) {
if ((con->flags & CON_BOOT) &&
init_section_intersects(con, sizeof(*con))) {
/*
* Make sure to unregister boot consoles whose data
* resides in the init section before the init section
* is discarded. Boot consoles whose data will stick
* around will automatically be unregistered when the
* proper console replaces them.
* Please, consider moving the reported consoles out
* of the init section.
*/
if (init_section_intersects(con, sizeof(*con)))
unregister_console(con);
pr_warn("bootconsole [%s%d] uses init memory and must be disabled even before the real one is ready\n",
con->name, con->index);
unregister_console(con);
}
}
ret = cpuhp_setup_state_nocalls(CPUHP_PRINTK_DEAD, "printk:dead", NULL,
Expand Down

0 comments on commit 2b1be68

Please sign in to comment.