forked from louketo/louketo-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
forwarding.go
212 lines (183 loc) · 6.57 KB
/
forwarding.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
/*
Copyright 2015 All rights reserved.
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 main
import (
"fmt"
"net/http"
"time"
"github.com/gambol99/go-oidc/jose"
"github.com/gambol99/go-oidc/oidc"
"go.uber.org/zap"
)
// proxyMiddleware is responsible for handles reverse proxy request to the upstream endpoint
func (r *oauthProxy) proxyMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
next.ServeHTTP(w, req)
// @step: retrieve the request scope
scope := req.Context().Value(contextScopeName)
if scope != nil {
sc := scope.(*RequestScope)
if sc.AccessDenied {
return
}
}
// @step: add the proxy forwarding headers
req.Header.Add("X-Forwarded-For", realIP(req))
req.Header.Set("X-Forwarded-Host", req.URL.Host)
req.Header.Set("X-Forwarded-Proto", req.Header.Get("X-Forwarded-Proto"))
// @step: add any custom headers to the request
for k, v := range r.config.Headers {
req.Header.Set(k, v)
}
// @note: by default goproxy only provides a forwarding proxy, thus all requests have to be absolute and we must update the host headers
req.URL.Host = r.endpoint.Host
req.URL.Scheme = r.endpoint.Scheme
if v := req.Header.Get("Host"); v != "" {
req.Host = v
req.Header.Del("Host")
} else {
req.Host = r.endpoint.Host
}
if isUpgradedConnection(req) {
r.log.Debug("upgrading the connnection", zap.String("client_ip", req.RemoteAddr))
if err := tryUpdateConnection(req, w, r.endpoint); err != nil {
r.log.Error("failed to upgrade connection", zap.Error(err))
w.WriteHeader(http.StatusInternalServerError)
return
}
return
}
r.upstream.ServeHTTP(w, req)
})
}
// forwardProxyHandler is responsible for signing outbound requests
func (r *oauthProxy) forwardProxyHandler() func(*http.Request, *http.Response) {
client, err := r.client.OAuthClient()
if err != nil {
r.log.Fatal("failed to create oauth client", zap.Error(err))
}
// the loop state
var state struct {
// the access token
token jose.JWT
// the refresh token if any
refresh string
// the identity of the user
identity *oidc.Identity
// the expiry time of the access token
expiration time.Time
// whether we need to login
login bool
// whether we should wait for expiration
wait bool
}
state.login = true
// create a routine to refresh the access tokens or login on expiration
go func() {
for {
state.wait = false
// step: do we have a access token
if state.login {
r.log.Info("requesting access token for user",
zap.String("username", r.config.ForwardingUsername))
// step: login into the service
resp, err := client.UserCredsToken(r.config.ForwardingUsername, r.config.ForwardingPassword)
if err != nil {
r.log.Error("failed to login to authentication service", zap.Error(err))
// step: back-off and reschedule
<-time.After(time.Duration(5) * time.Second)
continue
}
// step: parse the token
token, identity, err := parseToken(resp.AccessToken)
if err != nil {
r.log.Error("failed to parse the access token", zap.Error(err))
// step: we should probably hope and reschedule here
<-time.After(time.Duration(5) * time.Second)
continue
}
// step: update the loop state
state.token = token
state.identity = identity
state.expiration = identity.ExpiresAt
state.wait = true
state.login = false
state.refresh = resp.RefreshToken
r.log.Info("successfully retrieved access token for subject",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email),
zap.String("expires", state.expiration.Format(time.RFC3339)))
} else {
r.log.Info("access token is about to expiry",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email))
// step: if we a have a refresh token, we need to login again
if state.refresh != "" {
r.log.Info("attempting to refresh the access token",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email),
zap.String("expires", state.expiration.Format(time.RFC3339)))
// step: attempt to refresh the access
token, expiration, err := getRefreshedToken(r.client, state.refresh)
if err != nil {
state.login = true
switch err {
case ErrRefreshTokenExpired:
r.log.Warn("the refresh token has expired, need to login again",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email))
default:
r.log.Error("failed to refresh the access token", zap.Error(err))
}
continue
}
// step: update the state
state.token = token
state.expiration = expiration
state.wait = true
state.login = false
// step: add some debugging
r.log.Info("successfully refreshed the access token",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email),
zap.String("expires", state.expiration.Format(time.RFC3339)))
} else {
r.log.Info("session does not support refresh token, acquiring new token",
zap.String("subject", state.identity.ID),
zap.String("email", state.identity.Email))
// we don't have a refresh token, we must perform a login again
state.wait = false
state.login = true
}
}
// wait for an expiration to come close
if state.wait {
// set the expiration of the access token within a random 85% of actual expiration
duration := getWithin(state.expiration, 0.85)
r.log.Info("waiting for expiration of access token",
zap.String("token_expiration", state.expiration.Format(time.RFC3339)),
zap.String("renewel_duration", duration.String()))
<-time.After(duration)
}
}
}()
return func(req *http.Request, resp *http.Response) {
hostname := req.Host
req.URL.Host = hostname
// is the host being signed?
if len(r.config.ForwardingDomains) == 0 || containsSubString(hostname, r.config.ForwardingDomains) {
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", state.token.Encode()))
req.Header.Set("X-Forwarded-Agent", prog)
}
}
}