This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: ipaddress: Wrong behavior with ::ffff:1.2.3.4 style IPs
Type: behavior Stage:
Components: Documentation, Library (Lib) Versions: Python 3.6, Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ThiefMaster, arp11, docs@python, pmoody, socketpair
Priority: normal Keywords:

Created on 2016-06-08 14:55 by ThiefMaster, last changed 2022-04-11 14:58 by admin.

Pull Requests
URL Status Linked Edit
PR 1741 open arp11, 2017-05-23 00:08
Messages (4)
msg267861 - (view) Author: ThiefMaster (ThiefMaster) Date: 2016-06-08 14:55
I'd expect the IPv4 address to be considered part of that network (or actually parsed as an IPv4Address and not IPv6Address) even if it's written in IPv6 notation. It's an IPv4 after all.

Python 3.5.1 (default, Jun  7 2016, 09:20:44)
[GCC 4.9.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import ipaddress
>>> ipaddress.ip_address('::ffff:127.0.0.1')
IPv6Address('::ffff:7f00:1')
>>> ipaddress.ip_address('::ffff:127.0.0.1') in ipaddress.ip_network('127.0.0.0/8')
False
>>> ipaddress.ip_address('127.0.0.1') in ipaddress.ip_network('127.0.0.0/8')
True
msg269984 - (view) Author: Марк Коренберг (socketpair) * Date: 2016-07-08 11:03
see also issue20446
msg269986 - (view) Author: Марк Коренберг (socketpair) * Date: 2016-07-08 11:09
Also, it should be marked explicitly, if cross-type lookup is safe. I mean code like that:

    some_net = ipaddress.ip_network(some_input1)
    some_addr = ipaddress.ip_address(some_input2)
    return some_addr in some_net

Is it safe to write such code? Docs say:

    21.28.2.3. Operators
    Address objects support some operators. Unless stated otherwise,
    operators can only be applied between compatible objects
    (i.e. IPv4 with IPv4, IPv6 with IPv6).

1. It is not said if exception will be raised if incompatible objects are used, and not said if result is defined.
2. "Unless stated otherwise" - Seem it is stated nowhere.
msg294198 - (view) Author: Alex Perry (arp11) * Date: 2017-05-22 23:06
https://github.com/python/cpython/commit/5cc274262a99e5633177fc540261abbbecbbc51c

... seems to implement the principle in this bug, but I'm not convinced this is a good idea.
History
Date User Action Args
2022-04-11 14:58:32adminsetgithub: 71456
2017-05-23 00:08:58arp11setpull_requests: + pull_request1831
2017-05-22 23:06:47arp11setnosy: + arp11
messages: + msg294198
2016-07-08 11:09:38socketpairsetnosy: + docs@python
messages: + msg269986

assignee: docs@python
components: + Documentation
2016-07-08 11:03:43socketpairsetnosy: + socketpair
messages: + msg269984
2016-06-08 15:04:31SilentGhostsetnosy: + pmoody

versions: - Python 3.3, Python 3.4
2016-06-08 14:55:23ThiefMastercreate