-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
use normal impersonation headers to speaking back to ourselves #18379
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,47 +5,22 @@ import ( | |
|
||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"k8s.io/apimachinery/pkg/types" | ||
utilnet "k8s.io/apimachinery/pkg/util/net" | ||
"k8s.io/apiserver/pkg/authentication/user" | ||
restclient "k8s.io/client-go/rest" | ||
"k8s.io/client-go/transport" | ||
"k8s.io/client-go/util/flowcontrol" | ||
kclientset "k8s.io/kubernetes/pkg/client/clientset_generated/internalclientset" | ||
|
||
authorizationapi "github.com/openshift/origin/pkg/authorization/apis/authorization" | ||
authenticationapi "github.com/openshift/origin/pkg/oauthserver/api" | ||
) | ||
|
||
type impersonatingRoundTripper struct { | ||
user user.Info | ||
delegate http.RoundTripper | ||
} | ||
|
||
// newImpersonatingRoundTripper will add headers to impersonate a user, including user, groups, and scopes | ||
func newImpersonatingRoundTripper(user user.Info, delegate http.RoundTripper) http.RoundTripper { | ||
return &impersonatingRoundTripper{user: user, delegate: delegate} | ||
} | ||
|
||
func (rt *impersonatingRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { | ||
req = utilnet.CloneRequest(req) | ||
req.Header.Del(authenticationapi.ImpersonateUserHeader) | ||
req.Header.Del(authenticationapi.ImpersonateGroupHeader) | ||
req.Header.Del(authenticationapi.ImpersonateUserScopeHeader) | ||
|
||
req.Header.Set(authenticationapi.ImpersonateUserHeader, rt.user.GetName()) | ||
for _, group := range rt.user.GetGroups() { | ||
req.Header.Add(authenticationapi.ImpersonateGroupHeader, group) | ||
} | ||
for _, scope := range rt.user.GetExtra()[authorizationapi.ScopesKey] { | ||
req.Header.Add(authenticationapi.ImpersonateUserScopeHeader, scope) | ||
} | ||
return rt.delegate.RoundTrip(req) | ||
} | ||
|
||
// NewImpersonatingConfig wraps the config's transport to impersonate a user, including user, groups, and scopes | ||
func NewImpersonatingConfig(user user.Info, config restclient.Config) restclient.Config { | ||
oldWrapTransport := config.WrapTransport | ||
config.WrapTransport = func(rt http.RoundTripper) http.RoundTripper { | ||
return newImpersonatingRoundTripper(user, oldWrapTransport(rt)) | ||
return transport.NewImpersonatingRoundTripper(transport.ImpersonationConfig{ | ||
UserName: user.GetName(), | ||
Groups: user.GetGroups(), | ||
Extra: user.GetExtra(), | ||
}, oldWrapTransport(rt)) | ||
} | ||
return config | ||
} | ||
|
@@ -68,9 +43,11 @@ func NewImpersonatingRESTClient(user user.Info, client restclient.Interface) res | |
|
||
// Verb does the impersonation per request by setting the proper headers | ||
func (c impersonatingRESTClient) impersonate(req *restclient.Request) *restclient.Request { | ||
req.SetHeader(authenticationapi.ImpersonateUserHeader, c.user.GetName()) | ||
req.SetHeader(authenticationapi.ImpersonateGroupHeader, c.user.GetGroups()...) | ||
req.SetHeader(authenticationapi.ImpersonateUserScopeHeader, c.user.GetExtra()[authorizationapi.ScopesKey]...) | ||
req.SetHeader(transport.ImpersonateUserHeader, c.user.GetName()) | ||
req.SetHeader(transport.ImpersonateGroupHeader, c.user.GetGroups()...) | ||
for k, vv := range c.user.GetExtra() { | ||
req.SetHeader(transport.ImpersonateUserExtraHeaderPrefix+k, vv...) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a different header than scopes, but should be respected for several releases of servers now There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really need to put in all Extras when impersonating ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
for the general case, yes |
||
} | ||
return req | ||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our call used to delete all headers, looking upstream tough this is not done in their RoundTrip function, groups and extras are Added to existing headers. Doesn't this risk incorrect impersonation by adding more privileged groups scopes ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fundamentally the difference here is that if there is already impersonation, new impersonation is skipped now, is this correct ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct. I don't think any existing callers were hoping for double impersonation powers, but I could see an argument to change upstream if you wish.