2019-01-12 04:58:27 +00:00
|
|
|
/*
|
|
|
|
Copyright 2017 The Kubernetes 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 implements the audit.Backend interface using HTTP webhooks.
|
|
|
|
package webhook
|
|
|
|
|
|
|
|
import (
|
2019-12-12 01:27:03 +00:00
|
|
|
"context"
|
2019-01-12 04:58:27 +00:00
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
2020-03-26 21:07:15 +00:00
|
|
|
utilnet "k8s.io/apimachinery/pkg/util/net"
|
2019-01-12 04:58:27 +00:00
|
|
|
auditinternal "k8s.io/apiserver/pkg/apis/audit"
|
|
|
|
"k8s.io/apiserver/pkg/apis/audit/install"
|
|
|
|
"k8s.io/apiserver/pkg/audit"
|
|
|
|
"k8s.io/apiserver/pkg/util/webhook"
|
|
|
|
"k8s.io/client-go/rest"
|
2019-09-27 21:51:53 +00:00
|
|
|
utiltrace "k8s.io/utils/trace"
|
2019-01-12 04:58:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// PluginName is the name of this plugin, to be used in help and logs.
|
|
|
|
PluginName = "webhook"
|
|
|
|
|
|
|
|
// DefaultInitialBackoff is the default amount of time to wait before
|
|
|
|
// retrying sending audit events through a webhook.
|
|
|
|
DefaultInitialBackoff = 10 * time.Second
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
install.Install(audit.Scheme)
|
|
|
|
}
|
|
|
|
|
2019-12-12 01:27:03 +00:00
|
|
|
// retryOnError enforces the webhook client to retry requests
|
|
|
|
// on error regardless of its nature.
|
|
|
|
// The default implementation considers a very limited set of
|
|
|
|
// 'retriable' errors, assuming correct use of HTTP codes by
|
|
|
|
// external webhooks.
|
|
|
|
// That may easily lead to dropped audit events. In fact, there is
|
|
|
|
// hardly any error that could be a justified reason NOT to retry
|
|
|
|
// sending audit events if there is even a slight chance that the
|
|
|
|
// receiving service gets back to normal at some point.
|
|
|
|
func retryOnError(err error) bool {
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-03-26 21:07:15 +00:00
|
|
|
func loadWebhook(configFile string, groupVersion schema.GroupVersion, initialBackoff time.Duration, customDial utilnet.DialFunc) (*webhook.GenericWebhook, error) {
|
2019-12-12 01:27:03 +00:00
|
|
|
w, err := webhook.NewGenericWebhook(audit.Scheme, audit.Codecs, configFile,
|
2020-03-26 21:07:15 +00:00
|
|
|
[]schema.GroupVersion{groupVersion}, initialBackoff, customDial)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-12-12 01:27:03 +00:00
|
|
|
w.ShouldRetry = retryOnError
|
2020-03-26 21:07:15 +00:00
|
|
|
return w, nil
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type backend struct {
|
|
|
|
w *webhook.GenericWebhook
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewDynamicBackend returns an audit backend configured from a REST client that
|
|
|
|
// sends events over HTTP to an external service.
|
|
|
|
func NewDynamicBackend(rc *rest.RESTClient, initialBackoff time.Duration) audit.Backend {
|
|
|
|
return &backend{
|
|
|
|
w: &webhook.GenericWebhook{
|
|
|
|
RestClient: rc,
|
|
|
|
InitialBackoff: initialBackoff,
|
2019-12-12 01:27:03 +00:00
|
|
|
ShouldRetry: retryOnError,
|
2019-01-12 04:58:27 +00:00
|
|
|
},
|
|
|
|
name: fmt.Sprintf("dynamic_%s", PluginName),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewBackend returns an audit backend that sends events over HTTP to an external service.
|
2020-03-26 21:07:15 +00:00
|
|
|
func NewBackend(kubeConfigFile string, groupVersion schema.GroupVersion, initialBackoff time.Duration, customDial utilnet.DialFunc) (audit.Backend, error) {
|
|
|
|
w, err := loadWebhook(kubeConfigFile, groupVersion, initialBackoff, customDial)
|
2019-01-12 04:58:27 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &backend{w: w, name: PluginName}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) Run(stopCh <-chan struct{}) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) Shutdown() {
|
|
|
|
// nothing to do here
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) ProcessEvents(ev ...*auditinternal.Event) bool {
|
|
|
|
if err := b.processEvents(ev...); err != nil {
|
|
|
|
audit.HandlePluginError(b.String(), err, ev...)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) processEvents(ev ...*auditinternal.Event) error {
|
|
|
|
var list auditinternal.EventList
|
|
|
|
for _, e := range ev {
|
|
|
|
list.Items = append(list.Items, *e)
|
|
|
|
}
|
2019-12-12 01:27:03 +00:00
|
|
|
return b.w.WithExponentialBackoff(context.Background(), func() rest.Result {
|
2019-09-27 21:51:53 +00:00
|
|
|
trace := utiltrace.New("Call Audit Events webhook",
|
|
|
|
utiltrace.Field{"name", b.name},
|
|
|
|
utiltrace.Field{"event-count", len(list.Items)})
|
|
|
|
// Only log audit webhook traces that exceed a 25ms per object limit plus a 50ms
|
|
|
|
// request overhead allowance. The high per object limit used here is primarily to
|
|
|
|
// allow enough time for the serialization/deserialization of audit events, which
|
|
|
|
// contain nested request and response objects plus additional event fields.
|
|
|
|
defer trace.LogIfLong(time.Duration(50+25*len(list.Items)) * time.Millisecond)
|
2020-03-26 21:07:15 +00:00
|
|
|
return b.w.RestClient.Post().Body(&list).Do(context.TODO())
|
2019-01-12 04:58:27 +00:00
|
|
|
}).Error()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *backend) String() string {
|
|
|
|
return b.name
|
|
|
|
}
|