forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "[Barefoot] Added CLI to list/set P4 profile (sonic-ne…
…t#1951)"" (sonic-net#2019) Refer to sonic-net#1951 for details The PR sonic-net#1951 was reverted in sonic-net#2016 because it was thought to be causing the build failure in sonic-swss TestWarmReboot UTs. But it seems the failures in TestWarmReboot are still occurring e.g. sonic-net#2017 [build](https://dev.azure.com/mssonic/build/_build/results?buildId=65653&view=logs&s=859b8d9a-8fd6-5a5c-6f5e-f84f1990894e) I think we can reapply sonic-net#1951 and need to investigate TestWarmReboot tests instability
- Loading branch information
Showing
3 changed files
with
143 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#!/usr/bin/env python | ||
|
||
import click | ||
import json | ||
import subprocess | ||
from sonic_py_common import device_info | ||
from swsscommon.swsscommon import ConfigDBConnector | ||
|
||
def abort_if_false(ctx, param, value): | ||
if not value: | ||
ctx.abort() | ||
|
||
@click.group() | ||
def barefoot(): | ||
pass | ||
|
||
@barefoot.command() | ||
@click.option('-y', '--yes', is_flag=True, callback=abort_if_false, | ||
expose_value=False, prompt='Swss service will be restarted, continue?') | ||
@click.argument('profile') | ||
def profile(profile): | ||
# Check if profile can be changed | ||
completed_process = subprocess.run(['docker', 'exec', '-it', 'syncd', | ||
'test', '-h', '/opt/bfn/install']) | ||
if completed_process.returncode != 0: | ||
click.echo('Cannot change profile: default one is in use') | ||
raise click.Abort() | ||
|
||
# Get chip family | ||
hwsku_dir = device_info.get_path_to_hwsku_dir() | ||
with open(hwsku_dir + '/switch-tna-sai.conf') as file: | ||
chip_family = json.load(file)['chip_list'][0]['chip_family'].lower() | ||
|
||
# Check if profile is supported | ||
if chip_family == 'tofino' and profile[0] == 'y' or \ | ||
chip_family == 'tofino2' and profile[0] == 'x': | ||
click.echo('Specified profile is unsupported on the system') | ||
raise click.Abort() | ||
|
||
# Check if profile exists | ||
completed_process = subprocess.run(['docker', 'exec', '-it', 'syncd', | ||
'test', '-d', '/opt/bfn/install_' + profile + '_profile']) | ||
if completed_process.returncode != 0: | ||
click.echo('No profile with the provided name found') | ||
raise click.Abort() | ||
|
||
# Update configuration | ||
config_db = ConfigDBConnector() | ||
config_db.connect() | ||
config_db.mod_entry('DEVICE_METADATA', 'localhost', | ||
{'p4_profile': profile + '_profile'}) | ||
subprocess.run(['systemctl', 'restart', 'swss'], check=True) | ||
|
||
def register(cli): | ||
version_info = device_info.get_sonic_version_info() | ||
if version_info and version_info.get('asic_type') == 'barefoot': | ||
cli.commands['platform'].add_command(barefoot) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/usr/bin/env python | ||
|
||
import click | ||
import json | ||
import subprocess | ||
from sonic_py_common import device_info | ||
|
||
@click.group() | ||
def barefoot(): | ||
pass | ||
|
||
@barefoot.command() | ||
def profile(): | ||
# Check if profile can be changed | ||
completed_process = subprocess.run(['docker', 'exec', '-it', 'syncd', | ||
'test', '-h', '/opt/bfn/install']) | ||
if completed_process.returncode != 0: | ||
click.echo('Current profile: default') | ||
return | ||
|
||
# Get chip family | ||
hwsku_dir = device_info.get_path_to_hwsku_dir() | ||
with open(hwsku_dir + '/switch-tna-sai.conf') as file: | ||
chip_family = json.load(file)['chip_list'][0]['chip_family'].lower() | ||
|
||
# Print current profile | ||
click.echo('Current profile: ', nl=False) | ||
subprocess.run('docker exec -it syncd readlink /opt/bfn/install | sed ' | ||
r's/install_\\\(.\*\\\)_profile/\\1/', check=True, shell=True) | ||
|
||
# Exclude current and unsupported profiles | ||
opts = '' | ||
if chip_family == 'tofino': | ||
opts = r'\! -name install_y\*_profile ' | ||
elif chip_family == 'tofino2': | ||
opts = r'\! -name install_x\*_profile ' | ||
|
||
# Print profile list | ||
click.echo('Available profile(s):') | ||
subprocess.run('docker exec -it syncd find /opt/bfn -mindepth 1 ' | ||
r'-maxdepth 1 -type d -name install_\*_profile ' + opts + '| sed ' | ||
r's%/opt/bfn/install_\\\(.\*\\\)_profile%\\1%', shell=True) | ||
|
||
def register(cli): | ||
version_info = device_info.get_sonic_version_info() | ||
if version_info and version_info.get('asic_type') == 'barefoot': | ||
cli.commands['platform'].add_command(barefoot) |