forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
router.go
777 lines (674 loc) · 24.3 KB
/
router.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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
package templaterouter
import (
"crypto/md5"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"reflect"
"regexp"
"strconv"
"strings"
"sync"
"text/template"
"time"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/util/sets"
cmdutil "github.com/openshift/origin/pkg/cmd/util"
routeapi "github.com/openshift/origin/pkg/route/api"
"github.com/openshift/origin/pkg/util/ratelimiter"
)
const (
ProtocolHTTP = "http"
ProtocolHTTPS = "https"
ProtocolTLS = "tls"
)
const (
routeFile = "routes.json"
certDir = "certs"
caCertDir = "cacerts"
defaultCertName = "default"
caCertPostfix = "_ca"
destCertPostfix = "_pod"
)
// templateRouter is a backend-agnostic router implementation
// that generates configuration files via a set of templates
// and manages the backend process with a reload script.
type templateRouter struct {
// the directory to write router output to
dir string
templates map[string]*template.Template
reloadScriptPath string
reloadInterval time.Duration
state map[string]ServiceAliasConfig
serviceUnits map[string]ServiceUnit
certManager certificateManager
// defaultCertificate is a concatenated certificate(s), their keys, and their CAs that should be used by the underlying
// implementation as the default certificate if no certificate is resolved by the normal matching mechanisms. This is
// usually a wildcard certificate for a cloud domain such as *.mypaas.com to allow applications to create app.mypaas.com
// as secure routes without having to provide their own certificates
defaultCertificate string
// if the default certificate is populated then this will be filled in so it can be passed to the templates
defaultCertificatePath string
// if the default certificate is in a secret this will be filled in so it can be passed to the templates
defaultCertificateDir string
// peerService provides a namespace/name to check against when receiving endpoint events in order
// to track the peers of this router. This may be used to populate the set of peer ip addresses
// that a router can use for talking to other routers controlled by the same service.
// NOTE: this should follow the format of the router.endpointsKey that is used to key endpoints
peerEndpointsKey string
// peerEndpoints will contain an endpoint slice of the peers
peerEndpoints []Endpoint
// if the router can expose statistics it should expose them with this user for auth
statsUser string
// if the router can expose statistics it should expose them with this password for auth
statsPassword string
// if the router can expose statistics it should expose them with this port
statsPort int
// if the router should allow wildcard routes.
allowWildcardRoutes bool
// rateLimitedCommitFunction is a rate limited commit (persist state + refresh the backend)
// function that coalesces and controls how often the router is reloaded.
rateLimitedCommitFunction *ratelimiter.RateLimitedFunction
// rateLimitedCommitStopChannel is the stop/terminate channel.
rateLimitedCommitStopChannel chan struct{}
// lock is a mutex used to prevent concurrent router reloads.
lock sync.Mutex
// the router should only reload when the value is false
skipCommit bool
}
// templateRouterCfg holds all configuration items required to initialize the template router
type templateRouterCfg struct {
dir string
templates map[string]*template.Template
reloadScriptPath string
reloadInterval time.Duration
defaultCertificate string
defaultCertificatePath string
defaultCertificateDir string
statsUser string
statsPassword string
statsPort int
allowWildcardRoutes bool
peerEndpointsKey string
includeUDP bool
}
// templateConfig is a subset of the templateRouter information that should be passed to the template for generating
// the correct configuration.
type templateData struct {
// the directory that files will be written to, defaults to /var/lib/containers/router
WorkingDir string
// the routes
State map[string](ServiceAliasConfig)
// the service lookup
ServiceUnits map[string]ServiceUnit
// full path and file name to the default certificate
DefaultCertificate string
// peers
PeerEndpoints []Endpoint
//username to expose stats with (if the template supports it)
StatsUser string
//password to expose stats with (if the template supports it)
StatsPassword string
//port to expose stats with (if the template supports it)
StatsPort int
}
func newTemplateRouter(cfg templateRouterCfg) (*templateRouter, error) {
dir := cfg.dir
glog.V(2).Infof("Creating a new template router, writing to %s", dir)
if len(cfg.peerEndpointsKey) > 0 {
glog.V(2).Infof("Router will use %s service to identify peers", cfg.peerEndpointsKey)
}
certManagerConfig := &certificateManagerConfig{
certKeyFunc: generateCertKey,
caCertKeyFunc: generateCACertKey,
destCertKeyFunc: generateDestCertKey,
certDir: filepath.Join(dir, certDir),
caCertDir: filepath.Join(dir, caCertDir),
}
certManager, err := newSimpleCertificateManager(certManagerConfig, newSimpleCertificateWriter())
if err != nil {
return nil, err
}
router := &templateRouter{
dir: dir,
templates: cfg.templates,
reloadScriptPath: cfg.reloadScriptPath,
reloadInterval: cfg.reloadInterval,
state: make(map[string]ServiceAliasConfig),
serviceUnits: make(map[string]ServiceUnit),
certManager: certManager,
defaultCertificate: cfg.defaultCertificate,
defaultCertificatePath: cfg.defaultCertificatePath,
defaultCertificateDir: cfg.defaultCertificateDir,
statsUser: cfg.statsUser,
statsPassword: cfg.statsPassword,
statsPort: cfg.statsPort,
allowWildcardRoutes: cfg.allowWildcardRoutes,
peerEndpointsKey: cfg.peerEndpointsKey,
peerEndpoints: []Endpoint{},
rateLimitedCommitFunction: nil,
rateLimitedCommitStopChannel: make(chan struct{}),
}
numSeconds := int(cfg.reloadInterval.Seconds())
router.EnableRateLimiter(numSeconds, router.commitAndReload)
if err := router.writeDefaultCert(); err != nil {
return nil, err
}
glog.V(4).Infof("Reading persisted state")
if err := router.readState(); err != nil {
return nil, err
}
glog.V(4).Infof("Committing state")
router.Commit()
return router, nil
}
func isInteger(s string) bool {
_, err := strconv.Atoi(s)
return (err == nil)
}
func matchValues(s string, allowedValues ...string) bool {
for _, value := range allowedValues {
if value == s {
return true
}
}
return false
}
func matchPattern(pattern, s string) bool {
glog.V(4).Infof("matchPattern called with %s and %s", pattern, s)
status, err := regexp.MatchString("^("+pattern+")$", s)
if err == nil {
glog.V(4).Infof("matchPattern returning status: %v", status)
return status
}
glog.Errorf("Error with regex pattern in call to matchPattern: %v", err)
return false
}
// Generate a regular expression to match wildcard hosts (and paths if any)
// for a [sub]domain.
func genSubdomainWildcardRegexp(hostname, path string, exactPath bool) string {
subdomain := routeapi.GetDomainForHost(hostname)
if len(subdomain) == 0 {
glog.Warningf("Generating subdomain wildcard regexp - invalid host name %s", hostname)
return fmt.Sprintf("%s%s", hostname, path)
}
expr := regexp.QuoteMeta(fmt.Sprintf(".%s%s", subdomain, path))
if exactPath {
return fmt.Sprintf("^[^\\.]*%s$", expr)
}
return fmt.Sprintf("^[^\\.]*%s(|/.*)$", expr)
}
// Generates the host name to use for serving/certificate matching.
// If wildcard is set, a wildcard host name (*.<subdomain>) is generated.
func genCertificateHostName(hostname string, wildcard bool) string {
if wildcard {
if idx := strings.IndexRune(hostname, '.'); idx > 0 {
return fmt.Sprintf("*.%s", hostname[idx+1:])
}
}
return hostname
}
func endpointsForAlias(alias ServiceAliasConfig, svc ServiceUnit) []Endpoint {
if len(alias.PreferPort) == 0 {
return svc.EndpointTable
}
endpoints := make([]Endpoint, 0, len(svc.EndpointTable))
for i := range svc.EndpointTable {
endpoint := svc.EndpointTable[i]
if endpoint.PortName == alias.PreferPort || endpoint.Port == alias.PreferPort {
endpoints = append(endpoints, endpoint)
}
}
return endpoints
}
func (r *templateRouter) EnableRateLimiter(interval int, handlerFunc ratelimiter.HandlerFunc) {
keyFunc := func(_ interface{}) (string, error) {
return "templaterouter", nil
}
r.rateLimitedCommitFunction = ratelimiter.NewRateLimitedFunction(keyFunc, interval, handlerFunc)
r.rateLimitedCommitFunction.RunUntil(r.rateLimitedCommitStopChannel)
glog.V(2).Infof("Template router will coalesce reloads within %v seconds of each other", interval)
}
// secretToPem composes a PEM file at the output directory from an input private key and crt file.
func secretToPem(secPath, outName string) error {
// The secret, when present, is mounted on /etc/pki/tls/private
// The secret has two components crt.tls and key.tls
// When the default cert is provided by the admin it is a pem
// tls.crt is the supplied pem and tls.key is the key
// extracted from the pem
// When the admin does not provide a default cert, the secret
// is created via the service annotation. In this case
// tls.crt is the cert and tls.key is the key
// The crt and key are concatenated to form the needed pem
var fileCrtName = filepath.Join(secPath, "tls.crt")
var fileKeyName = filepath.Join(secPath, "tls.key")
pemBlock, err := ioutil.ReadFile(fileCrtName)
if err != nil {
return err
}
keys, err := cmdutil.PrivateKeysFromPEM(pemBlock)
if err != nil {
return err
}
if len(keys) == 0 {
// Try to get the key from the tls.key file
keyBlock, err := ioutil.ReadFile(fileKeyName)
if err != nil {
return err
}
pemBlock = append(pemBlock, keyBlock...)
}
return ioutil.WriteFile(outName, pemBlock, 0444)
}
// writeDefaultCert ensures that the default certificate in pem format is in a file
// and the file name is set in r.defaultCertificatePath
func (r *templateRouter) writeDefaultCert() error {
dir := filepath.Join(r.dir, certDir)
outPath := filepath.Join(dir, fmt.Sprintf("%s.pem", defaultCertName))
if len(r.defaultCertificate) == 0 {
// There is no default cert. There may be a path or a secret...
if len(r.defaultCertificatePath) != 0 {
// Just use the provided path
return nil
}
err := secretToPem(r.defaultCertificateDir, outPath)
if err != nil {
// no pem file, no default cert, use cert from container
glog.V(2).Infof("Router default cert from router container")
return nil
}
r.defaultCertificatePath = outPath
return nil
}
// write out the default cert (pem format)
glog.V(2).Infof("Writing default certificate to %s", dir)
if err := r.certManager.CertificateWriter().WriteCertificate(dir, defaultCertName, []byte(r.defaultCertificate)); err != nil {
return err
}
r.defaultCertificatePath = outPath
return nil
}
func (r *templateRouter) readState() error {
data, err := ioutil.ReadFile(filepath.Join(r.dir, routeFile))
// TODO: rework
if err != nil {
r.state = make(map[string]ServiceAliasConfig)
return nil
}
return json.Unmarshal(data, &r.state)
}
// Commit applies the changes made to the router configuration - persists
// the state and refresh the backend. This is all done in the background
// so that we can rate limit + coalesce multiple changes.
func (r *templateRouter) Commit() {
if r.skipCommit {
glog.V(4).Infof("Skipping router commit until last sync has been processed")
} else {
r.rateLimitedCommitFunction.Invoke(r.rateLimitedCommitFunction)
}
}
// commitAndReload refreshes the backend and persists the router state.
func (r *templateRouter) commitAndReload() error {
r.lock.Lock()
defer r.lock.Unlock()
glog.V(4).Infof("Writing the router state")
if err := r.writeState(); err != nil {
return err
}
glog.V(4).Infof("Writing the router config")
if err := r.writeConfig(); err != nil {
return err
}
glog.V(4).Infof("Reloading the router")
if err := r.reloadRouter(); err != nil {
return err
}
return nil
}
// writeState writes the state of this router to disk.
func (r *templateRouter) writeState() error {
data, err := json.MarshalIndent(r.state, "", " ")
if err != nil {
return fmt.Errorf("failed to marshal route table: %v", err)
}
if err := ioutil.WriteFile(filepath.Join(r.dir, routeFile), data, 0644); err != nil {
return fmt.Errorf("failed to write route table: %v", err)
}
return nil
}
// writeConfig writes the config to disk
func (r *templateRouter) writeConfig() error {
//write out any certificate files that don't exist
for k, cfg := range r.state {
if err := r.writeCertificates(&cfg); err != nil {
return fmt.Errorf("error writing certificates for %s: %v", k, err)
}
cfg.Status = ServiceAliasConfigStatusSaved
r.state[k] = cfg
}
for path, template := range r.templates {
file, err := os.Create(path)
if err != nil {
return fmt.Errorf("error creating config file %s: %v", path, err)
}
data := templateData{
WorkingDir: r.dir,
State: r.state,
ServiceUnits: r.serviceUnits,
DefaultCertificate: r.defaultCertificatePath,
PeerEndpoints: r.peerEndpoints,
StatsUser: r.statsUser,
StatsPassword: r.statsPassword,
StatsPort: r.statsPort,
}
if err := template.Execute(file, data); err != nil {
file.Close()
return fmt.Errorf("error executing template for file %s: %v", path, err)
}
file.Close()
}
return nil
}
// writeCertificates attempts to write certificates only if the cfg requires it see shouldWriteCerts
// for details
func (r *templateRouter) writeCertificates(cfg *ServiceAliasConfig) error {
if r.shouldWriteCerts(cfg) {
//TODO: better way so this doesn't need to create lots of files every time state is written, probably too expensive
return r.certManager.WriteCertificatesForConfig(cfg)
}
return nil
}
// reloadRouter executes the router's reload script.
func (r *templateRouter) reloadRouter() error {
cmd := exec.Command(r.reloadScriptPath)
out, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("error reloading router: %v\n%s", err, string(out))
}
glog.Infof("Router reloaded:\n%s", out)
return nil
}
func (r *templateRouter) FilterNamespaces(namespaces sets.String) {
r.lock.Lock()
defer r.lock.Unlock()
if len(namespaces) == 0 {
r.state = make(map[string]ServiceAliasConfig)
r.serviceUnits = make(map[string]ServiceUnit)
}
for k := range r.serviceUnits {
// TODO: the id of a service unit should be defined inside this class, not passed in from the outside
// remove the leak of the abstraction when we refactor this code
ns := strings.SplitN(k, "/", 2)[0]
if namespaces.Has(ns) {
continue
}
delete(r.serviceUnits, k)
}
for k := range r.state {
ns := strings.SplitN(k, "_", 2)[0]
if namespaces.Has(ns) {
continue
}
delete(r.state, k)
}
}
// CreateServiceUnit creates a new service named with the given id.
func (r *templateRouter) CreateServiceUnit(id string) {
service := ServiceUnit{
Name: id,
EndpointTable: []Endpoint{},
}
r.lock.Lock()
defer r.lock.Unlock()
r.serviceUnits[id] = service
}
// findMatchingServiceUnit finds the service with the given id - internal
// lockless form, caller needs to ensure lock acquisition [and release].
func (r *templateRouter) findMatchingServiceUnit(id string) (ServiceUnit, bool) {
v, ok := r.serviceUnits[id]
return v, ok
}
// FindServiceUnit finds the service with the given id.
func (r *templateRouter) FindServiceUnit(id string) (ServiceUnit, bool) {
r.lock.Lock()
defer r.lock.Unlock()
return r.findMatchingServiceUnit(id)
}
// DeleteServiceUnit deletes the service with the given id.
func (r *templateRouter) DeleteServiceUnit(id string) {
r.lock.Lock()
defer r.lock.Unlock()
_, ok := r.findMatchingServiceUnit(id)
if !ok {
return
}
delete(r.serviceUnits, id)
}
// DeleteEndpoints deletes the endpoints for the service with the given id.
func (r *templateRouter) DeleteEndpoints(id string) {
r.lock.Lock()
defer r.lock.Unlock()
service, ok := r.findMatchingServiceUnit(id)
if !ok {
return
}
service.EndpointTable = []Endpoint{}
r.serviceUnits[id] = service
// TODO: this is not safe (assuming that the subset of elements we are watching includes the peer endpoints)
// should be a DNS lookup for endpoints of our service name.
if id == r.peerEndpointsKey {
r.peerEndpoints = []Endpoint{}
glog.V(4).Infof("Peer endpoint table has been cleared")
}
}
// routeKey generates route key in form of Namespace_Name. This is NOT the normal key structure of ns/name because
// it is not safe to use / in names of router config files. This allows templates to use this key without having
// to create (or provide) a separate method
func (r *templateRouter) routeKey(route *routeapi.Route) string {
// Namespace can contain dashes, so ${namespace}-${name} is not
// unique, use an underscore instead - ${namespace}_${name} akin
// to the way domain keys/service records use it ala
// _$service.$proto.$name.
// Note here that underscore (_) is not a valid DNS character and
// is just used for the key name and not for the record/route name.
// This also helps the use case for the key used as a router config
// file name.
return fmt.Sprintf("%s_%s", route.Namespace, route.Name)
}
// AddRoute adds a route for the given service id
func (r *templateRouter) AddRoute(serviceID string, weight int32, route *routeapi.Route, host string) bool {
backendKey := r.routeKey(route)
wantsWildcardSupport := (route.Spec.WildcardPolicy == routeapi.WildcardPolicySubdomain)
// The router config trumps what the route asks for/wants.
wildcard := r.allowWildcardRoutes && wantsWildcardSupport
config, ok := r.state[backendKey]
if !ok {
config = ServiceAliasConfig{
Name: route.Name,
Namespace: route.Namespace,
Host: host,
Path: route.Spec.Path,
IsWildcard: wildcard,
Annotations: route.Annotations,
ServiceUnitNames: make(map[string]int32),
}
if route.Spec.Port != nil {
config.PreferPort = route.Spec.Port.TargetPort.String()
}
tls := route.Spec.TLS
if tls != nil && len(tls.Termination) > 0 {
config.TLSTermination = tls.Termination
if tls.Termination == routeapi.TLSTerminationEdge {
config.InsecureEdgeTerminationPolicy = tls.InsecureEdgeTerminationPolicy
}
if tls.Termination != routeapi.TLSTerminationPassthrough {
if config.Certificates == nil {
config.Certificates = make(map[string]Certificate)
}
if len(tls.Certificate) > 0 {
certKey := generateCertKey(&config)
cert := Certificate{
ID: backendKey,
Contents: tls.Certificate,
PrivateKey: tls.Key,
}
config.Certificates[certKey] = cert
}
if len(tls.CACertificate) > 0 {
caCertKey := generateCACertKey(&config)
caCert := Certificate{
ID: backendKey,
Contents: tls.CACertificate,
}
config.Certificates[caCertKey] = caCert
}
if len(tls.DestinationCACertificate) > 0 {
destCertKey := generateDestCertKey(&config)
destCert := Certificate{
ID: backendKey,
Contents: tls.DestinationCACertificate,
}
config.Certificates[destCertKey] = destCert
}
}
}
}
key := fmt.Sprintf("%s %s", config.TLSTermination, backendKey)
config.RoutingKeyName = fmt.Sprintf("%x", md5.Sum([]byte(key)))
r.lock.Lock()
defer r.lock.Unlock()
frontend, _ := r.findMatchingServiceUnit(serviceID)
//create or replace
config.ServiceUnitNames[frontend.Name] = weight
r.state[backendKey] = config
r.serviceUnits[serviceID] = frontend
//r.cleanUpdates(serviceID, backendKey)
return true
}
// RemoveRoute removes the given route
func (r *templateRouter) RemoveRoute(route *routeapi.Route) {
r.lock.Lock()
defer r.lock.Unlock()
routeKey := r.routeKey(route)
serviceAliasConfig, ok := r.state[routeKey]
if !ok {
return
}
r.cleanUpServiceAliasConfig(&serviceAliasConfig)
delete(r.state, routeKey)
}
// AddEndpoints adds new Endpoints for the given id.
func (r *templateRouter) AddEndpoints(id string, endpoints []Endpoint) bool {
r.lock.Lock()
defer r.lock.Unlock()
frontend, _ := r.findMatchingServiceUnit(id)
//only make the change if there is a difference
if reflect.DeepEqual(frontend.EndpointTable, endpoints) {
glog.V(4).Infof("Ignoring change for %s, endpoints are the same", id)
return false
}
frontend.EndpointTable = endpoints
r.serviceUnits[id] = frontend
if id == r.peerEndpointsKey {
r.peerEndpoints = frontend.EndpointTable
glog.V(4).Infof("Peer endpoints updated to: %#v", r.peerEndpoints)
}
return true
}
// cleanUpServiceAliasConfig performs any necessary steps to clean up a service alias config before deleting it from
// the router. Right now the only clean up step is to remove any of the certificates on disk.
func (r *templateRouter) cleanUpServiceAliasConfig(cfg *ServiceAliasConfig) {
err := r.certManager.DeleteCertificatesForConfig(cfg)
if err != nil {
glog.Errorf("Error deleting certificates for route %s, the route will still be deleted but files may remain in the container: %v", cfg.Host, err)
}
}
func cmpStrSlices(first []string, second []string) bool {
if len(first) != len(second) {
return false
}
for _, fi := range first {
found := false
for _, si := range second {
if fi == si {
found = true
break
}
}
if !found {
return false
}
}
return true
}
// shouldWriteCerts determines if the router should ask the cert manager to write out certificates
// it will return true if a route is edge or reencrypt and it has all the required (host/key) certificates
// defined. If the route does not have the certificates defined it will log an info message if the
// router is configured with a default certificate and assume the route is meant to be a wildcard. Otherwise
// it will log a warning. The route will still be written but users may receive browser errors
// for a host/cert mismatch
func (r *templateRouter) shouldWriteCerts(cfg *ServiceAliasConfig) bool {
if cfg.Certificates == nil {
return false
}
if cfg.TLSTermination == routeapi.TLSTerminationEdge || cfg.TLSTermination == routeapi.TLSTerminationReencrypt {
if hasRequiredEdgeCerts(cfg) {
return true
}
if cfg.TLSTermination == routeapi.TLSTerminationReencrypt && hasReencryptDestinationCACert(cfg) {
glog.V(4).Infof("a reencrypt route with host %s does not have an edge certificate, using default router certificate", cfg.Host)
return true
}
msg := fmt.Sprintf("a %s terminated route with host %s does not have the required certificates. The route will still be created but no certificates will be written",
cfg.TLSTermination, cfg.Host)
// if a default cert is configured we'll assume it is meant to be a wildcard and only log info
// otherwise we'll consider this a warning
if len(r.defaultCertificate) > 0 {
glog.V(4).Info(msg)
} else {
glog.Warning(msg)
}
return false
}
return false
}
// SetSkipCommit indicates to the router whether requests to
// commit/reload should be skipped.
func (r *templateRouter) SetSkipCommit(skipCommit bool) {
if r.skipCommit != skipCommit {
glog.V(4).Infof("Updating skip commit to: %t", skipCommit)
r.skipCommit = skipCommit
}
}
// HasServiceUnit attempts to retrieve a service unit for the given
// key, returning a boolean indication of whether the key is known.
func (r *templateRouter) HasServiceUnit(key string) bool {
r.lock.Lock()
defer r.lock.Unlock()
_, ok := r.findMatchingServiceUnit(key)
return ok
}
// hasRequiredEdgeCerts ensures that at least a host certificate and key are provided.
// a ca cert is not required because it may be something that is in the root cert chain
func hasRequiredEdgeCerts(cfg *ServiceAliasConfig) bool {
hostCert, ok := cfg.Certificates[cfg.Host]
return ok && len(hostCert.Contents) > 0 && len(hostCert.PrivateKey) > 0
}
// hasReencryptDestinationCACert checks whether a destination CA certificate has been provided.
func hasReencryptDestinationCACert(cfg *ServiceAliasConfig) bool {
destCertKey := generateDestCertKey(cfg)
destCACert, ok := cfg.Certificates[destCertKey]
return ok && len(destCACert.Contents) > 0
}
func generateCertKey(config *ServiceAliasConfig) string {
return config.Host
}
func generateCACertKey(config *ServiceAliasConfig) string {
return config.Host + caCertPostfix
}
func generateDestCertKey(config *ServiceAliasConfig) string {
return config.Host + destCertPostfix
}