blob: b17aced8ab1413e5081df9102f881020a8382d49 [file] [log] [blame]
Zsolt Haraszti86be6f12016-09-27 09:56:49 -07001#
Zsolt Haraszti3eb27a52017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Zsolt Haraszti86be6f12016-09-27 09:56:49 -07003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17"""
18Some network related convenience functions
19"""
20
21from netifaces import AF_INET
22
23import netifaces as ni
khenaidoo26a8c012017-07-07 18:25:47 -040024import netaddr
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070025
khenaidoo26a8c012017-07-07 18:25:47 -040026
27def _get_all_interfaces():
28 m_interfaces = []
29 for iface in ni.interfaces():
30 m_interfaces.append((iface, ni.ifaddresses(iface)))
31 return m_interfaces
32
33
34def _get_my_primary_interface():
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070035 gateways = ni.gateways()
36 assert 'default' in gateways, \
37 ("No default gateway on host/container, "
38 "cannot determine primary interface")
39 default_gw_index = gateways['default'].keys()[0]
40 # gateways[default_gw_index] has the format (example):
41 # [('10.15.32.1', 'en0', True)]
42 interface_name = gateways[default_gw_index][0][1]
43 return interface_name
44
45
khenaidoo26a8c012017-07-07 18:25:47 -040046def get_my_primary_local_ipv4(inter_core_subnet=None, ifname=None):
47 if not inter_core_subnet:
48 return _get_my_primary_local_ipv4(ifname)
49 # My IP should belong to the specified subnet
50 for iface in ni.interfaces():
David K. Bainbridge7ec781d2018-01-19 18:41:16 -080051 addresses = ni.ifaddresses(iface)
52 if AF_INET in addresses:
53 m_ip = addresses[AF_INET][0]['addr']
54 _ip = netaddr.IPAddress(m_ip).value
55 m_network = netaddr.IPNetwork(inter_core_subnet)
56 if _ip >= m_network.first and _ip <= m_network.last:
57 return m_ip
khenaidoo26a8c012017-07-07 18:25:47 -040058 return None
59
60
61def get_my_primary_interface(pon_subnet=None):
62 if not pon_subnet:
63 return _get_my_primary_interface()
64 # My interface should have an IP that belongs to the specified subnet
65 for iface in ni.interfaces():
David K. Bainbridge7ec781d2018-01-19 18:41:16 -080066 addresses = ni.ifaddresses(iface)
67 if AF_INET in addresses:
68 m_ip = addresses[AF_INET][0]['addr']
69 m_ip = netaddr.IPAddress(m_ip).value
70 m_network = netaddr.IPNetwork(pon_subnet)
71 if m_ip >= m_network.first and m_ip <= m_network.last:
72 return iface
khenaidoo26a8c012017-07-07 18:25:47 -040073 return None
74
75
76def _get_my_primary_local_ipv4(ifname=None):
khenaidooccc42252017-07-06 23:00:49 -040077 try:
78 ifname = get_my_primary_interface() if ifname is None else ifname
79 addresses = ni.ifaddresses(ifname)
80 ipv4 = addresses[AF_INET][0]['addr']
81 return ipv4
82 except Exception as e:
83 return None
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070084
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070085if __name__ == '__main__':
86 print get_my_primary_local_ipv4()