Skip to content

Commit 68cc873

Browse files
authored
Fix integer overflow in GeoEncodingUtils#Grid implementations (apache#13704)
* Fix integer overflow in GeoEncodingUtils#Grid implementations * Add entry in CHANGES.txt
1 parent ce4f56e commit 68cc873

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed

lucene/CHANGES.txt

+3
Original file line numberDiff line numberDiff line change
@@ -410,6 +410,9 @@ Bug Fixes
410410

411411
* GITHUB#13691: Fix incorrect exponent value in explain of SigmoidFunction. (Owais Kazi)
412412

413+
* GITHUB#13703: Fix bug in LatLonPoint queries where narrow polygons close to latitude 90 don't
414+
match any points due to an Integer overflow. (Ignacio Vera)
415+
413416
Build
414417
---------------------
415418

lucene/core/src/java/org/apache/lucene/geo/GeoEncodingUtils.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ private DistancePredicate(
363363
*/
364364
public boolean test(int lat, int lon) {
365365
final int lat2 = ((lat - Integer.MIN_VALUE) >>> latShift);
366-
if (lat2 < latBase || lat2 >= latBase + maxLatDelta) {
366+
if (lat2 < latBase || lat2 - latBase >= maxLatDelta) {
367367
return false;
368368
}
369369
int lon2 = ((lon - Integer.MIN_VALUE) >>> lonShift);
@@ -411,7 +411,7 @@ private Component2DPredicate(
411411
*/
412412
public boolean test(int lat, int lon) {
413413
final int lat2 = ((lat - Integer.MIN_VALUE) >>> latShift);
414-
if (lat2 < latBase || lat2 >= latBase + maxLatDelta) {
414+
if (lat2 < latBase || lat2 - latBase >= maxLatDelta) {
415415
return false;
416416
}
417417
int lon2 = ((lon - Integer.MIN_VALUE) >>> lonShift);

lucene/test-framework/src/java/org/apache/lucene/tests/geo/BaseGeoPointTestCase.java

+38
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import org.apache.lucene.document.StringField;
4040
import org.apache.lucene.geo.Circle;
4141
import org.apache.lucene.geo.Component2D;
42+
import org.apache.lucene.geo.GeoEncodingUtils;
4243
import org.apache.lucene.geo.GeoUtils;
4344
import org.apache.lucene.geo.LatLonGeometry;
4445
import org.apache.lucene.geo.Polygon;
@@ -1751,4 +1752,41 @@ public void testSmallSetDistanceDateline() throws Exception {
17511752
newDistanceQuery("point", 32.94823588839368, -179.9538113027811, 120000), 20);
17521753
assertEquals(3, td.totalHits.value);
17531754
}
1755+
1756+
public void testNarrowPolygonCloseToNorthPole() throws Exception {
1757+
IndexWriterConfig iwc = newIndexWriterConfig();
1758+
iwc.setMergeScheduler(new SerialMergeScheduler());
1759+
Directory dir = newDirectory();
1760+
IndexWriter w = new IndexWriter(dir, iwc);
1761+
1762+
// index point closes to Lat 90
1763+
Document doc = new Document();
1764+
final int base = Integer.MAX_VALUE;
1765+
addPointToDoc(
1766+
FIELD_NAME,
1767+
doc,
1768+
GeoEncodingUtils.decodeLatitude(base - 2),
1769+
GeoEncodingUtils.decodeLongitude(base - 2));
1770+
w.addDocument(doc);
1771+
w.flush();
1772+
1773+
// query testing
1774+
final IndexReader reader = DirectoryReader.open(w);
1775+
final IndexSearcher s = newSearcher(reader);
1776+
1777+
double minLat = GeoEncodingUtils.decodeLatitude(base - 3);
1778+
double maxLat = GeoEncodingUtils.decodeLatitude(base);
1779+
double minLon = GeoEncodingUtils.decodeLongitude(base - 3);
1780+
double maxLon = GeoEncodingUtils.decodeLongitude(base);
1781+
1782+
Query query =
1783+
newPolygonQuery(
1784+
FIELD_NAME,
1785+
new Polygon(
1786+
new double[] {minLat, minLat, maxLat, maxLat, minLat},
1787+
new double[] {minLon, maxLon, maxLon, minLon, minLon}));
1788+
1789+
assertEquals(1, s.count(query));
1790+
IOUtils.close(w, reader, dir);
1791+
}
17541792
}

0 commit comments

Comments
 (0)