2019-10-22 21:36:22 +00:00
package main
import (
"flag"
"fmt"
"log"
"os"
"os/exec"
"path/filepath"
"runtime"
"runtime/debug"
"strconv"
"strings"
"syscall"
2022-05-10 12:53:07 +00:00
2022-05-09 13:42:59 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/internal/info"
2022-05-10 12:53:07 +00:00
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
2019-10-22 21:36:22 +00:00
)
var (
2022-05-12 12:02:06 +00:00
debugflag = flag . Bool ( "debug" , false , "enable debug output" )
versionflag = flag . Bool ( "version" , false , "enable version output" )
configflag = flag . String ( "config" , "" , "configuration file" )
2019-10-22 21:36:22 +00:00
)
func exit ( ) {
if err := recover ( ) ; err != nil {
if _ , ok := err . ( runtime . Error ) ; ok {
log . Println ( err )
}
if * debugflag {
log . Printf ( "%s" , debug . Stack ( ) )
}
os . Exit ( 1 )
}
os . Exit ( 0 )
}
func getCLIPath ( config CLIConfig ) string {
if config . Path != nil {
return * config . Path
}
2022-05-10 12:53:07 +00:00
var root string
if config . Root != nil {
root = * config . Root
}
if err := os . Setenv ( "PATH" , lookup . GetPath ( root ) ) ; err != nil {
2019-10-22 21:36:22 +00:00
log . Panicln ( "couldn't set PATH variable:" , err )
}
path , err := exec . LookPath ( "nvidia-container-cli" )
if err != nil {
log . Panicln ( "couldn't find binary nvidia-container-cli in" , os . Getenv ( "PATH" ) , ":" , err )
}
return path
}
// getRootfsPath returns an absolute path. We don't need to resolve symlinks for now.
func getRootfsPath ( config containerConfig ) string {
rootfs , err := filepath . Abs ( config . Rootfs )
if err != nil {
log . Panicln ( err )
}
return rootfs
}
func doPrestart ( ) {
var err error
defer exit ( )
log . SetFlags ( 0 )
hook := getHookConfig ( )
cli := hook . NvidiaContainerCLI
2023-03-09 07:40:43 +00:00
if ! hook . NVIDIAContainerRuntimeHook . SkipModeDetection && info . ResolveAutoMode ( & logInterceptor { } , hook . NVIDIAContainerRuntime . Mode ) != "legacy" {
2022-07-21 08:03:39 +00:00
log . Panicln ( "invoking the NVIDIA Container Runtime Hook directly (e.g. specifying the docker --gpus flag) is not supported. Please use the NVIDIA Container Runtime (e.g. specify the --runtime=nvidia flag) instead." )
2022-04-06 14:05:26 +00:00
}
2019-10-22 21:36:22 +00:00
container := getContainerConfig ( hook )
nvidia := container . Nvidia
if nvidia == nil {
// Not a GPU container, nothing to do.
return
}
rootfs := getRootfsPath ( container )
args := [ ] string { getCLIPath ( cli ) }
if cli . Root != nil {
args = append ( args , fmt . Sprintf ( "--root=%s" , * cli . Root ) )
}
if cli . LoadKmods {
args = append ( args , "--load-kmods" )
}
2020-02-01 00:43:41 +00:00
if cli . NoPivot {
args = append ( args , "--no-pivot" )
}
2019-10-22 21:36:22 +00:00
if * debugflag {
args = append ( args , "--debug=/dev/stderr" )
} else if cli . Debug != nil {
args = append ( args , fmt . Sprintf ( "--debug=%s" , * cli . Debug ) )
}
if cli . Ldcache != nil {
args = append ( args , fmt . Sprintf ( "--ldcache=%s" , * cli . Ldcache ) )
}
if cli . User != nil {
args = append ( args , fmt . Sprintf ( "--user=%s" , * cli . User ) )
}
args = append ( args , "configure" )
if cli . Ldconfig != nil {
args = append ( args , fmt . Sprintf ( "--ldconfig=%s" , * cli . Ldconfig ) )
}
if cli . NoCgroups {
args = append ( args , "--no-cgroups" )
}
if len ( nvidia . Devices ) > 0 {
args = append ( args , fmt . Sprintf ( "--device=%s" , nvidia . Devices ) )
}
2019-12-20 21:22:08 +00:00
if len ( nvidia . MigConfigDevices ) > 0 {
args = append ( args , fmt . Sprintf ( "--mig-config=%s" , nvidia . MigConfigDevices ) )
}
if len ( nvidia . MigMonitorDevices ) > 0 {
args = append ( args , fmt . Sprintf ( "--mig-monitor=%s" , nvidia . MigMonitorDevices ) )
}
2019-10-22 21:36:22 +00:00
2019-12-20 16:07:43 +00:00
for _ , cap := range strings . Split ( nvidia . DriverCapabilities , "," ) {
2019-10-22 21:36:22 +00:00
if len ( cap ) == 0 {
break
}
args = append ( args , capabilityToCLI ( cap ) )
}
if ! hook . DisableRequire && ! nvidia . DisableRequire {
for _ , req := range nvidia . Requirements {
args = append ( args , fmt . Sprintf ( "--require=%s" , req ) )
}
}
args = append ( args , fmt . Sprintf ( "--pid=%s" , strconv . FormatUint ( uint64 ( container . Pid ) , 10 ) ) )
args = append ( args , rootfs )
env := append ( os . Environ ( ) , cli . Environment ... )
err = syscall . Exec ( args [ 0 ] , args , env )
log . Panicln ( "exec failed:" , err )
}
func usage ( ) {
fmt . Fprintf ( os . Stderr , "Usage of %s:\n" , os . Args [ 0 ] )
flag . PrintDefaults ( )
fmt . Fprintf ( os . Stderr , "\nCommands:\n" )
fmt . Fprintf ( os . Stderr , " prestart\n run the prestart hook\n" )
fmt . Fprintf ( os . Stderr , " poststart\n no-op\n" )
fmt . Fprintf ( os . Stderr , " poststop\n no-op\n" )
}
func main ( ) {
flag . Usage = usage
flag . Parse ( )
2022-05-12 12:02:06 +00:00
if * versionflag {
fmt . Printf ( "%v version %v\n" , "NVIDIA Container Runtime Hook" , info . GetVersionString ( ) )
return
}
2019-10-22 21:36:22 +00:00
args := flag . Args ( )
if len ( args ) == 0 {
flag . Usage ( )
os . Exit ( 2 )
}
switch args [ 0 ] {
case "prestart" :
doPrestart ( )
os . Exit ( 0 )
case "poststart" :
fallthrough
case "poststop" :
os . Exit ( 0 )
default :
flag . Usage ( )
os . Exit ( 2 )
}
}
2022-05-09 13:42:59 +00:00
// logInterceptor implements the info.Logger interface to allow for logging from this function.
type logInterceptor struct { }
func ( l * logInterceptor ) Infof ( format string , args ... interface { } ) {
log . Printf ( format , args ... )
}
func ( l * logInterceptor ) Debugf ( format string , args ... interface { } ) { }