Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add excludeLabelExpressions #48

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api/v1beta2/networkpolicyadmissionrule_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ type NetworkPolicyAdmissionRuleSpec struct {
type NetworkPolicyAdmissionRuleNamespaceSelector struct {
// ExcludeLabels defines labels through which a namespace should be excluded.
ExcludeLabels map[string]string `json:"excludeLabels,omitempty"`

// ExcludeLabelExpressions defines labels through which a namespace should be excluded by some expressions.
ExcludeLabelExpressions []metav1.LabelSelectorRequirement `json:"excludeLabelExpressions,omitempty"`
}

// NetworkPolicyAdmissionRuleForbiddenIPRanges defines forbidden IP ranges.
Expand Down
8 changes: 8 additions & 0 deletions api/v1beta2/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 31 additions & 0 deletions charts/tenet/templates/generated/crds/tenet.cybozu.io_crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,37 @@ spec:
description: NamespaceSelector qualifies which namespaces the rules
should apply to.
properties:
excludeLabelExpressions:
description: ExcludeLabelExpressions defines labels through which
a namespace should be excluded by some expressions.
items:
description: |-
A label selector requirement is a selector that contains values, a key, and an operator that
relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
description: |-
operator represents a key's relationship to a set of values.
Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
description: |-
values is an array of string values. If the operator is In or NotIn,
the values array must be non-empty. If the operator is Exists or DoesNotExist,
the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
required:
- key
- operator
type: object
type: array
excludeLabels:
additionalProperties:
type: string
Expand Down
31 changes: 31 additions & 0 deletions config/crd/bases/tenet.cybozu.io_networkpolicyadmissionrules.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,37 @@ spec:
description: NamespaceSelector qualifies which namespaces the rules
should apply to.
properties:
excludeLabelExpressions:
description: ExcludeLabelExpressions defines labels through which
a namespace should be excluded by some expressions.
items:
description: |-
A label selector requirement is a selector that contains values, a key, and an operator that
relates the key and values.
properties:
key:
description: key is the label key that the selector applies
to.
type: string
operator:
description: |-
operator represents a key's relationship to a set of values.
Valid operators are In, NotIn, Exists and DoesNotExist.
type: string
values:
description: |-
values is an array of string values. If the operator is In or NotIn,
the values array must be non-empty. If the operator is Exists or DoesNotExist,
the values array must be empty. This array is replaced during a strategic
merge patch.
items:
type: string
type: array
required:
- key
- operator
type: object
type: array
excludeLabels:
additionalProperties:
type: string
Expand Down
23 changes: 23 additions & 0 deletions e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ var (
//go:embed t/node-entity-allow-cnp.yaml
nodeEntityAllowCiliumNetworkPolicy []byte

//go:embed t/world-entity-allow-cnp.yaml
worldEntityAllowCiliumNetworkPolicy []byte

//go:embed t/legal-cnp.yaml
legalCiliumNetworkPolicy []byte
)
Expand Down Expand Up @@ -317,6 +320,26 @@ var _ = Describe("NetworkPolicyAdmissionRule", func() {
}).Should(Succeed())
})

It("should not accept CiliumNetworkPolicy with forbidden rules except for excluded namespaces using expressions", func() {
By("setting up namespace")
ns := uuid.NewString()
kubectlSafe(nil, "create", "ns", ns)
necoNS := uuid.NewString()
kubectlSafe(nil, "create", "ns", necoNS)
kubectlSafe(nil, "label", "ns", necoNS, "team=neco")
tenantNS := uuid.NewString()
kubectlSafe(nil, "create", "ns", tenantNS)
kubectlSafe(nil, "label", "ns", tenantNS, "team=tenant")

By("applying world entity CiliumNetworkPolicy which is forbidden in namespaces except for neco")
_, err := kubectl(worldEntityAllowCiliumNetworkPolicy, "apply", "-n", ns, "-f", "-")
Expect(err).To(HaveOccurred())
_, err = kubectl(worldEntityAllowCiliumNetworkPolicy, "apply", "-n", necoNS, "-f", "-")
Expect(err).NotTo(HaveOccurred())
_, err = kubectl(worldEntityAllowCiliumNetworkPolicy, "apply", "-n", tenantNS, "-f", "-")
Expect(err).NotTo(HaveOccurred())
})

It("should not reject a legal CiliumNetworkPolicy", func() {
By("setting up namespace")
nsName := uuid.NewString()
Expand Down
4 changes: 4 additions & 0 deletions e2e/suite_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ var (

//go:embed t/exclude-only-npar.yaml
excludeOnlyNetworkPolicyAdmissionRule []byte

//go:embed t/exclude-expressions-npar.yaml
excludeExpressionsNetworkPolicyAdmissionRule []byte
)

func TestE2E(t *testing.T) {
Expand All @@ -51,4 +54,5 @@ var _ = BeforeSuite(func() {
kubectlSafe(bmcDenyNetworkPolicyAdmissionRule, "apply", "-f", "-")
kubectlSafe(nodeDenyNetworkPolicyAdmissionRule, "apply", "-f", "-")
kubectlSafe(excludeOnlyNetworkPolicyAdmissionRule, "apply", "-f", "-")
kubectlSafe(excludeExpressionsNetworkPolicyAdmissionRule, "apply", "-f", "-")
})
15 changes: 15 additions & 0 deletions e2e/t/exclude-expressions-npar.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: tenet.cybozu.io/v1beta2
kind: NetworkPolicyAdmissionRule
metadata:
name: exclude-only-npar
spec:
namespaceSelector:
excludeLabelExpressions:
- key: team
operator: In
values:
- neco
chez-shanpu marked this conversation as resolved.
Show resolved Hide resolved
- tenant
forbiddenEntities:
- entity: world
type: all
9 changes: 9 additions & 0 deletions e2e/t/world-entity-allow-cnp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: cilium.io/v2
kind: CiliumNetworkPolicy
metadata:
name: dummy
spec:
endpointSelector: {}
egress:
- toEntities:
- world
21 changes: 14 additions & 7 deletions hooks/ciliumnetworkpolicy.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import (

admissionv1 "k8s.io/api/admission/v1"
corev1 "k8s.io/api/core/v1"
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/labels"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/webhook"
Expand Down Expand Up @@ -113,7 +115,10 @@ func (v *ciliumNetworkPolicyValidator) validateEntity(nparl tenetv1beta2.Network
if err != nil {
return admission.Errored(http.StatusBadRequest, err)
}
egressFilters, ingressFilters := v.gatherEntityFilters(&nparl, ls)
egressFilters, ingressFilters, err := v.gatherEntityFilters(&nparl, ls)
if err != nil {
return admission.Errored(http.StatusBadRequest, err)
}
for _, egressPolicy := range egressPolicies {
for _, egressFilter := range egressFilters {
if egressPolicy == egressFilter {
Expand All @@ -131,13 +136,15 @@ func (v *ciliumNetworkPolicyValidator) validateEntity(nparl tenetv1beta2.Network
return admission.Allowed("")
}

func (v *ciliumNetworkPolicyValidator) shouldValidate(npar *tenetv1beta2.NetworkPolicyAdmissionRule, ls map[string]string) bool {
for k, v := range npar.Spec.NamespaceSelector.ExcludeLabels {
if ls[k] == v {
return false
}
func (v *ciliumNetworkPolicyValidator) shouldExclude(npar *tenetv1beta2.NetworkPolicyAdmissionRule, ls map[string]string) (bool, error) {
s, err := v1.LabelSelectorAsSelector(&v1.LabelSelector{
MatchLabels: npar.Spec.NamespaceSelector.ExcludeLabels,
MatchExpressions: npar.Spec.NamespaceSelector.ExcludeLabelExpressions,
})
if err != nil {
return false, err
}
return true
return s.Matches(labels.Set(ls)), nil
}

func SetupCiliumNetworkPolicyWebhook(mgr manager.Manager, dec admission.Decoder, sa string) {
Expand Down
12 changes: 8 additions & 4 deletions hooks/ciliumnetworkpolicy_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ func (v *ciliumNetworkPolicyValidator) toIPNetSlice(raw []string) ([]*net.IPNet,
func (v *ciliumNetworkPolicyValidator) gatherIPFilters(nparl *tenetv1beta2.NetworkPolicyAdmissionRuleList, ls map[string]string) ([]*net.IPNet, []*net.IPNet, error) {
var egressFilters, ingressFilters []*net.IPNet
for _, npar := range nparl.Items {
if !v.shouldValidate(&npar, ls) {
if matched, err := v.shouldExclude(&npar, ls); err != nil {
return nil, nil, err
} else if matched {
continue
}

Expand All @@ -84,10 +86,12 @@ func (v *ciliumNetworkPolicyValidator) gatherEntityPolicies(cnp *unstructured.Un
return v.gatherPolicies(cnp, cilium.EntityRuleKey, v.gatherPoliciesFromStringRule)
}

func (v *ciliumNetworkPolicyValidator) gatherEntityFilters(nparl *tenetv1beta2.NetworkPolicyAdmissionRuleList, ls map[string]string) ([]string, []string) {
func (v *ciliumNetworkPolicyValidator) gatherEntityFilters(nparl *tenetv1beta2.NetworkPolicyAdmissionRuleList, ls map[string]string) ([]string, []string, error) {
var egressFilters, ingressFilters []string
for _, npar := range nparl.Items {
if !v.shouldValidate(&npar, ls) {
if matched, err := v.shouldExclude(&npar, ls); err != nil {
return nil, nil, err
} else if matched {
continue
}

Expand All @@ -103,7 +107,7 @@ func (v *ciliumNetworkPolicyValidator) gatherEntityFilters(nparl *tenetv1beta2.N
}
}
}
return egressFilters, ingressFilters
return egressFilters, ingressFilters, nil
}

func (v *ciliumNetworkPolicyValidator) intersectIP(cidr1, cidr2 *net.IPNet) bool {
Expand Down
Loading