From 3a42930d52dca48f4df64f9d7816dfc95c286a16 Mon Sep 17 00:00:00 2001 From: Jan Gelety Date: Mon, 11 Nov 2019 19:39:06 +0100 Subject: [PATCH] FIX: missing param in gbp_contract_add_del Change-Id: I5c2354911505a9d7a95bef894eda8bf7b14b8dc8 Signed-off-by: Jan Gelety --- resources/libraries/python/GBP.py | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/resources/libraries/python/GBP.py b/resources/libraries/python/GBP.py index e0fa07e9c9..3625640853 100644 --- a/resources/libraries/python/GBP.py +++ b/resources/libraries/python/GBP.py @@ -61,6 +61,13 @@ class GBPRuleAction(IntEnum): GBP_API_RULE_REDIRECT = 3 +class GBPHashMode(IntEnum): + """GBP Hash Mode.""" + GBP_API_HASH_MODE_SRC_IP = 1 + GBP_API_HASH_MODE_DST_IP = 2 + GBP_API_HASH_MODE_SYMETRIC = 3 + + class GBP(object): """GBP utilities.""" @@ -125,8 +132,8 @@ class GBP(object): args_in = dict( bd=dict( - flags=getattr(GBPBridgeDomainFlags, - 'GBP_BD_API_FLAG_NONE').value, + flags=getattr( + GBPBridgeDomainFlags, 'GBP_BD_API_FLAG_NONE').value, bvi_sw_if_index=bvi_sw_if_index, uu_fwd_sw_if_index=uu_fwd_sw_if_index, bm_flood_sw_if_index=bm_flood_sw_if_index, @@ -213,8 +220,8 @@ class GBP(object): n_ips=len(ips), mac=L2Util.mac_to_bin(mac_addr), sclass=sclass, - flags=getattr(GBPEndpointFlags, - 'GBP_API_ENDPOINT_FLAG_EXTERNAL').value, + flags=getattr( + GBPEndpointFlags, 'GBP_API_ENDPOINT_FLAG_EXTERNAL').value, tun=dict( src=tun_src, dst=tun_dst @@ -248,8 +255,7 @@ class GBP(object): sw_if_index=sw_if_index, bd_id=bd_id, rd_id=rd_id, - flags=getattr(GBPExtItfFlags, - 'GBP_API_EXT_ITF_F_NONE').value + flags=getattr(GBPExtItfFlags, 'GBP_API_EXT_ITF_F_NONE').value ) ) @@ -282,8 +288,7 @@ class GBP(object): args_in = dict( is_add=1, subnet=dict( - type=getattr(GBPSubnetType, - 'GBP_API_SUBNET_L3_OUT').value, + type=getattr(GBPSubnetType, 'GBP_API_SUBNET_L3_OUT').value, sw_if_index=sw_if_index, sclass=sclass, prefix=dict( @@ -299,27 +304,30 @@ class GBP(object): papi_exec.add(cmd, **args_in).get_reply(err_msg) @staticmethod - def gbp_contract_add_del(node, sclass, dclass, acl_index=0): + def gbp_contract_add_del(node, sclass, dclass, acl_index=0, hash_mode=None): """Add GBP contract. :param node: Node to add GBP contract on. :param sclass: Source CLASS. :param dclass: Destination CLASS. :param acl_index: Index of ACL rule. + :param hash_mode: GBP contract hash mode. :type node: dict :type sclass: int :type dclass: int :type acl_index: int + :type hash_mode: str """ cmd = 'gbp_contract_add_del' err_msg = 'Failed to add GBP contract on {node}!'\ .format(node=node['host']) + hash_mode = 'GBP_API_HASH_MODE_SRC_IP' if hash_mode is None \ + else hash_mode rule_permit = dict( - action=getattr(GBPRuleAction, - 'GBP_API_RULE_PERMIT').value, + action=getattr(GBPRuleAction, 'GBP_API_RULE_PERMIT').value, nh_set=dict( - hash_mode=list(), + hash_mode=getattr(GBPHashMode, hash_mode).value, n_nhs=8, nhs=[dict()]*8, ) -- 2.16.6