12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052 |
- /*
- *
- * Copyright 2021 gRPC authors.
- *
- * 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 authz
- import (
- "strings"
- "testing"
- v1xdsudpatypepb "github.com/cncf/xds/go/udpa/type/v1"
- "github.com/google/go-cmp/cmp"
- "google.golang.org/protobuf/testing/protocmp"
- "google.golang.org/protobuf/types/known/anypb"
- "google.golang.org/protobuf/types/known/structpb"
- v3corepb "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
- v3rbacpb "github.com/envoyproxy/go-control-plane/envoy/config/rbac/v3"
- v3routepb "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
- v3matcherpb "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
- )
- func TestTranslatePolicy(t *testing.T) {
- tests := map[string]struct {
- authzPolicy string
- wantErr string
- wantPolicies []*v3rbacpb.RBAC
- wantPolicyName string
- }{
- "valid policy": {
- authzPolicy: `{
- "name": "authz",
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc",
- "spiffe://bar*",
- "*baz",
- "spiffe://abc.*.com"
- ]
- }
- }],
- "allow_rules": [
- {
- "name": "allow_policy_1",
- "source": {
- "principals":["*"]
- },
- "request": {
- "paths": ["path-foo*"]
- }
- },
- {
- "name": "allow_policy_2",
- "request": {
- "paths": [
- "path-bar",
- "*baz"
- ],
- "headers": [
- {
- "key": "key-1",
- "values": ["foo", "*bar"]
- },
- {
- "key": "key-2",
- "values": ["baz*"]
- }
- ]
- }
- }]
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Prefix{Prefix: "spiffe://bar"},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Suffix{Suffix: "baz"},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://abc.*.com"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{},
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_AndRules{AndRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_OrRules{OrRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_UrlPath{
- UrlPath: &v3matcherpb.PathMatcher{Rule: &v3matcherpb.PathMatcher_Path{Path: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Prefix{Prefix: "path-foo"},
- }}},
- }},
- },
- }}},
- },
- }}},
- },
- },
- "authz_allow_policy_2": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Any{Any: true}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_AndRules{AndRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_OrRules{OrRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_UrlPath{
- UrlPath: &v3matcherpb.PathMatcher{Rule: &v3matcherpb.PathMatcher_Path{Path: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "path-bar"},
- }}},
- }},
- {Rule: &v3rbacpb.Permission_UrlPath{
- UrlPath: &v3matcherpb.PathMatcher{Rule: &v3matcherpb.PathMatcher_Path{Path: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Suffix{Suffix: "baz"},
- }}},
- }},
- },
- }}},
- {Rule: &v3rbacpb.Permission_AndRules{AndRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_OrRules{OrRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Header{
- Header: &v3routepb.HeaderMatcher{
- Name: "key-1", HeaderMatchSpecifier: &v3routepb.HeaderMatcher_ExactMatch{ExactMatch: "foo"},
- },
- }},
- {Rule: &v3rbacpb.Permission_Header{
- Header: &v3routepb.HeaderMatcher{
- Name: "key-1", HeaderMatchSpecifier: &v3routepb.HeaderMatcher_SuffixMatch{SuffixMatch: "bar"},
- },
- }},
- },
- }}},
- {Rule: &v3rbacpb.Permission_OrRules{OrRules: &v3rbacpb.Permission_Set{
- Rules: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Header{
- Header: &v3routepb.HeaderMatcher{
- Name: "key-2", HeaderMatchSpecifier: &v3routepb.HeaderMatcher_PrefixMatch{PrefixMatch: "baz"},
- },
- }},
- },
- }}},
- },
- }}},
- },
- }}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{},
- },
- },
- wantPolicyName: "authz",
- },
- "allow authenticated": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }]
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{},
- },
- },
- },
- "audit_logging_ALLOW empty config": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc"
- ]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "ON_ALLOW",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_ON_ALLOW,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "audit_logging_DENY_AND_ALLOW": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc"
- ]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "ON_DENY_AND_ALLOW",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_ON_DENY,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_ON_DENY_AND_ALLOW,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "audit_logging_NONE": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc"
- ]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "audit_logging_custom_config simple": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc"
- ]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {"abc":123, "xyz":"123"},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{"abc": 123, "xyz": "123"}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{"abc": 123, "xyz": "123"}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "audit_logging_custom_config nested": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {"abc":123, "xyz":{"abc":123}},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{"abc": 123, "xyz": map[string]interface{}{"abc": 123}}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "missing audit logger config": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE"
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{},
- },
- },
- },
- },
- "missing audit condition": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_NONE,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "missing custom config audit logger": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "deny_rules": [
- {
- "name": "deny_policy_1",
- "source": {
- "principals":[
- "spiffe://foo.abc"
- ]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "ON_DENY",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "is_optional": false
- }
- ]
- }
- }`,
- wantPolicies: []*v3rbacpb.RBAC{
- {
- Action: v3rbacpb.RBAC_DENY,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_deny_policy_1": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: "spiffe://foo.abc"},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_ON_DENY,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- {
- Action: v3rbacpb.RBAC_ALLOW,
- Policies: map[string]*v3rbacpb.Policy{
- "authz_allow_authenticated": {
- Principals: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_OrIds{OrIds: &v3rbacpb.Principal_Set{
- Ids: []*v3rbacpb.Principal{
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_SafeRegex{SafeRegex: &v3matcherpb.RegexMatcher{Regex: ".+"}},
- }},
- }},
- {Identifier: &v3rbacpb.Principal_Authenticated_{
- Authenticated: &v3rbacpb.Principal_Authenticated{PrincipalName: &v3matcherpb.StringMatcher{
- MatchPattern: &v3matcherpb.StringMatcher_Exact{Exact: ""},
- }},
- }},
- },
- }}},
- },
- Permissions: []*v3rbacpb.Permission{
- {Rule: &v3rbacpb.Permission_Any{Any: true}},
- },
- },
- },
- AuditLoggingOptions: &v3rbacpb.RBAC_AuditLoggingOptions{
- AuditCondition: v3rbacpb.RBAC_AuditLoggingOptions_ON_DENY,
- LoggerConfigs: []*v3rbacpb.RBAC_AuditLoggingOptions_AuditLoggerConfig{
- {AuditLogger: &v3corepb.TypedExtensionConfig{Name: "stdout_logger", TypedConfig: anyPbHelper(t, map[string]interface{}{}, "stdout_logger")},
- IsOptional: false,
- },
- },
- },
- },
- },
- },
- "unknown field": {
- authzPolicy: `{"random": 123}`,
- wantErr: "failed to unmarshal policy",
- },
- "missing name field": {
- authzPolicy: `{}`,
- wantErr: `"name" is not present`,
- },
- "invalid field type": {
- authzPolicy: `{"name": 123}`,
- wantErr: "failed to unmarshal policy",
- },
- "missing allow rules field": {
- authzPolicy: `{"name": "authz-foo"}`,
- wantErr: `"allow_rules" is not present`,
- },
- "missing rule name field": {
- authzPolicy: `{
- "name": "authz-foo",
- "allow_rules": [{}]
- }`,
- wantErr: `"allow_rules" 0: "name" is not present`,
- },
- "missing header key": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [{
- "name": "allow_policy_1",
- "request": {"headers":[{"key":"key-a", "values": ["value-a"]}, {}]}
- }]
- }`,
- wantErr: `"allow_rules" 0: "headers" 1: "key" is not present`,
- },
- "missing header values": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [{
- "name": "allow_policy_1",
- "request": {"headers":[{"key":"key-a"}]}
- }]
- }`,
- wantErr: `"allow_rules" 0: "headers" 0: "values" is not present`,
- },
- "unsupported header": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [{
- "name": "allow_policy_1",
- "request": {"headers":[{"key":":method", "values":["GET"]}]}
- }]
- }`,
- wantErr: `"allow_rules" 0: "headers" 0: unsupported "key" :method`,
- },
- "bad audit condition": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "ABC",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantErr: `failed to parse AuditCondition ABC`,
- },
- "bad audit logger config": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE",
- "audit_loggers": [
- {
- "name": "stdout_logger",
- "config": "abc",
- "is_optional": false
- }
- ]
- }
- }`,
- wantErr: `failed to unmarshal policy`,
- },
- "missing audit logger name": {
- authzPolicy: `{
- "name": "authz",
- "allow_rules": [
- {
- "name": "allow_authenticated",
- "source": {
- "principals":["*", ""]
- }
- }],
- "audit_logging_options": {
- "audit_condition": "NONE",
- "audit_loggers": [
- {
- "name": "",
- "config": {},
- "is_optional": false
- }
- ]
- }
- }`,
- wantErr: `missing required field: name`,
- },
- }
- for name, test := range tests {
- t.Run(name, func(t *testing.T) {
- gotPolicies, gotPolicyName, gotErr := translatePolicy(test.authzPolicy)
- if gotErr != nil && !strings.HasPrefix(gotErr.Error(), test.wantErr) {
- t.Fatalf("unexpected error\nwant:%v\ngot:%v", test.wantErr, gotErr)
- }
- if diff := cmp.Diff(gotPolicies, test.wantPolicies, protocmp.Transform()); diff != "" {
- t.Fatalf("unexpected policy\ndiff (-want +got):\n%s", diff)
- }
- if test.wantPolicyName != "" && gotPolicyName != test.wantPolicyName {
- t.Fatalf("unexpected policy name\nwant:%v\ngot:%v", test.wantPolicyName, gotPolicyName)
- }
- })
- }
- }
- func anyPbHelper(t *testing.T, in map[string]interface{}, name string) *anypb.Any {
- t.Helper()
- pb, err := structpb.NewStruct(in)
- typedStruct := &v1xdsudpatypepb.TypedStruct{
- TypeUrl: typeURLPrefix + name,
- Value: pb,
- }
- if err != nil {
- t.Fatal(err)
- }
- customConfig, err := anypb.New(typedStruct)
- if err != nil {
- t.Fatal(err)
- }
- return customConfig
- }
|