sslobodr | d046be8 | 2019-01-16 10:02:22 -0500 | [diff] [blame] | 1 | /* |
| 2 | Copyright 2018 The Kubernetes Authors. |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package rest |
| 18 | |
| 19 | import ( |
| 20 | "fmt" |
| 21 | "io/ioutil" |
| 22 | "net/http" |
| 23 | "strings" |
| 24 | "sync" |
| 25 | "time" |
| 26 | |
| 27 | "golang.org/x/oauth2" |
| 28 | "k8s.io/klog" |
| 29 | ) |
| 30 | |
| 31 | // TokenSourceWrapTransport returns a WrapTransport that injects bearer tokens |
| 32 | // authentication from an oauth2.TokenSource. |
| 33 | func TokenSourceWrapTransport(ts oauth2.TokenSource) func(http.RoundTripper) http.RoundTripper { |
| 34 | return func(rt http.RoundTripper) http.RoundTripper { |
| 35 | return &tokenSourceTransport{ |
| 36 | base: rt, |
| 37 | ort: &oauth2.Transport{ |
| 38 | Source: ts, |
| 39 | Base: rt, |
| 40 | }, |
| 41 | } |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | // NewCachedFileTokenSource returns a oauth2.TokenSource reads a token from a |
| 46 | // file at a specified path and periodically reloads it. |
| 47 | func NewCachedFileTokenSource(path string) oauth2.TokenSource { |
| 48 | return &cachingTokenSource{ |
| 49 | now: time.Now, |
| 50 | leeway: 1 * time.Minute, |
| 51 | base: &fileTokenSource{ |
| 52 | path: path, |
| 53 | // This period was picked because it is half of the minimum validity |
| 54 | // duration for a token provisioned by they TokenRequest API. This is |
| 55 | // unsophisticated and should induce rotation at a frequency that should |
| 56 | // work with the token volume source. |
| 57 | period: 5 * time.Minute, |
| 58 | }, |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | type tokenSourceTransport struct { |
| 63 | base http.RoundTripper |
| 64 | ort http.RoundTripper |
| 65 | } |
| 66 | |
| 67 | func (tst *tokenSourceTransport) RoundTrip(req *http.Request) (*http.Response, error) { |
| 68 | // This is to allow --token to override other bearer token providers. |
| 69 | if req.Header.Get("Authorization") != "" { |
| 70 | return tst.base.RoundTrip(req) |
| 71 | } |
| 72 | return tst.ort.RoundTrip(req) |
| 73 | } |
| 74 | |
| 75 | type fileTokenSource struct { |
| 76 | path string |
| 77 | period time.Duration |
| 78 | } |
| 79 | |
| 80 | var _ = oauth2.TokenSource(&fileTokenSource{}) |
| 81 | |
| 82 | func (ts *fileTokenSource) Token() (*oauth2.Token, error) { |
| 83 | tokb, err := ioutil.ReadFile(ts.path) |
| 84 | if err != nil { |
| 85 | return nil, fmt.Errorf("failed to read token file %q: %v", ts.path, err) |
| 86 | } |
| 87 | tok := strings.TrimSpace(string(tokb)) |
| 88 | if len(tok) == 0 { |
| 89 | return nil, fmt.Errorf("read empty token from file %q", ts.path) |
| 90 | } |
| 91 | |
| 92 | return &oauth2.Token{ |
| 93 | AccessToken: tok, |
| 94 | Expiry: time.Now().Add(ts.period), |
| 95 | }, nil |
| 96 | } |
| 97 | |
| 98 | type cachingTokenSource struct { |
| 99 | base oauth2.TokenSource |
| 100 | leeway time.Duration |
| 101 | |
| 102 | sync.RWMutex |
| 103 | tok *oauth2.Token |
| 104 | |
| 105 | // for testing |
| 106 | now func() time.Time |
| 107 | } |
| 108 | |
| 109 | var _ = oauth2.TokenSource(&cachingTokenSource{}) |
| 110 | |
| 111 | func (ts *cachingTokenSource) Token() (*oauth2.Token, error) { |
| 112 | now := ts.now() |
| 113 | // fast path |
| 114 | ts.RLock() |
| 115 | tok := ts.tok |
| 116 | ts.RUnlock() |
| 117 | |
| 118 | if tok != nil && tok.Expiry.Add(-1*ts.leeway).After(now) { |
| 119 | return tok, nil |
| 120 | } |
| 121 | |
| 122 | // slow path |
| 123 | ts.Lock() |
| 124 | defer ts.Unlock() |
| 125 | if tok := ts.tok; tok != nil && tok.Expiry.Add(-1*ts.leeway).After(now) { |
| 126 | return tok, nil |
| 127 | } |
| 128 | |
| 129 | tok, err := ts.base.Token() |
| 130 | if err != nil { |
| 131 | if ts.tok == nil { |
| 132 | return nil, err |
| 133 | } |
| 134 | klog.Errorf("Unable to rotate token: %v", err) |
| 135 | return ts.tok, nil |
| 136 | } |
| 137 | |
| 138 | ts.tok = tok |
| 139 | return tok, nil |
| 140 | } |