Explorar o código

msm: ipa3: Fix to validate the NAT table entries during NAT table init

During NAT table Initialization parameter pass from HLOS, if max/zero
table entries passed it was leading to out of bound read. Adding checks
to validate the table entries before passing to NAT table parameter.

Signed-off-by: Himansu Nayak <[email protected]>
Himansu Nayak %!s(int64=3) %!d(string=hai) anos
pai
achega
1840d3b8f5
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  1. 3 2
      drivers/platform/msm/ipa/ipa_v3/ipa_nat.c

+ 3 - 2
drivers/platform/msm/ipa/ipa_v3/ipa_nat.c

@@ -1441,8 +1441,9 @@ int ipa3_nat_init_cmd(
 		goto bail;
 	}
 
-	if (init->table_entries == 0) {
-		IPAERR_RL("Table entries is zero\n");
+	if (init->table_entries == 0 ||
+		init->table_entries == U16_MAX) {
+		IPAERR_RL("Table entries is %d\n", init->table_entries);
 		result = -EPERM;
 		goto bail;
 	}