-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_helper.go
273 lines (232 loc) · 9.1 KB
/
template_helper.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
package templaterouter
import (
"fmt"
"math/rand"
"os"
"path"
"regexp"
"sort"
"strconv"
"strings"
"text/template"
"github.com/golang/glog"
routeapi "github.com/openshift/origin/pkg/route/apis/route"
templateutil "github.com/openshift/origin/pkg/router/template/util"
haproxyutil "github.com/openshift/origin/pkg/router/template/util/haproxy"
)
const (
certConfigMap = "cert_config.map"
)
func isTrue(s string) bool {
v, _ := strconv.ParseBool(s)
return v
}
func firstMatch(pattern string, values ...string) string {
glog.V(7).Infof("firstMatch called with %s and %v", pattern, values)
if re, err := regexp.Compile(`\A(?:` + pattern + `)\z`); err == nil {
for _, value := range values {
if re.MatchString(value) {
glog.V(7).Infof("firstMatch returning string: %s", value)
return value
}
}
glog.V(7).Infof("firstMatch returning empty string")
} else {
glog.Errorf("Error with regex pattern in call to firstMatch: %v", err)
}
return ""
}
func env(name string, defaults ...string) string {
if envValue := os.Getenv(name); envValue != "" {
return envValue
}
for _, val := range defaults {
if val != "" {
return val
}
}
return ""
}
func isInteger(s string) bool {
_, err := strconv.Atoi(s)
return (err == nil)
}
func matchValues(s string, allowedValues ...string) bool {
glog.V(7).Infof("matchValues called with %s and %v", s, allowedValues)
for _, value := range allowedValues {
if value == s {
glog.V(7).Infof("matchValues finds matching string: %s", s)
return true
}
}
glog.V(7).Infof("matchValues cannot match string: %s", s)
return false
}
func matchPattern(pattern, s string) bool {
glog.V(7).Infof("matchPattern called with %s and %s", pattern, s)
status, err := regexp.MatchString(`\A(?:`+pattern+`)\z`, s)
if err == nil {
glog.V(7).Infof("matchPattern returning status: %v", status)
return status
}
glog.Errorf("Error with regex pattern in call to matchPattern: %v", err)
return false
}
// genSubdomainWildcardRegexp is now legacy and around for backward
// compatibility and allows old templates to continue running.
// 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)
}
// generateRouteRegexp is now legacy and around for backward
// compatibility and allows old templates to continue running.
// Generate a regular expression to match route hosts (and paths if any).
func generateRouteRegexp(hostname, path string, wildcard bool) string {
return templateutil.GenerateRouteRegexp(hostname, path, wildcard)
}
// genCertificateHostName is now legacy and around for backward
// compatibility and allows old templates to continue running.
// 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 {
return templateutil.GenCertificateHostName(hostname, wildcard)
}
// processEndpointsForAlias returns the list of endpoints for the given route's service
// action argument further processes the list e.g. shuffle
// The default action is in-order traversal of internal data structure that stores
// the endpoints (does not change the return order if the data structure did not mutate)
func processEndpointsForAlias(alias ServiceAliasConfig, svc ServiceUnit, action string) []Endpoint {
endpoints := endpointsForAlias(alias, svc)
if strings.ToLower(action) == "shuffle" {
for i := len(endpoints) - 1; i >= 0; i-- {
rIndex := rand.Intn(i + 1)
endpoints[i], endpoints[rIndex] = endpoints[rIndex], endpoints[i]
}
}
return endpoints
}
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
}
// backendConfig returns a haproxy backend config for a given service alias.
func backendConfig(name string, cfg ServiceAliasConfig, hascert bool) *haproxyutil.BackendConfig {
return &haproxyutil.BackendConfig{
Name: name,
Host: cfg.Host,
Path: cfg.Path,
IsWildcard: cfg.IsWildcard,
Termination: cfg.TLSTermination,
InsecurePolicy: cfg.InsecureEdgeTerminationPolicy,
HasCertificate: hascert,
}
}
// generateHAProxyCertConfigMap generates haproxy certificate config map contents.
func generateHAProxyCertConfigMap(td templateData) []string {
lines := make([]string, 0)
for k, cfg := range td.State {
hascert := false
if len(cfg.Host) > 0 {
cert, ok := cfg.Certificates[cfg.Host]
hascert = ok && len(cert.Contents) > 0
}
backendConfig := backendConfig(k, cfg, hascert)
if entry := haproxyutil.GenerateMapEntry(certConfigMap, backendConfig); entry != nil {
fqCertPath := path.Join(td.WorkingDir, "certs", entry.Key)
lines = append(lines, fmt.Sprintf("%s %s", fqCertPath, entry.Value))
}
}
sort.Sort(sort.Reverse(sort.StringSlice(lines)))
return lines
}
// getHTTPAliasesGroupedByHost returns HTTP(S) aliases grouped by their host.
func getHTTPAliasesGroupedByHost(aliases map[string]ServiceAliasConfig) map[string]map[string]ServiceAliasConfig {
result := make(map[string]map[string]ServiceAliasConfig)
for k, a := range aliases {
if a.TLSTermination == routeapi.TLSTerminationPassthrough {
continue
}
if _, exists := result[a.Host]; !exists {
result[a.Host] = make(map[string]ServiceAliasConfig)
}
result[a.Host][k] = a
}
return result
}
// getPrimaryAliasKey returns the key of the primary alias for a group of aliases.
// It is assumed that all input aliases have the same host.
// In case of a single alias, the primary alias is the alias itself.
// In case of multiple alias with no TSL termination (Edge or Passthrough),
// the primary alias is the alphabetically last alias.
// In case of multiple aliases, some of them with TLS termination, the primary alias is
// the alphabetically last alias among the TLS aliases.
func getPrimaryAliasKey(aliases map[string]ServiceAliasConfig) string {
if len(aliases) == 0 {
return ""
}
if len(aliases) == 1 {
for k := range aliases {
return k
}
}
keys := make([]string, len(aliases))
for k := range aliases {
keys = append(keys, k)
}
sort.Sort(sort.Reverse(sort.StringSlice(keys)))
for _, k := range keys {
if aliases[k].TLSTermination == routeapi.TLSTerminationEdge || aliases[k].TLSTermination == routeapi.TLSTerminationReencrypt {
return k
}
}
return keys[0]
}
// generateHAProxyMap generates a named haproxy certificate config map contents.
func generateHAProxyMap(name string, td templateData) []string {
if name == certConfigMap {
return generateHAProxyCertConfigMap(td)
}
lines := make([]string, 0)
for k, cfg := range td.State {
backendConfig := backendConfig(k, cfg, false)
if entry := haproxyutil.GenerateMapEntry(name, backendConfig); entry != nil {
lines = append(lines, fmt.Sprintf("%s %s", entry.Key, entry.Value))
}
}
return templateutil.SortMapPaths(lines, `^[^\.]*\.`)
}
var helperFunctions = template.FuncMap{
"endpointsForAlias": endpointsForAlias, //returns the list of valid endpoints
"processEndpointsForAlias": processEndpointsForAlias, //returns the list of valid endpoints after processing them
"env": env, //tries to get an environment variable, returns the first non-empty default value or "" on failure
"matchPattern": matchPattern, //anchors provided regular expression and evaluates against given string
"isInteger": isInteger, //determines if a given variable is an integer
"matchValues": matchValues, //compares a given string to a list of allowed strings
"genSubdomainWildcardRegexp": genSubdomainWildcardRegexp, //generates a regular expression matching the subdomain for hosts (and paths) with a wildcard policy
"generateRouteRegexp": generateRouteRegexp, //generates a regular expression matching the route hosts (and paths)
"genCertificateHostName": genCertificateHostName, //generates host name to use for serving/matching certificates
"isTrue": isTrue, //determines if a given variable is a true value
"firstMatch": firstMatch, //anchors provided regular expression and evaluates against given strings, returns the first matched string or ""
"getHTTPAliasesGroupedByHost": getHTTPAliasesGroupedByHost, //returns HTTP(S) aliases grouped by their host
"getPrimaryAliasKey": getPrimaryAliasKey, //returns the key of the primary alias for a group of aliases
"generateHAProxyMap": generateHAProxyMap, //generates a haproxy map content
}