mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2025-06-16 11:30:20 +00:00
120 lines
3.0 KiB
Go
120 lines
3.0 KiB
Go
/**
|
|
# 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 (
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"tags.cncf.io/container-device-interface/pkg/cdi"
|
|
)
|
|
|
|
var _ Discover = (*Hook)(nil)
|
|
|
|
// Devices returns an empty list of devices for a Hook discoverer.
|
|
func (h *Hook) Devices() ([]Device, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// Mounts returns an empty list of mounts for a Hook discoverer.
|
|
func (h *Hook) Mounts() ([]Mount, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// Hooks allows the Hook type to also implement the Discoverer interface.
|
|
// It returns a single hook
|
|
func (h *Hook) Hooks() ([]Hook, error) {
|
|
if h == nil {
|
|
return nil, nil
|
|
}
|
|
|
|
return []Hook{*h}, nil
|
|
}
|
|
|
|
type HookName string
|
|
|
|
// DisabledHooks allows individual hooks to be disabled.
|
|
type DisabledHooks map[HookName]bool
|
|
|
|
const (
|
|
// HookEnableCudaCompat refers to the hook used to enable CUDA Forward Compatibility.
|
|
// This was added with v1.17.5 of the NVIDIA Container Toolkit.
|
|
HookEnableCudaCompat = HookName("enable-cuda-compat")
|
|
// directory path to be mounted into a container.
|
|
HookCreateSymlinks = HookName("create-symlinks")
|
|
// HookUpdateLDCache refers to the hook used to Update the dynamic linker
|
|
// cache inside the directory path to be mounted into a container.
|
|
HookUpdateLDCache = HookName("update-ldcache")
|
|
)
|
|
|
|
// AllHooks maintains a future-proof list of all defined hooks.
|
|
var AllHooks = []HookName{
|
|
HookEnableCudaCompat,
|
|
HookCreateSymlinks,
|
|
HookUpdateLDCache,
|
|
}
|
|
|
|
// Option is a function that configures the nvcdilib
|
|
type Option func(*CDIHook)
|
|
|
|
type CDIHook struct {
|
|
nvidiaCDIHookPath string
|
|
debugLogging bool
|
|
}
|
|
|
|
type HookCreator interface {
|
|
Create(HookName, ...string) *Hook
|
|
}
|
|
|
|
func NewHookCreator(nvidiaCDIHookPath string, debugLogging bool) HookCreator {
|
|
CDIHook := &CDIHook{
|
|
nvidiaCDIHookPath: nvidiaCDIHookPath,
|
|
debugLogging: debugLogging,
|
|
}
|
|
|
|
return CDIHook
|
|
}
|
|
|
|
func (c CDIHook) Create(name HookName, args ...string) *Hook {
|
|
if name == "create-symlinks" {
|
|
if len(args) == 0 {
|
|
return nil
|
|
}
|
|
|
|
links := []string{}
|
|
for _, arg := range args {
|
|
links = append(links, "--link", arg)
|
|
}
|
|
args = links
|
|
}
|
|
|
|
return &Hook{
|
|
Lifecycle: cdi.CreateContainerHook,
|
|
Path: c.nvidiaCDIHookPath,
|
|
Args: append(c.requiredArgs(name), args...),
|
|
Env: []string{fmt.Sprintf("NVIDIA_CTK_DEBUG=%v", c.debugLogging)},
|
|
}
|
|
}
|
|
|
|
func (c CDIHook) requiredArgs(name string) []string {
|
|
base := filepath.Base(c.nvidiaCDIHookPath)
|
|
if base == "nvidia-ctk" {
|
|
return []string{base, "hook", name}
|
|
}
|
|
return []string{base, name}
|
|
}
|