Compare commits

...

2 Commits

Author SHA1 Message Date
ikpil a0800de245 test 2024-02-23 01:29:58 +09:00
ikpil eb1aa49363 [Upstream] Fix out of bounds access in dtMergeCorridorStartMoved and add tests
size can become negative if req > maxPath. This may happen when visited buffer is larger than path buffer.
Add tests to cover different use cases of the function including Should add visited points not present in path up to the path capacity to cover the fix.
List tests files explicitly. When new file is added CMake does not add it to the already generated list if GLOB is used.

- 599fd0f023
- https://github.com/recastnavigation/recastnavigation/pull/635

replace comment in DtPathCorridor

checking

tt

npath
2024-02-23 01:06:00 +09:00
5 changed files with 258 additions and 112 deletions

View File

@ -20,6 +20,7 @@ freely, subject to the following restrictions:
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Core.Numerics; using DotRecast.Core.Numerics;
@ -316,7 +317,7 @@ namespace DotRecast.Detour.Crowd
var status = navquery.MoveAlongSurface(m_path[0], m_pos, npos, filter, out var result, ref visited); var status = navquery.MoveAlongSurface(m_path[0], m_pos, npos, filter, out var result, ref visited);
if (status.Succeeded()) if (status.Succeeded())
{ {
m_path = DtPathUtils.MergeCorridorStartMoved(m_path, m_path.Count, m_maxPath, visited); DtPathUtils.MergeCorridorStartMoved(m_path, m_path.Count, m_maxPath, visited);
// Adjust the position to stay on top of the navmesh. // Adjust the position to stay on top of the navmesh.
m_pos = result; m_pos = result;

View File

@ -20,6 +20,7 @@ freely, subject to the following restrictions:
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using DotRecast.Core.Numerics; using DotRecast.Core.Numerics;
namespace DotRecast.Detour namespace DotRecast.Detour
@ -141,13 +142,13 @@ namespace DotRecast.Detour
return path; return path;
} }
public static List<long> MergeCorridorStartMoved(List<long> path, int npath, int maxPath, List<long> visited) public static int MergeCorridorStartMoved(List<long> path, int npath, int maxPath, List<long> visited)
{ {
int furthestPath = -1; int furthestPath = -1;
int furthestVisited = -1; int furthestVisited = -1;
// Find furthest common polygon. // Find furthest common polygon.
for (int i = path.Count - 1; i >= 0; --i) for (int i = npath - 1; i >= 0; --i)
{ {
bool found = false; bool found = false;
for (int j = visited.Count - 1; j >= 0; --j) for (int j = visited.Count - 1; j >= 0; --j)
@ -169,21 +170,37 @@ namespace DotRecast.Detour
// If no intersection found just return current path. // If no intersection found just return current path.
if (furthestPath == -1 || furthestVisited == -1) if (furthestPath == -1 || furthestVisited == -1)
{ {
return path; return npath;
} }
// Concatenate paths. // Concatenate paths.
// Adjust beginning of the buffer to include the visited. // Adjust beginning of the buffer to include the visited.
List<long> result = new List<long>(); int req = visited.Count - furthestVisited;
// Store visited int orig = Math.Min(furthestPath + 1, npath);
for (int i = visited.Count - 1; i > furthestVisited; --i) int size = Math.Max(0, npath - orig);
if (req + size > maxPath)
size = maxPath - req;
if (size > 0)
{ {
result.Add(visited[i]); //memmove(path + req, path + orig, size * sizeof(dtPolyRef));
for (int i = 0; i < size; ++i)
{
if (path.Count <= req + i)
path.Add(0);
path[req + i] = path[orig + i];
}
} }
result.AddRange(path.GetRange(furthestPath, path.Count - furthestPath)); // Store visited
return result; for (int i = 0, n = Math.Min(req, maxPath); i < n; ++i)
{
path[i] = visited[(visited.Count - 1) - i];
}
return req + size;
} }
public static List<long> MergeCorridorEndMoved(List<long> path, int npath, int maxPath, List<long> visited) public static List<long> MergeCorridorEndMoved(List<long> path, int npath, int maxPath, List<long> visited)

View File

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using DotRecast.Core; using DotRecast.Core;
using DotRecast.Core.Numerics; using DotRecast.Core.Numerics;
using DotRecast.Detour; using DotRecast.Detour;
@ -92,7 +93,7 @@ namespace DotRecast.Recast.Toolset.Tools
iterPos = result; iterPos = result;
pathIterPolys = DtPathUtils.MergeCorridorStartMoved(pathIterPolys, pathIterPolys.Count, MAX_POLYS, visited); DtPathUtils.MergeCorridorStartMoved(pathIterPolys, pathIterPolys.Count, MAX_POLYS, visited);
pathIterPolys = DtPathUtils.FixupShortcuts(pathIterPolys, navQuery); pathIterPolys = DtPathUtils.FixupShortcuts(pathIterPolys, navQuery);
var status = navQuery.GetPolyHeight(pathIterPolys[0], result, out var h); var status = navQuery.GetPolyHeight(pathIterPolys[0], result, out var h);

View File

@ -0,0 +1,228 @@
/*
recast4j copyright (c) 2021 Piotr Piastucki piotr@jtilia.org
DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
using System.Collections.Generic;
using DotRecast.Core.Numerics;
using Moq;
using NUnit.Framework;
namespace DotRecast.Detour.Crowd.Test;
public class DtPathCorridorTest
{
private DtPathCorridor corridor;
private IDtQueryFilter filter;
[SetUp]
public void SetUp()
{
corridor = new DtPathCorridor();
corridor.Init(DtCrowdConst.MAX_PATH_RESULT);
corridor.Reset(0, new RcVec3f(10, 20, 30));
filter = new DtQueryDefaultFilter();
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldHandleEmptyInput()
{
var path = new List<long>();
const int npath = 0;
const int maxPath = 0;
var visited = new List<long>();
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(0));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldHandleEmptyVisited()
{
var path = new List<long> { 1 };
const int npath = 1;
const int maxPath = 1;
var visited = new List<long>();
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(1));
var expectedPath = new List<long> { 1 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldHandleEmptyPath()
{
var path = new List<long>();
const int npath = 0;
const int maxPath = 0;
var visited = new List<long> { 1 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(0));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldStripVisitedPointsFromPathExceptLast()
{
var path = new List<long> { 1, 2 };
const int npath = 2;
const int maxPath = 2;
var visited = new List<long> { 1, 2 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(1));
var expectedPath = new List<long> { 2, 2 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldAddVisitedPointsNotPresentInPathInReverseOrder()
{
var path = new List<long> { 1, 2, 0 };
const int npath = 2;
const int maxPath = 3;
var visited = new List<long> { 1, 2, 3, 4 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(3));
var expectedPath = new List<long> { 4, 3, 2 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldAddVisitedPointsNotPresentInPathUpToThePathCapacity()
{
var path = new List<long>() { 1, 2, 0 };
const int npath = 2;
const int maxPath = 3;
var visited = new List<long>() { 1, 2, 3, 4, 5 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(3));
var expectedPath = new List<long> { 5, 4, 3 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldNotChangePathIfThereIsNoIntersectionWithVisited()
{
var path = new List<long>() { 1, 2 };
const int npath = 2;
const int maxPath = 2;
var visited = new List<long>() { 3, 4 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(2));
var expectedPath = new List<long> { 1, 2 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldSaveUnvisitedPathPoints()
{
var path = new List<long>() { 1, 2, 0 };
const int npath = 2;
const int maxPath = 3;
var visited = new List<long>() { 1, 3 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(3));
var expectedPath = new List<long> { 3, 1, 2 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test(Description = "dtMergeCorridorStartMoved")]
public void ShouldSaveUnvisitedPathPointsUpToThePathCapacity()
{
var path = new List<long>() { 1, 2 };
const int npath = 2;
const int maxPath = 2;
var visited = new List<long>() { 1, 3 };
var result = DtPathUtils.MergeCorridorStartMoved(path, npath, maxPath, visited);
Assert.That(result, Is.EqualTo(2));
var expectedPath = new List<long> { 3, 1 };
Assert.That(path, Is.EqualTo(expectedPath));
}
[Test]
public void ShouldKeepOriginalPathInFindCornersWhenNothingCanBePruned()
{
List<DtStraightPath> straightPath = new();
straightPath.Add(new DtStraightPath(new RcVec3f(11, 20, 30.00001f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(12, 20, 30.00002f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
var mockQuery = new Mock<DtNavMeshQuery>(It.IsAny<DtNavMesh>());
mockQuery.Setup(q => q.FindStraightPath(
It.IsAny<RcVec3f>(),
It.IsAny<RcVec3f>(),
It.IsAny<List<long>>(),
ref It.Ref<List<DtStraightPath>>.IsAny,
It.IsAny<int>(),
It.IsAny<int>())
)
.Callback((RcVec3f startPos, RcVec3f endPos, List<long> path,
ref List<DtStraightPath> refStraightPath, int maxStraightPath, int options) =>
{
refStraightPath = straightPath;
})
.Returns(() => DtStatus.DT_SUCCESS);
var path = new List<DtStraightPath>();
corridor.FindCorners(ref path, int.MaxValue, mockQuery.Object, filter);
Assert.That(path.Count, Is.EqualTo(4));
Assert.That(path, Is.EqualTo(straightPath));
}
[Test]
public void ShouldPrunePathInFindCorners()
{
List<DtStraightPath> straightPath = new();
straightPath.Add(new DtStraightPath(new RcVec3f(10, 20, 30.00001f), 0, 0)); // too close
straightPath.Add(new DtStraightPath(new RcVec3f(10, 20, 30.00002f), 0, 0)); // too close
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(12f, 22, 33f), DtStraightPathFlags.DT_STRAIGHTPATH_OFFMESH_CONNECTION, 0)); // offmesh
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), DtStraightPathFlags.DT_STRAIGHTPATH_OFFMESH_CONNECTION, 0)); // offmesh
var mockQuery = new Mock<DtNavMeshQuery>(It.IsAny<DtNavMesh>());
mockQuery.Setup(q => q.FindStraightPath(
It.IsAny<RcVec3f>(),
It.IsAny<RcVec3f>(),
It.IsAny<List<long>>(),
ref It.Ref<List<DtStraightPath>>.IsAny,
It.IsAny<int>(),
It.IsAny<int>())
).Callback((RcVec3f startPos, RcVec3f endPos, List<long> path,
ref List<DtStraightPath> refStraightPath, int maxStraightPath, int options) =>
{
refStraightPath = straightPath;
})
.Returns(() => DtStatus.DT_SUCCESS);
var path = new List<DtStraightPath>();
corridor.FindCorners(ref path, int.MaxValue, mockQuery.Object, filter);
Assert.That(path.Count, Is.EqualTo(2));
Assert.That(path, Is.EqualTo(new List<DtStraightPath> { straightPath[2], straightPath[3] }));
}
}

View File

@ -1,101 +0,0 @@
/*
recast4j copyright (c) 2021 Piotr Piastucki piotr@jtilia.org
DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
using System.Collections.Generic;
using DotRecast.Core.Numerics;
using Moq;
using NUnit.Framework;
namespace DotRecast.Detour.Crowd.Test;
public class PathCorridorTest
{
private readonly DtPathCorridor corridor = new DtPathCorridor();
private readonly IDtQueryFilter filter = new DtQueryDefaultFilter();
[SetUp]
public void SetUp()
{
corridor.Init(256);
corridor.Reset(0, new RcVec3f(10, 20, 30));
}
[Test]
public void ShouldKeepOriginalPathInFindCornersWhenNothingCanBePruned()
{
List<DtStraightPath> straightPath = new();
straightPath.Add(new DtStraightPath(new RcVec3f(11, 20, 30.00001f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(12, 20, 30.00002f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
var mockQuery = new Mock<DtNavMeshQuery>(It.IsAny<DtNavMesh>());
mockQuery.Setup(q => q.FindStraightPath(
It.IsAny<RcVec3f>(),
It.IsAny<RcVec3f>(),
It.IsAny<List<long>>(),
ref It.Ref<List<DtStraightPath>>.IsAny,
It.IsAny<int>(),
It.IsAny<int>())
)
.Callback((RcVec3f startPos, RcVec3f endPos, List<long> path,
ref List<DtStraightPath> refStraightPath, int maxStraightPath, int options) =>
{
refStraightPath = straightPath;
})
.Returns(() => DtStatus.DT_SUCCESS);
var path = new List<DtStraightPath>();
corridor.FindCorners(ref path, int.MaxValue, mockQuery.Object, filter);
Assert.That(path.Count, Is.EqualTo(4));
Assert.That(path, Is.EqualTo(straightPath));
}
[Test]
public void ShouldPrunePathInFindCorners()
{
List<DtStraightPath> straightPath = new();
straightPath.Add(new DtStraightPath(new RcVec3f(10, 20, 30.00001f), 0, 0)); // too close
straightPath.Add(new DtStraightPath(new RcVec3f(10, 20, 30.00002f), 0, 0)); // too close
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), 0, 0));
straightPath.Add(new DtStraightPath(new RcVec3f(12f, 22, 33f), DtStraightPathFlags.DT_STRAIGHTPATH_OFFMESH_CONNECTION, 0)); // offmesh
straightPath.Add(new DtStraightPath(new RcVec3f(11f, 21, 32f), DtStraightPathFlags.DT_STRAIGHTPATH_OFFMESH_CONNECTION, 0)); // offmesh
var mockQuery = new Mock<DtNavMeshQuery>(It.IsAny<DtNavMesh>());
mockQuery.Setup(q => q.FindStraightPath(
It.IsAny<RcVec3f>(),
It.IsAny<RcVec3f>(),
It.IsAny<List<long>>(),
ref It.Ref<List<DtStraightPath>>.IsAny,
It.IsAny<int>(),
It.IsAny<int>())
).Callback((RcVec3f startPos, RcVec3f endPos, List<long> path,
ref List<DtStraightPath> refStraightPath, int maxStraightPath, int options) =>
{
refStraightPath = straightPath;
})
.Returns(() => DtStatus.DT_SUCCESS);
var path = new List<DtStraightPath>();
corridor.FindCorners(ref path, int.MaxValue, mockQuery.Object, filter);
Assert.That(path.Count, Is.EqualTo(2));
Assert.That(path, Is.EqualTo(new List<DtStraightPath> { straightPath[2], straightPath[3] }));
}
}