Browse Source

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 3 năm trước cách đây
mục cha
commit
1840d3b8f5
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  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;
 	}