[mux]: Initialize all mux ports as standby
Signed-off-by: Lawrence Lee <lawlee@microsoft.com>
This commit is contained in:
parent
18d1f65339
commit
84cd0e9471
@ -29,6 +29,7 @@ COPY ["docker-init.sh", "/usr/bin/"]
|
||||
COPY ["supervisord.conf", "/etc/supervisor/conf.d/"]
|
||||
COPY ["files/supervisor-proc-exit-listener", "/usr/bin"]
|
||||
COPY ["critical_processes", "/etc/supervisor/"]
|
||||
COPY ["write_standby.py", "/usr/sbin/"]
|
||||
|
||||
## Copy all Jinja2 template files into the templates folder
|
||||
COPY ["*.j2", "/usr/share/sonic/templates/"]
|
||||
|
@ -27,6 +27,15 @@ stdout_logfile=syslog
|
||||
stderr_logfile=syslog
|
||||
dependent_startup=true
|
||||
|
||||
[program:standby_init]
|
||||
command=/usr/sbin/write_standby.py
|
||||
priority=2
|
||||
autostart=false
|
||||
autorestart=false
|
||||
startsecs=0
|
||||
dependent_startup=true
|
||||
dependent_startup_wait_for=rsyslogd:running
|
||||
|
||||
[program:linkmgrd]
|
||||
command=nice -n -20 /usr/sbin/linkmgrd -v warning
|
||||
priority=2
|
||||
@ -38,4 +47,3 @@ stdout_logfile=syslog
|
||||
stderr_logfile=syslog
|
||||
dependent_startup=true
|
||||
dependent_startup_wait_for=rsyslogd:running
|
||||
|
||||
|
121
dockers/docker-mux/write_standby.py
Executable file
121
dockers/docker-mux/write_standby.py
Executable file
@ -0,0 +1,121 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import logging
|
||||
import time
|
||||
|
||||
from swsscommon.swsscommon import ConfigDBConnector, DBConnector, FieldValuePairs, ProducerStateTable, SonicV2Connector
|
||||
from swsscommon.swsscommon import APPL_DB, ASIC_DB
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
REDIS_SOCK_PATH = '/var/run/redis/redis.sock'
|
||||
|
||||
|
||||
def create_fvs(**kwargs):
|
||||
return FieldValuePairs(list(kwargs.items()))
|
||||
|
||||
class MuxStateWriter(object):
|
||||
"""
|
||||
Class used to write standby mux state to APP DB
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
self.config_db_connector = None
|
||||
self.appl_db_connector = None
|
||||
self.asic_db_connector = None
|
||||
|
||||
@property
|
||||
def config_db(self):
|
||||
"""
|
||||
Returns config DB connector.
|
||||
Initializes the connector during the first call
|
||||
"""
|
||||
if self.config_db_connector is None:
|
||||
self.config_db_connector = ConfigDBConnector()
|
||||
self.config_db_connector.connect()
|
||||
|
||||
return self.config_db_connector
|
||||
|
||||
@property
|
||||
def appl_db(self):
|
||||
"""
|
||||
Returns the app DB connector.
|
||||
Initializes the connector during the first call
|
||||
"""
|
||||
if self.appl_db_connector is None:
|
||||
self.appl_db_connector = DBConnector(APPL_DB, REDIS_SOCK_PATH, True)
|
||||
return self.appl_db_connector
|
||||
|
||||
@property
|
||||
def asic_db(self):
|
||||
"""
|
||||
Returns the ASIC DB connector.
|
||||
Initializes the connector during the first call
|
||||
"""
|
||||
if self.asic_db_connector is None:
|
||||
self.asic_db_connector = SonicV2Connector()
|
||||
self.asic_db_connector.connect('ASIC_DB')
|
||||
|
||||
return self.asic_db_connector
|
||||
|
||||
@property
|
||||
def tunnel_name(self):
|
||||
"""
|
||||
Returns the name of the IP-in-IP tunnel used for Dual ToR devices
|
||||
"""
|
||||
return self.config_db.get_keys('TUNNEL')[0]
|
||||
|
||||
def get_all_mux_intfs(self):
|
||||
"""
|
||||
Returns a list of all mux cable interfaces
|
||||
"""
|
||||
return self.config_db.get_keys('MUX_CABLE')
|
||||
|
||||
def tunnel_exists(self):
|
||||
"""
|
||||
Checks if the IP-in-IP tunnel has been written to ASIC DB
|
||||
"""
|
||||
tunnel_key_pattern = 'ASIC_STATE:SAI_OBJECT_TYPE_TUNNEL:*'
|
||||
return len(self.asic_db.keys('ASIC_DB', tunnel_key_pattern)) > 0
|
||||
|
||||
def wait_for_tunnel(self, interval=1, timeout=30):
|
||||
"""
|
||||
Waits until the IP-in-IP tunnel has been created
|
||||
|
||||
Returns:
|
||||
(bool) True if the tunnel has been created
|
||||
False if the timeout period is exceeded
|
||||
"""
|
||||
logger.info("Waiting for tunnel {} with timeout {} seconds".format(self.tunnel_name, timeout))
|
||||
start = time.time()
|
||||
curr_time = time.time()
|
||||
|
||||
while not self.tunnel_exists() and curr_time - start < timeout:
|
||||
time.sleep(interval)
|
||||
curr_time = time.time()
|
||||
|
||||
# If we timed out, return False else return True
|
||||
return curr_time - start < timeout
|
||||
|
||||
|
||||
def apply_mux_config(self):
|
||||
"""
|
||||
Writes standby mux state to APP DB for all mux interfaces
|
||||
"""
|
||||
intfs = self.get_all_mux_intfs()
|
||||
state = 'standby'
|
||||
if self.wait_for_tunnel():
|
||||
logger.warning("Applying {} state to interfaces {}".format(state, intfs))
|
||||
producer_state_table = ProducerStateTable(self.appl_db, 'MUX_CABLE_TABLE')
|
||||
fvs = create_fvs(state=state)
|
||||
|
||||
for intf in intfs:
|
||||
producer_state_table.set(intf, fvs)
|
||||
else:
|
||||
logger.error("Timed out waiting for tunnel {}, mux state will not be written".format(self.tunnel_name))
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
mux_writer = MuxStateWriter()
|
||||
mux_writer.apply_mux_config()
|
Loading…
Reference in New Issue
Block a user