-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[202111] [portchannel] Added ACL/PBH binding checks to the port befor…
…e getting added to portchannel (#2186) - What I did Backport #2151 to 202111 The change to handle it in oA is already added. When this check is not performed when adding the config, the portchannel configuration will be inconsistent b/w Kernel and ASIC - How I did it Utilize the match infra to implement methods to check for ACL/PBH bindings to a port - How to verify it Unit tests Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
- Loading branch information
Showing
7 changed files
with
137 additions
and
6 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
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
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
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,66 @@ | ||
from dump.match_infra import MatchEngine, MatchRequest, ConnectionPool | ||
from dump.match_helper import get_matched_keys | ||
from .db import Db | ||
|
||
def get_port_acl_binding(db_wrap, port, ns): | ||
""" | ||
Verify if the port is not bound to any ACL Table | ||
Args: | ||
db_wrap: utilities_common.Db() object | ||
port: Iface name | ||
ns: namespace | ||
Returns: | ||
list: ACL_TABLE names if found, | ||
otherwise empty | ||
""" | ||
ACL = "ACL_TABLE" # Table to look for port bindings | ||
if not isinstance(db_wrap, Db): | ||
raise Exception("db_wrap object is not of type utilities_common.Db") | ||
|
||
conn_pool = ConnectionPool() | ||
conn_pool.fill(ns, db_wrap.db_clients[ns], db_wrap.db_list) | ||
m_engine = MatchEngine(conn_pool) | ||
req = MatchRequest(db="CONFIG_DB", | ||
table=ACL, | ||
key_pattern="*", | ||
field="ports@", | ||
value=port, | ||
ns=ns, | ||
match_entire_list=False) | ||
ret = m_engine.fetch(req) | ||
acl_tables, _ = get_matched_keys(ret) | ||
return acl_tables | ||
|
||
|
||
def get_port_pbh_binding(db_wrap, port, ns): | ||
""" | ||
Verify if the port is not bound to any PBH Table | ||
Args: | ||
db_wrap: Db() object | ||
port: Iface name | ||
ns: namespace | ||
Returns: | ||
list: PBH_TABLE names if found, | ||
otherwise empty | ||
""" | ||
PBH = "PBH_TABLE" # Table to look for port bindings | ||
if not isinstance(db_wrap, Db): | ||
raise Exception("db_wrap object is not of type utilities_common.Db") | ||
|
||
conn_pool = ConnectionPool() | ||
conn_pool.fill(ns, db_wrap.db_clients[ns], db_wrap.db_list) | ||
m_engine = MatchEngine(conn_pool) | ||
req = MatchRequest(db="CONFIG_DB", | ||
table=PBH, | ||
key_pattern="*", | ||
field="interface_list@", | ||
value=port, | ||
ns=ns, | ||
match_entire_list=False) | ||
ret = m_engine.fetch(req) | ||
pbh_tables, _ = get_matched_keys(ret) | ||
return pbh_tables |