blob: a4610a2bf6b3cb28275f9e38e729a8d602a9bc1f [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():
51 m_ip = ni.ifaddresses(iface)[AF_INET][0]['addr']
52 _ip = netaddr.IPAddress(m_ip).value
53 m_network = netaddr.IPNetwork(inter_core_subnet)
54 if _ip >= m_network.first and _ip <= m_network.last:
55 return m_ip
56 return None
57
58
59def get_my_primary_interface(pon_subnet=None):
60 if not pon_subnet:
61 return _get_my_primary_interface()
62 # My interface should have an IP that belongs to the specified subnet
63 for iface in ni.interfaces():
64 m_ip = ni.ifaddresses(iface)[AF_INET][0]['addr']
65 m_ip = netaddr.IPAddress(m_ip).value
66 m_network = netaddr.IPNetwork(pon_subnet)
67 if m_ip >= m_network.first and m_ip <= m_network.last:
68 return iface
69 return None
70
71
72def _get_my_primary_local_ipv4(ifname=None):
khenaidooccc42252017-07-06 23:00:49 -040073 try:
74 ifname = get_my_primary_interface() if ifname is None else ifname
75 addresses = ni.ifaddresses(ifname)
76 ipv4 = addresses[AF_INET][0]['addr']
77 return ipv4
78 except Exception as e:
79 return None
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070080
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070081if __name__ == '__main__':
82 print get_my_primary_local_ipv4()