-
Notifications
You must be signed in to change notification settings - Fork 331
/
webhook.go
260 lines (216 loc) · 7.44 KB
/
webhook.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
/*
Copyright 2017 The Knative Authors
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 webhook
import (
"context"
"crypto/tls"
"errors"
"fmt"
"net/http"
"time"
// Injection stuff
kubeclient "knative.dev/pkg/client/injection/kube/client"
kubeinformerfactory "knative.dev/pkg/injection/clients/namespacedkube/informers/factory"
"go.uber.org/zap"
"golang.org/x/sync/errgroup"
admissionv1 "k8s.io/api/admission/v1"
"k8s.io/client-go/kubernetes"
corelisters "k8s.io/client-go/listers/core/v1"
"knative.dev/pkg/logging"
"knative.dev/pkg/network"
"knative.dev/pkg/system"
certresources "knative.dev/pkg/webhook/certificates/resources"
)
// Options contains the configuration for the webhook
type Options struct {
// ServiceName is the service name of the webhook.
ServiceName string
// SecretName is the name of k8s secret that contains the webhook
// server key/cert and corresponding CA cert that signed them. The
// server key/cert are used to serve the webhook and the CA cert
// is provided to k8s apiserver during admission controller
// registration.
SecretName string
// Port where the webhook is served. Per k8s admission
// registration requirements this should be 443 unless there is
// only a single port for the service.
Port int
// StatsReporter reports metrics about the webhook.
// This will be automatically initialized by the constructor if left uninitialized.
StatsReporter StatsReporter
}
// Operation is the verb being operated on
// it is aliasde in Validation from the k8s admission package
type Operation = admissionv1.Operation
// Operation types
const (
Create Operation = admissionv1.Create
Update Operation = admissionv1.Update
Delete Operation = admissionv1.Delete
Connect Operation = admissionv1.Connect
)
// Webhook implements the external webhook for validation of
// resources and configuration.
type Webhook struct {
Client kubernetes.Interface
Options Options
Logger *zap.SugaredLogger
// synced is function that is called when the informers have been synced.
synced context.CancelFunc
// stopCh is closed when we should start failing readiness probes.
stopCh chan struct{}
// grace period is how long to wait after failing readiness probes
// before shutting down.
gracePeriod time.Duration
mux http.ServeMux
secretlister corelisters.SecretLister
}
// New constructs a Webhook
func New(
ctx context.Context,
controllers []interface{},
) (webhook *Webhook, err error) {
// ServeMux.Handle panics on duplicate paths
defer func() {
if r := recover(); r != nil {
err = fmt.Errorf("error creating webhook %v", r)
}
}()
client := kubeclient.Get(ctx)
// Injection is too aggressive for this case because by simply linking this
// library we force consumers to have secret access. If we require that one
// of the admission controllers' informers *also* require the secret
// informer, then we can fetch the shared informer factory here and produce
// a new secret informer from it.
secretInformer := kubeinformerfactory.Get(ctx).Core().V1().Secrets()
opts := GetOptions(ctx)
if opts == nil {
return nil, errors.New("context must have Options specified")
}
logger := logging.FromContext(ctx)
if opts.StatsReporter == nil {
reporter, err := NewStatsReporter()
if err != nil {
return nil, err
}
opts.StatsReporter = reporter
}
syncCtx, cancel := context.WithCancel(context.Background())
webhook = &Webhook{
Client: client,
Options: *opts,
secretlister: secretInformer.Lister(),
Logger: logger,
synced: cancel,
stopCh: make(chan struct{}),
gracePeriod: network.DefaultDrainTimeout,
}
webhook.mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
http.Error(w, fmt.Sprintf("no controller registered for: %s", r.URL.Path), http.StatusBadRequest)
})
for _, controller := range controllers {
switch c := controller.(type) {
case AdmissionController:
handler := admissionHandler(logger, opts.StatsReporter, c, syncCtx.Done())
webhook.mux.Handle(c.Path(), handler)
case ConversionController:
handler := conversionHandler(logger, opts.StatsReporter, c)
webhook.mux.Handle(c.Path(), handler)
default:
return nil, fmt.Errorf("unknown webhook controller type: %T", controller)
}
}
return
}
// InformersHaveSynced is called when the informers have all been synced, which allows any outstanding
// admission webhooks through.
func (wh *Webhook) InformersHaveSynced() {
wh.synced()
wh.Logger.Info("Informers have been synced, unblocking admission webhooks.")
}
// Run implements the admission controller run loop.
func (wh *Webhook) Run(stop <-chan struct{}) error {
logger := wh.Logger
ctx := logging.WithLogger(context.Background(), logger)
server := &http.Server{
Handler: wh,
Addr: fmt.Sprintf(":%d", wh.Options.Port),
TLSConfig: &tls.Config{
GetCertificate: func(*tls.ClientHelloInfo) (*tls.Certificate, error) {
secret, err := wh.secretlister.Secrets(system.Namespace()).Get(wh.Options.SecretName)
if err != nil {
return nil, err
}
serverKey, ok := secret.Data[certresources.ServerKey]
if !ok {
return nil, errors.New("server key missing")
}
serverCert, ok := secret.Data[certresources.ServerCert]
if !ok {
return nil, errors.New("server cert missing")
}
cert, err := tls.X509KeyPair(serverCert, serverKey)
if err != nil {
return nil, err
}
return &cert, nil
},
},
}
eg, ctx := errgroup.WithContext(ctx)
eg.Go(func() error {
if err := server.ListenAndServeTLS("", ""); err != nil && err != http.ErrServerClosed {
logger.Errorw("ListenAndServeTLS for admission webhook returned error", zap.Error(err))
return err
}
return nil
})
select {
case <-stop:
eg.Go(func() error {
// Start failing readiness probes immediately.
logger.Info("Starting to fail readiness probes...")
close(wh.stopCh)
// Wait for a grace period for the above to take effect and this Pod's
// endpoint to be removed from the webhook service's Endpoints.
// For this to be effective, it must be greater than the probe's
// periodSeconds times failureThreshold by a margin suitable to
// propagate the new Endpoints data across the cluster.
time.Sleep(wh.gracePeriod)
return server.Shutdown(context.Background())
})
// Wait for all outstanding go routined to terminate, including our new one.
return eg.Wait()
case <-ctx.Done():
return fmt.Errorf("webhook server bootstrap failed %w", ctx.Err())
}
}
func (wh *Webhook) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Respond to probes regardless of path.
if network.IsKubeletProbe(r) {
select {
case <-wh.stopCh:
http.Error(w, "shutting down", http.StatusInternalServerError)
default:
w.WriteHeader(http.StatusOK)
}
return
}
// Verify the content type is accurate.
contentType := r.Header.Get("Content-Type")
if contentType != "application/json" {
http.Error(w, "invalid Content-Type, want `application/json`", http.StatusUnsupportedMediaType)
return
}
wh.mux.ServeHTTP(w, r)
}