public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BUG] fbdev: i740fb: Divide error when ‘var->pixclock’ is zero
@ 2022-04-03 11:26 Zheyu Ma
  2022-04-03 15:02 ` Helge Deller
  0 siblings, 1 reply; 9+ messages in thread
From: Zheyu Ma @ 2022-04-03 11:26 UTC (permalink / raw)
  To: Helge Deller; +Cc: linux-fbdev, dri-devel, Linux Kernel Mailing List

Hi,

I found a bug in the function i740fb_set_par().

When the user calls the ioctl system call without setting the value to
'var->pixclock', the driver will throw a divide error.

This bug occurs because the driver uses the value of 'var->pixclock'
without checking it, as the following code snippet show:

if ((1000000 / var->pixclock) > DACSPEED8) {
     dev_err(info->device, "requested pixclock %i MHz out of range
(max. %i MHz at 8bpp)\n",
         1000000 / var->pixclock, DACSPEED8);
    return -EINVAL;x
}

We can fix this by checking the value of 'var->pixclock' in the
function i740fb_check_var() similar to commit
b36b242d4b8ea178f7fd038965e3cac7f30c3f09, or we should set the lowest
supported value when this field is zero.
I have no idea about which solution is better.

The following log reveals it:

divide error: 0000 [#1] PREEMPT SMP KASAN PTI
RIP: 0010:i740fb_decode_var drivers/video/fbdev/i740fb.c:444 [inline]
RIP: 0010:i740fb_set_par+0x272f/0x3bb0 drivers/video/fbdev/i740fb.c:739
Call Trace:
 <TASK>
 fb_set_var+0x604/0xeb0 drivers/video/fbdev/core/fbmem.c:1036
 do_fb_ioctl+0x234/0x670 drivers/video/fbdev/core/fbmem.c:1112
 fb_ioctl+0xdd/0x130 drivers/video/fbdev/core/fbmem.c:1191
 vfs_ioctl fs/ioctl.c:51 [inline]
 __do_sys_ioctl fs/ioctl.c:874 [inline]

Regards,
Zheyu Ma

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-04-07 15:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-03 11:26 [BUG] fbdev: i740fb: Divide error when ‘var->pixclock’ is zero Zheyu Ma
2022-04-03 15:02 ` Helge Deller
2022-04-04 11:46   ` Geert Uytterhoeven
2022-04-05  6:33     ` Helge Deller
2022-04-05  6:52       ` Geert Uytterhoeven
2022-04-05 17:46       ` Ondrej Zary
2022-04-05 18:23         ` Helge Deller
2022-04-06  1:24           ` Zheyu Ma
2022-04-07 15:50             ` Helge Deller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox