| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package models
- import (
- "sort"
- "yunion.io/x/pkg/util/secrules"
- compute_models "yunion.io/x/onecloud/pkg/compute/models"
- )
- func (el *Guest) OrderedSecurityGroupRules() []*SecurityGroupRule {
- // deny any incoming traffic and allow ARP
- rs := []*SecurityGroupRule{
- {
- // deny all in-bound traffic
- SSecurityGroupRule: compute_models.SSecurityGroupRule{
- Priority: 1,
- Direction: string(secrules.SecurityRuleIngress),
- Action: string(secrules.SecurityRuleDeny),
- },
- },
- {
- // allow in-bound arp traffic
- SSecurityGroupRule: compute_models.SSecurityGroupRule{
- Priority: 2,
- Direction: string(secrules.SecurityRuleIngress),
- Protocol: "arp",
- Action: string(secrules.SecurityRuleAllow),
- },
- },
- }
- for _, secgroup := range el.SecurityGroups {
- rs = append(rs, secgroup.securityGroupRules(100)...)
- }
- if el.AdminSecurityGroup != nil {
- rs = append(rs, el.AdminSecurityGroup.securityGroupRules(1000)...)
- }
- sort.Slice(rs, SecurityGroupRuleLessFunc(rs))
- return rs
- }
- func (el *Guestnetwork) OrderedSecurityGroupRules(guest *Guest) []*SecurityGroupRule {
- if len(el.Guestnetworksecgroups) == 0 {
- return guest.OrderedSecurityGroupRules()
- }
- // deny any incoming traffic and allow ARP
- rs := []*SecurityGroupRule{
- {
- // deny all in-bound traffic
- SSecurityGroupRule: compute_models.SSecurityGroupRule{
- Priority: 1,
- Direction: string(secrules.SecurityRuleIngress),
- Action: string(secrules.SecurityRuleDeny),
- },
- },
- {
- // allow in-bound arp traffic
- SSecurityGroupRule: compute_models.SSecurityGroupRule{
- Priority: 2,
- Direction: string(secrules.SecurityRuleIngress),
- Protocol: "arp",
- Action: string(secrules.SecurityRuleAllow),
- },
- },
- }
- for _, guestSecgroup := range el.Guestnetworksecgroups {
- rs = append(rs, guestSecgroup.SecurityGroup.securityGroupRules(100)...)
- }
- sort.Slice(rs, SecurityGroupRuleLessFunc(rs))
- return rs
- }
- func (el *SecurityGroup) securityGroupRules(basePriority int64) []*SecurityGroupRule {
- rs := make([]*SecurityGroupRule, 0, len(el.SecurityGroupRules))
- for _, r := range el.SecurityGroupRules {
- r = r.Copy()
- r.Priority += int(basePriority)
- rs = append(rs, r)
- }
- return rs
- }
- func SecurityGroupRuleLessFunc(rs []*SecurityGroupRule) func(i, j int) bool {
- return func(i, j int) bool {
- return rs[i].Priority < rs[i].Priority
- }
- }
|