home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Bureautique / LibreOffice / LibreOffice_4.3.5_Win_x86.msi / ipaddress.py < prev    next >
Text File  |  2014-12-12  |  70KB  |  2,113 lines

  1. # Copyright 2007 Google Inc.
  2. #  Licensed to PSF under a Contributor Agreement.
  3.  
  4. """A fast, lightweight IPv4/IPv6 manipulation library in Python.
  5.  
  6. This library is used to create/poke/manipulate IPv4 and IPv6 addresses
  7. and networks.
  8.  
  9. """
  10.  
  11. __version__ = '1.0'
  12.  
  13.  
  14. import functools
  15.  
  16. IPV4LENGTH = 32
  17. IPV6LENGTH = 128
  18.  
  19. class AddressValueError(ValueError):
  20.     """A Value Error related to the address."""
  21.  
  22.  
  23. class NetmaskValueError(ValueError):
  24.     """A Value Error related to the netmask."""
  25.  
  26.  
  27. def ip_address(address):
  28.     """Take an IP string/int and return an object of the correct type.
  29.  
  30.     Args:
  31.         address: A string or integer, the IP address.  Either IPv4 or
  32.           IPv6 addresses may be supplied; integers less than 2**32 will
  33.           be considered to be IPv4 by default.
  34.  
  35.     Returns:
  36.         An IPv4Address or IPv6Address object.
  37.  
  38.     Raises:
  39.         ValueError: if the *address* passed isn't either a v4 or a v6
  40.           address
  41.  
  42.     """
  43.     try:
  44.         return IPv4Address(address)
  45.     except (AddressValueError, NetmaskValueError):
  46.         pass
  47.  
  48.     try:
  49.         return IPv6Address(address)
  50.     except (AddressValueError, NetmaskValueError):
  51.         pass
  52.  
  53.     raise ValueError('%r does not appear to be an IPv4 or IPv6 address' %
  54.                      address)
  55.  
  56.  
  57. def ip_network(address, strict=True):
  58.     """Take an IP string/int and return an object of the correct type.
  59.  
  60.     Args:
  61.         address: A string or integer, the IP network.  Either IPv4 or
  62.           IPv6 networks may be supplied; integers less than 2**32 will
  63.           be considered to be IPv4 by default.
  64.  
  65.     Returns:
  66.         An IPv4Network or IPv6Network object.
  67.  
  68.     Raises:
  69.         ValueError: if the string passed isn't either a v4 or a v6
  70.           address. Or if the network has host bits set.
  71.  
  72.     """
  73.     try:
  74.         return IPv4Network(address, strict)
  75.     except (AddressValueError, NetmaskValueError):
  76.         pass
  77.  
  78.     try:
  79.         return IPv6Network(address, strict)
  80.     except (AddressValueError, NetmaskValueError):
  81.         pass
  82.  
  83.     raise ValueError('%r does not appear to be an IPv4 or IPv6 network' %
  84.                      address)
  85.  
  86.  
  87. def ip_interface(address):
  88.     """Take an IP string/int and return an object of the correct type.
  89.  
  90.     Args:
  91.         address: A string or integer, the IP address.  Either IPv4 or
  92.           IPv6 addresses may be supplied; integers less than 2**32 will
  93.           be considered to be IPv4 by default.
  94.  
  95.     Returns:
  96.         An IPv4Interface or IPv6Interface object.
  97.  
  98.     Raises:
  99.         ValueError: if the string passed isn't either a v4 or a v6
  100.           address.
  101.  
  102.     Notes:
  103.         The IPv?Interface classes describe an Address on a particular
  104.         Network, so they're basically a combination of both the Address
  105.         and Network classes.
  106.  
  107.     """
  108.     try:
  109.         return IPv4Interface(address)
  110.     except (AddressValueError, NetmaskValueError):
  111.         pass
  112.  
  113.     try:
  114.         return IPv6Interface(address)
  115.     except (AddressValueError, NetmaskValueError):
  116.         pass
  117.  
  118.     raise ValueError('%r does not appear to be an IPv4 or IPv6 interface' %
  119.                      address)
  120.  
  121.  
  122. def v4_int_to_packed(address):
  123.     """Represent an address as 4 packed bytes in network (big-endian) order.
  124.  
  125.     Args:
  126.         address: An integer representation of an IPv4 IP address.
  127.  
  128.     Returns:
  129.         The integer address packed as 4 bytes in network (big-endian) order.
  130.  
  131.     Raises:
  132.         ValueError: If the integer is negative or too large to be an
  133.           IPv4 IP address.
  134.  
  135.     """
  136.     try:
  137.         return address.to_bytes(4, 'big')
  138.     except:
  139.         raise ValueError("Address negative or too large for IPv4")
  140.  
  141.  
  142. def v6_int_to_packed(address):
  143.     """Represent an address as 16 packed bytes in network (big-endian) order.
  144.  
  145.     Args:
  146.         address: An integer representation of an IPv6 IP address.
  147.  
  148.     Returns:
  149.         The integer address packed as 16 bytes in network (big-endian) order.
  150.  
  151.     """
  152.     try:
  153.         return address.to_bytes(16, 'big')
  154.     except:
  155.         raise ValueError("Address negative or too large for IPv6")
  156.  
  157.  
  158. def _split_optional_netmask(address):
  159.     """Helper to split the netmask and raise AddressValueError if needed"""
  160.     addr = str(address).split('/')
  161.     if len(addr) > 2:
  162.         raise AddressValueError("Only one '/' permitted in %r" % address)
  163.     return addr
  164.  
  165.  
  166. def _find_address_range(addresses):
  167.     """Find a sequence of IPv#Address.
  168.  
  169.     Args:
  170.         addresses: a list of IPv#Address objects.
  171.  
  172.     Returns:
  173.         A tuple containing the first and last IP addresses in the sequence.
  174.  
  175.     """
  176.     first = last = addresses[0]
  177.     for ip in addresses[1:]:
  178.         if ip._ip == last._ip + 1:
  179.             last = ip
  180.         else:
  181.             break
  182.     return (first, last)
  183.  
  184.  
  185. def _count_righthand_zero_bits(number, bits):
  186.     """Count the number of zero bits on the right hand side.
  187.  
  188.     Args:
  189.         number: an integer.
  190.         bits: maximum number of bits to count.
  191.  
  192.     Returns:
  193.         The number of zero bits on the right hand side of the number.
  194.  
  195.     """
  196.     if number == 0:
  197.         return bits
  198.     for i in range(bits):
  199.         if (number >> i) & 1:
  200.             return i
  201.     # All bits of interest were zero, even if there are more in the number
  202.     return bits
  203.  
  204.  
  205. def summarize_address_range(first, last):
  206.     """Summarize a network range given the first and last IP addresses.
  207.  
  208.     Example:
  209.         >>> list(summarize_address_range(IPv4Address('192.0.2.0'),
  210.         ...                              IPv4Address('192.0.2.130')))
  211.         ...                                #doctest: +NORMALIZE_WHITESPACE
  212.         [IPv4Network('192.0.2.0/25'), IPv4Network('192.0.2.128/31'),
  213.          IPv4Network('192.0.2.130/32')]
  214.  
  215.     Args:
  216.         first: the first IPv4Address or IPv6Address in the range.
  217.         last: the last IPv4Address or IPv6Address in the range.
  218.  
  219.     Returns:
  220.         An iterator of the summarized IPv(4|6) network objects.
  221.  
  222.     Raise:
  223.         TypeError:
  224.             If the first and last objects are not IP addresses.
  225.             If the first and last objects are not the same version.
  226.         ValueError:
  227.             If the last object is not greater than the first.
  228.             If the version of the first address is not 4 or 6.
  229.  
  230.     """
  231.     if (not (isinstance(first, _BaseAddress) and
  232.              isinstance(last, _BaseAddress))):
  233.         raise TypeError('first and last must be IP addresses, not networks')
  234.     if first.version != last.version:
  235.         raise TypeError("%s and %s are not of the same version" % (
  236.                          first, last))
  237.     if first > last:
  238.         raise ValueError('last IP address must be greater than first')
  239.  
  240.     if first.version == 4:
  241.         ip = IPv4Network
  242.     elif first.version == 6:
  243.         ip = IPv6Network
  244.     else:
  245.         raise ValueError('unknown IP version')
  246.  
  247.     ip_bits = first._max_prefixlen
  248.     first_int = first._ip
  249.     last_int = last._ip
  250.     while first_int <= last_int:
  251.         nbits = min(_count_righthand_zero_bits(first_int, ip_bits),
  252.                     (last_int - first_int + 1).bit_length() - 1)
  253.         net = ip('%s/%d' % (first, ip_bits - nbits))
  254.         yield net
  255.         first_int += 1 << nbits
  256.         if first_int - 1 == ip._ALL_ONES:
  257.             break
  258.         first = first.__class__(first_int)
  259.  
  260.  
  261. def _collapse_addresses_recursive(addresses):
  262.     """Loops through the addresses, collapsing concurrent netblocks.
  263.  
  264.     Example:
  265.  
  266.         ip1 = IPv4Network('192.0.2.0/26')
  267.         ip2 = IPv4Network('192.0.2.64/26')
  268.         ip3 = IPv4Network('192.0.2.128/26')
  269.         ip4 = IPv4Network('192.0.2.192/26')
  270.  
  271.         _collapse_addresses_recursive([ip1, ip2, ip3, ip4]) ->
  272.           [IPv4Network('192.0.2.0/24')]
  273.  
  274.         This shouldn't be called directly; it is called via
  275.           collapse_addresses([]).
  276.  
  277.     Args:
  278.         addresses: A list of IPv4Network's or IPv6Network's
  279.  
  280.     Returns:
  281.         A list of IPv4Network's or IPv6Network's depending on what we were
  282.         passed.
  283.  
  284.     """
  285.     while True:
  286.         last_addr = None
  287.         ret_array = []
  288.         optimized = False
  289.  
  290.         for cur_addr in addresses:
  291.             if not ret_array:
  292.                 last_addr = cur_addr
  293.                 ret_array.append(cur_addr)
  294.             elif (cur_addr.network_address >= last_addr.network_address and
  295.                 cur_addr.broadcast_address <= last_addr.broadcast_address):
  296.                 optimized = True
  297.             elif cur_addr == list(last_addr.supernet().subnets())[1]:
  298.                 ret_array[-1] = last_addr = last_addr.supernet()
  299.                 optimized = True
  300.             else:
  301.                 last_addr = cur_addr
  302.                 ret_array.append(cur_addr)
  303.  
  304.         addresses = ret_array
  305.         if not optimized:
  306.             return addresses
  307.  
  308.  
  309. def collapse_addresses(addresses):
  310.     """Collapse a list of IP objects.
  311.  
  312.     Example:
  313.         collapse_addresses([IPv4Network('192.0.2.0/25'),
  314.                             IPv4Network('192.0.2.128/25')]) ->
  315.                            [IPv4Network('192.0.2.0/24')]
  316.  
  317.     Args:
  318.         addresses: An iterator of IPv4Network or IPv6Network objects.
  319.  
  320.     Returns:
  321.         An iterator of the collapsed IPv(4|6)Network objects.
  322.  
  323.     Raises:
  324.         TypeError: If passed a list of mixed version objects.
  325.  
  326.     """
  327.     i = 0
  328.     addrs = []
  329.     ips = []
  330.     nets = []
  331.  
  332.     # split IP addresses and networks
  333.     for ip in addresses:
  334.         if isinstance(ip, _BaseAddress):
  335.             if ips and ips[-1]._version != ip._version:
  336.                 raise TypeError("%s and %s are not of the same version" % (
  337.                                  ip, ips[-1]))
  338.             ips.append(ip)
  339.         elif ip._prefixlen == ip._max_prefixlen:
  340.             if ips and ips[-1]._version != ip._version:
  341.                 raise TypeError("%s and %s are not of the same version" % (
  342.                                  ip, ips[-1]))
  343.             try:
  344.                 ips.append(ip.ip)
  345.             except AttributeError:
  346.                 ips.append(ip.network_address)
  347.         else:
  348.             if nets and nets[-1]._version != ip._version:
  349.                 raise TypeError("%s and %s are not of the same version" % (
  350.                                  ip, nets[-1]))
  351.             nets.append(ip)
  352.  
  353.     # sort and dedup
  354.     ips = sorted(set(ips))
  355.     nets = sorted(set(nets))
  356.  
  357.     while i < len(ips):
  358.         (first, last) = _find_address_range(ips[i:])
  359.         i = ips.index(last) + 1
  360.         addrs.extend(summarize_address_range(first, last))
  361.  
  362.     return iter(_collapse_addresses_recursive(sorted(
  363.         addrs + nets, key=_BaseNetwork._get_networks_key)))
  364.  
  365.  
  366. def get_mixed_type_key(obj):
  367.     """Return a key suitable for sorting between networks and addresses.
  368.  
  369.     Address and Network objects are not sortable by default; they're
  370.     fundamentally different so the expression
  371.  
  372.         IPv4Address('192.0.2.0') <= IPv4Network('192.0.2.0/24')
  373.  
  374.     doesn't make any sense.  There are some times however, where you may wish
  375.     to have ipaddress sort these for you anyway. If you need to do this, you
  376.     can use this function as the key= argument to sorted().
  377.  
  378.     Args:
  379.       obj: either a Network or Address object.
  380.     Returns:
  381.       appropriate key.
  382.  
  383.     """
  384.     if isinstance(obj, _BaseNetwork):
  385.         return obj._get_networks_key()
  386.     elif isinstance(obj, _BaseAddress):
  387.         return obj._get_address_key()
  388.     return NotImplemented
  389.  
  390.  
  391. class _TotalOrderingMixin:
  392.     # Helper that derives the other comparison operations from
  393.     # __lt__ and __eq__
  394.     # We avoid functools.total_ordering because it doesn't handle
  395.     # NotImplemented correctly yet (http://bugs.python.org/issue10042)
  396.     def __eq__(self, other):
  397.         raise NotImplementedError
  398.     def __ne__(self, other):
  399.         equal = self.__eq__(other)
  400.         if equal is NotImplemented:
  401.             return NotImplemented
  402.         return not equal
  403.     def __lt__(self, other):
  404.         raise NotImplementedError
  405.     def __le__(self, other):
  406.         less = self.__lt__(other)
  407.         if less is NotImplemented or not less:
  408.             return self.__eq__(other)
  409.         return less
  410.     def __gt__(self, other):
  411.         less = self.__lt__(other)
  412.         if less is NotImplemented:
  413.             return NotImplemented
  414.         equal = self.__eq__(other)
  415.         if equal is NotImplemented:
  416.             return NotImplemented
  417.         return not (less or equal)
  418.     def __ge__(self, other):
  419.         less = self.__lt__(other)
  420.         if less is NotImplemented:
  421.             return NotImplemented
  422.         return not less
  423.  
  424. class _IPAddressBase(_TotalOrderingMixin):
  425.  
  426.     """The mother class."""
  427.  
  428.     @property
  429.     def exploded(self):
  430.         """Return the longhand version of the IP address as a string."""
  431.         return self._explode_shorthand_ip_string()
  432.  
  433.     @property
  434.     def compressed(self):
  435.         """Return the shorthand version of the IP address as a string."""
  436.         return str(self)
  437.  
  438.     @property
  439.     def version(self):
  440.         msg = '%200s has no version specified' % (type(self),)
  441.         raise NotImplementedError(msg)
  442.  
  443.     def _check_int_address(self, address):
  444.         if address < 0:
  445.             msg = "%d (< 0) is not permitted as an IPv%d address"
  446.             raise AddressValueError(msg % (address, self._version))
  447.         if address > self._ALL_ONES:
  448.             msg = "%d (>= 2**%d) is not permitted as an IPv%d address"
  449.             raise AddressValueError(msg % (address, self._max_prefixlen,
  450.                                            self._version))
  451.  
  452.     def _check_packed_address(self, address, expected_len):
  453.         address_len = len(address)
  454.         if address_len != expected_len:
  455.             msg = "%r (len %d != %d) is not permitted as an IPv%d address"
  456.             raise AddressValueError(msg % (address, address_len,
  457.                                            expected_len, self._version))
  458.  
  459.     def _ip_int_from_prefix(self, prefixlen):
  460.         """Turn the prefix length into a bitwise netmask
  461.  
  462.         Args:
  463.             prefixlen: An integer, the prefix length.
  464.  
  465.         Returns:
  466.             An integer.
  467.  
  468.         """
  469.         return self._ALL_ONES ^ (self._ALL_ONES >> prefixlen)
  470.  
  471.     def _prefix_from_ip_int(self, ip_int):
  472.         """Return prefix length from the bitwise netmask.
  473.  
  474.         Args:
  475.             ip_int: An integer, the netmask in axpanded bitwise format
  476.  
  477.         Returns:
  478.             An integer, the prefix length.
  479.  
  480.         Raises:
  481.             ValueError: If the input intermingles zeroes & ones
  482.         """
  483.         trailing_zeroes = _count_righthand_zero_bits(ip_int,
  484.                                                      self._max_prefixlen)
  485.         prefixlen = self._max_prefixlen - trailing_zeroes
  486.         leading_ones = ip_int >> trailing_zeroes
  487.         all_ones = (1 << prefixlen) - 1
  488.         if leading_ones != all_ones:
  489.             byteslen = self._max_prefixlen // 8
  490.             details = ip_int.to_bytes(byteslen, 'big')
  491.             msg = 'Netmask pattern %r mixes zeroes & ones'
  492.             raise ValueError(msg % details)
  493.         return prefixlen
  494.  
  495.     def _report_invalid_netmask(self, netmask_str):
  496.         msg = '%r is not a valid netmask' % netmask_str
  497.         raise NetmaskValueError(msg) from None
  498.  
  499.     def _prefix_from_prefix_string(self, prefixlen_str):
  500.         """Return prefix length from a numeric string
  501.  
  502.         Args:
  503.             prefixlen_str: The string to be converted
  504.  
  505.         Returns:
  506.             An integer, the prefix length.
  507.  
  508.         Raises:
  509.             NetmaskValueError: If the input is not a valid netmask
  510.         """
  511.         # int allows a leading +/- as well as surrounding whitespace,
  512.         # so we ensure that isn't the case
  513.         if not _BaseV4._DECIMAL_DIGITS.issuperset(prefixlen_str):
  514.             self._report_invalid_netmask(prefixlen_str)
  515.         try:
  516.             prefixlen = int(prefixlen_str)
  517.         except ValueError:
  518.             self._report_invalid_netmask(prefixlen_str)
  519.         if not (0 <= prefixlen <= self._max_prefixlen):
  520.             self._report_invalid_netmask(prefixlen_str)
  521.         return prefixlen
  522.  
  523.     def _prefix_from_ip_string(self, ip_str):
  524.         """Turn a netmask/hostmask string into a prefix length
  525.  
  526.         Args:
  527.             ip_str: The netmask/hostmask to be converted
  528.  
  529.         Returns:
  530.             An integer, the prefix length.
  531.  
  532.         Raises:
  533.             NetmaskValueError: If the input is not a valid netmask/hostmask
  534.         """
  535.         # Parse the netmask/hostmask like an IP address.
  536.         try:
  537.             ip_int = self._ip_int_from_string(ip_str)
  538.         except AddressValueError:
  539.             self._report_invalid_netmask(ip_str)
  540.  
  541.         # Try matching a netmask (this would be /1*0*/ as a bitwise regexp).
  542.         # Note that the two ambiguous cases (all-ones and all-zeroes) are
  543.         # treated as netmasks.
  544.         try:
  545.             return self._prefix_from_ip_int(ip_int)
  546.         except ValueError:
  547.             pass
  548.  
  549.         # Invert the bits, and try matching a /0+1+/ hostmask instead.
  550.         ip_int ^= self._ALL_ONES
  551.         try:
  552.             return self._prefix_from_ip_int(ip_int)
  553.         except ValueError:
  554.             self._report_invalid_netmask(ip_str)
  555.  
  556.  
  557. class _BaseAddress(_IPAddressBase):
  558.  
  559.     """A generic IP object.
  560.  
  561.     This IP class contains the version independent methods which are
  562.     used by single IP addresses.
  563.     """
  564.  
  565.     def __init__(self, address):
  566.         if (not isinstance(address, bytes)
  567.             and '/' in str(address)):
  568.             raise AddressValueError("Unexpected '/' in %r" % address)
  569.  
  570.     def __int__(self):
  571.         return self._ip
  572.  
  573.     def __eq__(self, other):
  574.         try:
  575.             return (self._ip == other._ip
  576.                     and self._version == other._version)
  577.         except AttributeError:
  578.             return NotImplemented
  579.  
  580.     def __lt__(self, other):
  581.         if self._version != other._version:
  582.             raise TypeError('%s and %s are not of the same version' % (
  583.                              self, other))
  584.         if not isinstance(other, _BaseAddress):
  585.             raise TypeError('%s and %s are not of the same type' % (
  586.                              self, other))
  587.         if self._ip != other._ip:
  588.             return self._ip < other._ip
  589.         return False
  590.  
  591.     # Shorthand for Integer addition and subtraction. This is not
  592.     # meant to ever support addition/subtraction of addresses.
  593.     def __add__(self, other):
  594.         if not isinstance(other, int):
  595.             return NotImplemented
  596.         return self.__class__(int(self) + other)
  597.  
  598.     def __sub__(self, other):
  599.         if not isinstance(other, int):
  600.             return NotImplemented
  601.         return self.__class__(int(self) - other)
  602.  
  603.     def __repr__(self):
  604.         return '%s(%r)' % (self.__class__.__name__, str(self))
  605.  
  606.     def __str__(self):
  607.         return str(self._string_from_ip_int(self._ip))
  608.  
  609.     def __hash__(self):
  610.         return hash(hex(int(self._ip)))
  611.  
  612.     def _get_address_key(self):
  613.         return (self._version, self)
  614.  
  615.  
  616. class _BaseNetwork(_IPAddressBase):
  617.  
  618.     """A generic IP network object.
  619.  
  620.     This IP class contains the version independent methods which are
  621.     used by networks.
  622.  
  623.     """
  624.     def __init__(self, address):
  625.         self._cache = {}
  626.  
  627.     def __repr__(self):
  628.         return '%s(%r)' % (self.__class__.__name__, str(self))
  629.  
  630.     def __str__(self):
  631.         return '%s/%d' % (self.network_address, self.prefixlen)
  632.  
  633.     def hosts(self):
  634.         """Generate Iterator over usable hosts in a network.
  635.  
  636.         This is like __iter__ except it doesn't return the network
  637.         or broadcast addresses.
  638.  
  639.         """
  640.         network = int(self.network_address)
  641.         broadcast = int(self.broadcast_address)
  642.         for x in range(network + 1, broadcast):
  643.             yield self._address_class(x)
  644.  
  645.     def __iter__(self):
  646.         network = int(self.network_address)
  647.         broadcast = int(self.broadcast_address)
  648.         for x in range(network, broadcast + 1):
  649.             yield self._address_class(x)
  650.  
  651.     def __getitem__(self, n):
  652.         network = int(self.network_address)
  653.         broadcast = int(self.broadcast_address)
  654.         if n >= 0:
  655.             if network + n > broadcast:
  656.                 raise IndexError
  657.             return self._address_class(network + n)
  658.         else:
  659.             n += 1
  660.             if broadcast + n < network:
  661.                 raise IndexError
  662.             return self._address_class(broadcast + n)
  663.  
  664.     def __lt__(self, other):
  665.         if self._version != other._version:
  666.             raise TypeError('%s and %s are not of the same version' % (
  667.                              self, other))
  668.         if not isinstance(other, _BaseNetwork):
  669.             raise TypeError('%s and %s are not of the same type' % (
  670.                              self, other))
  671.         if self.network_address != other.network_address:
  672.             return self.network_address < other.network_address
  673.         if self.netmask != other.netmask:
  674.             return self.netmask < other.netmask
  675.         return False
  676.  
  677.     def __eq__(self, other):
  678.         try:
  679.             return (self._version == other._version and
  680.                     self.network_address == other.network_address and
  681.                     int(self.netmask) == int(other.netmask))
  682.         except AttributeError:
  683.             return NotImplemented
  684.  
  685.     def __hash__(self):
  686.         return hash(int(self.network_address) ^ int(self.netmask))
  687.  
  688.     def __contains__(self, other):
  689.         # always false if one is v4 and the other is v6.
  690.         if self._version != other._version:
  691.             return False
  692.         # dealing with another network.
  693.         if isinstance(other, _BaseNetwork):
  694.             return False
  695.         # dealing with another address
  696.         else:
  697.             # address
  698.             return (int(self.network_address) <= int(other._ip) <=
  699.                     int(self.broadcast_address))
  700.  
  701.     def overlaps(self, other):
  702.         """Tell if self is partly contained in other."""
  703.         return self.network_address in other or (
  704.             self.broadcast_address in other or (
  705.                 other.network_address in self or (
  706.                     other.broadcast_address in self)))
  707.  
  708.     @property
  709.     def broadcast_address(self):
  710.         x = self._cache.get('broadcast_address')
  711.         if x is None:
  712.             x = self._address_class(int(self.network_address) |
  713.                                     int(self.hostmask))
  714.             self._cache['broadcast_address'] = x
  715.         return x
  716.  
  717.     @property
  718.     def hostmask(self):
  719.         x = self._cache.get('hostmask')
  720.         if x is None:
  721.             x = self._address_class(int(self.netmask) ^ self._ALL_ONES)
  722.             self._cache['hostmask'] = x
  723.         return x
  724.  
  725.     @property
  726.     def with_prefixlen(self):
  727.         return '%s/%d' % (self.network_address, self._prefixlen)
  728.  
  729.     @property
  730.     def with_netmask(self):
  731.         return '%s/%s' % (self.network_address, self.netmask)
  732.  
  733.     @property
  734.     def with_hostmask(self):
  735.         return '%s/%s' % (self.network_address, self.hostmask)
  736.  
  737.     @property
  738.     def num_addresses(self):
  739.         """Number of hosts in the current subnet."""
  740.         return int(self.broadcast_address) - int(self.network_address) + 1
  741.  
  742.     @property
  743.     def _address_class(self):
  744.         # Returning bare address objects (rather than interfaces) allows for
  745.         # more consistent behaviour across the network address, broadcast
  746.         # address and individual host addresses.
  747.         msg = '%200s has no associated address class' % (type(self),)
  748.         raise NotImplementedError(msg)
  749.  
  750.     @property
  751.     def prefixlen(self):
  752.         return self._prefixlen
  753.  
  754.     def address_exclude(self, other):
  755.         """Remove an address from a larger block.
  756.  
  757.         For example:
  758.  
  759.             addr1 = ip_network('192.0.2.0/28')
  760.             addr2 = ip_network('192.0.2.1/32')
  761.             addr1.address_exclude(addr2) =
  762.                 [IPv4Network('192.0.2.0/32'), IPv4Network('192.0.2.2/31'),
  763.                 IPv4Network('192.0.2.4/30'), IPv4Network('192.0.2.8/29')]
  764.  
  765.         or IPv6:
  766.  
  767.             addr1 = ip_network('2001:db8::1/32')
  768.             addr2 = ip_network('2001:db8::1/128')
  769.             addr1.address_exclude(addr2) =
  770.                 [ip_network('2001:db8::1/128'),
  771.                 ip_network('2001:db8::2/127'),
  772.                 ip_network('2001:db8::4/126'),
  773.                 ip_network('2001:db8::8/125'),
  774.                 ...
  775.                 ip_network('2001:db8:8000::/33')]
  776.  
  777.         Args:
  778.             other: An IPv4Network or IPv6Network object of the same type.
  779.  
  780.         Returns:
  781.             An iterator of the IPv(4|6)Network objects which is self
  782.             minus other.
  783.  
  784.         Raises:
  785.             TypeError: If self and other are of differing address
  786.               versions, or if other is not a network object.
  787.             ValueError: If other is not completely contained by self.
  788.  
  789.         """
  790.         if not self._version == other._version:
  791.             raise TypeError("%s and %s are not of the same version" % (
  792.                              self, other))
  793.  
  794.         if not isinstance(other, _BaseNetwork):
  795.             raise TypeError("%s is not a network object" % other)
  796.  
  797.         if not (other.network_address >= self.network_address and
  798.                 other.broadcast_address <= self.broadcast_address):
  799.             raise ValueError('%s not contained in %s' % (other, self))
  800.         if other == self:
  801.             raise StopIteration
  802.  
  803.         # Make sure we're comparing the network of other.
  804.         other = other.__class__('%s/%s' % (other.network_address,
  805.                                            other.prefixlen))
  806.  
  807.         s1, s2 = self.subnets()
  808.         while s1 != other and s2 != other:
  809.             if (other.network_address >= s1.network_address and
  810.                 other.broadcast_address <= s1.broadcast_address):
  811.                 yield s2
  812.                 s1, s2 = s1.subnets()
  813.             elif (other.network_address >= s2.network_address and
  814.                   other.broadcast_address <= s2.broadcast_address):
  815.                 yield s1
  816.                 s1, s2 = s2.subnets()
  817.             else:
  818.                 # If we got here, there's a bug somewhere.
  819.                 raise AssertionError('Error performing exclusion: '
  820.                                      's1: %s s2: %s other: %s' %
  821.                                      (s1, s2, other))
  822.         if s1 == other:
  823.             yield s2
  824.         elif s2 == other:
  825.             yield s1
  826.         else:
  827.             # If we got here, there's a bug somewhere.
  828.             raise AssertionError('Error performing exclusion: '
  829.                                  's1: %s s2: %s other: %s' %
  830.                                  (s1, s2, other))
  831.  
  832.     def compare_networks(self, other):
  833.         """Compare two IP objects.
  834.  
  835.         This is only concerned about the comparison of the integer
  836.         representation of the network addresses.  This means that the
  837.         host bits aren't considered at all in this method.  If you want
  838.         to compare host bits, you can easily enough do a
  839.         'HostA._ip < HostB._ip'
  840.  
  841.         Args:
  842.             other: An IP object.
  843.  
  844.         Returns:
  845.             If the IP versions of self and other are the same, returns:
  846.  
  847.             -1 if self < other:
  848.               eg: IPv4Network('192.0.2.0/25') < IPv4Network('192.0.2.128/25')
  849.               IPv6Network('2001:db8::1000/124') <
  850.                   IPv6Network('2001:db8::2000/124')
  851.             0 if self == other
  852.               eg: IPv4Network('192.0.2.0/24') == IPv4Network('192.0.2.0/24')
  853.               IPv6Network('2001:db8::1000/124') ==
  854.                   IPv6Network('2001:db8::1000/124')
  855.             1 if self > other
  856.               eg: IPv4Network('192.0.2.128/25') > IPv4Network('192.0.2.0/25')
  857.                   IPv6Network('2001:db8::2000/124') >
  858.                       IPv6Network('2001:db8::1000/124')
  859.  
  860.           Raises:
  861.               TypeError if the IP versions are different.
  862.  
  863.         """
  864.         # does this need to raise a ValueError?
  865.         if self._version != other._version:
  866.             raise TypeError('%s and %s are not of the same type' % (
  867.                              self, other))
  868.         # self._version == other._version below here:
  869.         if self.network_address < other.network_address:
  870.             return -1
  871.         if self.network_address > other.network_address:
  872.             return 1
  873.         # self.network_address == other.network_address below here:
  874.         if self.netmask < other.netmask:
  875.             return -1
  876.         if self.netmask > other.netmask:
  877.             return 1
  878.         return 0
  879.  
  880.     def _get_networks_key(self):
  881.         """Network-only key function.
  882.  
  883.         Returns an object that identifies this address' network and
  884.         netmask. This function is a suitable "key" argument for sorted()
  885.         and list.sort().
  886.  
  887.         """
  888.         return (self._version, self.network_address, self.netmask)
  889.  
  890.     def subnets(self, prefixlen_diff=1, new_prefix=None):
  891.         """The subnets which join to make the current subnet.
  892.  
  893.         In the case that self contains only one IP
  894.         (self._prefixlen == 32 for IPv4 or self._prefixlen == 128
  895.         for IPv6), yield an iterator with just ourself.
  896.  
  897.         Args:
  898.             prefixlen_diff: An integer, the amount the prefix length
  899.               should be increased by. This should not be set if
  900.               new_prefix is also set.
  901.             new_prefix: The desired new prefix length. This must be a
  902.               larger number (smaller prefix) than the existing prefix.
  903.               This should not be set if prefixlen_diff is also set.
  904.  
  905.         Returns:
  906.             An iterator of IPv(4|6) objects.
  907.  
  908.         Raises:
  909.             ValueError: The prefixlen_diff is too small or too large.
  910.                 OR
  911.             prefixlen_diff and new_prefix are both set or new_prefix
  912.               is a smaller number than the current prefix (smaller
  913.               number means a larger network)
  914.  
  915.         """
  916.         if self._prefixlen == self._max_prefixlen:
  917.             yield self
  918.             return
  919.  
  920.         if new_prefix is not None:
  921.             if new_prefix < self._prefixlen:
  922.                 raise ValueError('new prefix must be longer')
  923.             if prefixlen_diff != 1:
  924.                 raise ValueError('cannot set prefixlen_diff and new_prefix')
  925.             prefixlen_diff = new_prefix - self._prefixlen
  926.  
  927.         if prefixlen_diff < 0:
  928.             raise ValueError('prefix length diff must be > 0')
  929.         new_prefixlen = self._prefixlen + prefixlen_diff
  930.  
  931.         if new_prefixlen > self._max_prefixlen:
  932.             raise ValueError(
  933.                 'prefix length diff %d is invalid for netblock %s' % (
  934.                     new_prefixlen, self))
  935.  
  936.         first = self.__class__('%s/%s' %
  937.                                  (self.network_address,
  938.                                   self._prefixlen + prefixlen_diff))
  939.  
  940.         yield first
  941.         current = first
  942.         while True:
  943.             broadcast = current.broadcast_address
  944.             if broadcast == self.broadcast_address:
  945.                 return
  946.             new_addr = self._address_class(int(broadcast) + 1)
  947.             current = self.__class__('%s/%s' % (new_addr,
  948.                                                 new_prefixlen))
  949.  
  950.             yield current
  951.  
  952.     def supernet(self, prefixlen_diff=1, new_prefix=None):
  953.         """The supernet containing the current network.
  954.  
  955.         Args:
  956.             prefixlen_diff: An integer, the amount the prefix length of
  957.               the network should be decreased by.  For example, given a
  958.               /24 network and a prefixlen_diff of 3, a supernet with a
  959.               /21 netmask is returned.
  960.  
  961.         Returns:
  962.             An IPv4 network object.
  963.  
  964.         Raises:
  965.             ValueError: If self.prefixlen - prefixlen_diff < 0. I.e., you have
  966.               a negative prefix length.
  967.                 OR
  968.             If prefixlen_diff and new_prefix are both set or new_prefix is a
  969.               larger number than the current prefix (larger number means a
  970.               smaller network)
  971.  
  972.         """
  973.         if self._prefixlen == 0:
  974.             return self
  975.  
  976.         if new_prefix is not None:
  977.             if new_prefix > self._prefixlen:
  978.                 raise ValueError('new prefix must be shorter')
  979.             if prefixlen_diff != 1:
  980.                 raise ValueError('cannot set prefixlen_diff and new_prefix')
  981.             prefixlen_diff = self._prefixlen - new_prefix
  982.  
  983.         if self.prefixlen - prefixlen_diff < 0:
  984.             raise ValueError(
  985.                 'current prefixlen is %d, cannot have a prefixlen_diff of %d' %
  986.                 (self.prefixlen, prefixlen_diff))
  987.         # TODO (pmoody): optimize this.
  988.         t = self.__class__('%s/%d' % (self.network_address,
  989.                                       self.prefixlen - prefixlen_diff),
  990.                                      strict=False)
  991.         return t.__class__('%s/%d' % (t.network_address, t.prefixlen))
  992.  
  993.     @property
  994.     def is_multicast(self):
  995.         """Test if the address is reserved for multicast use.
  996.  
  997.         Returns:
  998.             A boolean, True if the address is a multicast address.
  999.             See RFC 2373 2.7 for details.
  1000.  
  1001.         """
  1002.         return (self.network_address.is_multicast and
  1003.                 self.broadcast_address.is_multicast)
  1004.  
  1005.     @property
  1006.     def is_reserved(self):
  1007.         """Test if the address is otherwise IETF reserved.
  1008.  
  1009.         Returns:
  1010.             A boolean, True if the address is within one of the
  1011.             reserved IPv6 Network ranges.
  1012.  
  1013.         """
  1014.         return (self.network_address.is_reserved and
  1015.                 self.broadcast_address.is_reserved)
  1016.  
  1017.     @property
  1018.     def is_link_local(self):
  1019.         """Test if the address is reserved for link-local.
  1020.  
  1021.         Returns:
  1022.             A boolean, True if the address is reserved per RFC 4291.
  1023.  
  1024.         """
  1025.         return (self.network_address.is_link_local and
  1026.                 self.broadcast_address.is_link_local)
  1027.  
  1028.     @property
  1029.     def is_private(self):
  1030.         """Test if this address is allocated for private networks.
  1031.  
  1032.         Returns:
  1033.             A boolean, True if the address is reserved per RFC 4193.
  1034.  
  1035.         """
  1036.         return (self.network_address.is_private and
  1037.                 self.broadcast_address.is_private)
  1038.  
  1039.     @property
  1040.     def is_unspecified(self):
  1041.         """Test if the address is unspecified.
  1042.  
  1043.         Returns:
  1044.             A boolean, True if this is the unspecified address as defined in
  1045.             RFC 2373 2.5.2.
  1046.  
  1047.         """
  1048.         return (self.network_address.is_unspecified and
  1049.                 self.broadcast_address.is_unspecified)
  1050.  
  1051.     @property
  1052.     def is_loopback(self):
  1053.         """Test if the address is a loopback address.
  1054.  
  1055.         Returns:
  1056.             A boolean, True if the address is a loopback address as defined in
  1057.             RFC 2373 2.5.3.
  1058.  
  1059.         """
  1060.         return (self.network_address.is_loopback and
  1061.                 self.broadcast_address.is_loopback)
  1062.  
  1063.  
  1064. class _BaseV4:
  1065.  
  1066.     """Base IPv4 object.
  1067.  
  1068.     The following methods are used by IPv4 objects in both single IP
  1069.     addresses and networks.
  1070.  
  1071.     """
  1072.  
  1073.     # Equivalent to 255.255.255.255 or 32 bits of 1's.
  1074.     _ALL_ONES = (2**IPV4LENGTH) - 1
  1075.     _DECIMAL_DIGITS = frozenset('0123456789')
  1076.  
  1077.     # the valid octets for host and netmasks. only useful for IPv4.
  1078.     _valid_mask_octets = frozenset((255, 254, 252, 248, 240, 224, 192, 128, 0))
  1079.  
  1080.     def __init__(self, address):
  1081.         self._version = 4
  1082.         self._max_prefixlen = IPV4LENGTH
  1083.  
  1084.     def _explode_shorthand_ip_string(self):
  1085.         return str(self)
  1086.  
  1087.     def _ip_int_from_string(self, ip_str):
  1088.         """Turn the given IP string into an integer for comparison.
  1089.  
  1090.         Args:
  1091.             ip_str: A string, the IP ip_str.
  1092.  
  1093.         Returns:
  1094.             The IP ip_str as an integer.
  1095.  
  1096.         Raises:
  1097.             AddressValueError: if ip_str isn't a valid IPv4 Address.
  1098.  
  1099.         """
  1100.         if not ip_str:
  1101.             raise AddressValueError('Address cannot be empty')
  1102.  
  1103.         octets = ip_str.split('.')
  1104.         if len(octets) != 4:
  1105.             raise AddressValueError("Expected 4 octets in %r" % ip_str)
  1106.  
  1107.         try:
  1108.             return int.from_bytes(map(self._parse_octet, octets), 'big')
  1109.         except ValueError as exc:
  1110.             raise AddressValueError("%s in %r" % (exc, ip_str)) from None
  1111.  
  1112.     def _parse_octet(self, octet_str):
  1113.         """Convert a decimal octet into an integer.
  1114.  
  1115.         Args:
  1116.             octet_str: A string, the number to parse.
  1117.  
  1118.         Returns:
  1119.             The octet as an integer.
  1120.  
  1121.         Raises:
  1122.             ValueError: if the octet isn't strictly a decimal from [0..255].
  1123.  
  1124.         """
  1125.         if not octet_str:
  1126.             raise ValueError("Empty octet not permitted")
  1127.         # Whitelist the characters, since int() allows a lot of bizarre stuff.
  1128.         if not self._DECIMAL_DIGITS.issuperset(octet_str):
  1129.             msg = "Only decimal digits permitted in %r"
  1130.             raise ValueError(msg % octet_str)
  1131.         # We do the length check second, since the invalid character error
  1132.         # is likely to be more informative for the user
  1133.         if len(octet_str) > 3:
  1134.             msg = "At most 3 characters permitted in %r"
  1135.             raise ValueError(msg % octet_str)
  1136.         # Convert to integer (we know digits are legal)
  1137.         octet_int = int(octet_str, 10)
  1138.         # Any octets that look like they *might* be written in octal,
  1139.         # and which don't look exactly the same in both octal and
  1140.         # decimal are rejected as ambiguous
  1141.         if octet_int > 7 and octet_str[0] == '0':
  1142.             msg = "Ambiguous (octal/decimal) value in %r not permitted"
  1143.             raise ValueError(msg % octet_str)
  1144.         if octet_int > 255:
  1145.             raise ValueError("Octet %d (> 255) not permitted" % octet_int)
  1146.         return octet_int
  1147.  
  1148.     def _string_from_ip_int(self, ip_int):
  1149.         """Turns a 32-bit integer into dotted decimal notation.
  1150.  
  1151.         Args:
  1152.             ip_int: An integer, the IP address.
  1153.  
  1154.         Returns:
  1155.             The IP address as a string in dotted decimal notation.
  1156.  
  1157.         """
  1158.         return '.'.join(map(str, ip_int.to_bytes(4, 'big')))
  1159.  
  1160.     def _is_valid_netmask(self, netmask):
  1161.         """Verify that the netmask is valid.
  1162.  
  1163.         Args:
  1164.             netmask: A string, either a prefix or dotted decimal
  1165.               netmask.
  1166.  
  1167.         Returns:
  1168.             A boolean, True if the prefix represents a valid IPv4
  1169.             netmask.
  1170.  
  1171.         """
  1172.         mask = netmask.split('.')
  1173.         if len(mask) == 4:
  1174.             try:
  1175.                 for x in mask:
  1176.                     if int(x) not in self._valid_mask_octets:
  1177.                         return False
  1178.             except ValueError:
  1179.                 # Found something that isn't an integer or isn't valid
  1180.                 return False
  1181.             for idx, y in enumerate(mask):
  1182.                 if idx > 0 and y > mask[idx - 1]:
  1183.                     return False
  1184.             return True
  1185.         try:
  1186.             netmask = int(netmask)
  1187.         except ValueError:
  1188.             return False
  1189.         return 0 <= netmask <= self._max_prefixlen
  1190.  
  1191.     def _is_hostmask(self, ip_str):
  1192.         """Test if the IP string is a hostmask (rather than a netmask).
  1193.  
  1194.         Args:
  1195.             ip_str: A string, the potential hostmask.
  1196.  
  1197.         Returns:
  1198.             A boolean, True if the IP string is a hostmask.
  1199.  
  1200.         """
  1201.         bits = ip_str.split('.')
  1202.         try:
  1203.             parts = [x for x in map(int, bits) if x in self._valid_mask_octets]
  1204.         except ValueError:
  1205.             return False
  1206.         if len(parts) != len(bits):
  1207.             return False
  1208.         if parts[0] < parts[-1]:
  1209.             return True
  1210.         return False
  1211.  
  1212.     @property
  1213.     def max_prefixlen(self):
  1214.         return self._max_prefixlen
  1215.  
  1216.     @property
  1217.     def version(self):
  1218.         return self._version
  1219.  
  1220.  
  1221. class IPv4Address(_BaseV4, _BaseAddress):
  1222.  
  1223.     """Represent and manipulate single IPv4 Addresses."""
  1224.  
  1225.     def __init__(self, address):
  1226.  
  1227.         """
  1228.         Args:
  1229.             address: A string or integer representing the IP
  1230.  
  1231.               Additionally, an integer can be passed, so
  1232.               IPv4Address('192.0.2.1') == IPv4Address(3221225985).
  1233.               or, more generally
  1234.               IPv4Address(int(IPv4Address('192.0.2.1'))) ==
  1235.                 IPv4Address('192.0.2.1')
  1236.  
  1237.         Raises:
  1238.             AddressValueError: If ipaddress isn't a valid IPv4 address.
  1239.  
  1240.         """
  1241.         _BaseAddress.__init__(self, address)
  1242.         _BaseV4.__init__(self, address)
  1243.  
  1244.         # Efficient constructor from integer.
  1245.         if isinstance(address, int):
  1246.             self._check_int_address(address)
  1247.             self._ip = address
  1248.             return
  1249.  
  1250.         # Constructing from a packed address
  1251.         if isinstance(address, bytes):
  1252.             self._check_packed_address(address, 4)
  1253.             self._ip = int.from_bytes(address, 'big')
  1254.             return
  1255.  
  1256.         # Assume input argument to be string or any object representation
  1257.         # which converts into a formatted IP string.
  1258.         addr_str = str(address)
  1259.         self._ip = self._ip_int_from_string(addr_str)
  1260.  
  1261.     @property
  1262.     def packed(self):
  1263.         """The binary representation of this address."""
  1264.         return v4_int_to_packed(self._ip)
  1265.  
  1266.     @property
  1267.     def is_reserved(self):
  1268.         """Test if the address is otherwise IETF reserved.
  1269.  
  1270.          Returns:
  1271.              A boolean, True if the address is within the
  1272.              reserved IPv4 Network range.
  1273.  
  1274.         """
  1275.         reserved_network = IPv4Network('240.0.0.0/4')
  1276.         return self in reserved_network
  1277.  
  1278.     @property
  1279.     def is_private(self):
  1280.         """Test if this address is allocated for private networks.
  1281.  
  1282.         Returns:
  1283.             A boolean, True if the address is reserved per RFC 1918.
  1284.  
  1285.         """
  1286.         private_10 = IPv4Network('10.0.0.0/8')
  1287.         private_172 = IPv4Network('172.16.0.0/12')
  1288.         private_192 = IPv4Network('192.168.0.0/16')
  1289.         return (self in private_10 or
  1290.                 self in private_172 or
  1291.                 self in private_192)
  1292.  
  1293.     @property
  1294.     def is_multicast(self):
  1295.         """Test if the address is reserved for multicast use.
  1296.  
  1297.         Returns:
  1298.             A boolean, True if the address is multicast.
  1299.             See RFC 3171 for details.
  1300.  
  1301.         """
  1302.         multicast_network = IPv4Network('224.0.0.0/4')
  1303.         return self in multicast_network
  1304.  
  1305.     @property
  1306.     def is_unspecified(self):
  1307.         """Test if the address is unspecified.
  1308.  
  1309.         Returns:
  1310.             A boolean, True if this is the unspecified address as defined in
  1311.             RFC 5735 3.
  1312.  
  1313.         """
  1314.         unspecified_address = IPv4Address('0.0.0.0')
  1315.         return self == unspecified_address
  1316.  
  1317.     @property
  1318.     def is_loopback(self):
  1319.         """Test if the address is a loopback address.
  1320.  
  1321.         Returns:
  1322.             A boolean, True if the address is a loopback per RFC 3330.
  1323.  
  1324.         """
  1325.         loopback_network = IPv4Network('127.0.0.0/8')
  1326.         return self in loopback_network
  1327.  
  1328.     @property
  1329.     def is_link_local(self):
  1330.         """Test if the address is reserved for link-local.
  1331.  
  1332.         Returns:
  1333.             A boolean, True if the address is link-local per RFC 3927.
  1334.  
  1335.         """
  1336.         linklocal_network = IPv4Network('169.254.0.0/16')
  1337.         return self in linklocal_network
  1338.  
  1339.  
  1340. class IPv4Interface(IPv4Address):
  1341.  
  1342.     def __init__(self, address):
  1343.         if isinstance(address, (bytes, int)):
  1344.             IPv4Address.__init__(self, address)
  1345.             self.network = IPv4Network(self._ip)
  1346.             self._prefixlen = self._max_prefixlen
  1347.             return
  1348.  
  1349.         addr = _split_optional_netmask(address)
  1350.         IPv4Address.__init__(self, addr[0])
  1351.  
  1352.         self.network = IPv4Network(address, strict=False)
  1353.         self._prefixlen = self.network._prefixlen
  1354.  
  1355.         self.netmask = self.network.netmask
  1356.         self.hostmask = self.network.hostmask
  1357.  
  1358.     def __str__(self):
  1359.         return '%s/%d' % (self._string_from_ip_int(self._ip),
  1360.                           self.network.prefixlen)
  1361.  
  1362.     def __eq__(self, other):
  1363.         address_equal = IPv4Address.__eq__(self, other)
  1364.         if not address_equal or address_equal is NotImplemented:
  1365.             return address_equal
  1366.         try:
  1367.             return self.network == other.network
  1368.         except AttributeError:
  1369.             # An interface with an associated network is NOT the
  1370.             # same as an unassociated address. That's why the hash
  1371.             # takes the extra info into account.
  1372.             return False
  1373.  
  1374.     def __lt__(self, other):
  1375.         address_less = IPv4Address.__lt__(self, other)
  1376.         if address_less is NotImplemented:
  1377.             return NotImplemented
  1378.         try:
  1379.             return self.network < other.network
  1380.         except AttributeError:
  1381.             # We *do* allow addresses and interfaces to be sorted. The
  1382.             # unassociated address is considered less than all interfaces.
  1383.             return False
  1384.  
  1385.     def __hash__(self):
  1386.         return self._ip ^ self._prefixlen ^ int(self.network.network_address)
  1387.  
  1388.     @property
  1389.     def ip(self):
  1390.         return IPv4Address(self._ip)
  1391.  
  1392.     @property
  1393.     def with_prefixlen(self):
  1394.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  1395.                           self._prefixlen)
  1396.  
  1397.     @property
  1398.     def with_netmask(self):
  1399.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  1400.                           self.netmask)
  1401.  
  1402.     @property
  1403.     def with_hostmask(self):
  1404.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  1405.                           self.hostmask)
  1406.  
  1407.  
  1408. class IPv4Network(_BaseV4, _BaseNetwork):
  1409.  
  1410.     """This class represents and manipulates 32-bit IPv4 network + addresses..
  1411.  
  1412.     Attributes: [examples for IPv4Network('192.0.2.0/27')]
  1413.         .network_address: IPv4Address('192.0.2.0')
  1414.         .hostmask: IPv4Address('0.0.0.31')
  1415.         .broadcast_address: IPv4Address('192.0.2.32')
  1416.         .netmask: IPv4Address('255.255.255.224')
  1417.         .prefixlen: 27
  1418.  
  1419.     """
  1420.     # Class to use when creating address objects
  1421.     _address_class = IPv4Address
  1422.  
  1423.     def __init__(self, address, strict=True):
  1424.  
  1425.         """Instantiate a new IPv4 network object.
  1426.  
  1427.         Args:
  1428.             address: A string or integer representing the IP [& network].
  1429.               '192.0.2.0/24'
  1430.               '192.0.2.0/255.255.255.0'
  1431.               '192.0.0.2/0.0.0.255'
  1432.               are all functionally the same in IPv4. Similarly,
  1433.               '192.0.2.1'
  1434.               '192.0.2.1/255.255.255.255'
  1435.               '192.0.2.1/32'
  1436.               are also functionally equivalent. That is to say, failing to
  1437.               provide a subnetmask will create an object with a mask of /32.
  1438.  
  1439.               If the mask (portion after the / in the argument) is given in
  1440.               dotted quad form, it is treated as a netmask if it starts with a
  1441.               non-zero field (e.g. /255.0.0.0 == /8) and as a hostmask if it
  1442.               starts with a zero field (e.g. 0.255.255.255 == /8), with the
  1443.               single exception of an all-zero mask which is treated as a
  1444.               netmask == /0. If no mask is given, a default of /32 is used.
  1445.  
  1446.               Additionally, an integer can be passed, so
  1447.               IPv4Network('192.0.2.1') == IPv4Network(3221225985)
  1448.               or, more generally
  1449.               IPv4Interface(int(IPv4Interface('192.0.2.1'))) ==
  1450.                 IPv4Interface('192.0.2.1')
  1451.  
  1452.         Raises:
  1453.             AddressValueError: If ipaddress isn't a valid IPv4 address.
  1454.             NetmaskValueError: If the netmask isn't valid for
  1455.               an IPv4 address.
  1456.             ValueError: If strict is True and a network address is not
  1457.               supplied.
  1458.  
  1459.         """
  1460.  
  1461.         _BaseV4.__init__(self, address)
  1462.         _BaseNetwork.__init__(self, address)
  1463.  
  1464.         # Constructing from a packed address
  1465.         if isinstance(address, bytes):
  1466.             self.network_address = IPv4Address(address)
  1467.             self._prefixlen = self._max_prefixlen
  1468.             self.netmask = IPv4Address(self._ALL_ONES)
  1469.             #fixme: address/network test here
  1470.             return
  1471.  
  1472.         # Efficient constructor from integer.
  1473.         if isinstance(address, int):
  1474.             self.network_address = IPv4Address(address)
  1475.             self._prefixlen = self._max_prefixlen
  1476.             self.netmask = IPv4Address(self._ALL_ONES)
  1477.             #fixme: address/network test here.
  1478.             return
  1479.  
  1480.         # Assume input argument to be string or any object representation
  1481.         # which converts into a formatted IP prefix string.
  1482.         addr = _split_optional_netmask(address)
  1483.         self.network_address = IPv4Address(self._ip_int_from_string(addr[0]))
  1484.  
  1485.         if len(addr) == 2:
  1486.             try:
  1487.                 # Check for a netmask in prefix length form
  1488.                 self._prefixlen = self._prefix_from_prefix_string(addr[1])
  1489.             except NetmaskValueError:
  1490.                 # Check for a netmask or hostmask in dotted-quad form.
  1491.                 # This may raise NetmaskValueError.
  1492.                 self._prefixlen = self._prefix_from_ip_string(addr[1])
  1493.         else:
  1494.             self._prefixlen = self._max_prefixlen
  1495.         self.netmask = IPv4Address(self._ip_int_from_prefix(self._prefixlen))
  1496.  
  1497.         if strict:
  1498.             if (IPv4Address(int(self.network_address) & int(self.netmask)) !=
  1499.                 self.network_address):
  1500.                 raise ValueError('%s has host bits set' % self)
  1501.         self.network_address = IPv4Address(int(self.network_address) &
  1502.                                            int(self.netmask))
  1503.  
  1504.         if self._prefixlen == (self._max_prefixlen - 1):
  1505.             self.hosts = self.__iter__
  1506.  
  1507.  
  1508. class _BaseV6:
  1509.  
  1510.     """Base IPv6 object.
  1511.  
  1512.     The following methods are used by IPv6 objects in both single IP
  1513.     addresses and networks.
  1514.  
  1515.     """
  1516.  
  1517.     _ALL_ONES = (2**IPV6LENGTH) - 1
  1518.     _HEXTET_COUNT = 8
  1519.     _HEX_DIGITS = frozenset('0123456789ABCDEFabcdef')
  1520.  
  1521.     def __init__(self, address):
  1522.         self._version = 6
  1523.         self._max_prefixlen = IPV6LENGTH
  1524.  
  1525.     def _ip_int_from_string(self, ip_str):
  1526.         """Turn an IPv6 ip_str into an integer.
  1527.  
  1528.         Args:
  1529.             ip_str: A string, the IPv6 ip_str.
  1530.  
  1531.         Returns:
  1532.             An int, the IPv6 address
  1533.  
  1534.         Raises:
  1535.             AddressValueError: if ip_str isn't a valid IPv6 Address.
  1536.  
  1537.         """
  1538.         if not ip_str:
  1539.             raise AddressValueError('Address cannot be empty')
  1540.  
  1541.         parts = ip_str.split(':')
  1542.  
  1543.         # An IPv6 address needs at least 2 colons (3 parts).
  1544.         _min_parts = 3
  1545.         if len(parts) < _min_parts:
  1546.             msg = "At least %d parts expected in %r" % (_min_parts, ip_str)
  1547.             raise AddressValueError(msg)
  1548.  
  1549.         # If the address has an IPv4-style suffix, convert it to hexadecimal.
  1550.         if '.' in parts[-1]:
  1551.             try:
  1552.                 ipv4_int = IPv4Address(parts.pop())._ip
  1553.             except AddressValueError as exc:
  1554.                 raise AddressValueError("%s in %r" % (exc, ip_str)) from None
  1555.             parts.append('%x' % ((ipv4_int >> 16) & 0xFFFF))
  1556.             parts.append('%x' % (ipv4_int & 0xFFFF))
  1557.  
  1558.         # An IPv6 address can't have more than 8 colons (9 parts).
  1559.         # The extra colon comes from using the "::" notation for a single
  1560.         # leading or trailing zero part.
  1561.         _max_parts = self._HEXTET_COUNT + 1
  1562.         if len(parts) > _max_parts:
  1563.             msg = "At most %d colons permitted in %r" % (_max_parts-1, ip_str)
  1564.             raise AddressValueError(msg)
  1565.  
  1566.         # Disregarding the endpoints, find '::' with nothing in between.
  1567.         # This indicates that a run of zeroes has been skipped.
  1568.         skip_index = None
  1569.         for i in range(1, len(parts) - 1):
  1570.             if not parts[i]:
  1571.                 if skip_index is not None:
  1572.                     # Can't have more than one '::'
  1573.                     msg = "At most one '::' permitted in %r" % ip_str
  1574.                     raise AddressValueError(msg)
  1575.                 skip_index = i
  1576.  
  1577.         # parts_hi is the number of parts to copy from above/before the '::'
  1578.         # parts_lo is the number of parts to copy from below/after the '::'
  1579.         if skip_index is not None:
  1580.             # If we found a '::', then check if it also covers the endpoints.
  1581.             parts_hi = skip_index
  1582.             parts_lo = len(parts) - skip_index - 1
  1583.             if not parts[0]:
  1584.                 parts_hi -= 1
  1585.                 if parts_hi:
  1586.                     msg = "Leading ':' only permitted as part of '::' in %r"
  1587.                     raise AddressValueError(msg % ip_str)  # ^: requires ^::
  1588.             if not parts[-1]:
  1589.                 parts_lo -= 1
  1590.                 if parts_lo:
  1591.                     msg = "Trailing ':' only permitted as part of '::' in %r"
  1592.                     raise AddressValueError(msg % ip_str)  # :$ requires ::$
  1593.             parts_skipped = self._HEXTET_COUNT - (parts_hi + parts_lo)
  1594.             if parts_skipped < 1:
  1595.                 msg = "Expected at most %d other parts with '::' in %r"
  1596.                 raise AddressValueError(msg % (self._HEXTET_COUNT-1, ip_str))
  1597.         else:
  1598.             # Otherwise, allocate the entire address to parts_hi.  The
  1599.             # endpoints could still be empty, but _parse_hextet() will check
  1600.             # for that.
  1601.             if len(parts) != self._HEXTET_COUNT:
  1602.                 msg = "Exactly %d parts expected without '::' in %r"
  1603.                 raise AddressValueError(msg % (self._HEXTET_COUNT, ip_str))
  1604.             if not parts[0]:
  1605.                 msg = "Leading ':' only permitted as part of '::' in %r"
  1606.                 raise AddressValueError(msg % ip_str)  # ^: requires ^::
  1607.             if not parts[-1]:
  1608.                 msg = "Trailing ':' only permitted as part of '::' in %r"
  1609.                 raise AddressValueError(msg % ip_str)  # :$ requires ::$
  1610.             parts_hi = len(parts)
  1611.             parts_lo = 0
  1612.             parts_skipped = 0
  1613.  
  1614.         try:
  1615.             # Now, parse the hextets into a 128-bit integer.
  1616.             ip_int = 0
  1617.             for i in range(parts_hi):
  1618.                 ip_int <<= 16
  1619.                 ip_int |= self._parse_hextet(parts[i])
  1620.             ip_int <<= 16 * parts_skipped
  1621.             for i in range(-parts_lo, 0):
  1622.                 ip_int <<= 16
  1623.                 ip_int |= self._parse_hextet(parts[i])
  1624.             return ip_int
  1625.         except ValueError as exc:
  1626.             raise AddressValueError("%s in %r" % (exc, ip_str)) from None
  1627.  
  1628.     def _parse_hextet(self, hextet_str):
  1629.         """Convert an IPv6 hextet string into an integer.
  1630.  
  1631.         Args:
  1632.             hextet_str: A string, the number to parse.
  1633.  
  1634.         Returns:
  1635.             The hextet as an integer.
  1636.  
  1637.         Raises:
  1638.             ValueError: if the input isn't strictly a hex number from
  1639.               [0..FFFF].
  1640.  
  1641.         """
  1642.         # Whitelist the characters, since int() allows a lot of bizarre stuff.
  1643.         if not self._HEX_DIGITS.issuperset(hextet_str):
  1644.             raise ValueError("Only hex digits permitted in %r" % hextet_str)
  1645.         # We do the length check second, since the invalid character error
  1646.         # is likely to be more informative for the user
  1647.         if len(hextet_str) > 4:
  1648.             msg = "At most 4 characters permitted in %r"
  1649.             raise ValueError(msg % hextet_str)
  1650.         # Length check means we can skip checking the integer value
  1651.         return int(hextet_str, 16)
  1652.  
  1653.     def _compress_hextets(self, hextets):
  1654.         """Compresses a list of hextets.
  1655.  
  1656.         Compresses a list of strings, replacing the longest continuous
  1657.         sequence of "0" in the list with "" and adding empty strings at
  1658.         the beginning or at the end of the string such that subsequently
  1659.         calling ":".join(hextets) will produce the compressed version of
  1660.         the IPv6 address.
  1661.  
  1662.         Args:
  1663.             hextets: A list of strings, the hextets to compress.
  1664.  
  1665.         Returns:
  1666.             A list of strings.
  1667.  
  1668.         """
  1669.         best_doublecolon_start = -1
  1670.         best_doublecolon_len = 0
  1671.         doublecolon_start = -1
  1672.         doublecolon_len = 0
  1673.         for index, hextet in enumerate(hextets):
  1674.             if hextet == '0':
  1675.                 doublecolon_len += 1
  1676.                 if doublecolon_start == -1:
  1677.                     # Start of a sequence of zeros.
  1678.                     doublecolon_start = index
  1679.                 if doublecolon_len > best_doublecolon_len:
  1680.                     # This is the longest sequence of zeros so far.
  1681.                     best_doublecolon_len = doublecolon_len
  1682.                     best_doublecolon_start = doublecolon_start
  1683.             else:
  1684.                 doublecolon_len = 0
  1685.                 doublecolon_start = -1
  1686.  
  1687.         if best_doublecolon_len > 1:
  1688.             best_doublecolon_end = (best_doublecolon_start +
  1689.                                     best_doublecolon_len)
  1690.             # For zeros at the end of the address.
  1691.             if best_doublecolon_end == len(hextets):
  1692.                 hextets += ['']
  1693.             hextets[best_doublecolon_start:best_doublecolon_end] = ['']
  1694.             # For zeros at the beginning of the address.
  1695.             if best_doublecolon_start == 0:
  1696.                 hextets = [''] + hextets
  1697.  
  1698.         return hextets
  1699.  
  1700.     def _string_from_ip_int(self, ip_int=None):
  1701.         """Turns a 128-bit integer into hexadecimal notation.
  1702.  
  1703.         Args:
  1704.             ip_int: An integer, the IP address.
  1705.  
  1706.         Returns:
  1707.             A string, the hexadecimal representation of the address.
  1708.  
  1709.         Raises:
  1710.             ValueError: The address is bigger than 128 bits of all ones.
  1711.  
  1712.         """
  1713.         if ip_int is None:
  1714.             ip_int = int(self._ip)
  1715.  
  1716.         if ip_int > self._ALL_ONES:
  1717.             raise ValueError('IPv6 address is too large')
  1718.  
  1719.         hex_str = '%032x' % ip_int
  1720.         hextets = ['%x' % int(hex_str[x:x+4], 16) for x in range(0, 32, 4)]
  1721.  
  1722.         hextets = self._compress_hextets(hextets)
  1723.         return ':'.join(hextets)
  1724.  
  1725.     def _explode_shorthand_ip_string(self):
  1726.         """Expand a shortened IPv6 address.
  1727.  
  1728.         Args:
  1729.             ip_str: A string, the IPv6 address.
  1730.  
  1731.         Returns:
  1732.             A string, the expanded IPv6 address.
  1733.  
  1734.         """
  1735.         if isinstance(self, IPv6Network):
  1736.             ip_str = str(self.network_address)
  1737.         elif isinstance(self, IPv6Interface):
  1738.             ip_str = str(self.ip)
  1739.         else:
  1740.             ip_str = str(self)
  1741.  
  1742.         ip_int = self._ip_int_from_string(ip_str)
  1743.         hex_str = '%032x' % ip_int
  1744.         parts = [hex_str[x:x+4] for x in range(0, 32, 4)]
  1745.         if isinstance(self, (_BaseNetwork, IPv6Interface)):
  1746.             return '%s/%d' % (':'.join(parts), self._prefixlen)
  1747.         return ':'.join(parts)
  1748.  
  1749.     @property
  1750.     def max_prefixlen(self):
  1751.         return self._max_prefixlen
  1752.  
  1753.     @property
  1754.     def version(self):
  1755.         return self._version
  1756.  
  1757.  
  1758. class IPv6Address(_BaseV6, _BaseAddress):
  1759.  
  1760.     """Represent and manipulate single IPv6 Addresses."""
  1761.  
  1762.     def __init__(self, address):
  1763.         """Instantiate a new IPv6 address object.
  1764.  
  1765.         Args:
  1766.             address: A string or integer representing the IP
  1767.  
  1768.               Additionally, an integer can be passed, so
  1769.               IPv6Address('2001:db8::') ==
  1770.                 IPv6Address(42540766411282592856903984951653826560)
  1771.               or, more generally
  1772.               IPv6Address(int(IPv6Address('2001:db8::'))) ==
  1773.                 IPv6Address('2001:db8::')
  1774.  
  1775.         Raises:
  1776.             AddressValueError: If address isn't a valid IPv6 address.
  1777.  
  1778.         """
  1779.         _BaseAddress.__init__(self, address)
  1780.         _BaseV6.__init__(self, address)
  1781.  
  1782.         # Efficient constructor from integer.
  1783.         if isinstance(address, int):
  1784.             self._check_int_address(address)
  1785.             self._ip = address
  1786.             return
  1787.  
  1788.         # Constructing from a packed address
  1789.         if isinstance(address, bytes):
  1790.             self._check_packed_address(address, 16)
  1791.             self._ip = int.from_bytes(address, 'big')
  1792.             return
  1793.  
  1794.         # Assume input argument to be string or any object representation
  1795.         # which converts into a formatted IP string.
  1796.         addr_str = str(address)
  1797.         self._ip = self._ip_int_from_string(addr_str)
  1798.  
  1799.     @property
  1800.     def packed(self):
  1801.         """The binary representation of this address."""
  1802.         return v6_int_to_packed(self._ip)
  1803.  
  1804.     @property
  1805.     def is_multicast(self):
  1806.         """Test if the address is reserved for multicast use.
  1807.  
  1808.         Returns:
  1809.             A boolean, True if the address is a multicast address.
  1810.             See RFC 2373 2.7 for details.
  1811.  
  1812.         """
  1813.         multicast_network = IPv6Network('ff00::/8')
  1814.         return self in multicast_network
  1815.  
  1816.     @property
  1817.     def is_reserved(self):
  1818.         """Test if the address is otherwise IETF reserved.
  1819.  
  1820.         Returns:
  1821.             A boolean, True if the address is within one of the
  1822.             reserved IPv6 Network ranges.
  1823.  
  1824.         """
  1825.         reserved_networks = [IPv6Network('::/8'), IPv6Network('100::/8'),
  1826.                              IPv6Network('200::/7'), IPv6Network('400::/6'),
  1827.                              IPv6Network('800::/5'), IPv6Network('1000::/4'),
  1828.                              IPv6Network('4000::/3'), IPv6Network('6000::/3'),
  1829.                              IPv6Network('8000::/3'), IPv6Network('A000::/3'),
  1830.                              IPv6Network('C000::/3'), IPv6Network('E000::/4'),
  1831.                              IPv6Network('F000::/5'), IPv6Network('F800::/6'),
  1832.                              IPv6Network('FE00::/9')]
  1833.  
  1834.         return any(self in x for x in reserved_networks)
  1835.  
  1836.     @property
  1837.     def is_link_local(self):
  1838.         """Test if the address is reserved for link-local.
  1839.  
  1840.         Returns:
  1841.             A boolean, True if the address is reserved per RFC 4291.
  1842.  
  1843.         """
  1844.         linklocal_network = IPv6Network('fe80::/10')
  1845.         return self in linklocal_network
  1846.  
  1847.     @property
  1848.     def is_site_local(self):
  1849.         """Test if the address is reserved for site-local.
  1850.  
  1851.         Note that the site-local address space has been deprecated by RFC 3879.
  1852.         Use is_private to test if this address is in the space of unique local
  1853.         addresses as defined by RFC 4193.
  1854.  
  1855.         Returns:
  1856.             A boolean, True if the address is reserved per RFC 3513 2.5.6.
  1857.  
  1858.         """
  1859.         sitelocal_network = IPv6Network('fec0::/10')
  1860.         return self in sitelocal_network
  1861.  
  1862.     @property
  1863.     def is_private(self):
  1864.         """Test if this address is allocated for private networks.
  1865.  
  1866.         Returns:
  1867.             A boolean, True if the address is reserved per RFC 4193.
  1868.  
  1869.         """
  1870.         private_network = IPv6Network('fc00::/7')
  1871.         return self in private_network
  1872.  
  1873.     @property
  1874.     def is_unspecified(self):
  1875.         """Test if the address is unspecified.
  1876.  
  1877.         Returns:
  1878.             A boolean, True if this is the unspecified address as defined in
  1879.             RFC 2373 2.5.2.
  1880.  
  1881.         """
  1882.         return self._ip == 0
  1883.  
  1884.     @property
  1885.     def is_loopback(self):
  1886.         """Test if the address is a loopback address.
  1887.  
  1888.         Returns:
  1889.             A boolean, True if the address is a loopback address as defined in
  1890.             RFC 2373 2.5.3.
  1891.  
  1892.         """
  1893.         return self._ip == 1
  1894.  
  1895.     @property
  1896.     def ipv4_mapped(self):
  1897.         """Return the IPv4 mapped address.
  1898.  
  1899.         Returns:
  1900.             If the IPv6 address is a v4 mapped address, return the
  1901.             IPv4 mapped address. Return None otherwise.
  1902.  
  1903.         """
  1904.         if (self._ip >> 32) != 0xFFFF:
  1905.             return None
  1906.         return IPv4Address(self._ip & 0xFFFFFFFF)
  1907.  
  1908.     @property
  1909.     def teredo(self):
  1910.         """Tuple of embedded teredo IPs.
  1911.  
  1912.         Returns:
  1913.             Tuple of the (server, client) IPs or None if the address
  1914.             doesn't appear to be a teredo address (doesn't start with
  1915.             2001::/32)
  1916.  
  1917.         """
  1918.         if (self._ip >> 96) != 0x20010000:
  1919.             return None
  1920.         return (IPv4Address((self._ip >> 64) & 0xFFFFFFFF),
  1921.                 IPv4Address(~self._ip & 0xFFFFFFFF))
  1922.  
  1923.     @property
  1924.     def sixtofour(self):
  1925.         """Return the IPv4 6to4 embedded address.
  1926.  
  1927.         Returns:
  1928.             The IPv4 6to4-embedded address if present or None if the
  1929.             address doesn't appear to contain a 6to4 embedded address.
  1930.  
  1931.         """
  1932.         if (self._ip >> 112) != 0x2002:
  1933.             return None
  1934.         return IPv4Address((self._ip >> 80) & 0xFFFFFFFF)
  1935.  
  1936.  
  1937. class IPv6Interface(IPv6Address):
  1938.  
  1939.     def __init__(self, address):
  1940.         if isinstance(address, (bytes, int)):
  1941.             IPv6Address.__init__(self, address)
  1942.             self.network = IPv6Network(self._ip)
  1943.             self._prefixlen = self._max_prefixlen
  1944.             return
  1945.  
  1946.         addr = _split_optional_netmask(address)
  1947.         IPv6Address.__init__(self, addr[0])
  1948.         self.network = IPv6Network(address, strict=False)
  1949.         self.netmask = self.network.netmask
  1950.         self._prefixlen = self.network._prefixlen
  1951.         self.hostmask = self.network.hostmask
  1952.  
  1953.     def __str__(self):
  1954.         return '%s/%d' % (self._string_from_ip_int(self._ip),
  1955.                           self.network.prefixlen)
  1956.  
  1957.     def __eq__(self, other):
  1958.         address_equal = IPv6Address.__eq__(self, other)
  1959.         if not address_equal or address_equal is NotImplemented:
  1960.             return address_equal
  1961.         try:
  1962.             return self.network == other.network
  1963.         except AttributeError:
  1964.             # An interface with an associated network is NOT the
  1965.             # same as an unassociated address. That's why the hash
  1966.             # takes the extra info into account.
  1967.             return False
  1968.  
  1969.     def __lt__(self, other):
  1970.         address_less = IPv6Address.__lt__(self, other)
  1971.         if address_less is NotImplemented:
  1972.             return NotImplemented
  1973.         try:
  1974.             return self.network < other.network
  1975.         except AttributeError:
  1976.             # We *do* allow addresses and interfaces to be sorted. The
  1977.             # unassociated address is considered less than all interfaces.
  1978.             return False
  1979.  
  1980.     def __hash__(self):
  1981.         return self._ip ^ self._prefixlen ^ int(self.network.network_address)
  1982.  
  1983.     @property
  1984.     def ip(self):
  1985.         return IPv6Address(self._ip)
  1986.  
  1987.     @property
  1988.     def with_prefixlen(self):
  1989.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  1990.                           self._prefixlen)
  1991.  
  1992.     @property
  1993.     def with_netmask(self):
  1994.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  1995.                           self.netmask)
  1996.  
  1997.     @property
  1998.     def with_hostmask(self):
  1999.         return '%s/%s' % (self._string_from_ip_int(self._ip),
  2000.                           self.hostmask)
  2001.  
  2002.     @property
  2003.     def is_unspecified(self):
  2004.         return self._ip == 0 and self.network.is_unspecified
  2005.  
  2006.     @property
  2007.     def is_loopback(self):
  2008.         return self._ip == 1 and self.network.is_loopback
  2009.  
  2010.  
  2011. class IPv6Network(_BaseV6, _BaseNetwork):
  2012.  
  2013.     """This class represents and manipulates 128-bit IPv6 networks.
  2014.  
  2015.     Attributes: [examples for IPv6('2001:db8::1000/124')]
  2016.         .network_address: IPv6Address('2001:db8::1000')
  2017.         .hostmask: IPv6Address('::f')
  2018.         .broadcast_address: IPv6Address('2001:db8::100f')
  2019.         .netmask: IPv6Address('ffff:ffff:ffff:ffff:ffff:ffff:ffff:fff0')
  2020.         .prefixlen: 124
  2021.  
  2022.     """
  2023.  
  2024.     # Class to use when creating address objects
  2025.     _address_class = IPv6Address
  2026.  
  2027.     def __init__(self, address, strict=True):
  2028.         """Instantiate a new IPv6 Network object.
  2029.  
  2030.         Args:
  2031.             address: A string or integer representing the IPv6 network or the
  2032.               IP and prefix/netmask.
  2033.               '2001:db8::/128'
  2034.               '2001:db8:0000:0000:0000:0000:0000:0000/128'
  2035.               '2001:db8::'
  2036.               are all functionally the same in IPv6.  That is to say,
  2037.               failing to provide a subnetmask will create an object with
  2038.               a mask of /128.
  2039.  
  2040.               Additionally, an integer can be passed, so
  2041.               IPv6Network('2001:db8::') ==
  2042.                 IPv6Network(42540766411282592856903984951653826560)
  2043.               or, more generally
  2044.               IPv6Network(int(IPv6Network('2001:db8::'))) ==
  2045.                 IPv6Network('2001:db8::')
  2046.  
  2047.             strict: A boolean. If true, ensure that we have been passed
  2048.               A true network address, eg, 2001:db8::1000/124 and not an
  2049.               IP address on a network, eg, 2001:db8::1/124.
  2050.  
  2051.         Raises:
  2052.             AddressValueError: If address isn't a valid IPv6 address.
  2053.             NetmaskValueError: If the netmask isn't valid for
  2054.               an IPv6 address.
  2055.             ValueError: If strict was True and a network address was not
  2056.               supplied.
  2057.  
  2058.         """
  2059.         _BaseV6.__init__(self, address)
  2060.         _BaseNetwork.__init__(self, address)
  2061.  
  2062.         # Efficient constructor from integer.
  2063.         if isinstance(address, int):
  2064.             self.network_address = IPv6Address(address)
  2065.             self._prefixlen = self._max_prefixlen
  2066.             self.netmask = IPv6Address(self._ALL_ONES)
  2067.             return
  2068.  
  2069.         # Constructing from a packed address
  2070.         if isinstance(address, bytes):
  2071.             self.network_address = IPv6Address(address)
  2072.             self._prefixlen = self._max_prefixlen
  2073.             self.netmask = IPv6Address(self._ALL_ONES)
  2074.             return
  2075.  
  2076.         # Assume input argument to be string or any object representation
  2077.         # which converts into a formatted IP prefix string.
  2078.         addr = _split_optional_netmask(address)
  2079.  
  2080.         self.network_address = IPv6Address(self._ip_int_from_string(addr[0]))
  2081.  
  2082.         if len(addr) == 2:
  2083.             # This may raise NetmaskValueError
  2084.             self._prefixlen = self._prefix_from_prefix_string(addr[1])
  2085.         else:
  2086.             self._prefixlen = self._max_prefixlen
  2087.  
  2088.         self.netmask = IPv6Address(self._ip_int_from_prefix(self._prefixlen))
  2089.         if strict:
  2090.             if (IPv6Address(int(self.network_address) & int(self.netmask)) !=
  2091.                 self.network_address):
  2092.                 raise ValueError('%s has host bits set' % self)
  2093.         self.network_address = IPv6Address(int(self.network_address) &
  2094.                                            int(self.netmask))
  2095.  
  2096.         if self._prefixlen == (self._max_prefixlen - 1):
  2097.             self.hosts = self.__iter__
  2098.  
  2099.     @property
  2100.     def is_site_local(self):
  2101.         """Test if the address is reserved for site-local.
  2102.  
  2103.         Note that the site-local address space has been deprecated by RFC 3879.
  2104.         Use is_private to test if this address is in the space of unique local
  2105.         addresses as defined by RFC 4193.
  2106.  
  2107.         Returns:
  2108.             A boolean, True if the address is reserved per RFC 3513 2.5.6.
  2109.  
  2110.         """
  2111.         return (self.network_address.is_site_local and
  2112.                 self.broadcast_address.is_site_local)
  2113.