123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /*
- Copyright 2019 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 operationexecutor implements interfaces that enable execution of
- // register and unregister operations with a
- // goroutinemap so that more than one operation is never triggered
- // on the same plugin.
- package operationexecutor
- import (
- "context"
- "fmt"
- "net"
- "time"
- "github.com/pkg/errors"
- "google.golang.org/grpc"
- "k8s.io/client-go/tools/record"
- registerapi "k8s.io/kubernetes/pkg/kubelet/apis/pluginregistration/v1"
- "k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
- )
- const (
- dialTimeoutDuration = 10 * time.Second
- notifyTimeoutDuration = 5 * time.Second
- )
- var _ OperationGenerator = &operationGenerator{}
- type operationGenerator struct {
- // recorder is used to record events in the API server
- recorder record.EventRecorder
- }
- // NewOperationGenerator is returns instance of operationGenerator
- func NewOperationGenerator(recorder record.EventRecorder) OperationGenerator {
- return &operationGenerator{
- recorder: recorder,
- }
- }
- // OperationGenerator interface that extracts out the functions from operation_executor to make it dependency injectable
- type OperationGenerator interface {
- // Generates the RegisterPlugin function needed to perform the registration of a plugin
- GenerateRegisterPluginFunc(
- socketPath string,
- foundInDeprecatedDir bool,
- timestamp time.Time,
- pluginHandlers map[string]cache.PluginHandler,
- actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error
- // Generates the UnregisterPlugin function needed to perform the unregistration of a plugin
- GenerateUnregisterPluginFunc(
- socketPath string,
- pluginHandlers map[string]cache.PluginHandler,
- actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error
- }
- func (og *operationGenerator) GenerateRegisterPluginFunc(
- socketPath string,
- foundInDeprecatedDir bool,
- timestamp time.Time,
- pluginHandlers map[string]cache.PluginHandler,
- actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error {
- registerPluginFunc := func() error {
- client, conn, err := dial(socketPath, dialTimeoutDuration)
- if err != nil {
- return fmt.Errorf("RegisterPlugin error -- dial failed at socket %s, err: %v", socketPath, err)
- }
- defer conn.Close()
- ctx, cancel := context.WithTimeout(context.Background(), time.Second)
- defer cancel()
- infoResp, err := client.GetInfo(ctx, ®isterapi.InfoRequest{})
- if err != nil {
- return fmt.Errorf("RegisterPlugin error -- failed to get plugin info using RPC GetInfo at socket %s, err: %v", socketPath, err)
- }
- handler, ok := pluginHandlers[infoResp.Type]
- if !ok {
- if err := og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- no handler registered for plugin type: %s at socket %s", infoResp.Type, socketPath)); err != nil {
- return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
- }
- return fmt.Errorf("RegisterPlugin error -- no handler registered for plugin type: %s at socket %s", infoResp.Type, socketPath)
- }
- if infoResp.Endpoint == "" {
- infoResp.Endpoint = socketPath
- }
- if err := handler.ValidatePlugin(infoResp.Name, infoResp.Endpoint, infoResp.SupportedVersions, foundInDeprecatedDir); err != nil {
- if err = og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- plugin validation failed with err: %v", err)); err != nil {
- return fmt.Errorf("RegisterPlugin error -- failed to send error at socket %s, err: %v", socketPath, err)
- }
- return fmt.Errorf("RegisterPlugin error -- pluginHandler.ValidatePluginFunc failed")
- }
- // We add the plugin to the actual state of world cache before calling a plugin consumer's Register handle
- // so that if we receive a delete event during Register Plugin, we can process it as a DeRegister call.
- actualStateOfWorldUpdater.AddPlugin(cache.PluginInfo{
- SocketPath: socketPath,
- FoundInDeprecatedDir: foundInDeprecatedDir,
- Timestamp: timestamp,
- })
- if err := handler.RegisterPlugin(infoResp.Name, infoResp.Endpoint, infoResp.SupportedVersions); err != nil {
- return og.notifyPlugin(client, false, fmt.Sprintf("RegisterPlugin error -- plugin registration failed with err: %v", err))
- }
- // Notify is called after register to guarantee that even if notify throws an error Register will always be called after validate
- if err := og.notifyPlugin(client, true, ""); err != nil {
- return fmt.Errorf("RegisterPlugin error -- failed to send registration status at socket %s, err: %v", socketPath, err)
- }
- return nil
- }
- return registerPluginFunc
- }
- func (og *operationGenerator) GenerateUnregisterPluginFunc(
- socketPath string,
- pluginHandlers map[string]cache.PluginHandler,
- actualStateOfWorldUpdater ActualStateOfWorldUpdater) func() error {
- unregisterPluginFunc := func() error {
- client, conn, err := dial(socketPath, dialTimeoutDuration)
- if err != nil {
- return fmt.Errorf("UnregisterPlugin error -- dial failed at socket %s, err: %v", socketPath, err)
- }
- defer conn.Close()
- ctx, cancel := context.WithTimeout(context.Background(), time.Second)
- defer cancel()
- infoResp, err := client.GetInfo(ctx, ®isterapi.InfoRequest{})
- if err != nil {
- return fmt.Errorf("UnregisterPlugin error -- failed to get plugin info using RPC GetInfo at socket %s, err: %v", socketPath, err)
- }
- handler, ok := pluginHandlers[infoResp.Type]
- if !ok {
- return fmt.Errorf("UnregisterPlugin error -- no handler registered for plugin type: %s at socket %s", infoResp.Type, socketPath)
- }
- // We remove the plugin to the actual state of world cache before calling a plugin consumer's Unregister handle
- // so that if we receive a register event during Register Plugin, we can process it as a Register call.
- actualStateOfWorldUpdater.RemovePlugin(socketPath)
- handler.DeRegisterPlugin(infoResp.Name)
- return nil
- }
- return unregisterPluginFunc
- }
- func (og *operationGenerator) notifyPlugin(client registerapi.RegistrationClient, registered bool, errStr string) error {
- ctx, cancel := context.WithTimeout(context.Background(), notifyTimeoutDuration)
- defer cancel()
- status := ®isterapi.RegistrationStatus{
- PluginRegistered: registered,
- Error: errStr,
- }
- if _, err := client.NotifyRegistrationStatus(ctx, status); err != nil {
- return errors.Wrap(err, errStr)
- }
- if errStr != "" {
- return errors.New(errStr)
- }
- return nil
- }
- // Dial establishes the gRPC communication with the picked up plugin socket. https://godoc.org/google.golang.org/grpc#Dial
- func dial(unixSocketPath string, timeout time.Duration) (registerapi.RegistrationClient, *grpc.ClientConn, error) {
- ctx, cancel := context.WithTimeout(context.Background(), timeout)
- defer cancel()
- c, err := grpc.DialContext(ctx, unixSocketPath, grpc.WithInsecure(), grpc.WithBlock(),
- grpc.WithDialer(func(addr string, timeout time.Duration) (net.Conn, error) {
- return net.DialTimeout("unix", addr, timeout)
- }),
- )
- if err != nil {
- return nil, nil, fmt.Errorf("failed to dial socket %s, err: %v", unixSocketPath, err)
- }
- return registerapi.NewRegistrationClient(c), c, nil
- }
|