-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathroutes.go
351 lines (297 loc) · 10.1 KB
/
routes.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
// Copyright 2020 The Prometheus 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 injectproxy
import (
"context"
"fmt"
"io/ioutil"
"net/http"
"net/http/httputil"
"net/url"
"strings"
"github.com/efficientgo/tools/core/pkg/merrors"
"github.com/pkg/errors"
"github.com/prometheus/prometheus/pkg/labels"
"github.com/prometheus/prometheus/promql/parser"
)
const (
queryParam = "query"
matchersParam = "match[]"
)
type routes struct {
upstream *url.URL
handler http.Handler
label string
mux *http.ServeMux
modifiers map[string]func(*http.Response) error
}
type options struct {
enableLabelAPIs bool
pasthroughPaths []string
}
type Option interface {
apply(*options)
}
type optionFunc func(*options)
func (f optionFunc) apply(o *options) {
f(o)
}
// WithEnabledLabelsAPI enables proxying to labels API. If false, "501 Not implemented" will be return for those.
func WithEnabledLabelsAPI() Option {
return optionFunc(func(o *options) {
o.enableLabelAPIs = true
})
}
// WithPassthroughPaths configures routes to register given paths as passthrough handlers for all HTTP methods.
// that, if requested, will be forwarded without enforcing label. Use with care.
// NOTE: Passthrough "all" paths like "/" or "" and regex are not allowed.
func WithPassthroughPaths(paths []string) Option {
return optionFunc(func(o *options) {
o.pasthroughPaths = paths
})
}
// strictMux is a mux that wraps standard HTTP handler with safer handler that allows safe user provided handler registrations.
type strictMux struct {
seen map[string]struct{}
m *http.ServeMux
}
func newStrictMux() *strictMux {
return &strictMux{
seen: map[string]struct{}{},
m: http.NewServeMux(),
}
}
// Handle is like HTTP mux handle but it does not allow to register paths that are shared with previously registered paths.
// It also makes sure the trailing / is registered too.
// For example if /api/v1/federate was registered consequent registrations like /api/v1/federate/ or /api/v1/federate/some will
// return error. In the mean time request with both /api/v1/federate and /api/v1/federate/ will point to the handled passed by /api/v1/federate
// registration.
// This allows to de-risk ability for user to mis-configure and leak inject isolation.
func (s *strictMux) Handle(pattern string, handler http.Handler) error {
sanitized := pattern
for next := strings.TrimSuffix(sanitized, "/"); next != sanitized; sanitized = next {
}
if _, ok := s.seen[sanitized]; ok {
return errors.Errorf("pattern %q was already registered", sanitized)
}
for p := range s.seen {
if strings.HasPrefix(sanitized+"/", p+"/") {
return errors.Errorf("pattern %q is registered, cannot register path %q that shares it", p, sanitized)
}
}
s.m.Handle(sanitized, handler)
s.m.Handle(sanitized+"/", handler)
s.seen[sanitized] = struct{}{}
return nil
}
func NewRoutes(upstream *url.URL, label string, opts ...Option) (*routes, error) {
opt := options{}
for _, o := range opts {
o.apply(&opt)
}
proxy := httputil.NewSingleHostReverseProxy(upstream)
r := &routes{upstream: upstream, handler: proxy, label: label}
mux := newStrictMux()
errs := merrors.New(
mux.Handle("/federate", r.enforceLabel(enforceMethods(r.matcher, "GET"))),
mux.Handle("/api/v1/query", r.enforceLabel(enforceMethods(r.query, "GET", "POST"))),
mux.Handle("/api/v1/query_range", r.enforceLabel(enforceMethods(r.query, "GET", "POST"))),
mux.Handle("/api/v1/alerts", r.enforceLabel(enforceMethods(r.passthrough, "GET"))),
mux.Handle("/api/v1/rules", r.enforceLabel(enforceMethods(r.passthrough, "GET"))),
mux.Handle("/api/v1/series", r.enforceLabel(enforceMethods(r.matcher, "GET"))),
)
if opt.enableLabelAPIs {
errs.Add(
mux.Handle("/api/v1/labels", r.enforceLabel(enforceMethods(r.matcher, "GET"))),
// Full path is /api/v1/label/<label_name>/values but http mux does not support patterns.
// This is fine though as we don't care about name for matcher injector.
mux.Handle("/api/v1/label/", r.enforceLabel(enforceMethods(r.matcher, "GET"))),
)
}
errs.Add(
mux.Handle("/api/v2/silences", r.enforceLabel(enforceMethods(r.silences, "GET", "POST"))),
mux.Handle("/api/v2/silence/", r.enforceLabel(enforceMethods(r.deleteSilence, "DELETE"))),
)
if err := errs.Err(); err != nil {
return nil, err
}
// Validate paths.
for _, path := range opt.pasthroughPaths {
u, err := url.Parse(fmt.Sprintf("http://example.com%v", path))
if err != nil {
return nil, fmt.Errorf("path %v is not a valid URI path, got %v", path, opt.pasthroughPaths)
}
if u.Path != path {
return nil, fmt.Errorf("path %v is not a valid URI path, got %v", path, opt.pasthroughPaths)
}
if u.Path == "" || u.Path == "/" {
return nil, fmt.Errorf("path %v is not allowed, got %v", u.Path, opt.pasthroughPaths)
}
}
// Register optional passthrough paths.
for _, path := range opt.pasthroughPaths {
if err := mux.Handle(path, http.HandlerFunc(r.passthrough)); err != nil {
return nil, err
}
}
r.mux = mux.m
r.modifiers = map[string]func(*http.Response) error{
"/api/v1/rules": modifyAPIResponse(r.filterRules),
"/api/v1/alerts": modifyAPIResponse(r.filterAlerts),
}
proxy.ModifyResponse = r.ModifyResponse
return r, nil
}
func (r *routes) enforceLabel(h http.HandlerFunc) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
lvalue := req.URL.Query().Get(r.label)
if lvalue == "" {
http.Error(w, fmt.Sprintf("Bad request. The %q query parameter must be provided.", r.label), http.StatusBadRequest)
return
}
req = req.WithContext(withLabelValue(req.Context(), lvalue))
// Remove the proxy label from the query parameters.
q := req.URL.Query()
q.Del(r.label)
req.URL.RawQuery = q.Encode()
h.ServeHTTP(w, req)
})
}
func (r *routes) ServeHTTP(w http.ResponseWriter, req *http.Request) {
r.mux.ServeHTTP(w, req)
}
func (r *routes) ModifyResponse(resp *http.Response) error {
m, found := r.modifiers[resp.Request.URL.Path]
if !found {
// Return the server's response unmodified.
return nil
}
return m(resp)
}
func enforceMethods(h http.HandlerFunc, methods ...string) http.HandlerFunc {
return func(w http.ResponseWriter, req *http.Request) {
for _, m := range methods {
if m == req.Method {
h(w, req)
return
}
}
http.NotFound(w, req)
}
}
type ctxKey int
const keyLabel ctxKey = iota
func mustLabelValue(ctx context.Context) string {
label, ok := ctx.Value(keyLabel).(string)
if !ok {
panic(fmt.Sprintf("can't find the %q value in the context", keyLabel))
}
if label == "" {
panic(fmt.Sprintf("empty %q value in the context", keyLabel))
}
return label
}
func withLabelValue(ctx context.Context, label string) context.Context {
return context.WithValue(ctx, keyLabel, label)
}
func (r *routes) passthrough(w http.ResponseWriter, req *http.Request) {
r.handler.ServeHTTP(w, req)
}
func (r *routes) query(w http.ResponseWriter, req *http.Request) {
e := NewEnforcer([]*labels.Matcher{{
Name: r.label,
Type: labels.MatchEqual,
Value: mustLabelValue(req.Context()),
}}...)
// The `query` can come in the URL query string and/or the POST body.
// For this reason, we need to try to enforcing in both places.
// Note: a POST request may include some values in the URL query string
// and others in the body. If both locations include a `query`, then
// enforce in both places.
q, found1, err := enforceQueryValues(e, req.URL.Query())
if err != nil {
return
}
req.URL.RawQuery = q
var found2 bool
// Enforce the query in the POST body if needed.
if req.Method == http.MethodPost {
if err := req.ParseForm(); err != nil {
return
}
q, found2, err = enforceQueryValues(e, req.PostForm)
if err != nil {
return
}
// We are replacing request body, close previous one (ParseForm ensures it is read fully and not nil).
_ = req.Body.Close()
req.Body = ioutil.NopCloser(strings.NewReader(q))
req.ContentLength = int64(len(q))
}
// If no query was found, return early.
if !found1 && !found2 {
return
}
r.handler.ServeHTTP(w, req)
}
func enforceQueryValues(e *Enforcer, v url.Values) (values string, noQuery bool, err error) {
// If no values were given or no query is present,
// e.g. because the query came in the POST body
// but the URL query string was passed, then finish early.
if v.Get(queryParam) == "" {
return v.Encode(), false, nil
}
expr, err := parser.ParseExpr(v.Get(queryParam))
if err != nil {
return "", true, err
}
if err := e.EnforceNode(expr); err != nil {
return "", true, err
}
v.Set(queryParam, expr.String())
return v.Encode(), true, nil
}
// matcher ensures all the provided match[] if any has label injected. If none was provided, single matcher is injected.
// This works for non-query Prometheus APIs like: /api/v1/series, /api/v1/label/<name>/values, /api/v1/labels and /federate support multiple matchers.
// See e.g https://prometheus.io/docs/prometheus/latest/querying/api/#querying-metadata
func (r *routes) matcher(w http.ResponseWriter, req *http.Request) {
matcher := &labels.Matcher{
Name: r.label,
Type: labels.MatchEqual,
Value: mustLabelValue(req.Context()),
}
q := req.URL.Query()
matchers := q[matchersParam]
if len(matchers) == 0 {
q.Set(matchersParam, matchersToString(matcher))
} else {
// Inject label to existing matchers.
for i, m := range matchers {
ms, err := parser.ParseMetricSelector(m)
if err != nil {
return
}
matchers[i] = matchersToString(append(ms, matcher)...)
}
q[matchersParam] = matchers
}
req.URL.RawQuery = q.Encode()
r.handler.ServeHTTP(w, req)
}
func matchersToString(ms ...*labels.Matcher) string {
var el []string
for _, m := range ms {
el = append(el, m.String())
}
return fmt.Sprintf("{%v}", strings.Join(el, ","))
}