Skip to content

Commit f0fba65

Browse files
Merge pull request #20379 from simo5/kill401MsgMkr
Drop authorizer wrapper
2 parents 7285788 + feb2c85 commit f0fba65

File tree

17 files changed

+79
-456
lines changed

17 files changed

+79
-456
lines changed

pkg/authorization/authorizer/authorizer.go

-49
This file was deleted.

pkg/authorization/authorizer/browsersafe/authorizer.go

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package browsersafe
22

33
import (
4+
"fmt"
5+
46
"k8s.io/apimachinery/pkg/util/sets"
57
"k8s.io/apiserver/pkg/authorization/authorizer"
68
)
@@ -25,8 +27,17 @@ func NewBrowserSafeAuthorizer(delegate authorizer.Authorizer, authenticatedGroup
2527
}
2628

2729
func (a *browserSafeAuthorizer) Authorize(attributes authorizer.Attributes) (authorizer.Decision, string, error) {
28-
browserSafeAttributes := a.getBrowserSafeAttributes(attributes)
29-
return a.delegate.Authorize(browserSafeAttributes)
30+
attrs := a.getBrowserSafeAttributes(attributes)
31+
decision, reason, err := a.delegate.Authorize(attrs)
32+
safeAttributes, changed := attrs.(*browserSafeAttributes)
33+
34+
// check if the request was not allowed and we changed the attributes
35+
if decision == authorizer.DecisionAllow || !changed {
36+
return decision, reason, err
37+
}
38+
39+
// if so, use this information to update the reason
40+
return decision, safeAttributes.reason(reason), err
3041
}
3142

3243
func (a *browserSafeAuthorizer) getBrowserSafeAttributes(attributes authorizer.Attributes) authorizer.Attributes {
@@ -77,3 +88,19 @@ func (b *browserSafeAttributes) GetSubresource() string {
7788
}
7889
return b.Attributes.GetSubresource()
7990
}
91+
92+
func (b *browserSafeAttributes) reason(reason string) string {
93+
if b.isProxyVerb {
94+
if len(reason) != 0 {
95+
reason += ", "
96+
}
97+
reason += fmt.Sprintf("%s verb changed to %s", proxyAction, unsafeProxy)
98+
}
99+
if b.isProxySubresource {
100+
if len(reason) != 0 {
101+
reason += ", "
102+
}
103+
reason += fmt.Sprintf("%s subresource changed to %s", proxyAction, unsafeProxy)
104+
}
105+
return reason
106+
}

pkg/authorization/authorizer/browsersafe/authorizer_test.go

+8-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
1313

1414
expectedVerb string
1515
expectedSubresource string
16+
expectedReason string
1617
}{
1718
"non-resource": {
1819
attributes: authorizer.AttributesRecord{ResourceRequest: false, Verb: "GET"},
@@ -29,15 +30,18 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
2930
attributes: authorizer.AttributesRecord{ResourceRequest: true, Verb: "get", Resource: "pods", Subresource: "proxy"},
3031
expectedVerb: "get",
3132
expectedSubresource: "unsafeproxy",
33+
expectedReason: "proxy subresource changed to unsafeproxy",
3234
},
3335
"unsafe proxy verb": {
34-
attributes: authorizer.AttributesRecord{ResourceRequest: true, Verb: "proxy", Resource: "nodes"},
35-
expectedVerb: "unsafeproxy",
36+
attributes: authorizer.AttributesRecord{ResourceRequest: true, Verb: "proxy", Resource: "nodes"},
37+
expectedVerb: "unsafeproxy",
38+
expectedReason: "proxy verb changed to unsafeproxy",
3639
},
3740
"unsafe proxy verb anonymous": {
3841
attributes: authorizer.AttributesRecord{ResourceRequest: true, Verb: "proxy", Resource: "nodes",
3942
User: &user.DefaultInfo{Name: "system:anonymous", Groups: []string{"system:unauthenticated"}}},
40-
expectedVerb: "unsafeproxy",
43+
expectedVerb: "unsafeproxy",
44+
expectedReason: "proxy verb changed to unsafeproxy",
4145
},
4246

4347
"proxy subresource authenticated": {
@@ -51,7 +55,7 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
5155
safeAuthorizer := NewBrowserSafeAuthorizer(delegateAuthorizer, "system:authenticated")
5256

5357
authorized, reason, err := safeAuthorizer.Authorize(tc.attributes)
54-
if authorized == authorizer.DecisionAllow || len(reason) != 0 || err != nil {
58+
if authorized == authorizer.DecisionAllow || reason != tc.expectedReason || err != nil {
5559
t.Errorf("%s: unexpected output: %v %s %v", name, authorized, reason, err)
5660
continue
5761
}

pkg/authorization/authorizer/interfaces.go

-10
This file was deleted.

pkg/authorization/authorizer/messages.go

-128
This file was deleted.

0 commit comments

Comments
 (0)