[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <tencent_C816151C508524D86E346A69B706C0D03C09@qq.com>
Date: Sat, 14 Oct 2023 20:14:53 +0800
From: Zhang Shurong <zhang_shurong@...mail.com>
To: daniel@...ll.ch
Cc: deller@....de, linux-fbdev@...r.kernel.org,
dri-devel@...ts.freedesktop.org, linux-kernel@...r.kernel.org,
Zhang Shurong <zhang_shurong@...mail.com>
Subject: [PATCH] fbdev: fbmon: fix potential divide error in fb_validate_mode
We can easily use FBIOPUT_VSCREENINFO set fb_var_screeninfo, so
it's possible for a divide by zero error to occur.
Fix this by making sure the divisor is non-zero before the computation.
Signed-off-by: Zhang Shurong <zhang_shurong@...mail.com>
---
drivers/video/fbdev/core/fbmon.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/video/fbdev/core/fbmon.c b/drivers/video/fbdev/core/fbmon.c
index 79e5bfbdd34c..bdd15b8e3a71 100644
--- a/drivers/video/fbdev/core/fbmon.c
+++ b/drivers/video/fbdev/core/fbmon.c
@@ -1470,6 +1470,9 @@ int fb_validate_mode(const struct fb_var_screeninfo *var, struct fb_info *info)
if (var->vmode & FB_VMODE_DOUBLE)
vtotal *= 2;
+ if (!htotal || !vtotal)
+ return -EINVAL;
+
hfreq = pixclock/htotal;
hfreq = (hfreq + 500) / 1000 * 1000;
--
2.30.2
Powered by blists - more mailing lists