mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0030518: Foundation Classes - NCollection_IndexedDataMap array out of bounds
Implementation of NCollection_IndexedDataMap::Iterator is revised to avoid unintended access to the element out of array bounds
This commit is contained in:
parent
1e0a1fc9cb
commit
eb62cbc494
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
#include <NCollection_BaseMap.hxx>
|
#include <NCollection_BaseMap.hxx>
|
||||||
#include <TCollection.hxx>
|
#include <TCollection.hxx>
|
||||||
|
#include <Standard_Assert.hxx>
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : BeginResize
|
//function : BeginResize
|
||||||
@ -29,20 +30,17 @@ Standard_Boolean NCollection_BaseMap::BeginResize
|
|||||||
NCollection_ListNode**& data1,
|
NCollection_ListNode**& data1,
|
||||||
NCollection_ListNode**& data2) const
|
NCollection_ListNode**& data2) const
|
||||||
{
|
{
|
||||||
|
// get next size for the buckets array
|
||||||
N = NextPrimeForMap(NbBuckets);
|
N = NextPrimeForMap(NbBuckets);
|
||||||
if (N <= myNbBuckets) {
|
Standard_ASSERT (N > NbBuckets, "NextPrimeForMap failed to return valid number", return Standard_False);
|
||||||
if (!myData1)
|
|
||||||
N = myNbBuckets;
|
|
||||||
else
|
|
||||||
return Standard_False;
|
|
||||||
}
|
|
||||||
data1 = (NCollection_ListNode **)
|
data1 = (NCollection_ListNode **)
|
||||||
myAllocator->Allocate((N+1)*sizeof(NCollection_ListNode *));
|
myAllocator->Allocate((N+1)*sizeof(NCollection_ListNode *));
|
||||||
memset(data1, 0, (N+1)*sizeof(NCollection_ListNode *));
|
memset(data1, 0, (N+1)*sizeof(NCollection_ListNode *));
|
||||||
if (isDouble)
|
if (isDouble)
|
||||||
{
|
{
|
||||||
data2 = (NCollection_ListNode **)
|
data2 = (NCollection_ListNode **)
|
||||||
myAllocator->Allocate((N+1)*sizeof(NCollection_ListNode *));
|
myAllocator->Allocate((N+1)*sizeof(NCollection_ListNode *));
|
||||||
memset(data2, 0, (N+1)*sizeof(NCollection_ListNode *));
|
memset(data2, 0, (N+1)*sizeof(NCollection_ListNode *));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -95,49 +95,51 @@ private:
|
|||||||
//! Empty constructor
|
//! Empty constructor
|
||||||
Iterator()
|
Iterator()
|
||||||
: myMap (NULL),
|
: myMap (NULL),
|
||||||
myNode (NULL),
|
|
||||||
myIndex (0) {}
|
myIndex (0) {}
|
||||||
|
|
||||||
//! Constructor
|
//! Constructor
|
||||||
Iterator (const NCollection_IndexedDataMap& theMap)
|
Iterator (const NCollection_IndexedDataMap& theMap)
|
||||||
: myMap ((NCollection_IndexedDataMap* )&theMap),
|
: myMap ((NCollection_IndexedDataMap*)&theMap),
|
||||||
myNode (!theMap.IsEmpty() ? (IndexedDataMapNode* )myMap->myData2[0] : NULL),
|
|
||||||
myIndex (1) {}
|
myIndex (1) {}
|
||||||
|
|
||||||
//! Query if the end of collection is reached by iterator
|
//! Query if the end of collection is reached by iterator
|
||||||
Standard_Boolean More(void) const
|
Standard_Boolean More(void) const
|
||||||
{ return (myMap != NULL) && (myIndex <= myMap->Extent()); }
|
{ return (myMap != NULL) && (myIndex <= myMap->Extent()); }
|
||||||
|
|
||||||
//! Make a step along the collection
|
//! Make a step along the collection
|
||||||
void Next(void)
|
void Next(void)
|
||||||
{
|
{ ++myIndex; }
|
||||||
myNode = (IndexedDataMapNode* )myMap->myData2[++myIndex - 1];
|
|
||||||
}
|
|
||||||
//! Value access
|
//! Value access
|
||||||
const TheItemType& Value(void) const
|
const TheItemType& Value(void) const
|
||||||
{
|
{
|
||||||
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::Value");
|
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::Value");
|
||||||
return myNode->Value();
|
return myMap->FindFromIndex(myIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! ChangeValue access
|
//! ChangeValue access
|
||||||
TheItemType& ChangeValue(void) const
|
TheItemType& ChangeValue(void) const
|
||||||
{
|
{
|
||||||
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::ChangeValue");
|
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::ChangeValue");
|
||||||
return myNode->ChangeValue();
|
return myMap->ChangeFromIndex(myIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Key
|
//! Key
|
||||||
const TheKeyType& Key() const
|
const TheKeyType& Key() const
|
||||||
{
|
{
|
||||||
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::Key");
|
Standard_NoSuchObject_Raise_if(!More(), "NCollection_IndexedDataMap::Iterator::Key");
|
||||||
return myNode->Key1();
|
return myMap->FindKey(myIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Performs comparison of two iterators.
|
//! Performs comparison of two iterators.
|
||||||
Standard_Boolean IsEqual (const Iterator& theOther) const
|
Standard_Boolean IsEqual (const Iterator& theOther) const
|
||||||
{
|
{
|
||||||
return myMap == theOther.myMap &&
|
return myMap == theOther.myMap &&
|
||||||
myNode == theOther.myNode &&
|
|
||||||
myIndex == theOther.myIndex;
|
myIndex == theOther.myIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
NCollection_IndexedDataMap* myMap; //!< Pointer to the map being iterated
|
NCollection_IndexedDataMap* myMap; //!< Pointer to current node
|
||||||
IndexedDataMapNode* myNode; //!< Current node
|
|
||||||
Standard_Integer myIndex; //!< Current index
|
Standard_Integer myIndex; //!< Current index
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user