mirror of
https://github.com/opencv/opencv.git
synced 2025-06-12 20:42:53 +08:00
add assert to tf graph simplifier to address security concerns
This commit is contained in:
parent
3a595ea5c4
commit
a2b84e9897
@ -1035,7 +1035,7 @@ void sortByExecutionOrder(tensorflow::GraphDef& net)
|
|||||||
nodesToAdd.pop_back();
|
nodesToAdd.pop_back();
|
||||||
|
|
||||||
permIds.push_back(nodeToAdd);
|
permIds.push_back(nodeToAdd);
|
||||||
|
CV_Assert(nodeToAdd < edges.size());
|
||||||
for (int i = 0; i < edges[nodeToAdd].size(); ++i)
|
for (int i = 0; i < edges[nodeToAdd].size(); ++i)
|
||||||
{
|
{
|
||||||
int consumerId = edges[nodeToAdd][i];
|
int consumerId = edges[nodeToAdd][i];
|
||||||
|
@ -1571,6 +1571,13 @@ TEST_P(Test_TensorFlow_layers, tf2_permute_nhwc_ncwh)
|
|||||||
runTensorFlowNet("tf2_permute_nhwc_ncwh");
|
runTensorFlowNet("tf2_permute_nhwc_ncwh");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// issue #21852
|
||||||
|
TEST_P(Test_TensorFlow_layers, tf_graph_simplifier_buffer_overflow)
|
||||||
|
{
|
||||||
|
// This just shouldn't segfault, otherwise it's fine
|
||||||
|
EXPECT_ANY_THROW(readNetFromTensorflow(path("tf_graph_simplifier_buffer_overflow_net.pb")));
|
||||||
|
}
|
||||||
|
|
||||||
TEST_P(Test_TensorFlow_layers, squeeze)
|
TEST_P(Test_TensorFlow_layers, squeeze)
|
||||||
{
|
{
|
||||||
#if defined(INF_ENGINE_RELEASE)
|
#if defined(INF_ENGINE_RELEASE)
|
||||||
|
Loading…
Reference in New Issue
Block a user