mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-22 00:08:11 +00:00
fc408a32c7
Signed-off-by: Evan Lezar <elezar@nvidia.com>
105 lines
2.5 KiB
Go
105 lines
2.5 KiB
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"path"
|
|
"reflect"
|
|
|
|
"github.com/BurntSushi/toml"
|
|
)
|
|
|
|
const (
|
|
configPath = "/etc/nvidia-container-runtime/config.toml"
|
|
driverPath = "/run/nvidia/driver"
|
|
)
|
|
|
|
var defaultPaths = [...]string{
|
|
path.Join(driverPath, configPath),
|
|
configPath,
|
|
}
|
|
|
|
// CLIConfig : options for nvidia-container-cli.
|
|
type CLIConfig struct {
|
|
Root *string `toml:"root"`
|
|
Path *string `toml:"path"`
|
|
Environment []string `toml:"environment"`
|
|
Debug *string `toml:"debug"`
|
|
Ldcache *string `toml:"ldcache"`
|
|
LoadKmods bool `toml:"load-kmods"`
|
|
NoPivot bool `toml:"no-pivot"`
|
|
NoCgroups bool `toml:"no-cgroups"`
|
|
User *string `toml:"user"`
|
|
Ldconfig *string `toml:"ldconfig"`
|
|
}
|
|
|
|
// HookConfig : options for the nvidia-container-toolkit.
|
|
type HookConfig struct {
|
|
DisableRequire bool `toml:"disable-require"`
|
|
SwarmResource *string `toml:"swarm-resource"`
|
|
AcceptEnvvarUnprivileged bool `toml:"accept-nvidia-visible-devices-envvar-when-unprivileged"`
|
|
AcceptDeviceListAsVolumeMounts bool `toml:"accept-nvidia-visible-devices-as-volume-mounts"`
|
|
|
|
NvidiaContainerCLI CLIConfig `toml:"nvidia-container-cli"`
|
|
}
|
|
|
|
func getDefaultHookConfig() (config HookConfig) {
|
|
return HookConfig{
|
|
DisableRequire: false,
|
|
SwarmResource: nil,
|
|
AcceptEnvvarUnprivileged: true,
|
|
AcceptDeviceListAsVolumeMounts: false,
|
|
NvidiaContainerCLI: CLIConfig{
|
|
Root: nil,
|
|
Path: nil,
|
|
Environment: []string{},
|
|
Debug: nil,
|
|
Ldcache: nil,
|
|
LoadKmods: true,
|
|
NoPivot: false,
|
|
NoCgroups: false,
|
|
User: nil,
|
|
Ldconfig: nil,
|
|
},
|
|
}
|
|
}
|
|
|
|
func getHookConfig() (config HookConfig) {
|
|
var err error
|
|
|
|
if len(*configflag) > 0 {
|
|
config = getDefaultHookConfig()
|
|
_, err = toml.DecodeFile(*configflag, &config)
|
|
if err != nil {
|
|
log.Panicln("couldn't open configuration file:", err)
|
|
}
|
|
} else {
|
|
for _, p := range defaultPaths {
|
|
config = getDefaultHookConfig()
|
|
_, err = toml.DecodeFile(p, &config)
|
|
if err == nil {
|
|
break
|
|
} else if !os.IsNotExist(err) {
|
|
log.Panicln("couldn't open default configuration file:", err)
|
|
}
|
|
}
|
|
}
|
|
|
|
return config
|
|
}
|
|
|
|
// getConfigOption returns the toml config option associated with the
|
|
// specified struct field.
|
|
func (c HookConfig) getConfigOption(fieldName string) string {
|
|
t := reflect.TypeOf(c)
|
|
f, ok := t.FieldByName(fieldName)
|
|
if !ok {
|
|
return fieldName
|
|
}
|
|
v, ok := f.Tag.Lookup("toml")
|
|
if !ok {
|
|
return fieldName
|
|
}
|
|
return v
|
|
}
|