-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
executable file
·277 lines (251 loc) · 8.46 KB
/
middleware.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
// Copyright 2016 TiKV Project Authors.
//
// 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 serverapi
import (
"net/http"
"net/url"
"strings"
"time"
"github.com/pingcap/kvproto/pkg/pdpb"
"github.com/pingcap/log"
"github.com/tikv/pd/pkg/errs"
mcsutils "github.com/tikv/pd/pkg/mcs/utils"
"github.com/tikv/pd/pkg/slice"
"github.com/tikv/pd/pkg/utils/apiutil"
"github.com/tikv/pd/server"
"github.com/urfave/negroni"
"go.uber.org/zap"
)
type runtimeServiceValidator struct {
s *server.Server
group apiutil.APIServiceGroup
}
// NewRuntimeServiceValidator checks if the path is invalid.
func NewRuntimeServiceValidator(s *server.Server, group apiutil.APIServiceGroup) negroni.Handler {
return &runtimeServiceValidator{s: s, group: group}
}
func (h *runtimeServiceValidator) ServeHTTP(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
if IsServiceAllowed(h.s, h.group) {
next(w, r)
return
}
http.Error(w, "no service", http.StatusServiceUnavailable)
}
// IsServiceAllowed checks the service through the path.
func IsServiceAllowed(s *server.Server, group apiutil.APIServiceGroup) bool {
// for core path
if group.IsCore {
return true
}
opt := s.GetServerOption()
cfg := opt.GetPDServerConfig()
if cfg != nil {
for _, allow := range cfg.RuntimeServices {
if group.Name == allow {
return true
}
}
}
return false
}
type redirector struct {
s *server.Server
microserviceRedirectRules []*microserviceRedirectRule
}
type microserviceRedirectRule struct {
matchPath string
targetPath string
targetServiceName string
matchMethods []string
filter func(*http.Request) bool
}
// NewRedirector redirects request to the leader if needs to be handled in the leader.
func NewRedirector(s *server.Server, opts ...RedirectorOption) negroni.Handler {
r := &redirector{s: s}
for _, opt := range opts {
opt(r)
}
return r
}
// RedirectorOption defines the option of redirector
type RedirectorOption func(*redirector)
// MicroserviceRedirectRule new a microservice redirect rule option
func MicroserviceRedirectRule(matchPath, targetPath, targetServiceName string,
methods []string, filters ...func(*http.Request) bool) RedirectorOption {
return func(s *redirector) {
rule := µserviceRedirectRule{
matchPath: matchPath,
targetPath: targetPath,
targetServiceName: targetServiceName,
matchMethods: methods,
}
if len(filters) > 0 {
rule.filter = filters[0]
}
s.microserviceRedirectRules = append(s.microserviceRedirectRules, rule)
}
}
func (h *redirector) matchMicroServiceRedirectRules(r *http.Request) (bool, string) {
if !h.s.IsAPIServiceMode() {
return false, ""
}
if len(h.microserviceRedirectRules) == 0 {
return false, ""
}
if r.Header.Get(apiutil.XForbiddenForwardToMicroServiceHeader) == "true" {
return false, ""
}
// Remove trailing '/' from the URL path
// It will be helpful when matching the redirect rules "schedulers" or "schedulers/{name}"
r.URL.Path = strings.TrimRight(r.URL.Path, "/")
for _, rule := range h.microserviceRedirectRules {
// Now we only support checking the scheduling service whether it is independent
if rule.targetServiceName == mcsutils.SchedulingServiceName {
if !h.s.IsServiceIndependent(mcsutils.SchedulingServiceName) {
continue
}
}
if strings.HasPrefix(r.URL.Path, rule.matchPath) &&
slice.Contains(rule.matchMethods, r.Method) {
if rule.filter != nil && !rule.filter(r) {
continue
}
// we check the service primary addr here,
// if the service is not available, we will return ErrRedirect by returning an empty addr.
addr, ok := h.s.GetServicePrimaryAddr(r.Context(), rule.targetServiceName)
if !ok || addr == "" {
log.Warn("failed to get the service primary addr when trying to match redirect rules",
zap.String("path", r.URL.Path))
return true, ""
}
// If the URL contains escaped characters, use RawPath instead of Path
origin := r.URL.Path
path := r.URL.Path
if r.URL.RawPath != "" {
path = r.URL.RawPath
}
// Extract parameters from the URL path
// e.g. r.URL.Path = /pd/api/v1/operators/1 (before redirect)
// matchPath = /pd/api/v1/operators
// targetPath = /scheduling/api/v1/operators
// r.URL.Path = /scheduling/api/v1/operator/1 (after redirect)
pathParams := strings.TrimPrefix(path, rule.matchPath)
pathParams = strings.Trim(pathParams, "/") // Remove leading and trailing '/'
if len(pathParams) > 0 {
r.URL.Path = rule.targetPath + "/" + pathParams
} else {
r.URL.Path = rule.targetPath
}
log.Debug("redirect to micro service", zap.String("path", r.URL.Path), zap.String("origin-path", origin),
zap.String("target", addr), zap.String("method", r.Method))
return true, addr
}
}
return false, ""
}
func (h *redirector) ServeHTTP(w http.ResponseWriter, r *http.Request, next http.HandlerFunc) {
redirectToMicroService, targetAddr := h.matchMicroServiceRedirectRules(r)
allowFollowerHandle := len(r.Header.Get(apiutil.PDAllowFollowerHandleHeader)) > 0
if h.s.IsClosed() {
http.Error(w, errs.ErrServerNotStarted.FastGenByArgs().Error(), http.StatusInternalServerError)
return
}
if (allowFollowerHandle || h.s.GetMember().IsLeader()) && !redirectToMicroService {
next(w, r)
return
}
forwardedIP, forwardedPort := apiutil.GetIPPortFromHTTPRequest(r)
if len(forwardedIP) > 0 {
r.Header.Add(apiutil.XForwardedForHeader, forwardedIP)
} else {
// Fallback if GetIPPortFromHTTPRequest failed to get the IP.
r.Header.Add(apiutil.XForwardedForHeader, r.RemoteAddr)
}
if len(forwardedPort) > 0 {
r.Header.Add(apiutil.XForwardedPortHeader, forwardedPort)
}
var clientUrls []string
if redirectToMicroService {
if len(targetAddr) == 0 {
http.Error(w, errs.ErrRedirect.FastGenByArgs().Error(), http.StatusInternalServerError)
return
}
clientUrls = append(clientUrls, targetAddr)
// Add a header to the response, it is used to mark whether the request has been forwarded to the micro service.
w.Header().Add(apiutil.XForwardedToMicroServiceHeader, "true")
} else if name := r.Header.Get(apiutil.PDRedirectorHeader); len(name) == 0 {
leader := h.waitForLeader(r)
// The leader has not been elected yet.
if leader == nil {
http.Error(w, errs.ErrRedirectNoLeader.FastGenByArgs().Error(), http.StatusServiceUnavailable)
return
}
// If the leader is the current server now, we can handle the request directly.
if h.s.GetMember().IsLeader() || leader.GetName() == h.s.Name() {
next(w, r)
return
}
clientUrls = leader.GetClientUrls()
r.Header.Set(apiutil.PDRedirectorHeader, h.s.Name())
} else {
// Prevent more than one redirection among PD/API servers.
log.Error("redirect but server is not leader", zap.String("from", name), zap.String("server", h.s.Name()), errs.ZapError(errs.ErrRedirectToNotLeader))
http.Error(w, errs.ErrRedirectToNotLeader.FastGenByArgs().Error(), http.StatusInternalServerError)
return
}
urls := make([]url.URL, 0, len(clientUrls))
for _, item := range clientUrls {
u, err := url.Parse(item)
if err != nil {
http.Error(w, errs.ErrURLParse.Wrap(err).GenWithStackByCause().Error(), http.StatusInternalServerError)
return
}
urls = append(urls, *u)
}
client := h.s.GetHTTPClient()
apiutil.NewCustomReverseProxies(client, urls).ServeHTTP(w, r)
}
const (
backoffMaxDelay = 3 * time.Second
backoffInterval = 100 * time.Millisecond
)
// If current server does not have a leader, backoff to increase the chance of success.
func (h *redirector) waitForLeader(r *http.Request) (leader *pdpb.Member) {
var (
interval = backoffInterval
maxDelay = backoffMaxDelay
curDelay = time.Duration(0)
)
for {
leader = h.s.GetMember().GetLeader()
if leader != nil {
return
}
select {
case <-time.After(interval):
curDelay += interval
if curDelay >= maxDelay {
return
}
interval *= 2
if curDelay+interval > maxDelay {
interval = maxDelay - curDelay
}
case <-r.Context().Done():
return
case <-h.s.LoopContext().Done():
return
}
}
}