diff mbox series

scsi: mpt3sas: Fix a possible divide-by-zero bug in base_mod64()

Message ID 20210811132439.10370-1-islituo@gmail.com (mailing list archive)
State Changes Requested
Headers show
Series scsi: mpt3sas: Fix a possible divide-by-zero bug in base_mod64() | expand

Commit Message

Tuo Li Aug. 11, 2021, 1:24 p.m. UTC
The variable divisor is checked in:
  if (!divisor)

This indicates that divisor can be NULL.
If so, a divide-by-zero bug will occur:
  remainder = do_div(dividend, divisor);

To fix the possible bug, the function returns 0 when divisor is zero.

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Signed-off-by: Tuo Li <islituo@gmail.com>
---
 drivers/scsi/mpt3sas/mpt3sas_base.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/scsi/mpt3sas/mpt3sas_base.c b/drivers/scsi/mpt3sas/mpt3sas_base.c
index 19b1c0cf5f2a..3550998ea38b 100644
--- a/drivers/scsi/mpt3sas/mpt3sas_base.c
+++ b/drivers/scsi/mpt3sas/mpt3sas_base.c
@@ -1594,8 +1594,10 @@  static u32 base_mod64(u64 dividend, u32 divisor)
 {
 	u32 remainder;
 
-	if (!divisor)
+	if (!divisor) {
 		pr_err("mpt3sas: DIVISOR is zero, in div fn\n");
+		return 0;
+	}
 	remainder = do_div(dividend, divisor);
 	return remainder;
 }