2022-03-15 15:27:34 +00:00
|
|
|
/**
|
|
|
|
# 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 config
|
|
|
|
|
|
|
|
import (
|
2022-05-09 11:56:26 +00:00
|
|
|
"fmt"
|
|
|
|
|
2023-03-23 18:18:22 +00:00
|
|
|
"github.com/container-orchestrated-devices/container-device-interface/pkg/cdi"
|
2022-03-15 15:27:34 +00:00
|
|
|
"github.com/pelletier/go-toml"
|
2022-03-11 15:37:41 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2022-03-15 15:27:34 +00:00
|
|
|
)
|
|
|
|
|
2022-05-04 12:39:14 +00:00
|
|
|
const (
|
|
|
|
dockerRuncExecutableName = "docker-runc"
|
|
|
|
runcExecutableName = "runc"
|
2022-05-09 12:13:42 +00:00
|
|
|
|
|
|
|
auto = "auto"
|
2022-05-04 12:39:14 +00:00
|
|
|
)
|
|
|
|
|
2022-03-15 15:27:34 +00:00
|
|
|
// RuntimeConfig stores the config options for the NVIDIA Container Runtime
|
|
|
|
type RuntimeConfig struct {
|
2022-05-09 11:56:26 +00:00
|
|
|
DebugFilePath string `toml:"debug"`
|
2022-03-11 15:37:41 +00:00
|
|
|
// LogLevel defines the logging level for the application
|
2022-05-09 11:56:26 +00:00
|
|
|
LogLevel string `toml:"log-level"`
|
2022-05-04 12:39:14 +00:00
|
|
|
// Runtimes defines the candidates for the low-level runtime
|
2022-05-09 12:13:42 +00:00
|
|
|
Runtimes []string `toml:"runtimes"`
|
|
|
|
Mode string `toml:"mode"`
|
|
|
|
Modes modesConfig `toml:"modes"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// modesConfig defines (optional) per-mode configs
|
|
|
|
type modesConfig struct {
|
|
|
|
CSV csvModeConfig `toml:"csv"`
|
2022-07-11 13:10:19 +00:00
|
|
|
CDI cdiModeConfig `toml:"cdi"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type cdiModeConfig struct {
|
|
|
|
// SpecDirs allows for the default spec dirs for CDI to be overridden
|
|
|
|
SpecDirs []string `toml:"spec-dirs"`
|
2023-03-06 11:30:40 +00:00
|
|
|
// DefaultKind sets the default kind to be used when constructing fully-qualified CDI device names
|
|
|
|
DefaultKind string `toml:"default-kind"`
|
2023-03-23 18:18:22 +00:00
|
|
|
// AnnotationPrefixes sets the allowed prefixes for CDI annotation-based device injection
|
|
|
|
AnnotationPrefixes []string `toml:"annotation-prefixes"`
|
2022-05-09 12:13:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type csvModeConfig struct {
|
|
|
|
MountSpecPath string `toml:"mount-spec-path"`
|
2022-05-09 11:56:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dummy allows us to unmarshal only a RuntimeConfig from a *toml.Tree
|
|
|
|
type dummy struct {
|
|
|
|
Runtime RuntimeConfig `toml:"nvidia-container-runtime"`
|
2022-03-15 15:27:34 +00:00
|
|
|
}
|
|
|
|
|
2022-03-29 09:52:38 +00:00
|
|
|
// getRuntimeConfigFrom reads the nvidia container runtime config from the specified toml Tree.
|
2022-05-09 11:56:26 +00:00
|
|
|
func getRuntimeConfigFrom(toml *toml.Tree) (*RuntimeConfig, error) {
|
2022-04-06 14:04:38 +00:00
|
|
|
cfg := GetDefaultRuntimeConfig()
|
2022-03-15 15:27:34 +00:00
|
|
|
|
2022-03-29 09:52:38 +00:00
|
|
|
if toml == nil {
|
2022-05-09 11:56:26 +00:00
|
|
|
return cfg, nil
|
2022-03-29 09:52:38 +00:00
|
|
|
}
|
|
|
|
|
2022-05-09 11:56:26 +00:00
|
|
|
d := dummy{
|
|
|
|
Runtime: *cfg,
|
|
|
|
}
|
2022-03-15 15:27:34 +00:00
|
|
|
|
2022-05-09 11:56:26 +00:00
|
|
|
if err := toml.Unmarshal(&d); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to unmarshal runtime config: %v", err)
|
2022-05-04 12:39:14 +00:00
|
|
|
}
|
|
|
|
|
2022-05-09 11:56:26 +00:00
|
|
|
return &d.Runtime, nil
|
2022-03-15 15:27:34 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 14:04:38 +00:00
|
|
|
// GetDefaultRuntimeConfig defines the default values for the config
|
|
|
|
func GetDefaultRuntimeConfig() *RuntimeConfig {
|
2022-03-15 15:27:34 +00:00
|
|
|
c := RuntimeConfig{
|
|
|
|
DebugFilePath: "/dev/null",
|
2022-03-11 15:37:41 +00:00
|
|
|
LogLevel: logrus.InfoLevel.String(),
|
2022-05-04 12:39:14 +00:00
|
|
|
Runtimes: []string{
|
|
|
|
dockerRuncExecutableName,
|
|
|
|
runcExecutableName,
|
|
|
|
},
|
2022-05-09 12:13:42 +00:00
|
|
|
Mode: auto,
|
|
|
|
Modes: modesConfig{
|
|
|
|
CSV: csvModeConfig{
|
|
|
|
MountSpecPath: "/etc/nvidia-container-runtime/host-files-for-container.d",
|
|
|
|
},
|
2023-03-06 11:30:40 +00:00
|
|
|
CDI: cdiModeConfig{
|
|
|
|
DefaultKind: "nvidia.com/gpu",
|
2023-03-23 18:18:22 +00:00
|
|
|
AnnotationPrefixes: []string{
|
|
|
|
cdi.AnnotationPrefix,
|
|
|
|
},
|
2023-03-06 11:30:40 +00:00
|
|
|
},
|
2022-05-09 12:13:42 +00:00
|
|
|
},
|
2022-03-15 15:27:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &c
|
|
|
|
}
|