forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
unique_host.go
240 lines (200 loc) · 8.58 KB
/
unique_host.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
package controller
import (
"fmt"
"strings"
"github.com/golang/glog"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/watch"
kapi "k8s.io/kubernetes/pkg/apis/core"
routeapi "github.com/openshift/origin/pkg/route/apis/route"
"github.com/openshift/origin/pkg/route/apis/route/validation"
"github.com/openshift/origin/pkg/router"
"github.com/openshift/origin/pkg/router/controller/hostindex"
)
// RouteHostFunc returns a host for a route. It may return an empty string.
type RouteHostFunc func(*routeapi.Route) string
// HostForRoute returns the host set on the route.
func HostForRoute(route *routeapi.Route) string {
return route.Spec.Host
}
// UniqueHost implements the router.Plugin interface to provide
// a template based, backend-agnostic router.
type UniqueHost struct {
plugin router.Plugin
recorder RejectionRecorder
// nil means different than empty
allowedNamespaces sets.String
// index tracks the set of active routes and the set of routes
// that cannot be admitted due to ownership restrictions
index hostindex.Interface
}
// NewUniqueHost creates a plugin wrapper that ensures only unique routes are passed into
// the underlying plugin. Recorder is an interface for indicating why a route was
// rejected.
func NewUniqueHost(plugin router.Plugin, disableOwnershipCheck bool, recorder RejectionRecorder) *UniqueHost {
routeActivationFn := hostindex.SameNamespace
if disableOwnershipCheck {
routeActivationFn = hostindex.OldestFirst
}
return &UniqueHost{
plugin: plugin,
recorder: recorder,
index: hostindex.New(routeActivationFn),
}
}
// RoutesForHost is a helper that allows routes to be retrieved.
func (p *UniqueHost) RoutesForHost(host string) ([]*routeapi.Route, bool) {
routes, ok := p.index.RoutesForHost(host)
return routes, ok
}
// HostLen returns the number of hosts currently tracked by this plugin.
func (p *UniqueHost) HostLen() int {
return p.index.HostLen()
}
// HandleEndpoints processes watch events on the Endpoints resource.
func (p *UniqueHost) HandleEndpoints(eventType watch.EventType, endpoints *kapi.Endpoints) error {
if p.allowedNamespaces != nil && !p.allowedNamespaces.Has(endpoints.Namespace) {
return nil
}
return p.plugin.HandleEndpoints(eventType, endpoints)
}
// HandleNode processes watch events on the Node resource and calls the router
func (p *UniqueHost) HandleNode(eventType watch.EventType, node *kapi.Node) error {
return p.plugin.HandleNode(eventType, node)
}
// 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 *UniqueHost) HandleRoute(eventType watch.EventType, route *routeapi.Route) error {
if p.allowedNamespaces != nil && !p.allowedNamespaces.Has(route.Namespace) {
return nil
}
routeName := routeNameKey(route)
host := route.Spec.Host
if len(host) == 0 {
glog.V(4).Infof("Route %s has no host value", routeName)
p.recorder.RecordRouteRejection(route, "NoHostValue", "no host value was defined for the route")
p.plugin.HandleRoute(watch.Deleted, route)
return nil
}
// Validate that the route host name conforms to DNS requirements.
// Defends against routes created before validation rules were added for host names.
if errs := validation.ValidateHostName(route); len(errs) > 0 {
glog.V(4).Infof("Route %s - invalid host name %s", routeName, host)
errMessages := make([]string, len(errs))
for i := 0; i < len(errs); i++ {
errMessages[i] = errs[i].Error()
}
err := fmt.Errorf("host name validation errors: %s", strings.Join(errMessages, ", "))
p.recorder.RecordRouteRejection(route, "InvalidHost", err.Error())
p.plugin.HandleRoute(watch.Deleted, route)
return err
}
// Add the route to the index and see whether it is exposed. If this change results in
// other routes being exposed, notify the lower plugin. Report back to the end user when
// their route does not get exposed.
switch eventType {
case watch.Deleted:
glog.V(4).Infof("Deleting route %s", routeName)
changes := p.index.Remove(route)
owner := "<unknown>"
if old, ok := p.index.RoutesForHost(host); ok && len(old) > 0 {
owner = old[0].Namespace
}
// perform activations first so that the other routes exist before we alter this route
for _, other := range changes.GetActivated() {
if err := p.plugin.HandleRoute(watch.Added, other); err != nil {
utilruntime.HandleError(fmt.Errorf("unable to activate route %s/%s that was previously hidden by another route: %v", other.Namespace, other.Name, err))
}
}
// displaced routes must be deleted in nested plugins
for _, other := range changes.GetDisplaced() {
glog.V(4).Infof("route %s being deleted caused %s/%s to no longer be exposed", routeName, other.Namespace, other.Name)
p.recorder.RecordRouteRejection(other, "HostAlreadyClaimed", fmt.Sprintf("namespace %s owns hostname %s", owner, host))
if err := p.plugin.HandleRoute(watch.Deleted, other); err != nil {
utilruntime.HandleError(fmt.Errorf("unable to clear route %s/%s that was previously exposed: %v", other.Namespace, other.Name, err))
}
}
return p.plugin.HandleRoute(eventType, route)
case watch.Added, watch.Modified:
removed := false
var nestedErr error
changes, newRoute := p.index.Add(route)
// perform activations first so that the other routes exist before we alter this route
for _, other := range changes.GetActivated() {
// we activated other routes
if other != route {
if err := p.plugin.HandleRoute(watch.Added, other); err != nil {
utilruntime.HandleError(fmt.Errorf("unable to activate route %s/%s that was previously hidden by another route: %v", other.Namespace, other.Name, err))
}
continue
}
nestedErr = p.plugin.HandleRoute(eventType, other)
}
// displaced routes must be deleted in nested plugins
for _, other := range changes.GetDisplaced() {
// adding this route displaced others
if other != route {
glog.V(4).Infof("route %s will replace path %s from %s because it is older", routeName, route.Spec.Path, other.Name)
p.recorder.RecordRouteRejection(other, "HostAlreadyClaimed", fmt.Sprintf("replaced by older route %s", route.Name))
if err := p.plugin.HandleRoute(watch.Deleted, other); err != nil {
utilruntime.HandleError(fmt.Errorf("unable to clear route %s/%s that was previously exposed: %v", other.Namespace, other.Name, err))
}
continue
}
// we were not added because another route is covering us
removed = true
var owner *routeapi.Route
if old, ok := p.index.RoutesForHost(host); ok && len(old) > 0 {
owner = old[0]
} else {
owner = &routeapi.Route{}
owner.Name = "<unknown>"
}
glog.V(4).Infof("Route %s cannot take %s from %s/%s", routeName, host, owner.Namespace, owner.Name)
if owner.Namespace == route.Namespace {
p.recorder.RecordRouteRejection(route, "HostAlreadyClaimed", fmt.Sprintf("route %s already exposes %s and is older", owner.Name, host))
} else {
p.recorder.RecordRouteRejection(route, "HostAlreadyClaimed", fmt.Sprintf("a route in another namespace holds %s and is older than %s", host, route.Name))
}
// if this is the first time we've seen this route, we don't have to notify nested plugins
if !newRoute {
// indicate to lower plugins that the route should not be shown
if err := p.plugin.HandleRoute(watch.Deleted, route); err != nil {
utilruntime.HandleError(fmt.Errorf("unable to clear route %s: %v", routeName, err))
}
}
}
// // ensure we pass down modifications
// if !added && !removed {
// if err := p.plugin.HandleRoute(watch.Modified, route); err != nil {
// utilruntime.HandleError(fmt.Errorf("unable to modify route %s: %v", routeName, err))
// }
// }
if removed {
return fmt.Errorf("another route has claimed this host")
}
return nestedErr
default:
return fmt.Errorf("unrecognized watch type: %v", eventType)
}
}
// HandleNamespaces limits the scope of valid routes to only those that match
// the provided namespace list.
func (p *UniqueHost) HandleNamespaces(namespaces sets.String) error {
p.allowedNamespaces = namespaces
p.index.Filter(func(route *routeapi.Route) bool {
return namespaces.Has(route.Namespace)
})
return p.plugin.HandleNamespaces(namespaces)
}
// Commit invokes the nested plugin to commit.
func (p *UniqueHost) Commit() error {
return p.plugin.Commit()
}
// routeNameKey returns a unique name for a given route
func routeNameKey(route *routeapi.Route) string {
return fmt.Sprintf("%s/%s", route.Namespace, route.Name)
}