@@ -384,7 +384,7 @@ func (c *OVNNbClient) UpdateSgACL(sg *kubeovnv1.SecurityGroup, direction string)
384
384
pgName := GetSgPortGroupName (sg .Name )
385
385
386
386
// clear acl
387
- if err := c .DeleteAcls (pgName , portGroupKey , direction , nil ); err != nil {
387
+ if err := c .DeleteAcls (pgName , portGroupKey , direction , nil , - 1 ); err != nil {
388
388
klog .Error (err )
389
389
return fmt .Errorf ("delete direction '%s' acls from port group %s: %w" , direction , pgName , err )
390
390
}
@@ -441,7 +441,7 @@ func (c *OVNNbClient) UpdateSgACL(sg *kubeovnv1.SecurityGroup, direction string)
441
441
}
442
442
443
443
func (c * OVNNbClient ) UpdateLogicalSwitchACL (lsName , cidrBlock string , subnetAcls []kubeovnv1.ACL , allowEWTraffic bool ) error {
444
- if err := c .DeleteAcls (lsName , logicalSwitchKey , "" , map [string ]string {"subnet" : lsName }); err != nil {
444
+ if err := c .DeleteAcls (lsName , logicalSwitchKey , "" , map [string ]string {"subnet" : lsName }, - 1 ); err != nil {
445
445
klog .Error (err )
446
446
return fmt .Errorf ("delete subnet acls from %s: %w" , lsName , err )
447
447
}
@@ -530,7 +530,7 @@ func (c *OVNNbClient) UpdateACL(acl *ovnnb.ACL, fields ...interface{}) error {
530
530
// SetLogicalSwitchPrivate will drop all ingress traffic except allow subnets, same subnet and node subnet
531
531
func (c * OVNNbClient ) SetLogicalSwitchPrivate (lsName , cidrBlock , nodeSwitchCIDR string , allowSubnets []string ) error {
532
532
// clear acls
533
- if err := c .DeleteAcls (lsName , logicalSwitchKey , "" , nil ); err != nil {
533
+ if err := c .DeleteAcls (lsName , logicalSwitchKey , "" , nil , - 1 ); err != nil {
534
534
klog .Error (err )
535
535
return fmt .Errorf ("clear logical switch %s acls: %w" , lsName , err )
536
536
}
@@ -731,8 +731,8 @@ func (c *OVNNbClient) CreateBareACL(parentName, direction, priority, match, acti
731
731
// DeleteAcls delete several acl once,
732
732
// delete to-lport and from-lport direction acl when direction is empty, otherwise one-way
733
733
// parentType is 'ls' or 'pg'
734
- func (c * OVNNbClient ) DeleteAcls (parentName , parentType , direction string , externalIDs map [string ]string ) error {
735
- ops , err := c .DeleteAclsOps (parentName , parentType , direction , externalIDs )
734
+ func (c * OVNNbClient ) DeleteAcls (parentName , parentType , direction string , externalIDs map [string ]string , tier int ) error {
735
+ ops , err := c .DeleteAclsOps (parentName , parentType , direction , externalIDs , tier )
736
736
if err != nil {
737
737
klog .Error (err )
738
738
return err
@@ -822,14 +822,16 @@ func (c *OVNNbClient) GetACL(parent, direction, priority, match string, ignoreNo
822
822
// result should include all to-lport and from-lport acls when direction is empty,
823
823
// result should include all acls when externalIDs is empty,
824
824
// result should include all acls which externalIDs[key] is not empty when externalIDs[key] is ""
825
+ // result should include all acls when tier is -1
826
+ // result should include all acls in specific tier when tier is not -1
825
827
// TODO: maybe add other filter conditions(priority or match)
826
- func (c * OVNNbClient ) ListAcls (direction string , externalIDs map [string ]string ) ([]ovnnb.ACL , error ) {
828
+ func (c * OVNNbClient ) ListAcls (direction string , externalIDs map [string ]string , tier int ) ([]ovnnb.ACL , error ) {
827
829
ctx , cancel := context .WithTimeout (context .Background (), c .Timeout )
828
830
defer cancel ()
829
831
830
832
aclList := make ([]ovnnb.ACL , 0 )
831
833
832
- if err := c .WhereCache (aclFilter (direction , externalIDs )).List (ctx , & aclList ); err != nil {
834
+ if err := c .WhereCache (aclFilter (direction , externalIDs , tier )).List (ctx , & aclList ); err != nil {
833
835
klog .Error (err )
834
836
return nil , fmt .Errorf ("list acls: %w" , err )
835
837
}
@@ -1091,8 +1093,10 @@ func newNetworkPolicyACLMatch(pgName, asAllowName, asExceptName, protocol, direc
1091
1093
// result should include all to-lport and from-lport acls when direction is empty,
1092
1094
// result should include all acls when externalIDs is empty,
1093
1095
// result should include all acls which externalIDs[key] is not empty when externalIDs[key] is ""
1096
+ // result should include all acls when tier is -1
1097
+ // result should include all acls in specific tier when tier is not -1
1094
1098
// TODO: maybe add other filter conditions(priority or match)
1095
- func aclFilter (direction string , externalIDs map [string ]string ) func (acl * ovnnb.ACL ) bool {
1099
+ func aclFilter (direction string , externalIDs map [string ]string , tier int ) func (acl * ovnnb.ACL ) bool {
1096
1100
return func (acl * ovnnb.ACL ) bool {
1097
1101
if len (acl .ExternalIDs ) < len (externalIDs ) {
1098
1102
return false
@@ -1118,6 +1122,10 @@ func aclFilter(direction string, externalIDs map[string]string) func(acl *ovnnb.
1118
1122
return false
1119
1123
}
1120
1124
1125
+ if tier != - 1 && acl .Tier != tier {
1126
+ return false
1127
+ }
1128
+
1121
1129
return true
1122
1130
}
1123
1131
}
@@ -1173,7 +1181,7 @@ func (c *OVNNbClient) CreateAclsOps(parentName, parentType string, acls ...*ovnn
1173
1181
// DeleteAcls return operation which delete several acl once,
1174
1182
// delete to-lport and from-lport direction acl when direction is empty, otherwise one-way
1175
1183
// parentType is 'ls' or 'pg'
1176
- func (c * OVNNbClient ) DeleteAclsOps (parentName , parentType , direction string , externalIDs map [string ]string ) ([]ovsdb.Operation , error ) {
1184
+ func (c * OVNNbClient ) DeleteAclsOps (parentName , parentType , direction string , externalIDs map [string ]string , tier int ) ([]ovsdb.Operation , error ) {
1177
1185
if parentName == "" {
1178
1186
return nil , errors .New ("the port group name or logical switch name is required" )
1179
1187
}
@@ -1185,7 +1193,7 @@ func (c *OVNNbClient) DeleteAclsOps(parentName, parentType, direction string, ex
1185
1193
externalIDs [aclParentKey ] = parentName
1186
1194
1187
1195
/* delete acls from port group or logical switch */
1188
- acls , err := c .ListAcls (direction , externalIDs )
1196
+ acls , err := c .ListAcls (direction , externalIDs , tier )
1189
1197
if err != nil {
1190
1198
klog .Error (err )
1191
1199
return nil , fmt .Errorf ("list type %s %s acls: %w" , parentType , parentName , err )
0 commit comments