Skip to content

Commit dadb43f

Browse files
Jiri Slaby (SUSE)naushir
Jiri Slaby (SUSE)
authored andcommitted
fbcon: always restore the old font data in fbcon_do_set_font()
[ Upstream commit 00d6a28 ] Commit a5a9230 (fbdev: fbcon: Properly revert changes when vc_resize() failed) started restoring old font data upon failure (of vc_resize()). But it performs so only for user fonts. It means that the "system"/internal fonts are not restored at all. So in result, the very first call to fbcon_do_set_font() performs no restore at all upon failing vc_resize(). This can be reproduced by Syzkaller to crash the system on the next invocation of font_get(). It's rather hard to hit the allocation failure in vc_resize() on the first font_set(), but not impossible. Esp. if fault injection is used to aid the execution/failure. It was demonstrated by Sirius: BUG: unable to handle page fault for address: fffffffffffffff8 #PF: supervisor read access in kernel mode #PF: error_code(0x0000) - not-present page PGD cb7b067 P4D cb7b067 PUD cb7d067 PMD 0 Oops: 0000 [raspberrypi#1] PREEMPT SMP KASAN CPU: 1 PID: 8007 Comm: poc Not tainted 6.7.0-g9d1694dc91ce raspberrypi#20 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.15.0-1 04/01/2014 RIP: 0010:fbcon_get_font+0x229/0x800 drivers/video/fbdev/core/fbcon.c:2286 Call Trace: <TASK> con_font_get drivers/tty/vt/vt.c:4558 [inline] con_font_op+0x1fc/0xf20 drivers/tty/vt/vt.c:4673 vt_k_ioctl drivers/tty/vt/vt_ioctl.c:474 [inline] vt_ioctl+0x632/0x2ec0 drivers/tty/vt/vt_ioctl.c:752 tty_ioctl+0x6f8/0x1570 drivers/tty/tty_io.c:2803 vfs_ioctl fs/ioctl.c:51 [inline] ... So restore the font data in any case, not only for user fonts. Note the later 'if' is now protected by 'old_userfont' and not 'old_data' as the latter is always set now. (And it is supposed to be non-NULL. Otherwise we would see the bug above again.) Signed-off-by: Jiri Slaby (SUSE) <[email protected]> Fixes: a5a9230 ("fbdev: fbcon: Properly revert changes when vc_resize() failed") Reported-and-tested-by: Ubisectech Sirius <[email protected]> Cc: Ubisectech Sirius <[email protected]> Cc: Daniel Vetter <[email protected]> Cc: Helge Deller <[email protected]> Cc: [email protected] Cc: [email protected] Signed-off-by: Daniel Vetter <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected] Signed-off-by: Sasha Levin <[email protected]>
1 parent b029b5e commit dadb43f

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

drivers/video/fbdev/core/fbcon.c

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2398,11 +2398,9 @@ static int fbcon_do_set_font(struct vc_data *vc, int w, int h, int charcount,
23982398
struct fbcon_ops *ops = info->fbcon_par;
23992399
struct fbcon_display *p = &fb_display[vc->vc_num];
24002400
int resize, ret, old_userfont, old_width, old_height, old_charcount;
2401-
char *old_data = NULL;
2401+
u8 *old_data = vc->vc_font.data;
24022402

24032403
resize = (w != vc->vc_font.width) || (h != vc->vc_font.height);
2404-
if (p->userfont)
2405-
old_data = vc->vc_font.data;
24062404
vc->vc_font.data = (void *)(p->fontdata = data);
24072405
old_userfont = p->userfont;
24082406
if ((p->userfont = userfont))
@@ -2436,13 +2434,13 @@ static int fbcon_do_set_font(struct vc_data *vc, int w, int h, int charcount,
24362434
update_screen(vc);
24372435
}
24382436

2439-
if (old_data && (--REFCOUNT(old_data) == 0))
2437+
if (old_userfont && (--REFCOUNT(old_data) == 0))
24402438
kfree(old_data - FONT_EXTRA_WORDS * sizeof(int));
24412439
return 0;
24422440

24432441
err_out:
24442442
p->fontdata = old_data;
2445-
vc->vc_font.data = (void *)old_data;
2443+
vc->vc_font.data = old_data;
24462444

24472445
if (userfont) {
24482446
p->userfont = old_userfont;

0 commit comments

Comments
 (0)