-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
Copy pathrequest_token.go
371 lines (322 loc) · 13.1 KB
/
request_token.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package tokencmd
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"strings"
apierrs "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/sets"
restclient "k8s.io/client-go/rest"
"github.com/openshift/origin/pkg/oauth/util"
"github.com/RangelReale/osincli"
"github.com/golang/glog"
)
const (
// csrfTokenHeader is a marker header that indicates we are not a browser that got tricked into requesting basic auth
// Corresponds to the header expected by basic-auth challenging authenticators
// Copied from pkg/auth/authenticator/challenger/passwordchallenger/password_auth_handler.go
csrfTokenHeader = "X-CSRF-Token"
// Discovery endpoint for OAuth 2.0 Authorization Server Metadata
// See IETF Draft:
// https://tools.ietf.org/html/draft-ietf-oauth-discovery-04#section-2
// Copied from pkg/cmd/server/origin/nonapiserver.go
oauthMetadataEndpoint = "/.well-known/oauth-authorization-server"
// openShiftCLIClientID is the name of the CLI OAuth client, copied from pkg/oauth/apiserver/auth.go
openShiftCLIClientID = "openshift-challenging-client"
// pkce_s256 is sha256 hash per RFC7636, copied from github.com/RangelReale/osincli/pkce.go
pkce_s256 = "S256"
// token fakes the missing osin.TOKEN const
token osincli.AuthorizeRequestType = "token"
)
// ChallengeHandler handles responses to WWW-Authenticate challenges.
type ChallengeHandler interface {
// CanHandle returns true if the handler recognizes a challenge it thinks it can handle.
CanHandle(headers http.Header) bool
// HandleChallenge lets the handler attempt to handle a challenge.
// It is only invoked if CanHandle() returned true for the given headers.
// Returns response headers and true if the challenge is successfully handled.
// Returns false if the challenge was not handled, and an optional error in error cases.
HandleChallenge(requestURL string, headers http.Header) (http.Header, bool, error)
// CompleteChallenge is invoked with the headers from a successful server response
// received after having handled one or more challenges.
// Returns an error if the handler does not consider the challenge/response interaction complete.
CompleteChallenge(requestURL string, headers http.Header) error
// Release gives the handler a chance to release any resources held during a challenge/response sequence.
// It is always invoked, even in cases where no challenges were received or handled.
Release() error
}
type RequestTokenOptions struct {
ClientConfig *restclient.Config
Handler ChallengeHandler
OsinConfig *osincli.ClientConfig
TokenFlow bool
}
// RequestToken uses the cmd arguments to locate an openshift oauth server and attempts to authenticate via an
// OAuth code flow and challenge handling. It returns the access token if it gets one or an error if it does not.
func RequestToken(clientCfg *restclient.Config, reader io.Reader, defaultUsername string, defaultPassword string) (string, error) {
return NewRequestTokenOptions(clientCfg, reader, defaultUsername, defaultPassword, false).RequestToken()
}
func NewRequestTokenOptions(clientCfg *restclient.Config, reader io.Reader, defaultUsername string, defaultPassword string, tokenFlow bool) *RequestTokenOptions {
handlers := []ChallengeHandler{}
if GSSAPIEnabled() {
handlers = append(handlers, NewNegotiateChallengeHandler(NewGSSAPINegotiator(defaultUsername)))
}
if BasicEnabled() {
handlers = append(handlers, &BasicChallengeHandler{Host: clientCfg.Host, Reader: reader, Username: defaultUsername, Password: defaultPassword})
}
var handler ChallengeHandler
if len(handlers) == 1 {
handler = handlers[0]
} else {
handler = NewMultiHandler(handlers...)
}
return &RequestTokenOptions{
ClientConfig: clientCfg,
Handler: handler,
TokenFlow: tokenFlow,
}
}
// SetDefaultOsinConfig overwrites RequestTokenOptions.OsinConfig with the default CLI
// OAuth client and PKCE support if the server supports S256 / a code flow is being used
func (o *RequestTokenOptions) SetDefaultOsinConfig() error {
if o.OsinConfig != nil {
return fmt.Errorf("osin config is already set to: %#v", *o.OsinConfig)
}
// get the OAuth metadata from the server
rt, err := restclient.TransportFor(o.ClientConfig)
if err != nil {
return err
}
resp, err := request(rt, strings.TrimRight(o.ClientConfig.Host, "/")+oauthMetadataEndpoint, nil)
if err != nil {
return err
}
defer resp.Body.Close()
metadata := &util.OauthAuthorizationServerMetadata{}
if err := json.NewDecoder(resp.Body).Decode(metadata); err != nil {
return err
}
// use the metadata to build the osin config
config := &osincli.ClientConfig{
ClientId: openShiftCLIClientID,
AuthorizeUrl: metadata.AuthorizationEndpoint,
TokenUrl: metadata.TokenEndpoint,
RedirectUrl: util.OpenShiftOAuthTokenImplicitURL(metadata.Issuer),
}
if !o.TokenFlow && sets.NewString(metadata.CodeChallengeMethodsSupported...).Has(pkce_s256) {
if err := osincli.PopulatePKCE(config); err != nil {
return err
}
}
o.OsinConfig = config
return nil
}
// RequestToken locates an openshift oauth server and attempts to authenticate.
// It returns the access token if it gets one, or an error if it does not.
// It should only be invoked once on a given RequestTokenOptions instance.
// The Handler held by the options is released as part of this call.
// If RequestTokenOptions.OsinConfig is nil, it will be defaulted using SetDefaultOsinConfig.
// The caller is responsible for setting up the entire OsinConfig if the value is not nil.
func (o *RequestTokenOptions) RequestToken() (string, error) {
defer func() {
// Always release the handler
if err := o.Handler.Release(); err != nil {
// Release errors shouldn't fail the token request, just log
glog.V(4).Infof("error releasing handler: %v", err)
}
}()
rt, err := restclient.TransportFor(o.ClientConfig)
if err != nil {
return "", err
}
if o.OsinConfig == nil {
if err := o.SetDefaultOsinConfig(); err != nil {
return "", err
}
}
client, err := osincli.NewClient(o.OsinConfig)
if err != nil {
return "", err
}
client.Transport = rt
authorizeRequest := client.NewAuthorizeRequest(osincli.CODE) // assume code flow to start with
var oauthTokenFunc func(redirectURL string) (accessToken string, oauthError error)
if o.TokenFlow {
// access_token in fragment or error parameter
authorizeRequest.Type = token // manually override to token flow if necessary
oauthTokenFunc = oauthTokenFlow
} else {
// code or error parameter
oauthTokenFunc = func(redirectURL string) (accessToken string, oauthError error) {
return oauthCodeFlow(client, authorizeRequest, redirectURL)
}
}
// requestURL holds the current URL to make requests to. This can change if the server responds with a redirect
requestURL := authorizeRequest.GetAuthorizeUrl().String()
// requestHeaders holds additional headers to add to the request. This can be changed by o.Handlers
requestHeaders := http.Header{}
// requestedURLSet/requestedURLList hold the URLs we have requested, to prevent redirect loops. Gets reset when a challenge is handled.
requestedURLSet := sets.NewString()
requestedURLList := []string{}
handledChallenge := false
for {
// Make the request
resp, err := request(rt, requestURL, requestHeaders)
if err != nil {
return "", err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusUnauthorized {
if resp.Header.Get("WWW-Authenticate") != "" {
if !o.Handler.CanHandle(resp.Header) {
return "", apierrs.NewUnauthorized("unhandled challenge")
}
// Handle the challenge
newRequestHeaders, shouldRetry, err := o.Handler.HandleChallenge(requestURL, resp.Header)
if err != nil {
return "", err
}
if !shouldRetry {
return "", apierrs.NewUnauthorized("challenger chose not to retry the request")
}
// Remember if we've ever handled a challenge
handledChallenge = true
// Reset request set/list. Since we're setting different headers, it is legitimate to request the same urls
requestedURLSet = sets.NewString()
requestedURLList = []string{}
// Use the response to the challenge as the new headers
requestHeaders = newRequestHeaders
continue
}
// Unauthorized with no challenge
unauthorizedError := apierrs.NewUnauthorized("")
// Attempt to read body content and include as an error detail
if details, err := ioutil.ReadAll(resp.Body); err == nil && len(details) > 0 {
unauthorizedError.ErrStatus.Details = &metav1.StatusDetails{
Causes: []metav1.StatusCause{
{Message: string(details)},
},
}
}
return "", unauthorizedError
}
// if we've ever handled a challenge, see if the handler also considers the interaction complete.
// this is required for negotiate flows with mutual authentication.
if handledChallenge {
if err := o.Handler.CompleteChallenge(requestURL, resp.Header); err != nil {
return "", err
}
}
if resp.StatusCode == http.StatusFound {
redirectURL := resp.Header.Get("Location")
// OAuth response case
accessToken, err := oauthTokenFunc(redirectURL)
if err != nil {
return "", err
}
if len(accessToken) > 0 {
return accessToken, nil
}
// Non-OAuth response, just follow the URL
// add to our list of redirects
requestedURLList = append(requestedURLList, redirectURL)
// detect loops
if !requestedURLSet.Has(redirectURL) {
requestedURLSet.Insert(redirectURL)
requestURL = redirectURL
continue
}
return "", apierrs.NewInternalError(fmt.Errorf("redirect loop: %s", strings.Join(requestedURLList, " -> ")))
}
// Unknown response
return "", apierrs.NewInternalError(fmt.Errorf("unexpected response: %d", resp.StatusCode))
}
}
// oauthTokenFlow attempts to extract an OAuth token from location's fragment's access_token value.
// It only returns an error if something "impossible" happens (location is not a valid URL) or a definite
// OAuth error is contained in the location URL. No error is returned if location does not contain a token.
// It is assumed that location was not part of the OAuth flow; it was a redirect that the client needs to follow
// as part of the challenge flow (an authenticating proxy for example) and not a redirect step in the OAuth flow.
func oauthTokenFlow(location string) (string, error) {
u, err := url.Parse(location)
if err != nil {
return "", err
}
if oauthErr := oauthErrFromValues(u.Query()); oauthErr != nil {
return "", oauthErr
}
// Grab the raw fragment ourselves, since the stdlib URL parsing decodes parts of it
fragment := ""
if parts := strings.SplitN(location, "#", 2); len(parts) == 2 {
fragment = parts[1]
}
fragmentValues, err := url.ParseQuery(fragment)
if err != nil {
return "", err
}
return fragmentValues.Get("access_token"), nil
}
// oauthCodeFlow performs the OAuth code flow if location has a code parameter.
// It only returns an error if something "impossible" happens (location is not a valid URL)
// or a definite OAuth error is encountered during the code flow. Other errors are assumed to be caused
// by location not being part of the OAuth flow; it was a redirect that the client needs to follow as part
// of the challenge flow (an authenticating proxy for example) and not a redirect step in the OAuth flow.
func oauthCodeFlow(client *osincli.Client, authorizeRequest *osincli.AuthorizeRequest, location string) (string, error) {
// Make a request out of the URL since that is what AuthorizeRequest.HandleRequest expects to extract data from
req, err := http.NewRequest("GET", location, nil)
if err != nil {
return "", err
}
req.ParseForm()
if oauthErr := oauthErrFromValues(req.Form); oauthErr != nil {
return "", oauthErr
}
if len(req.Form.Get("code")) == 0 {
return "", nil // no code parameter so this is not part of the OAuth flow
}
// any errors after this are fatal because we are committed to an OAuth flow now
authorizeData, err := authorizeRequest.HandleRequest(req)
if err != nil {
return "", osinToOAuthError(err)
}
accessRequest := client.NewAccessRequest(osincli.AUTHORIZATION_CODE, authorizeData)
accessData, err := accessRequest.GetToken()
if err != nil {
return "", osinToOAuthError(err)
}
return accessData.AccessToken, nil
}
// osinToOAuthError creates a better error message for osincli.Error
func osinToOAuthError(err error) error {
if osinErr, ok := err.(*osincli.Error); ok {
return createOAuthError(osinErr.Id, osinErr.Description)
}
return err
}
func oauthErrFromValues(values url.Values) error {
if errorCode := values.Get("error"); len(errorCode) > 0 {
errorDescription := values.Get("error_description")
return createOAuthError(errorCode, errorDescription)
}
return nil
}
func createOAuthError(errorCode, errorDescription string) error {
return fmt.Errorf("%s %s", errorCode, errorDescription)
}
func request(rt http.RoundTripper, requestURL string, requestHeaders http.Header) (*http.Response, error) {
// Build the request
req, err := http.NewRequest("GET", requestURL, nil)
if err != nil {
return nil, err
}
for k, v := range requestHeaders {
req.Header[k] = v
}
req.Header.Set(csrfTokenHeader, "1")
// Make the request
return rt.RoundTrip(req)
}