-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathreceiver_handlers.go
622 lines (533 loc) · 18.3 KB
/
receiver_handlers.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
/*
Copyright 2020 The Flux 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 server
import (
"bytes"
"context"
"crypto/hmac"
"crypto/sha1"
"encoding/base64"
"encoding/hex"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strings"
"time"
cdevents "github.com/cdevents/sdk-go/pkg/api"
cdevents04 "github.com/cdevents/sdk-go/pkg/api/v04"
"github.com/fluxcd/pkg/apis/meta"
"github.com/fluxcd/pkg/runtime/conditions"
"github.com/go-logr/logr"
"github.com/google/go-github/v64/github"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
apiv1 "github.com/fluxcd/notification-controller/api/v1"
)
const (
WebhookPathIndexKey string = ".metadata.webhookPath"
// maxRequestSizeBytes is the maximum size of a request to the API server
maxRequestSizeBytes int64 = 3 * 1024 * 1024
)
// defaultFluxAPIVersions is a map of Flux API kinds to their API versions.
var defaultFluxAPIVersions = map[string]string{
"Bucket": "source.toolkit.fluxcd.io/v1",
"HelmChart": "source.toolkit.fluxcd.io/v1",
"HelmRepository": "source.toolkit.fluxcd.io/v1",
"GitRepository": "source.toolkit.fluxcd.io/v1",
"OCIRepository": "source.toolkit.fluxcd.io/v1beta2",
"ImageRepository": "image.toolkit.fluxcd.io/v1beta2",
}
// IndexReceiverWebhookPath is a client.IndexerFunc that returns the Receiver's
// webhook path, if present in its status.
func IndexReceiverWebhookPath(o client.Object) []string {
receiver := o.(*apiv1.Receiver)
if receiver.Status.WebhookPath != "" {
return []string{receiver.Status.WebhookPath}
}
return nil
}
func (s *ReceiverServer) handlePayload(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
digest := url.PathEscape(strings.TrimPrefix(r.RequestURI, apiv1.ReceiverWebhookPath))
s.logger.Info(fmt.Sprintf("handling request: %s", digest))
var allReceivers apiv1.ReceiverList
err := s.kubeClient.List(ctx, &allReceivers, client.MatchingFields{
WebhookPathIndexKey: r.RequestURI,
}, client.Limit(1))
if err != nil {
s.logger.Error(err, "unable to list receivers")
w.WriteHeader(http.StatusInternalServerError)
return
}
if len(allReceivers.Items) == 0 {
w.WriteHeader(http.StatusNotFound)
return
}
receiver := allReceivers.Items[0]
logger := s.logger.WithValues(
"reconciler kind", apiv1.ReceiverKind,
"name", receiver.Name,
"namespace", receiver.Namespace)
if receiver.Spec.Suspend || !conditions.IsReady(&receiver) {
err := errors.New("unable to process request")
if receiver.Spec.Suspend {
logger.Error(err, "receiver is suspended")
} else {
logger.Error(err, "receiver is not ready")
}
w.WriteHeader(http.StatusServiceUnavailable)
return
}
if err := s.validate(ctx, receiver, r); err != nil {
logger.Error(err, "unable to validate payload")
w.WriteHeader(http.StatusBadRequest)
return
}
resourceFilter := func(ctx context.Context, o client.Object) (*bool, error) {
accept := true
return &accept, nil
}
if receiver.Spec.ResourceFilter != "" {
resourceFilter, err = newResourceFilter(receiver.Spec.ResourceFilter, r)
if err != nil {
logger.Error(err, "unable to create resource filter")
w.WriteHeader(http.StatusInternalServerError)
return
}
}
var withErrors bool
for _, resource := range receiver.Spec.Resources {
if err := s.requestReconciliation(ctx, logger, resource, receiver.Namespace, resourceFilter); err != nil {
logger.Error(err, "unable to request reconciliation", "resource", resource)
withErrors = true
}
}
if withErrors {
w.WriteHeader(http.StatusInternalServerError)
} else {
w.WriteHeader(http.StatusOK)
}
}
func (s *ReceiverServer) notifySingleResource(ctx context.Context, logger logr.Logger, resource *metav1.PartialObjectMetadata, resourceFilter resourceFilter) error {
objectKey := client.ObjectKeyFromObject(resource)
if err := s.kubeClient.Get(ctx, objectKey, resource); err != nil {
return fmt.Errorf("unable to read %s %q error: %w", resource.Kind, objectKey, err)
}
return s.notifyResource(ctx, logger, resource, resourceFilter)
}
func (s *ReceiverServer) notifyResource(ctx context.Context, logger logr.Logger, resource *metav1.PartialObjectMetadata, resourceFilter resourceFilter) error {
accept, err := resourceFilter(ctx, resource)
if err != nil {
return err
}
if !*accept {
logger.V(1).Info(fmt.Sprintf("resource '%s/%s.%s' NOT annotated because CEL expression returned false", resource.Kind, resource.Name, resource.Namespace))
return nil
}
if err := s.annotate(ctx, resource); err != nil {
return fmt.Errorf("failed to annotate resource: '%s/%s.%s': %w", resource.Kind, resource.Name, resource.Namespace, err)
} else {
logger.Info(fmt.Sprintf("resource '%s/%s.%s' annotated",
resource.Kind, resource.Name, resource.Namespace))
}
return nil
}
func (s *ReceiverServer) notifyDynamicResources(ctx context.Context, logger logr.Logger, resource apiv1.CrossNamespaceObjectReference, namespace, group, version string, resourceFilter resourceFilter) error {
if resource.MatchLabels == nil {
return fmt.Errorf("matchLabels field not set when using wildcard '*' as name")
}
logger.V(1).Info(fmt.Sprintf("annotate resources by matchLabel for kind %q in %q",
resource.Kind, namespace), "matchLabels", resource.MatchLabels)
var resources metav1.PartialObjectMetadataList
resources.SetGroupVersionKind(schema.GroupVersionKind{
Group: group,
Kind: resource.Kind,
Version: version,
})
if err := s.kubeClient.List(ctx, &resources,
client.InNamespace(namespace),
client.MatchingLabels(resource.MatchLabels),
); err != nil {
return fmt.Errorf("failed listing resources in namespace %q by matching labels %q: %w", namespace, resource.MatchLabels, err)
}
if len(resources.Items) == 0 {
noObjectsFoundErr := fmt.Errorf("no %q resources found with matching labels %q' in %q namespace", resource.Kind, resource.MatchLabels, namespace)
logger.Error(noObjectsFoundErr, "error annotating resources")
return nil
}
for i := range resources.Items {
if err := s.notifyResource(ctx, logger, &resources.Items[i], resourceFilter); err != nil {
return err
}
}
return nil
}
func (s *ReceiverServer) validate(ctx context.Context, receiver apiv1.Receiver, r *http.Request) error {
token, err := s.token(ctx, receiver)
if err != nil {
return fmt.Errorf("unable to read token, error: %w", err)
}
logger := s.logger.WithValues(
"reconciler kind", apiv1.ReceiverKind,
"name", receiver.Name,
"namespace", receiver.Namespace)
r.Body = io.NopCloser(io.LimitReader(r.Body, maxRequestSizeBytes))
switch receiver.Spec.Type {
case apiv1.GenericReceiver:
return nil
case apiv1.GenericHMACReceiver:
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
err = github.ValidateSignature(r.Header.Get("X-Signature"), b, []byte(token))
if err != nil {
return fmt.Errorf("unable to validate HMAC signature: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.GitHubReceiver:
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
_, err = github.ValidatePayload(r, []byte(token))
if err != nil {
return fmt.Errorf("the GitHub signature header is invalid, err: %w", err)
}
event := github.WebHookType(r)
if len(receiver.Spec.Events) > 0 {
allowed := false
for _, e := range receiver.Spec.Events {
if strings.EqualFold(event, e) {
allowed = true
break
}
}
if !allowed {
return fmt.Errorf("the GitHub event %q is not authorised", event)
}
}
logger.Info(fmt.Sprintf("handling GitHub event: %s", event))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.GitLabReceiver:
if r.Header.Get("X-Gitlab-Token") != token {
return fmt.Errorf("the X-Gitlab-Token header value does not match the receiver token")
}
event := r.Header.Get("X-Gitlab-Event")
if len(receiver.Spec.Events) > 0 {
allowed := false
for _, e := range receiver.Spec.Events {
if strings.EqualFold(event, e) {
allowed = true
break
}
}
if !allowed {
return fmt.Errorf("the GitLab event %q is not authorised", event)
}
}
logger.Info(fmt.Sprintf("handling GitLab event: %s", event))
return nil
case apiv1.CDEventsReceiver:
event := r.Header.Get("Ce-Type")
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read CDEvent request body: %s", err)
}
cdevent, err := cdevents04.NewFromJsonBytes(b)
if err != nil {
return fmt.Errorf("unable to validate CDEvent event: %s", err)
}
err = cdevents.Validate(cdevent)
if err != nil {
return fmt.Errorf("unable to validate CDEvent event: %s", err)
}
if len(receiver.Spec.Events) > 0 {
allowed := false
for _, e := range receiver.Spec.Events {
if strings.EqualFold(event, e) {
allowed = true
break
}
}
if !allowed {
return fmt.Errorf("the CDEvent %q is not authorised", event)
}
}
logger.Info(fmt.Sprintf("handling CDEvent: %s", event))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.BitbucketReceiver:
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
_, err = github.ValidatePayload(r, []byte(token))
if err != nil {
return fmt.Errorf("the Bitbucket server signature header is invalid, err: %w", err)
}
event := r.Header.Get("X-Event-Key")
if len(receiver.Spec.Events) > 0 {
allowed := false
for _, e := range receiver.Spec.Events {
if strings.EqualFold(event, e) {
allowed = true
break
}
}
if !allowed {
return fmt.Errorf("the Bitbucket server event %q is not authorised", event)
}
}
logger.Info(fmt.Sprintf("handling Bitbucket server event: %s", event))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.QuayReceiver:
type payload struct {
DockerUrl string `json:"docker_url"`
UpdatedTags []string `json:"updated_tags"`
}
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
var p payload
if err := json.NewDecoder(r.Body).Decode(&p); err != nil {
return fmt.Errorf("cannot decode Quay webhook payload: %w", err)
}
logger.Info(fmt.Sprintf("handling Quay event from %s", p.DockerUrl))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.HarborReceiver:
if r.Header.Get("Authorization") != token {
return fmt.Errorf("the Harbor Authorization header value does not match the receiver token")
}
logger.Info("handling Harbor event")
return nil
case apiv1.DockerHubReceiver:
type payload struct {
PushData struct {
Tag string `json:"tag"`
} `json:"push_data"`
Repository struct {
URL string `json:"repo_url"`
} `json:"repository"`
}
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
var p payload
if err := json.NewDecoder(r.Body).Decode(&p); err != nil {
return fmt.Errorf("cannot decode DockerHub webhook payload")
}
logger.Info(fmt.Sprintf("handling DockerHub event from %s for tag %s", p.Repository.URL, p.PushData.Tag))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.GCRReceiver:
const tokenIndex = len("Bearer ")
type data struct {
Action string `json:"action"`
Digest string `json:"digest"`
Tag string `json:"tag"`
}
type payload struct {
Message struct {
Data string `json:"data"`
MessageID string `json:"messageId"`
PublishTime time.Time `json:"publishTime"`
Subscription string `json:"subscription"`
} `json:"message"`
}
err := authenticateGCRRequest(&http.Client{}, r.Header.Get("Authorization"), tokenIndex)
if err != nil {
return fmt.Errorf("cannot authenticate GCR request: %w", err)
}
var p payload
if err := json.NewDecoder(r.Body).Decode(&p); err != nil {
return fmt.Errorf("cannot decode GCR webhook payload: %w", err)
}
// The GCR payload is a Google PubSub event with the GCR event wrapped
// inside (in base64 JSON).
raw, _ := base64.StdEncoding.DecodeString(p.Message.Data)
var d data
err = json.Unmarshal(raw, &d)
if err != nil {
return fmt.Errorf("cannot decode GCR webhook body: %w", err)
}
logger.Info(fmt.Sprintf("handling GCR event from %s for tag %s", d.Digest, d.Tag))
encodedPayload, err := json.Marshal(d)
if err != nil {
return fmt.Errorf("cannot decode GCR webhook body: %w", err)
}
// This only puts the unwrapped event into the payload.
r.Body = io.NopCloser(bytes.NewReader(encodedPayload))
return nil
case apiv1.NexusReceiver:
signature := r.Header.Get("X-Nexus-Webhook-Signature")
if len(signature) == 0 {
return fmt.Errorf("Nexus signature is missing from header")
}
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("cannot read Nexus payload. error: %w", err)
}
if !verifyHmacSignature([]byte(token), signature, b) {
return fmt.Errorf("invalid Nexus signature")
}
type payload struct {
Action string `json:"action"`
RepositoryName string `json:"repositoryName"`
}
var p payload
if err := json.Unmarshal(b, &p); err != nil {
return fmt.Errorf("cannot decode Nexus webhook payload: %w", err)
}
logger.Info(fmt.Sprintf("handling Nexus event from %s", p.RepositoryName))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
case apiv1.ACRReceiver:
type target struct {
Repository string `json:"repository"`
Tag string `json:"tag"`
}
type payload struct {
Action string `json:"action"`
Target target `json:"target"`
}
b, err := io.ReadAll(r.Body)
if err != nil {
return fmt.Errorf("unable to read request body: %s", err)
}
r.Body = io.NopCloser(bytes.NewReader(b))
var p payload
if err := json.NewDecoder(r.Body).Decode(&p); err != nil {
return fmt.Errorf("cannot decode ACR webhook payload: %s", err)
}
logger.Info(fmt.Sprintf("handling ACR event from %s for tag %s", p.Target.Repository, p.Target.Tag))
r.Body = io.NopCloser(bytes.NewReader(b))
return nil
}
return fmt.Errorf("recevier type %q not supported", receiver.Spec.Type)
}
func (s *ReceiverServer) token(ctx context.Context, receiver apiv1.Receiver) (string, error) {
token := ""
secretName := types.NamespacedName{
Namespace: receiver.GetNamespace(),
Name: receiver.Spec.SecretRef.Name,
}
var secret corev1.Secret
err := s.kubeClient.Get(ctx, secretName, &secret)
if err != nil {
return "", fmt.Errorf("unable to read token from secret %q error: %w", secretName, err)
}
if val, ok := secret.Data["token"]; ok {
token = string(val)
} else {
return "", fmt.Errorf("invalid %q secret data: required field 'token'", secretName)
}
return token, nil
}
// requestReconciliation requests reconciliation of all the resources matching the given CrossNamespaceObjectReference by annotating them accordingly.
func (s *ReceiverServer) requestReconciliation(ctx context.Context, logger logr.Logger, resource apiv1.CrossNamespaceObjectReference, defaultNamespace string, resourceFilter resourceFilter) error {
namespace := defaultNamespace
if resource.Namespace != "" {
if s.noCrossNamespaceRefs && resource.Namespace != defaultNamespace {
return fmt.Errorf("cross-namespace references are not allowed")
}
namespace = resource.Namespace
}
apiVersion := resource.APIVersion
if apiVersion == "" {
if defaultFluxAPIVersions[resource.Kind] == "" {
return fmt.Errorf("apiVersion must be specified for kind %q", resource.Kind)
}
apiVersion = defaultFluxAPIVersions[resource.Kind]
}
group, version := getGroupVersion(apiVersion)
if resource.Name == "*" {
return s.notifyDynamicResources(ctx, logger, resource, namespace, group, version, resourceFilter)
}
u := &metav1.PartialObjectMetadata{}
u.SetGroupVersionKind(schema.GroupVersionKind{
Group: group,
Kind: resource.Kind,
Version: version,
})
u.SetNamespace(namespace)
u.SetName(resource.Name)
return s.notifySingleResource(ctx, logger, u, resourceFilter)
}
func (s *ReceiverServer) annotate(ctx context.Context, resource *metav1.PartialObjectMetadata) error {
patch := client.MergeFrom(resource.DeepCopy())
sourceAnnotations := resource.GetAnnotations()
if sourceAnnotations == nil {
sourceAnnotations = make(map[string]string)
}
sourceAnnotations[meta.ReconcileRequestAnnotation] = metav1.Now().String()
resource.SetAnnotations(sourceAnnotations)
if err := s.kubeClient.Patch(ctx, resource, patch); err != nil {
return fmt.Errorf("unable to annotate %s %q error: %w", resource.Kind, client.ObjectKey{
Namespace: resource.Namespace,
Name: resource.Name,
}, err)
}
return nil
}
func authenticateGCRRequest(c *http.Client, bearer string, tokenIndex int) (err error) {
type auth struct {
Aud string `json:"aud"`
}
if len(bearer) < tokenIndex {
return fmt.Errorf("Authorization header is missing or malformed: %v", bearer)
}
token := bearer[tokenIndex:]
url := fmt.Sprintf("https://oauth2.googleapis.com/tokeninfo?id_token=%s", token)
resp, err := c.Get(url)
if err != nil {
return fmt.Errorf("cannot verify authenticity of payload: %w", err)
}
var p auth
if err := json.NewDecoder(resp.Body).Decode(&p); err != nil {
return fmt.Errorf("cannot decode auth payload: %w", err)
}
return nil
}
func verifyHmacSignature(key []byte, signature string, payload []byte) bool {
mac := hmac.New(sha1.New, key)
_, _ = mac.Write(payload)
expectedMAC := hex.EncodeToString(mac.Sum(nil))
return hmac.Equal([]byte(signature), []byte(expectedMAC))
}
func getGroupVersion(s string) (string, string) {
slice := strings.Split(s, "/")
if len(slice) == 0 {
return "", ""
}
if len(slice) == 1 {
return "", slice[0]
}
return slice[0], slice[1]
}