public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch] MdeModulePkg/DxeNetLib: Add array range check in NetIp6IsNetEqual().
@ 2018-01-11  2:38 Wang Fan
  2018-01-11  5:39 ` Wu, Hao A
  2018-01-11  7:47 ` Wu, Jiaxin
  0 siblings, 2 replies; 4+ messages in thread
From: Wang Fan @ 2018-01-11  2:38 UTC (permalink / raw)
  To: edk2-devel; +Cc: Fu Siyuan, Jiaxin Wu, Hao Wu

* The library API use array elements without any index range check, this
  patch is to fix this issue to avoid null pointer reference.

Cc: Fu Siyuan <siyuan.fu@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Hao Wu <hao.a.wu@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Wang Fan <fan.wang@intel.com>
---
 MdeModulePkg/Library/DxeNetLib/DxeNetLib.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c b/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c
index cbce28f..34e11a8 100644
--- a/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c
+++ b/MdeModulePkg/Library/DxeNetLib/DxeNetLib.c
@@ -840,10 +840,14 @@ NetIp6IsNetEqual (
   }
 
   if (Bit > 0) {
     Mask = (UINT8) (0xFF << (8 - Bit));
 
+    ASSERT (Byte < 16);
+    if (Byte >= 16) {
+      return FALSE;
+    }
     if ((Ip1->Addr[Byte] & Mask) != (Ip2->Addr[Byte] & Mask)) {
       return FALSE;
     }
   }
 
-- 
1.9.5.msysgit.1



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

end of thread, other threads:[~2018-01-11  8:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-11  2:38 [Patch] MdeModulePkg/DxeNetLib: Add array range check in NetIp6IsNetEqual() Wang Fan
2018-01-11  5:39 ` Wu, Hao A
2018-01-11  7:47 ` Wu, Jiaxin
2018-01-11  8:06   ` Wang, Fan

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