forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.go
348 lines (299 loc) · 11.6 KB
/
plugin.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
package templaterouter
import (
"crypto/md5"
"fmt"
"os"
"path/filepath"
"strconv"
"text/template"
"time"
"github.com/golang/glog"
kapi "k8s.io/kubernetes/pkg/api"
ktypes "k8s.io/kubernetes/pkg/types"
utilruntime "k8s.io/kubernetes/pkg/util/runtime"
"k8s.io/kubernetes/pkg/util/sets"
"k8s.io/kubernetes/pkg/watch"
routeapi "github.com/openshift/origin/pkg/route/api"
unidlingapi "github.com/openshift/origin/pkg/unidling/api"
)
// TemplatePlugin implements the router.Plugin interface to provide
// a template based, backend-agnostic router.
type TemplatePlugin struct {
Router routerInterface
IncludeUDP bool
ServiceFetcher ServiceLookup
}
func newDefaultTemplatePlugin(router routerInterface, includeUDP bool, lookupSvc ServiceLookup) *TemplatePlugin {
return &TemplatePlugin{
Router: router,
IncludeUDP: includeUDP,
ServiceFetcher: lookupSvc,
}
}
type TemplatePluginConfig struct {
WorkingDir string
TemplatePath string
ReloadScriptPath string
ReloadInterval time.Duration
DefaultCertificate string
DefaultCertificatePath string
DefaultCertificateDir string
StatsPort int
StatsUsername string
StatsPassword string
IncludeUDP bool
AllowWildcardRoutes bool
PeerService *ktypes.NamespacedName
}
// routerInterface controls the interaction of the plugin with the underlying router implementation
type routerInterface interface {
// Mutative operations in this interface do not return errors.
// The only error state for these methods is when an unknown
// frontend key is used; all call sites make certain the frontend
// is created.
// HasServiceUnit indicates whether the router has a service unit
// for the given key.
HasServiceUnit(key string) bool
// CreateServiceUnit creates a new service named with the given id.
CreateServiceUnit(id string)
// FindServiceUnit finds the service with the given id.
FindServiceUnit(id string) (v ServiceUnit, ok bool)
// AddEndpoints adds new Endpoints for the given id. Returns true if a change was made
// and the state should be stored with Commit().
AddEndpoints(id string, endpoints []Endpoint) bool
// DeleteEndpoints deletes the endpoints for the frontend with the given id.
DeleteEndpoints(id string)
// AddRoute adds a route for the given id and the calculated host. Weight
// suggests the weightage attached to it with respect to other services
// pointed to by the route. Returns true if a
// change was made and the state should be stored with Commit().
AddRoute(id string, weight int32, route *routeapi.Route, host string) bool
// RemoveRoute removes the given route
RemoveRoute(route *routeapi.Route)
// Reduce the list of routes to only these namespaces
FilterNamespaces(namespaces sets.String)
// Commit applies the changes in the background. It kicks off a rate-limited
// commit (persist router state + refresh the backend) that coalesces multiple changes.
Commit()
// SetSkipCommit indicates to the router whether commits should be skipped
SetSkipCommit(skipCommit bool)
}
func env(name, defaultValue string) string {
if envValue := os.Getenv(name); envValue != "" {
return envValue
}
return defaultValue
}
// NewTemplatePlugin creates a new TemplatePlugin.
func NewTemplatePlugin(cfg TemplatePluginConfig, lookupSvc ServiceLookup) (*TemplatePlugin, error) {
templateBaseName := filepath.Base(cfg.TemplatePath)
globalFuncs := template.FuncMap{
"endpointsForAlias": endpointsForAlias, //returns the list of valid endpoints
"env": env, //tries to get an environment variable if it can't return a default
"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
"genCertificateHostName": genCertificateHostName, //generates host name to use for serving/matching certificates
}
masterTemplate, err := template.New("config").Funcs(globalFuncs).ParseFiles(cfg.TemplatePath)
if err != nil {
return nil, err
}
templates := map[string]*template.Template{}
for _, template := range masterTemplate.Templates() {
if template.Name() == templateBaseName {
continue
}
templates[template.Name()] = template
}
peerKey := ""
if cfg.PeerService != nil {
peerKey = peerEndpointsKey(*cfg.PeerService)
}
templateRouterCfg := templateRouterCfg{
dir: cfg.WorkingDir,
templates: templates,
reloadScriptPath: cfg.ReloadScriptPath,
reloadInterval: cfg.ReloadInterval,
defaultCertificate: cfg.DefaultCertificate,
defaultCertificatePath: cfg.DefaultCertificatePath,
defaultCertificateDir: cfg.DefaultCertificateDir,
statsUser: cfg.StatsUsername,
statsPassword: cfg.StatsPassword,
statsPort: cfg.StatsPort,
allowWildcardRoutes: cfg.AllowWildcardRoutes,
peerEndpointsKey: peerKey,
}
router, err := newTemplateRouter(templateRouterCfg)
return newDefaultTemplatePlugin(router, cfg.IncludeUDP, lookupSvc), err
}
// HandleEndpoints processes watch events on the Endpoints resource.
func (p *TemplatePlugin) HandleEndpoints(eventType watch.EventType, endpoints *kapi.Endpoints) error {
key := endpointsKey(endpoints)
glog.V(4).Infof("Processing %d Endpoints for Name: %v (%v)", len(endpoints.Subsets), endpoints.Name, eventType)
for i, s := range endpoints.Subsets {
glog.V(4).Infof(" Subset %d : %#v", i, s)
}
if _, ok := p.Router.FindServiceUnit(key); !ok {
p.Router.CreateServiceUnit(key)
}
switch eventType {
case watch.Added, watch.Modified:
glog.V(4).Infof("Modifying endpoints for %s", key)
routerEndpoints := createRouterEndpoints(endpoints, !p.IncludeUDP, p.ServiceFetcher)
key := endpointsKey(endpoints)
commit := p.Router.AddEndpoints(key, routerEndpoints)
if commit {
p.Router.Commit()
}
case watch.Deleted:
glog.V(4).Infof("Deleting endpoints for %s", key)
p.Router.DeleteEndpoints(key)
p.Router.Commit()
}
return nil
}
// HandleNode processes watch events on the Node resource
// The template type of plugin currently does not need to act on such events
// so the implementation just returns without error
func (p *TemplatePlugin) HandleNode(eventType watch.EventType, node *kapi.Node) error {
return nil
}
// HandleRoute processes watch events on the Route resource.
// TODO: this function can probably be collapsed with the router itself, as a function that
// determines which component needs to be recalculated (which template) and then does so
// on demand.
func (p *TemplatePlugin) HandleRoute(eventType watch.EventType, route *routeapi.Route) error {
serviceKeys, weights := routeKeys(route)
host := route.Spec.Host
switch eventType {
case watch.Added, watch.Modified:
// Delete the route first, because modify is to be treated as delete+add
p.Router.RemoveRoute(route)
// Now add the route back again
commit := false
for i := range serviceKeys {
key := serviceKeys[i]
weight := weights[i]
if _, ok := p.Router.FindServiceUnit(key); !ok {
glog.V(4).Infof("Creating new frontend for key: %v", key)
p.Router.CreateServiceUnit(key)
}
glog.V(4).Infof("Modifying routes for %s", key)
commitRoute := p.Router.AddRoute(key, weight, route, host)
commit = (map[bool]bool{true: true, false: commit})[commitRoute]
}
if commit {
p.Router.Commit()
}
case watch.Deleted:
glog.V(4).Infof("Deleting route %v", route)
p.Router.RemoveRoute(route)
p.Router.Commit()
}
return nil
}
// HandleAllowedNamespaces limits the scope of valid routes to only those that match
// the provided namespace list.
func (p *TemplatePlugin) HandleNamespaces(namespaces sets.String) error {
p.Router.FilterNamespaces(namespaces)
p.Router.Commit()
return nil
}
func (p *TemplatePlugin) SetLastSyncProcessed(processed bool) error {
p.Router.SetSkipCommit(!processed)
return nil
}
// routeKeys returns the internal router keys to use for the given Route.
// A route can have several services that it can point to, now
func routeKeys(route *routeapi.Route) ([]string, []int32) {
keys := make([]string, 1+len(route.Spec.AlternateBackends))
weights := make([]int32, 1+len(route.Spec.AlternateBackends))
keys[0] = fmt.Sprintf("%s/%s", route.Namespace, route.Spec.To.Name)
if route.Spec.To.Weight != nil {
weights[0] = *route.Spec.To.Weight
}
for i, svc := range route.Spec.AlternateBackends {
keys[i+1] = fmt.Sprintf("%s/%s", route.Namespace, svc.Name)
if svc.Weight != nil {
weights[i+1] = *svc.Weight
}
}
return keys, weights
}
// endpointsKey returns the internal router key to use for the given Endpoints.
func endpointsKey(endpoints *kapi.Endpoints) string {
return fmt.Sprintf("%s/%s", endpoints.Namespace, endpoints.Name)
}
// peerServiceKey may be used by the underlying router when handling endpoints to identify
// endpoints that belong to its peers. THIS MUST FOLLOW THE KEY STRATEGY OF endpointsKey. It
// receives a NamespacedName that is created from the service that is added by the oadm command
func peerEndpointsKey(namespacedName ktypes.NamespacedName) string {
return fmt.Sprintf("%s/%s", namespacedName.Namespace, namespacedName.Name)
}
// createRouterEndpoints creates openshift router endpoints based on k8s endpoints
func createRouterEndpoints(endpoints *kapi.Endpoints, excludeUDP bool, lookupSvc ServiceLookup) []Endpoint {
// check if this service is currently idled
wasIdled := false
subsets := endpoints.Subsets
if _, ok := endpoints.Annotations[unidlingapi.IdledAtAnnotation]; ok && len(endpoints.Subsets) == 0 {
service, err := lookupSvc.LookupService(endpoints)
if err != nil {
utilruntime.HandleError(fmt.Errorf("unable to find idled service corresponding to idled endpoints %s/%s: %v", endpoints.Namespace, endpoints.Name, err))
return []Endpoint{}
}
if service.Spec.ClusterIP == "" {
utilruntime.HandleError(fmt.Errorf("headless service %s/%s was marked as idled, but cannot setup unidling without a cluster IP", endpoints.Namespace, endpoints.Name))
return []Endpoint{}
}
svcSubset := kapi.EndpointSubset{
Addresses: []kapi.EndpointAddress{
{
IP: service.Spec.ClusterIP,
},
},
}
for _, port := range service.Spec.Ports {
endptPort := kapi.EndpointPort{
Name: port.Name,
Port: port.Port,
Protocol: port.Protocol,
}
svcSubset.Ports = append(svcSubset.Ports, endptPort)
}
subsets = []kapi.EndpointSubset{svcSubset}
wasIdled = true
}
out := make([]Endpoint, 0, len(endpoints.Subsets)*4)
// TODO: review me for sanity
for _, s := range subsets {
for _, p := range s.Ports {
if excludeUDP && p.Protocol == kapi.ProtocolUDP {
continue
}
for _, a := range s.Addresses {
ep := Endpoint{
ID: fmt.Sprintf("%s:%d", a.IP, p.Port),
IP: a.IP,
Port: strconv.Itoa(int(p.Port)),
PortName: p.Name,
NoHealthCheck: wasIdled,
}
if a.TargetRef != nil {
ep.TargetName = a.TargetRef.Name
} else {
ep.TargetName = ep.IP
}
// IdHash contains an obfuscated internal IP address
// that is the value passed in the cookie. The IP address
// is made more difficult to extract by including other
// internal information in the hash.
s := ep.ID + ep.TargetName + ep.PortName
ep.IdHash = fmt.Sprintf("%x", md5.Sum([]byte(s)))
out = append(out, ep)
}
}
}
return out
}