2022-06-20 11:53:16 +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 .
* * /
2022-11-01 19:05:23 +00:00
package generate
2022-06-20 11:53:16 +00:00
import (
"fmt"
"os"
"path/filepath"
"strings"
2023-05-10 13:12:44 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/internal/config"
2022-12-02 13:17:52 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/pkg/nvcdi"
2023-02-22 14:26:41 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/pkg/nvcdi/spec"
2023-02-27 14:53:04 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/pkg/nvcdi/transform"
2022-10-21 11:29:21 +00:00
"github.com/container-orchestrated-devices/container-device-interface/pkg/cdi"
2022-06-20 11:53:16 +00:00
"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
)
const (
2023-02-06 17:53:24 +00:00
allDeviceName = "all"
2022-06-20 11:53:16 +00:00
)
type command struct {
logger * logrus . Logger
}
2023-05-10 13:12:00 +00:00
type options struct {
2023-01-20 14:58:04 +00:00
output string
format string
deviceNameStrategy string
2023-02-02 14:42:01 +00:00
driverRoot string
2023-01-20 14:58:04 +00:00
nvidiaCTKPath string
2023-03-06 09:00:12 +00:00
mode string
2023-03-28 06:12:00 +00:00
vendor string
class string
2022-06-20 11:53:16 +00:00
}
// NewCommand constructs a generate-cdi command with the specified logger
func NewCommand ( logger * logrus . Logger ) * cli . Command {
c := command {
logger : logger ,
}
return c . build ( )
}
// build creates the CLI command
func ( m command ) build ( ) * cli . Command {
2023-05-10 13:12:00 +00:00
opts := options { }
2022-06-20 11:53:16 +00:00
// Create the 'generate-cdi' command
c := cli . Command {
2022-11-01 19:05:23 +00:00
Name : "generate" ,
2022-06-20 11:53:16 +00:00
Usage : "Generate CDI specifications for use with CDI-enabled runtimes" ,
2022-11-23 20:39:06 +00:00
Before : func ( c * cli . Context ) error {
2023-05-10 13:12:00 +00:00
return m . validateFlags ( c , & opts )
2022-11-23 20:39:06 +00:00
} ,
2022-06-20 11:53:16 +00:00
Action : func ( c * cli . Context ) error {
2023-05-10 13:12:00 +00:00
return m . run ( c , & opts )
2022-06-20 11:53:16 +00:00
} ,
}
c . Flags = [ ] cli . Flag {
& cli . StringFlag {
Name : "output" ,
2022-11-23 20:39:06 +00:00
Usage : "Specify the file to output the generated CDI specification to. If this is '' the specification is output to STDOUT" ,
2023-05-10 13:12:00 +00:00
Destination : & opts . output ,
2022-06-20 11:53:16 +00:00
} ,
2022-11-23 20:39:06 +00:00
& cli . StringFlag {
Name : "format" ,
Usage : "The output format for the generated spec [json | yaml]. This overrides the format defined by the output file extension (if specified)." ,
2023-02-22 14:33:30 +00:00
Value : spec . FormatYAML ,
2023-05-10 13:12:00 +00:00
Destination : & opts . format ,
2022-06-20 11:53:16 +00:00
} ,
2023-02-08 14:29:35 +00:00
& cli . StringFlag {
2023-03-06 09:00:12 +00:00
Name : "mode" ,
Aliases : [ ] string { "discovery-mode" } ,
2023-02-20 14:27:34 +00:00
Usage : "The mode to use when discovering the available entities. One of [auto | nvml | wsl]. If mode is set to 'auto' the mode will be determined based on the system configuration." ,
Value : nvcdi . ModeAuto ,
2023-05-10 13:12:00 +00:00
Destination : & opts . mode ,
2023-02-08 14:29:35 +00:00
} ,
2023-01-20 14:58:04 +00:00
& cli . StringFlag {
Name : "device-name-strategy" ,
2023-01-30 12:36:11 +00:00
Usage : "Specify the strategy for generating device names. One of [index | uuid | type-index]" ,
2022-12-02 13:17:52 +00:00
Value : nvcdi . DeviceNameStrategyIndex ,
2023-05-10 13:12:00 +00:00
Destination : & opts . deviceNameStrategy ,
2023-01-20 14:58:04 +00:00
} ,
2022-12-01 16:21:35 +00:00
& cli . StringFlag {
2023-02-02 14:42:01 +00:00
Name : "driver-root" ,
Usage : "Specify the NVIDIA GPU driver root to use when discovering the entities that should be included in the CDI specification." ,
2023-05-10 13:12:00 +00:00
Destination : & opts . driverRoot ,
2022-12-01 16:21:35 +00:00
} ,
2022-12-12 14:26:21 +00:00
& cli . StringFlag {
Name : "nvidia-ctk-path" ,
Usage : "Specify the path to use for the nvidia-ctk in the generated CDI specification. If this is left empty, the path will be searched." ,
2023-05-10 13:12:00 +00:00
Destination : & opts . nvidiaCTKPath ,
2022-12-12 14:26:21 +00:00
} ,
2023-03-28 05:22:36 +00:00
& cli . StringFlag {
2023-03-28 10:31:09 +00:00
Name : "vendor" ,
Aliases : [ ] string { "cdi-vendor" } ,
Usage : "the vendor string to use for the generated CDI specification." ,
Value : "nvidia.com" ,
2023-05-10 13:12:00 +00:00
Destination : & opts . vendor ,
2023-03-28 05:22:36 +00:00
} ,
2023-03-28 06:12:00 +00:00
& cli . StringFlag {
2023-03-28 10:31:09 +00:00
Name : "class" ,
Aliases : [ ] string { "cdi-class" } ,
Usage : "the class string to use for the generated CDI specification." ,
Value : "gpu" ,
2023-05-10 13:12:00 +00:00
Destination : & opts . class ,
2023-03-28 06:12:00 +00:00
} ,
2022-06-20 11:53:16 +00:00
}
return & c
}
2023-05-10 13:12:00 +00:00
func ( m command ) validateFlags ( c * cli . Context , opts * options ) error {
2023-02-22 14:26:41 +00:00
2023-05-10 13:12:00 +00:00
opts . format = strings . ToLower ( opts . format )
switch opts . format {
2023-02-22 14:33:30 +00:00
case spec . FormatJSON :
case spec . FormatYAML :
2022-11-23 20:39:06 +00:00
default :
2023-05-10 13:12:00 +00:00
return fmt . Errorf ( "invalid output format: %v" , opts . format )
2022-11-23 20:39:06 +00:00
}
2023-05-10 13:12:00 +00:00
opts . mode = strings . ToLower ( opts . mode )
switch opts . mode {
2023-02-20 14:27:34 +00:00
case nvcdi . ModeAuto :
case nvcdi . ModeNvml :
case nvcdi . ModeWsl :
2023-03-01 11:22:57 +00:00
case nvcdi . ModeManagement :
2023-02-08 14:29:35 +00:00
default :
2023-05-10 13:12:00 +00:00
return fmt . Errorf ( "invalid discovery mode: %v" , opts . mode )
2023-02-08 14:29:35 +00:00
}
2023-05-10 13:12:00 +00:00
_ , err := nvcdi . NewDeviceNamer ( opts . deviceNameStrategy )
2023-01-20 14:58:04 +00:00
if err != nil {
return err
}
2023-05-10 13:12:44 +00:00
opts . nvidiaCTKPath = config . ResolveNVIDIACTKPath ( m . logger , opts . nvidiaCTKPath )
2023-02-17 09:11:18 +00:00
2023-05-10 13:12:00 +00:00
if outputFileFormat := formatFromFilename ( opts . output ) ; outputFileFormat != "" {
2022-11-23 20:39:06 +00:00
m . logger . Debugf ( "Inferred output format as %q from output file name" , outputFileFormat )
if ! c . IsSet ( "format" ) {
2023-05-10 13:12:00 +00:00
opts . format = outputFileFormat
} else if outputFileFormat != opts . format {
m . logger . Warningf ( "Requested output format %q does not match format implied by output file name: %q" , opts . format , outputFileFormat )
2022-11-23 20:39:06 +00:00
}
2022-06-20 11:53:16 +00:00
}
2023-05-10 13:12:00 +00:00
if err := cdi . ValidateVendorName ( opts . vendor ) ; err != nil {
2023-03-28 06:12:00 +00:00
return fmt . Errorf ( "invalid CDI vendor name: %v" , err )
}
2023-05-10 13:12:00 +00:00
if err := cdi . ValidateClassName ( opts . class ) ; err != nil {
2023-03-28 06:12:00 +00:00
return fmt . Errorf ( "invalid CDI class name: %v" , err )
}
2023-02-22 14:26:41 +00:00
return nil
}
2023-05-10 13:12:00 +00:00
func ( m command ) run ( c * cli . Context , opts * options ) error {
spec , err := m . generateSpec ( opts )
2022-06-20 11:53:16 +00:00
if err != nil {
2023-02-22 14:26:41 +00:00
return fmt . Errorf ( "failed to generate CDI spec: %v" , err )
2022-06-20 11:53:16 +00:00
}
2023-02-22 14:33:30 +00:00
m . logger . Infof ( "Generated CDI spec with version %v" , spec . Raw ( ) . Version )
2022-06-20 11:53:16 +00:00
2023-05-10 13:12:00 +00:00
if opts . output == "" {
2023-02-22 14:26:41 +00:00
_ , err := spec . WriteTo ( os . Stdout )
2022-06-20 11:53:16 +00:00
if err != nil {
2023-02-22 14:26:41 +00:00
return fmt . Errorf ( "failed to write CDI spec to STDOUT: %v" , err )
2022-06-20 11:53:16 +00:00
}
2023-02-22 14:19:22 +00:00
return nil
2022-06-20 11:53:16 +00:00
}
2023-05-10 13:12:00 +00:00
return spec . Save ( opts . output )
2022-06-20 11:53:16 +00:00
}
2022-11-23 20:39:06 +00:00
func formatFromFilename ( filename string ) string {
ext := filepath . Ext ( filename )
switch strings . ToLower ( ext ) {
case ".json" :
2023-02-22 14:33:30 +00:00
return spec . FormatJSON
case ".yaml" , ".yml" :
return spec . FormatYAML
2022-11-23 20:39:06 +00:00
}
return ""
}
2023-05-10 13:12:00 +00:00
func ( m command ) generateSpec ( opts * options ) ( spec . Interface , error ) {
deviceNamer , err := nvcdi . NewDeviceNamer ( opts . deviceNameStrategy )
2022-12-02 13:17:52 +00:00
if err != nil {
return nil , fmt . Errorf ( "failed to create device namer: %v" , err )
}
2023-03-22 12:04:12 +00:00
cdilib , err := nvcdi . New (
2022-12-02 13:17:52 +00:00
nvcdi . WithLogger ( m . logger ) ,
2023-05-10 13:12:00 +00:00
nvcdi . WithDriverRoot ( opts . driverRoot ) ,
nvcdi . WithNVIDIACTKPath ( opts . nvidiaCTKPath ) ,
2022-12-02 13:17:52 +00:00
nvcdi . WithDeviceNamer ( deviceNamer ) ,
2023-05-10 13:12:00 +00:00
nvcdi . WithMode ( string ( opts . mode ) ) ,
2022-12-02 13:17:52 +00:00
)
2023-03-22 12:04:12 +00:00
if err != nil {
return nil , fmt . Errorf ( "failed to create CDI library: %v" , err )
}
2022-12-02 13:17:52 +00:00
deviceSpecs , err := cdilib . GetAllDeviceSpecs ( )
2022-06-20 11:53:16 +00:00
if err != nil {
2022-11-23 15:29:18 +00:00
return nil , fmt . Errorf ( "failed to create device CDI specs: %v" , err )
2022-06-20 11:53:16 +00:00
}
2022-10-10 08:19:08 +00:00
2022-12-02 13:17:52 +00:00
commonEdits , err := cdilib . GetCommonEdits ( )
2022-11-23 15:29:18 +00:00
if err != nil {
2022-12-02 13:17:52 +00:00
return nil , fmt . Errorf ( "failed to create edits common for entities: %v" , err )
2022-10-21 13:28:45 +00:00
}
2022-10-07 14:23:18 +00:00
2023-03-17 09:47:31 +00:00
return spec . New (
2023-05-10 13:12:00 +00:00
spec . WithVendor ( opts . vendor ) ,
spec . WithClass ( opts . class ) ,
2023-02-22 14:26:41 +00:00
spec . WithDeviceSpecs ( deviceSpecs ) ,
spec . WithEdits ( * commonEdits . ContainerEdits ) ,
2023-05-10 13:12:00 +00:00
spec . WithFormat ( opts . format ) ,
2023-03-17 09:47:31 +00:00
spec . WithMergedDeviceOptions (
transform . WithName ( allDeviceName ) ,
transform . WithSkipIfExists ( true ) ,
) ,
2023-05-02 14:28:03 +00:00
spec . WithPermissions ( 0644 ) ,
2023-02-22 14:26:41 +00:00
)
2022-10-21 11:29:21 +00:00
}