2023-01-19 09:31:42 +00:00
|
|
|
/**
|
|
|
|
# Copyright (c) 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 discover
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
|
|
|
|
"github.com/container-orchestrated-devices/container-device-interface/pkg/cdi"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
nvidiaCTKExecutable = "nvidia-ctk"
|
|
|
|
nvidiaCTKDefaultFilePath = "/usr/bin/nvidia-ctk"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CreateNvidiaCTKHook creates a hook which invokes the NVIDIA Container CLI hook subcommand.
|
|
|
|
func CreateNvidiaCTKHook(executable string, hookName string, additionalArgs ...string) Hook {
|
|
|
|
return Hook{
|
|
|
|
Lifecycle: cdi.CreateContainerHook,
|
|
|
|
Path: executable,
|
|
|
|
Args: append([]string{filepath.Base(executable), "hook", hookName}, additionalArgs...),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FindNvidiaCTK locates the nvidia-ctk executable to be used in hooks.
|
2023-02-01 03:12:49 +00:00
|
|
|
// If an nvidia-ctk path is specified as an absolute path, it is used directly
|
|
|
|
// without checking for existence of an executable at that path.
|
|
|
|
func FindNvidiaCTK(logger *logrus.Logger, nvidiaCTKPath string) string {
|
|
|
|
if filepath.IsAbs(nvidiaCTKPath) {
|
|
|
|
logger.Debugf("Using specified NVIDIA Container Toolkit CLI path %v", nvidiaCTKPath)
|
|
|
|
return nvidiaCTKPath
|
2023-01-19 09:31:42 +00:00
|
|
|
}
|
|
|
|
|
2023-02-01 03:12:49 +00:00
|
|
|
logger.Debugf("Locating NVIDIA Container Toolkit CLI as %v", nvidiaCTKPath)
|
2023-01-19 09:31:42 +00:00
|
|
|
lookup := lookup.NewExecutableLocator(logger, "")
|
|
|
|
hookPath := nvidiaCTKDefaultFilePath
|
2023-02-01 03:12:49 +00:00
|
|
|
targets, err := lookup.Locate(nvidiaCTKPath)
|
2023-01-19 09:31:42 +00:00
|
|
|
if err != nil {
|
2023-02-01 03:12:49 +00:00
|
|
|
logger.Warnf("Failed to locate %v: %v", nvidiaCTKPath, err)
|
2023-01-19 09:31:42 +00:00
|
|
|
} else if len(targets) == 0 {
|
2023-02-01 03:12:49 +00:00
|
|
|
logger.Warnf("%v not found", nvidiaCTKPath)
|
2023-01-19 09:31:42 +00:00
|
|
|
} else {
|
2023-02-01 03:12:49 +00:00
|
|
|
logger.Debugf("Found %v candidates: %v", nvidiaCTKPath, targets)
|
2023-01-19 09:31:42 +00:00
|
|
|
hookPath = targets[0]
|
|
|
|
}
|
|
|
|
logger.Debugf("Using NVIDIA Container Toolkit CLI path %v", hookPath)
|
|
|
|
|
|
|
|
return hookPath
|
|
|
|
}
|