smarter-device-manager/main.go

253 lines
9.4 KiB
Go
Raw Normal View History

2020-01-17 21:25:46 +00:00
// Copyright (c) 2019, Arm Ltd
2019-11-22 16:52:49 +00:00
package main
import (
"flag"
"fmt"
2020-06-08 19:45:14 +00:00
"strings"
2019-11-22 16:52:49 +00:00
"os"
"regexp"
"syscall"
"io/ioutil"
"github.com/fsnotify/fsnotify"
"github.com/golang/glog"
"gopkg.in/yaml.v2"
pluginapi "k8s.io/kubernetes/pkg/kubelet/apis/deviceplugin/v1beta1"
)
var confFileName string
2020-06-04 19:11:13 +00:00
const (
2020-06-08 19:45:14 +00:00
deviceFileType uint = 0
nvidiaSysType uint = 1
2020-06-04 19:11:13 +00:00
)
2019-11-22 16:52:49 +00:00
type DeviceInstance struct {
2020-06-08 19:45:14 +00:00
devicePluginSmarter *SmarterDevicePlugin
devicePluginNvidia *NvidiaDevicePlugin
2019-11-22 16:52:49 +00:00
deviceName string
socketName string
deviceFile string
numDevices uint
2020-06-04 19:11:13 +00:00
deviceType uint
2020-06-08 19:45:14 +00:00
deviceId string
2019-11-22 16:52:49 +00:00
}
type DesiredDevice struct {
DeviceMatch string
NumMaxDevices uint
}
func usage() {
fmt.Fprintf(os.Stderr, "usage: smarter-device-manager\n")
flag.PrintDefaults()
os.Exit(2)
}
func init() {
flag.Usage = usage
// NOTE: This next line is key you have to call flag.Parse() for the command line
// options or "flags" that are defined in the glog module to be picked up.
flag.StringVar(&confFileName,"config","config/conf.yaml","set the configuration file to use")
flag.Parse()
}
2020-06-04 19:11:13 +00:00
func readDevDirectory(dirToList string) (files []string, err error) {
f, err := os.Open(dirToList)
2019-11-22 16:52:49 +00:00
if err != nil {
return nil, err
}
files, err = f.Readdirnames(-1)
f.Close()
if err != nil {
return nil, err
}
return files, nil
}
func findDevicesPattern(listDevices []string, pattern string) ([]string,error) {
var found []string
for _, file := range listDevices {
res,err := regexp.MatchString(pattern, file)
if err != nil {
return nil, err
}
if res {
found = append(found, file)
}
}
return found,nil
}
func main() {
defer glog.Flush()
glog.V(0).Info("Loading smarter-device-manager")
// Setting up the devices to check
var desiredDevices []DesiredDevice
glog.V(0).Info("Reading configuration file ",confFileName)
yamlFile, err := ioutil.ReadFile(confFileName)
if err != nil {
glog.Fatal("yamlFile.Get err #%v ", err)
}
err = yaml.Unmarshal(yamlFile, &desiredDevices)
if err != nil {
glog.Fatal("Unmarshal: %v", err)
os.Exit(-1)
}
glog.V(0).Info("Reading existing devices on /dev")
2020-06-04 19:11:13 +00:00
ExistingDevices, err := readDevDirectory("/dev")
2019-11-22 16:52:49 +00:00
if err != nil {
glog.Errorf(err.Error())
os.Exit(1)
}
2020-06-04 19:11:13 +00:00
ExistingDevicesSys, err := readDevDirectory("/sys/devices")
if err != nil {
glog.Errorf(err.Error())
os.Exit(1)
}
2019-11-22 16:52:49 +00:00
var listDevicesAvailable []DeviceInstance
for _, deviceToTest := range desiredDevices {
2020-06-08 19:45:14 +00:00
if deviceToTest.DeviceMatch == "nvidia-gpu" {
2020-06-04 19:11:13 +00:00
glog.V(0).Infof("Checking nvidia devices")
2020-06-08 19:45:14 +00:00
foundDevices,err := findDevicesPattern(ExistingDevicesSys, "gpu.[0-9]*")
2020-06-04 19:11:13 +00:00
if err != nil {
glog.Errorf(err.Error())
os.Exit(1)
}
// If found some create the devices entry
if len(foundDevices) > 0 {
for _, deviceToCreate := range foundDevices {
var newDevice DeviceInstance
2020-06-08 19:45:14 +00:00
deviceId := strings.TrimPrefix(deviceToCreate,"gpu.")
2020-06-04 19:11:13 +00:00
newDevice.deviceName = "smarter-devices/" + "nvidia-gpu" + deviceId
2020-06-08 19:45:14 +00:00
newDevice.deviceId = deviceId
newDevice.socketName = pluginapi.DevicePluginPath + "smarter-nvidia-gpu" + deviceId + ".sock"
2020-06-04 19:11:13 +00:00
newDevice.deviceFile = deviceId
newDevice.numDevices = deviceToTest.NumMaxDevices
newDevice.deviceType = nvidiaSysType
listDevicesAvailable = append(listDevicesAvailable, newDevice)
glog.V(0).Infof("Creating device %s socket and %s name for %s",newDevice.deviceName,newDevice.deviceFile,deviceToTest.DeviceMatch)
}
}
2020-06-08 19:45:14 +00:00
} else {
2020-06-04 19:11:13 +00:00
glog.V(0).Infof("Checking devices %s on /dev",deviceToTest.DeviceMatch)
foundDevices,err := findDevicesPattern(ExistingDevices, deviceToTest.DeviceMatch)
if err != nil {
glog.Errorf(err.Error())
os.Exit(1)
}
// If found some create the devices entry
if len(foundDevices) > 0 {
for _, deviceToCreate := range foundDevices {
var newDevice DeviceInstance
newDevice.deviceType = deviceFileType
newDevice.deviceName = "smarter-devices/" + deviceToCreate
newDevice.socketName = pluginapi.DevicePluginPath + "smarter-" + deviceToCreate + ".sock"
newDevice.deviceFile = "/dev/" + deviceToCreate
newDevice.numDevices = deviceToTest.NumMaxDevices
listDevicesAvailable = append(listDevicesAvailable, newDevice)
glog.V(0).Infof("Creating device %s socket and %s name for %s",newDevice.deviceName,newDevice.deviceFile,deviceToTest.DeviceMatch)
}
}
2019-11-22 16:52:49 +00:00
}
}
glog.V(0).Info("Starting FS watcher.")
watcher, err := newFSWatcher(pluginapi.DevicePluginPath)
if err != nil {
glog.V(0).Info("Failed to created FS watcher.")
os.Exit(1)
}
defer watcher.Close()
glog.V(0).Info("Starting OS watcher.")
sigs := newOSWatcher(syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
restart := true
L:
for {
if restart {
for _, devicesInUse := range listDevicesAvailable {
2020-06-08 19:45:14 +00:00
switch devicesInUse.deviceType {
case deviceFileType :
if devicesInUse.devicePluginSmarter != nil {
devicesInUse.devicePluginSmarter.Stop()
}
case nvidiaSysType :
if devicesInUse.devicePluginNvidia != nil {
devicesInUse.devicePluginNvidia.Stop()
}
}
2019-11-22 16:52:49 +00:00
}
var err error
for _, devicesInUse := range listDevicesAvailable {
2020-06-04 19:11:13 +00:00
switch devicesInUse.deviceType {
case deviceFileType :
2020-06-08 19:45:14 +00:00
devicesInUse.devicePluginSmarter = NewSmarterDevicePlugin(devicesInUse.numDevices, devicesInUse.deviceFile, devicesInUse.deviceName, devicesInUse.socketName)
if err = devicesInUse.devicePluginSmarter.Serve(); err != nil {
2020-06-04 19:11:13 +00:00
glog.V(0).Info("Could not contact Kubelet, retrying. Did you enable the device plugin feature gate?")
break
}
case nvidiaSysType :
2020-06-09 21:15:51 +00:00
devicesInUse.devicePluginNvidia = NewNvidiaDevicePlugin(devicesInUse.numDevices, devicesInUse.deviceName,"NVIDIA_VISIBLE_DEVICES", devicesInUse.socketName, devicesInUse.deviceId)
2020-06-08 19:45:14 +00:00
if err = devicesInUse.devicePluginNvidia.Serve(); err != nil {
2020-06-04 19:11:13 +00:00
glog.V(0).Info("Could not contact Kubelet, retrying. Did you enable the device plugin feature gate?")
break
}
}
2019-11-22 16:52:49 +00:00
}
if err != nil {
continue
}
restart = false
}
select {
case event := <-watcher.Events:
if event.Name == pluginapi.KubeletSocket && event.Op&fsnotify.Create == fsnotify.Create {
glog.V(0).Infof("inotify: %s created, restarting.", pluginapi.KubeletSocket)
restart = true
}
case err := <-watcher.Errors:
glog.V(0).Infof("inotify: %s", err)
case s := <-sigs:
switch s {
case syscall.SIGHUP:
glog.V(0).Info("Received SIGHUP, restarting.")
restart = true
default:
glog.V(0).Infof("Received signal \"%v\", shutting down.", s)
for _, devicesInUse := range listDevicesAvailable {
2020-06-08 19:45:14 +00:00
switch devicesInUse.deviceType {
case deviceFileType :
if devicesInUse.devicePluginSmarter != nil {
devicesInUse.devicePluginSmarter.Stop()
}
case nvidiaSysType :
if devicesInUse.devicePluginNvidia != nil {
devicesInUse.devicePluginNvidia.Stop()
}
}
2019-11-22 16:52:49 +00:00
}
break L
}
}
}
}