2020-11-06 12:15:06 -06:00
|
|
|
#!/usr/bin/env python3
|
2020-06-24 00:23:08 -05:00
|
|
|
|
|
|
|
import signal
|
2020-11-06 12:15:06 -06:00
|
|
|
import sys
|
2020-06-24 00:23:08 -05:00
|
|
|
import traceback
|
2020-11-06 12:15:06 -06:00
|
|
|
from sonic_py_common.logger import Logger
|
|
|
|
from socket import if_nametoindex
|
2022-07-10 21:01:10 -05:00
|
|
|
from sonic_py_common import port_util
|
2020-11-06 12:15:06 -06:00
|
|
|
from swsscommon import swsscommon
|
2020-06-24 00:23:08 -05:00
|
|
|
|
|
|
|
SYSLOG_IDENTIFIER = 'port_index_mapper'
|
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
# Global logger instance
|
|
|
|
logger = Logger(SYSLOG_IDENTIFIER)
|
|
|
|
logger.set_min_log_priority_info()
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-12-03 17:57:50 -06:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
class PortIndexMapper(object):
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
def __init__(self):
|
|
|
|
REDIS_TIMEOUT_MS = 0
|
|
|
|
# Update this list to support more interfaces
|
|
|
|
tbl_lst = [swsscommon.STATE_PORT_TABLE_NAME,
|
|
|
|
swsscommon.STATE_VLAN_TABLE_NAME]
|
|
|
|
self.appl_db = swsscommon.DBConnector("STATE_DB",
|
|
|
|
REDIS_TIMEOUT_MS,
|
|
|
|
True)
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2022-07-10 21:01:10 -05:00
|
|
|
self.state_db = swsscommon.SonicV2Connector(host='127.0.0.1', decode_responses=True)
|
2020-11-06 12:15:06 -06:00
|
|
|
self.state_db.connect(self.state_db.STATE_DB, False)
|
|
|
|
self.sel = swsscommon.Select()
|
2020-11-07 22:23:01 -06:00
|
|
|
self.tbls = [swsscommon.SubscriberStateTable(self.appl_db, t)
|
2020-11-06 12:15:06 -06:00
|
|
|
for t in tbl_lst]
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
self.cur_interfaces = {}
|
|
|
|
|
2020-11-07 22:23:01 -06:00
|
|
|
for t in self.tbls:
|
2020-11-06 12:15:06 -06:00
|
|
|
self.sel.addSelectable(t)
|
|
|
|
|
|
|
|
def set_port_index_table_entry(self, key, index, ifindex):
|
|
|
|
self.state_db.set(self.state_db.STATE_DB, key, 'index', index)
|
|
|
|
self.state_db.set(self.state_db.STATE_DB, key, 'ifindex', ifindex)
|
|
|
|
|
|
|
|
def update_db(self, ifname, op):
|
2020-06-24 00:23:08 -05:00
|
|
|
index = port_util.get_index_from_str(ifname)
|
2020-11-06 12:15:06 -06:00
|
|
|
if op == 'SET' and index is None:
|
|
|
|
return
|
|
|
|
ifindex = if_nametoindex(ifname)
|
|
|
|
if op == 'SET' and ifindex is None:
|
2020-06-24 00:23:08 -05:00
|
|
|
return
|
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
# Check if ifname already exist or if index/ifindex changed due to
|
|
|
|
# syncd restart
|
|
|
|
if (ifname in self.cur_interfaces and
|
|
|
|
self.cur_interfaces[ifname] == (index, ifindex)):
|
|
|
|
return
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
_hash = '{}|{}'.format('PORT_INDEX_TABLE', ifname)
|
|
|
|
|
|
|
|
if op == 'SET':
|
|
|
|
self.cur_interfaces[ifname] = (index, ifindex)
|
|
|
|
self.set_port_index_table_entry(_hash, str(index), str(ifindex))
|
|
|
|
elif op == 'DEL':
|
|
|
|
del self.cur_interfaces[ifname]
|
|
|
|
self.state_db.delete(self.state_db.STATE_DB, _hash)
|
|
|
|
|
|
|
|
def listen(self):
|
|
|
|
SELECT_TIMEOUT_MS = -1 # Infinite wait
|
|
|
|
|
|
|
|
while True:
|
|
|
|
(state, c) = self.sel.select(SELECT_TIMEOUT_MS)
|
|
|
|
if state == swsscommon.Select.OBJECT:
|
2020-11-07 22:23:01 -06:00
|
|
|
for t in self.tbls:
|
2020-11-06 12:15:06 -06:00
|
|
|
(key, op, cfvs) = t.pop()
|
|
|
|
if op == 'DEL' and key in self.cur_interfaces:
|
|
|
|
self.update_db(key, op)
|
|
|
|
elif (op == 'SET' and key != 'PortInitDone' and
|
2020-11-07 22:23:01 -06:00
|
|
|
key != 'PortConfigDone' and
|
2020-11-06 12:15:06 -06:00
|
|
|
key not in self.cur_interfaces):
|
|
|
|
self.update_db(key, op)
|
|
|
|
elif state == swsscomm.Select.ERROR:
|
|
|
|
logger.log_error("Receieved error from select()")
|
|
|
|
break
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
def populate(self):
|
|
|
|
SELECT_TIMEOUT_MS = 0
|
2020-06-24 00:23:08 -05:00
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
while True:
|
|
|
|
(state, c) = self.sel.select(SELECT_TIMEOUT_MS)
|
|
|
|
if state == swsscommon.Select.OBJECT:
|
2020-11-07 22:23:01 -06:00
|
|
|
for t in self.tbls:
|
2020-11-06 12:15:06 -06:00
|
|
|
(key, op, cfvs) = t.pop()
|
2020-11-07 22:23:01 -06:00
|
|
|
if (key and key != 'PortInitDone' and
|
|
|
|
key != 'PortConfigDone'):
|
2020-11-06 12:15:06 -06:00
|
|
|
self.update_db(key, op)
|
|
|
|
else:
|
|
|
|
break
|
2020-06-24 00:23:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
def signal_handler(signum, frame):
|
2020-11-06 12:15:06 -06:00
|
|
|
logger.log_notice("got signal {}".format(signum))
|
2020-06-24 00:23:08 -05:00
|
|
|
sys.exit(0)
|
|
|
|
|
2020-11-06 12:15:06 -06:00
|
|
|
|
|
|
|
def main():
|
|
|
|
port_mapper = PortIndexMapper()
|
|
|
|
port_mapper.populate()
|
|
|
|
port_mapper.listen()
|
|
|
|
|
2020-12-03 17:57:50 -06:00
|
|
|
|
2020-06-24 00:23:08 -05:00
|
|
|
if __name__ == '__main__':
|
|
|
|
rc = 0
|
|
|
|
try:
|
|
|
|
signal.signal(signal.SIGTERM, signal_handler)
|
|
|
|
signal.signal(signal.SIGINT, signal_handler)
|
|
|
|
main()
|
2020-11-06 12:15:06 -06:00
|
|
|
except Exception as e:
|
|
|
|
tb = sys.exc_info()[2]
|
|
|
|
traceback.print_tb(tb)
|
|
|
|
logger.log_error("%s" % str(e))
|
2020-06-24 00:23:08 -05:00
|
|
|
rc = -1
|
|
|
|
finally:
|
|
|
|
sys.exit(rc)
|