From: Qianqiang Liu <hidden> Date: 2024-09-16 01:11:08
syzbot has found a NULL pointer dereference bug in fbcon [1].
This issue is caused by ops->putcs being a NULL pointer.
We need to check the pointer before using it.
[1] https://syzkaller.appspot.com/bug?extid=3d613ae53c031502687a
Cc: stable@vger.kernel.org
Reported-and-tested-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Signed-off-by: Qianqiang Liu <redacted>
---
drivers/video/fbdev/core/fbcon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
syzbot has found a NULL pointer dereference bug in fbcon [1].
This issue is caused by ops->putcs being a NULL pointer.
We need to check the pointer before using it.
[1] https://syzkaller.appspot.com/bug?extid=3d613ae53c031502687a
Cc: stable@vger.kernel.org
Reported-and-tested-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Signed-off-by: Qianqiang Liu <redacted>
---
drivers/video/fbdev/core/fbcon.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
From: Qianqiang Liu <hidden> Date: 2024-09-24 16:13:26
syzbot has found a NULL pointer dereference bug in fbcon.
This issue is caused by ops->putcs being a NULL pointer.
We need to ensure it is initialized properly.
Reported-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=3d613ae53c031502687a
Tested-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Signed-off-by: Qianqiang Liu <redacted>
---
Changes since v1:
- Initialize ops->putcs by calling set_blitting_type()
---
drivers/video/fbdev/core/fbcon.c | 2 ++
1 file changed, 2 insertions(+)
@@ -861,6 +861,8 @@ static int set_con2fb_map(int unit, int newidx, int user)returnerr;fbcon_add_cursor_work(info);+}elseif(vc){+set_blitting_type(vc,info);}con2fb_map[unit]=newidx;
Hi Qianqiang,
On 9/24/24 18:13, Qianqiang Liu wrote:
syzbot has found a NULL pointer dereference bug in fbcon.
This issue is caused by ops->putcs being a NULL pointer.
We need to ensure it is initialized properly.
Reported-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=3d613ae53c031502687a
Tested-by: syzbot+3d613ae53c031502687a@syzkaller.appspotmail.com
Signed-off-by: Qianqiang Liu <redacted>
---
Changes since v1:
- Initialize ops->putcs by calling set_blitting_type()
Thanks a lot tracking this issue down!
At first sight your patch seems correct.
But could you please document in the patch description what exactly (and why)
something goes wrong and how your patch fixes it?
E.g. why was opt->putcs missed to be initialized even earlier and why does
it need initialization now?
You did a good work in producing a reduced testcase.
If it's quite small, it's a good idea to even include it in the
commit message?
Helge
@@ -861,6 +861,8 @@ static int set_con2fb_map(int unit, int newidx, int user)returnerr;fbcon_add_cursor_work(info);+}elseif(vc){+set_blitting_type(vc,info);}con2fb_map[unit]=newidx;
@@ -861,6 +861,8 @@ static int set_con2fb_map(int unit, int newidx, int user)returnerr;fbcon_add_cursor_work(info);+}elseif(vc){+set_blitting_type(vc,info);}con2fb_map[unit]=newidx;
@@ -861,6 +861,8 @@ static int set_con2fb_map(int unit, int newidx, int user)returnerr;fbcon_add_cursor_work(info);+}elseif(vc){+set_blitting_type(vc,info);}con2fb_map[unit]=newidx;