Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e910dff8
Commit
e910dff8
authored
Oct 25, 2022
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-26161 crash in Gis_point::calculate_haversine
return an error on invalid gis data
parent
72e79eaa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
12 deletions
+27
-12
mysql-test/main/gis.result
mysql-test/main/gis.result
+5
-0
mysql-test/main/gis.test
mysql-test/main/gis.test
+5
-0
sql/item_geofunc.cc
sql/item_geofunc.cc
+11
-9
sql/spatial.cc
sql/spatial.cc
+6
-3
No files found.
mysql-test/main/gis.result
View file @
e910dff8
...
...
@@ -4977,5 +4977,10 @@ ERROR HY000: Illegal parameter data type geometry for operation 'is_free_lock'
SELECT IS_USED_LOCK(POINT(1,1));
ERROR HY000: Illegal parameter data type geometry for operation 'is_used_lock'
#
# MDEV-26161 crash in Gis_point::calculate_haversine
#
select st_distance_sphere(x'01030000000400000004000000000000', multipoint(point(124,204)), 10);
ERROR 22003: Cannot get geometry object from data you send to the GEOMETRY field
#
# End of 10.3 tests
#
mysql-test/main/gis.test
View file @
e910dff8
...
...
@@ -3090,6 +3090,11 @@ SELECT IS_FREE_LOCK(POINT(1,1));
--
error
ER_ILLEGAL_PARAMETER_DATA_TYPE_FOR_OPERATION
SELECT
IS_USED_LOCK
(
POINT
(
1
,
1
));
--
echo
#
--
echo
# MDEV-26161 crash in Gis_point::calculate_haversine
--
echo
#
--
error
ER_CANT_CREATE_GEOMETRY_OBJECT
select
st_distance_sphere
(
x
'01030000000400000004000000000000'
,
multipoint
(
point
(
124
,
204
)),
10
);
--
echo
#
--
echo
# End of 10.3 tests
...
...
sql/item_geofunc.cc
View file @
e910dff8
...
...
@@ -2596,7 +2596,7 @@ double Item_func_sphere_distance::spherical_distance_points(Geometry *g1,
double
res
=
0.0
;
// Length for the single point (25 Bytes)
uint32
len
=
SRID_SIZE
+
POINT_DATA_SIZE
+
WKB_HEADER_SIZE
;
int
err
or
=
0
;
int
err
_hv
=
0
,
err_sph
=
0
;
switch
(
g2
->
get_class_info
()
->
m_type_id
)
{
...
...
@@ -2606,21 +2606,21 @@ double Item_func_sphere_distance::spherical_distance_points(Geometry *g1,
// Optimization for point-point case
if
(
g1
->
get_class_info
()
->
m_type_id
==
Geometry
::
wkb_point
)
{
res
=
g2p
->
calculate_haversine
(
g1
,
r
,
&
err
or
);
res
=
g2p
->
calculate_haversine
(
g1
,
r
,
&
err
_hv
);
}
else
{
// Optimization for single point in Multipoint
if
(
g1
->
get_data_size
()
==
len
)
{
res
=
g2p
->
calculate_haversine
(
g1
,
r
,
&
err
or
);
res
=
g2p
->
calculate_haversine
(
g1
,
r
,
&
err
_hv
);
}
else
{
// There are multipoints in g1
// g1 is MultiPoint and calculate MP.sphericaldistance from g2 Point
if
(
g1
->
get_data_size
()
!=
GET_SIZE_ERROR
)
g2p
->
spherical_distance_multipoints
(
g1
,
r
,
&
res
,
&
error
);
err_sph
=
g2p
->
spherical_distance_multipoints
(
g1
,
r
,
&
res
,
&
err_hv
);
}
}
break
;
...
...
@@ -2634,20 +2634,20 @@ double Item_func_sphere_distance::spherical_distance_points(Geometry *g1,
// Optimization for single point in Multipoint g2
if
(
g2
->
get_data_size
()
==
len
)
{
res
=
g1p
->
calculate_haversine
(
g2
,
r
,
&
err
or
);
res
=
g1p
->
calculate_haversine
(
g2
,
r
,
&
err
_hv
);
}
else
{
if
(
g2
->
get_data_size
()
!=
GET_SIZE_ERROR
)
// g1 is a point (casted to multi_point) and g2 multipoint
g1p
->
spherical_distance_multipoints
(
g2
,
r
,
&
res
,
&
error
);
err_sph
=
g1p
->
spherical_distance_multipoints
(
g2
,
r
,
&
res
,
&
err_hv
);
}
}
else
{
Gis_multi_point
*
g1mp
=
static_cast
<
Gis_multi_point
*>
(
g1
);
// Multipoints in g1 and g2 - no optimization
g1mp
->
spherical_distance_multipoints
(
g2
,
r
,
&
res
,
&
error
);
err_sph
=
g1mp
->
spherical_distance_multipoints
(
g2
,
r
,
&
res
,
&
err_hv
);
}
break
;
...
...
@@ -2656,12 +2656,14 @@ double Item_func_sphere_distance::spherical_distance_points(Geometry *g1,
break
;
}
if
(
err
or
>
0
)
if
(
err
_hv
>
0
)
my_error
(
ER_STD_OUT_OF_RANGE_ERROR
,
MYF
(
0
),
"Longitude should be [-180,180]"
,
"ST_Distance_Sphere"
);
else
if
(
err
or
<
0
)
else
if
(
err
_hv
<
0
)
my_error
(
ER_STD_OUT_OF_RANGE_ERROR
,
MYF
(
0
),
"Latitude should be [-90,90]"
,
"ST_Distance_Sphere"
);
else
if
(
err_sph
)
my_error
(
ER_CANT_CREATE_GEOMETRY_OBJECT
,
MYF
(
0
));
return
res
;
}
...
...
sql/spatial.cc
View file @
e910dff8
...
...
@@ -1151,7 +1151,8 @@ int Gis_point::spherical_distance_multipoints(Geometry *g, const double r,
POINT_DATA_SIZE
*
(
i
-
1
),
POINT_DATA_SIZE
);
s
[
len
-
1
]
=
'\0'
;
temp
=
Geometry
::
construct
(
&
buff_temp
,
s
,
len
);
DBUG_ASSERT
(
temp
);
if
(
!
temp
)
return
1
;
temp_res
=
this
->
calculate_haversine
(
temp
,
r
,
err
);
if
(
res
>
temp_res
)
res
=
temp_res
;
...
...
@@ -2335,7 +2336,8 @@ int Gis_multi_point::spherical_distance_multipoints(Geometry *g, const double r,
POINT_DATA_SIZE
*
(
i
-
1
),
POINT_DATA_SIZE
);
s
[
len
-
1
]
=
'\0'
;
temp
=
Geometry
::
construct
(
&
buff_temp
,
s
,
len
);
DBUG_ASSERT
(
temp
);
if
(
!
temp
)
return
1
;
// Optimization for single Multipoint
if
(
num_of_points2
==
1
)
{
...
...
@@ -2354,7 +2356,8 @@ int Gis_multi_point::spherical_distance_multipoints(Geometry *g, const double r,
POINT_DATA_SIZE
*
(
j
-
1
),
POINT_DATA_SIZE
);
s2
[
len
-
1
]
=
'\0'
;
temp2
=
Geometry
::
construct
(
&
buff_temp2
,
s2
,
len
);
DBUG_ASSERT
(
temp2
);
if
(
!
temp2
)
return
1
;
temp_res
=
static_cast
<
Gis_point
*>
(
temp
)
->
calculate_haversine
(
temp2
,
r
,
err
);
if
(
res
>
temp_res
)
res
=
temp_res
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment