-
Notifications
You must be signed in to change notification settings - Fork 1
/
frontender.go
437 lines (360 loc) · 10.7 KB
/
frontender.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
// Copyright 2017 orijtech. 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 frontender
import (
"errors"
"fmt"
"math/rand"
"net"
"net/http"
"net/http/httputil"
"net/url"
"sort"
"strings"
"sync"
"time"
"golang.org/x/crypto/acme/autocert"
"github.com/orijtech/frontender/lively"
"github.com/orijtech/otils"
"github.com/odeke-em/go-uuid"
)
type Request struct {
// HTTP1 signifies that this server should
// not be ran as an HTTP/2<-->HTTPS server.
// This variable is useful for testing purposes.
HTTP1 bool `json:"http1"`
Domains []string `json:"domains"`
NoAutoWWW bool `json:"no_auto_www"`
ProxyAddresses []string `json:"proxy_addresses"`
NonHTTPSRedirectURL string `json:"non_https_redirect_url"`
NonHTTPSAddr string `json:"non_https_addr"`
DomainsListener func(domains ...string) net.Listener
Environ []string `json:"environ"`
TargetGOOS string `json:"target_goos"`
CertKeyFiler func() (string, string)
// BackendPingPeriod if set, defines the period
// between which the frontend service will check
// for the liveliness of the backends.
BackendPingPeriod time.Duration
// PrefixRouter if set helps route traffic depending on
// the route prefix e.g
// {
// "/bar": ["http://localhost:7997", "http://localhost:8888"],
// "/foo": ["http://localhost:8999", "http://localhost:8877"]
// }
// if it gets traffic with a URL prefix "/foo" will distribute traffic
// between "http://localhost:8999" and "http://localhost:8877".
PrefixRouter map[string][]string `json:"routing"`
}
var (
errEmptyDomains = errors.New("expecting at least one non-empty domain")
errAlreadyClosed = errors.New("already closed")
errEmptyProxyAddress = errors.New("expecting a non-empty proxy server address")
)
func (req *Request) hasAtLeastOneProxy() bool {
if req == nil {
return false
}
if len(req.PrefixRouter) == 0 {
return otils.FirstNonEmptyString(req.ProxyAddresses...) != ""
}
for _, proxyAddresses := range req.PrefixRouter {
if otils.FirstNonEmptyString(proxyAddresses...) != "" {
return true
}
}
return false
}
func (req *Request) Validate() error {
if !req.hasAtLeastOneProxy() {
return errEmptyProxyAddress
}
if req.needsDomains() && strings.TrimSpace(otils.FirstNonEmptyString(req.Domains...)) == "" {
return errEmptyDomains
}
return nil
}
type Server struct {
Domains []string `json:"domains"`
ProxyAddresses []string `json:"proxy_addresses"`
NonHTTPSRedirectURL string `json:"non_https_redirect_url"`
}
// Synthesizes domains removing duplicates
// and if NoAutoWWW if not set, will automatically make
// the corresponding www.domain domain.
func (req *Request) SynthesizeDomains() []string {
var finalList []string
uniqs := make(map[string]bool)
for _, domain := range req.Domains {
domain = strings.TrimSpace(domain)
if domain == "" {
continue
}
toAdd := []string{domain}
if !req.NoAutoWWW && !strings.HasPrefix(domain, "www") {
toAdd = append(toAdd, fmt.Sprintf("www.%s", domain))
}
for _, curDomain := range toAdd {
if _, seen := uniqs[curDomain]; seen {
continue
}
finalList = append(finalList, curDomain)
uniqs[curDomain] = true
}
}
return finalList
}
func (req *Request) runNonHTTPSRedirector() error {
if req.HTTP1 {
return nil
}
redirectURL := strings.TrimSpace(req.NonHTTPSRedirectURL)
if redirectURL == "" {
return nil
}
nonHTTPSAddr := strings.TrimSpace(req.NonHTTPSAddr)
if nonHTTPSAddr == "" {
nonHTTPSAddr = ":80"
}
if req.CertKeyFiler != nil {
cert, keyfile := req.CertKeyFiler()
return http.ListenAndServeTLS(nonHTTPSAddr, cert, keyfile, nil)
}
return http.ListenAndServe(nonHTTPSAddr, otils.RedirectAllTrafficTo(redirectURL))
}
type ListenConfirmation struct {
closeFn func() error
errsChan <-chan error
}
func (lc *ListenConfirmation) Close() error {
return lc.closeFn()
}
func (lc *ListenConfirmation) Wait() error {
return <-lc.errsChan
}
func (req *Request) needsDomains() bool {
return req.HTTP1 == false
}
// The goal is to be able to pass in proxy servers, keep a
// persistent connection to each one of them and use that
// as the weight to figure out which one to send traffic to.
func Listen(req *Request) (*ListenConfirmation, error) {
if err := req.Validate(); err != nil {
return nil, err
}
// proxyURL, err := url.Parse(req.ProxyAddress)
// if err != nil {
// return nil, err
// }
madeDomains := req.SynthesizeDomains()
if req.needsDomains() && len(madeDomains) == 0 {
return nil, errEmptyDomains
}
domainsListener := req.DomainsListener
if domainsListener == nil {
if !req.HTTP1 {
domainsListener = autocert.NewListener
} else {
listener, err := net.Listen("tcp", req.NonHTTPSAddr)
if err != nil {
return nil, err
}
domainsListener = func(domains ...string) net.Listener { return listener }
}
}
listener := domainsListener(madeDomains...)
return req.runAndCreateListener(listener)
}
type livelyProxy struct {
mu sync.Mutex
next map[string]int
cycleFreq time.Duration
primariesMap map[string]*lively.Peer
secondariesMap map[string]map[string]*lively.Peer
longestPrefixFirst []string
liveAddresses map[string][]string
}
const defaultCycleFrequence = time.Minute * 3
type cycleFeedback struct {
cycleNumber uint64
err error
livePeers, nonLivePeers []*lively.Liveliness
}
func (lp *livelyProxy) run() map[string]chan *cycleFeedback {
lp.mu.Lock()
freq := lp.cycleFreq
lp.mu.Unlock()
if freq <= 0 {
freq = defaultCycleFrequence
}
feedbackChanMap := make(map[string]chan *cycleFeedback)
for route, primary := range lp.primariesMap {
feedbackChan := make(chan *cycleFeedback)
go func(route string, primary *lively.Peer, feedbackChan chan *cycleFeedback) {
defer close(feedbackChan)
cycleNumber := uint64(0)
for {
cycleNumber += 1
livePeers, nonLivePeers, err := lp.cycle(route, primary)
feedbackChan <- &cycleFeedback{
err: err,
cycleNumber: cycleNumber,
livePeers: livePeers,
nonLivePeers: nonLivePeers,
}
<-time.After(freq)
}
}(route, primary, feedbackChan)
}
return feedbackChanMap
}
func (lp *livelyProxy) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Firstly we need to find a primary match
var matchedRoute string
// We need to match by longest prefix first
// so that cases like
// * "/"
// * "/foo"
// * "/fo"
// given * "/foo"
// will always match "/foo" instead of "/" or "/fo"
// however in the absence of "/foo", "/fo" will match before "/"
longestPrefixFirst := lp.longestPrefixFirst
for _, routePrefix := range longestPrefixFirst {
if strings.HasPrefix(r.URL.Path, routePrefix) {
matchedRoute = routePrefix
break
}
}
proxyAddr := lp.roundRobinedAddress(matchedRoute)
// Now proxy the traffic to that request
parsedURL, err := url.Parse(proxyAddr)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
r.URL.Path = strings.TrimPrefix(r.URL.Path, matchedRoute)
if !strings.HasPrefix(r.URL.Path, "/") {
r.URL.Path = "/" + r.URL.Path
}
rproxy := httputil.NewSingleHostReverseProxy(parsedURL)
rproxy.ServeHTTP(w, r)
}
func (lp *livelyProxy) roundRobinedAddress(route string) string {
lp.mu.Lock()
defer lp.mu.Unlock()
liveAddresses := lp.liveAddresses[route]
if len(liveAddresses) == 0 {
return ""
}
if lp.next[route] >= len(liveAddresses) {
lp.next[route] = 0
}
addr := liveAddresses[lp.next[route]]
// Now increment it
lp.next[route] += 1
return addr
}
func (lp *livelyProxy) cycle(route string, primary *lively.Peer) (livePeers, nonLivePeers []*lively.Liveliness, err error) {
livePeers, nonLivePeers, err = primary.Liveliness(&lively.LivelyRequest{})
lp.mu.Lock()
defer lp.mu.Unlock()
var liveAddresses []string
for _, peer := range livePeers {
liveAddresses = append(liveAddresses, peer.Addr)
}
// Now reset the next index.
lp.next[route] = 0
// Shuffle the liveAddresses.
perm := rand.Perm(len(liveAddresses))
var shuffledAddresses []string
for _, i := range perm {
shuffledAddresses = append(shuffledAddresses, liveAddresses[i])
}
lp.liveAddresses[route] = shuffledAddresses
return livePeers, nonLivePeers, err
}
func makeLivelyProxy(cycleFreq time.Duration, pr map[string][]string) *livelyProxy {
secondariesMap := make(map[string]map[string]*lively.Peer)
primariesMap := make(map[string]*lively.Peer)
for prefix, addresses := range pr {
primary := &lively.Peer{
ID: uuid.NewRandom().String(),
Primary: true,
}
peersMap := make(map[string]*lively.Peer)
for _, addr := range addresses {
secondary := &lively.Peer{
Addr: addr,
ID: uuid.NewRandom().String(),
}
_ = primary.AddPeer(secondary)
peersMap[secondary.ID] = secondary
}
secondariesMap[prefix] = peersMap
primariesMap[prefix] = primary
}
routePrefixes := make([]string, 0, len(pr))
for routePrefix := range pr {
routePrefixes = append(routePrefixes, routePrefix)
}
sort.Slice(routePrefixes, func(i, j int) bool {
// Sort in reverse by length
si, sj := routePrefixes[i], routePrefixes[j]
return len(si) >= len(sj)
})
return &livelyProxy{
longestPrefixFirst: routePrefixes,
primariesMap: primariesMap,
secondariesMap: secondariesMap,
cycleFreq: cycleFreq,
next: make(map[string]int),
liveAddresses: make(map[string][]string),
}
}
func (req *Request) runAndCreateListener(listener net.Listener) (*ListenConfirmation, error) {
var closeOnce sync.Once
errsChan := make(chan error)
closeFn := func() error {
err := errAlreadyClosed
closeOnce.Do(func() {
err = listener.Close()
})
return err
}
lc := &ListenConfirmation{closeFn: closeFn, errsChan: errsChan}
// Run the nonHTTPS redirector.
go req.runNonHTTPSRedirector()
// Now run the domain listener
go func() {
defer close(errsChan)
// Per cycle of liveliness, figure out what is lively
// what isn't
lproxy := makeLivelyProxy(req.BackendPingPeriod, req.PrefixRouter)
go func() {
feedbackChanMap := lproxy.run()
for route, feedbackChan := range feedbackChanMap {
go func(route string, feedbackChan chan *cycleFeedback) {
for feedback := range feedbackChan {
if err := feedback.err; err != nil {
errsChan <- err
}
}
}(route, feedbackChan)
}
}()
errsChan <- http.Serve(listener, lproxy)
}()
return lc, nil
}