Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5e48e3db
Commit
5e48e3db
authored
May 14, 2019
by
Nicolai Moore
Committed by
Inada Naoki
May 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-36845: validate integer network prefix when constructing IP networks (GH-13298)
parent
f0be4bbb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
0 deletions
+23
-0
Lib/ipaddress.py
Lib/ipaddress.py
+4
-0
Lib/test/test_ipaddress.py
Lib/test/test_ipaddress.py
+16
-0
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst
...S.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst
+2
-0
No files found.
Lib/ipaddress.py
View file @
5e48e3db
...
...
@@ -1108,6 +1108,8 @@ class _BaseV4:
if
arg
not
in
cls
.
_netmask_cache
:
if
isinstance
(
arg
,
int
):
prefixlen
=
arg
if
not
(
0
<=
prefixlen
<=
cls
.
_max_prefixlen
):
cls
.
_report_invalid_netmask
(
prefixlen
)
else
:
try
:
# Check for a netmask in prefix length form
...
...
@@ -1538,6 +1540,8 @@ class _BaseV6:
if
arg
not
in
cls
.
_netmask_cache
:
if
isinstance
(
arg
,
int
):
prefixlen
=
arg
if
not
(
0
<=
prefixlen
<=
cls
.
_max_prefixlen
):
cls
.
_report_invalid_netmask
(
prefixlen
)
else
:
prefixlen
=
cls
.
_prefix_from_prefix_string
(
arg
)
netmask
=
IPv6Address
(
cls
.
_ip_int_from_prefix
(
prefixlen
))
...
...
Lib/test/test_ipaddress.py
View file @
5e48e3db
...
...
@@ -466,6 +466,14 @@ class NetmaskTestMixin_v4(CommonTestMixin_v4):
assertBadNetmask
(
"1.1.1.1"
,
"pudding"
)
assertBadNetmask
(
"1.1.1.1"
,
"::"
)
def
test_netmask_in_tuple_errors
(
self
):
def
assertBadNetmask
(
addr
,
netmask
):
msg
=
"%r is not a valid netmask"
%
netmask
with
self
.
assertNetmaskError
(
re
.
escape
(
msg
)):
self
.
factory
((
addr
,
netmask
))
assertBadNetmask
(
"1.1.1.1"
,
-
1
)
assertBadNetmask
(
"1.1.1.1"
,
33
)
def
test_pickle
(
self
):
self
.
pickle_test
(
'192.0.2.0/27'
)
self
.
pickle_test
(
'192.0.2.0/31'
)
# IPV4LENGTH - 1
...
...
@@ -588,6 +596,14 @@ class NetmaskTestMixin_v6(CommonTestMixin_v6):
assertBadNetmask
(
"::1"
,
"pudding"
)
assertBadNetmask
(
"::"
,
"::"
)
def
test_netmask_in_tuple_errors
(
self
):
def
assertBadNetmask
(
addr
,
netmask
):
msg
=
"%r is not a valid netmask"
%
netmask
with
self
.
assertNetmaskError
(
re
.
escape
(
msg
)):
self
.
factory
((
addr
,
netmask
))
assertBadNetmask
(
"::1"
,
-
1
)
assertBadNetmask
(
"::1"
,
129
)
def
test_pickle
(
self
):
self
.
pickle_test
(
'2001:db8::1000/124'
)
self
.
pickle_test
(
'2001:db8::1000/127'
)
# IPV6LENGTH - 1
...
...
Misc/ACKS
View file @
5e48e3db
...
...
@@ -1108,6 +1108,7 @@ Bastien Montagne
Skip Montanaro
Peter Moody
Alan D. Moore
Nicolai Moore
Paul Moore
Ross Moore
Ben Morgan
...
...
Misc/NEWS.d/next/Library/2019-05-14-07-57-02.bpo-36845._GtFFf.rst
0 → 100644
View file @
5e48e3db
Added validation of integer prefixes to the construction of IP networks and
interfaces in the ipaddress module.
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