/** # Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. # # 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 edits import ( "fmt" "github.com/NVIDIA/nvidia-container-toolkit/internal/discover" "github.com/NVIDIA/nvidia-container-toolkit/internal/oci" "github.com/container-orchestrated-devices/container-device-interface/pkg/cdi" ociSpecs "github.com/opencontainers/runtime-spec/specs-go" "github.com/sirupsen/logrus" ) type edits struct { cdi.ContainerEdits logger *logrus.Logger } // NewSpecEdits creates a SpecModifier that defines the required OCI spec edits (as CDI ContainerEdits) from the specified // discoverer. func NewSpecEdits(logger *logrus.Logger, d discover.Discover) (oci.SpecModifier, error) { hooks, err := d.Hooks() if err != nil { return nil, fmt.Errorf("failed to discover hooks: %v", err) } c := cdi.ContainerEdits{} for _, h := range hooks { c.Append(hook(h).toEdits()) } e := edits{ ContainerEdits: c, logger: logger, } return &e, nil } // Modify applies the defined edits to the incoming OCI spec func (e *edits) Modify(spec *ociSpecs.Spec) error { if e == nil || e.ContainerEdits.ContainerEdits == nil { return nil } e.logger.Infof("Hooks:") for _, hook := range e.Hooks { e.logger.Infof("Injecting %v", hook.Args) } return e.Apply(spec) }