2023-01-19 14:24:17 +00:00
|
|
|
/*
|
|
|
|
# Copyright (c) 2021, 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 devices
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
2023-05-23 13:16:08 +00:00
|
|
|
"errors"
|
2023-01-19 14:24:17 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Device major numbers and device names for NVIDIA devices
|
|
|
|
const (
|
|
|
|
NVIDIAUVMMinor = 0
|
|
|
|
NVIDIAUVMToolsMinor = 1
|
|
|
|
NVIDIACTLMinor = 255
|
|
|
|
NVIDIAModesetMinor = 254
|
|
|
|
|
|
|
|
NVIDIAFrontend = Name("nvidia-frontend")
|
2024-02-06 05:35:30 +00:00
|
|
|
NVIDIAGPU = Name("nvidia")
|
2023-01-19 14:24:17 +00:00
|
|
|
NVIDIACaps = Name("nvidia-caps")
|
|
|
|
NVIDIAUVM = Name("nvidia-uvm")
|
|
|
|
|
|
|
|
procDevicesPath = "/proc/devices"
|
|
|
|
nvidiaDevicePrefix = "nvidia"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Name represents the name of a device as specified under /proc/devices
|
|
|
|
type Name string
|
|
|
|
|
|
|
|
// Major represents a device major as specified under /proc/devices
|
|
|
|
type Major int
|
|
|
|
|
|
|
|
// Devices represents the set of devices under /proc/devices
|
|
|
|
//
|
|
|
|
//go:generate moq -stub -out devices_mock.go . Devices
|
|
|
|
type Devices interface {
|
|
|
|
Exists(Name) bool
|
|
|
|
Get(Name) (Major, bool)
|
2024-02-06 10:19:43 +00:00
|
|
|
Count() int
|
2023-01-19 14:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type devices map[Name]Major
|
|
|
|
|
|
|
|
var _ Devices = devices(nil)
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
// Count returns the number of devices defined.
|
|
|
|
func (d devices) Count() int {
|
|
|
|
return len(d)
|
|
|
|
}
|
|
|
|
|
2023-01-19 14:24:17 +00:00
|
|
|
// Exists checks if a Device with a given name exists or not
|
|
|
|
func (d devices) Exists(name Name) bool {
|
2024-02-27 19:47:56 +00:00
|
|
|
_, exists := d.Get(name)
|
2023-01-19 14:24:17 +00:00
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
2024-02-06 05:35:30 +00:00
|
|
|
// Get a Device from Devices. It also has fallback logic to ensure device name changes in /proc/devices are handled
|
|
|
|
// For e.g:- For GPU drivers 550.40.x or greater, the gpu device has been renamed from "nvidia-frontend" to "nvidia".
|
2023-01-19 14:24:17 +00:00
|
|
|
func (d devices) Get(name Name) (Major, bool) {
|
2024-02-06 05:35:30 +00:00
|
|
|
for _, n := range name.getWithFallback() {
|
|
|
|
device, exists := d[n]
|
|
|
|
if exists {
|
|
|
|
return device, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// getWithFallback returns a prioritised list of device names for a specific name.
|
|
|
|
// This allows multiple names to be associated with a single name to support various driver versions.
|
|
|
|
func (n Name) getWithFallback() []Name {
|
|
|
|
if n == NVIDIAGPU || n == NVIDIAFrontend {
|
|
|
|
return []Name{NVIDIAGPU, NVIDIAFrontend}
|
|
|
|
}
|
|
|
|
return []Name{n}
|
2023-01-19 14:24:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetNVIDIADevices returns the set of NVIDIA Devices on the machine
|
|
|
|
func GetNVIDIADevices() (Devices, error) {
|
2023-05-23 13:16:08 +00:00
|
|
|
return nvidiaDevices(procDevicesPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
// nvidiaDevices returns the set of NVIDIA Devices from the specified devices file.
|
|
|
|
// This is useful for testing since we may be testing on a system where `/proc/devices` does
|
|
|
|
// contain a reference to NVIDIA devices.
|
|
|
|
func nvidiaDevices(devicesPath string) (Devices, error) {
|
|
|
|
devicesFile, err := os.Open(devicesPath)
|
2023-01-19 14:24:17 +00:00
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error opening devices file: %v", err)
|
|
|
|
}
|
|
|
|
defer devicesFile.Close()
|
|
|
|
|
2023-05-23 13:16:08 +00:00
|
|
|
return nvidiaDeviceFrom(devicesFile)
|
2023-01-19 14:24:17 +00:00
|
|
|
}
|
|
|
|
|
2023-05-23 13:16:08 +00:00
|
|
|
var errNoNvidiaDevices = errors.New("no NVIDIA devices found")
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
func nvidiaDeviceFrom(reader io.Reader) (Devices, error) {
|
2023-01-19 14:24:17 +00:00
|
|
|
allDevices := devicesFrom(reader)
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
nvidiaDevices := New(
|
|
|
|
WithDeviceToMajor(allDevices),
|
|
|
|
WithFilter(func(n string) bool {
|
|
|
|
return !strings.HasPrefix(n, nvidiaDevicePrefix)
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
if nvidiaDevices.Count() == 0 {
|
2023-05-23 13:16:08 +00:00
|
|
|
return nil, errNoNvidiaDevices
|
|
|
|
}
|
|
|
|
return nvidiaDevices, nil
|
2023-01-19 14:24:17 +00:00
|
|
|
}
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
func devicesFrom(reader io.Reader) map[string]int {
|
|
|
|
allDevices := make(map[string]int)
|
2023-01-19 14:24:17 +00:00
|
|
|
scanner := bufio.NewScanner(reader)
|
|
|
|
for scanner.Scan() {
|
|
|
|
device, major, err := processProcDeviceLine(scanner.Text())
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
allDevices[device] = major
|
|
|
|
}
|
|
|
|
return allDevices
|
|
|
|
}
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
func processProcDeviceLine(line string) (string, int, error) {
|
2023-01-19 14:24:17 +00:00
|
|
|
trimmed := strings.TrimSpace(line)
|
|
|
|
|
2024-02-06 10:19:43 +00:00
|
|
|
var name string
|
|
|
|
var major int
|
2023-01-19 14:24:17 +00:00
|
|
|
|
|
|
|
n, _ := fmt.Sscanf(trimmed, "%d %s", &major, &name)
|
|
|
|
if n == 2 {
|
|
|
|
return name, major, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return "", 0, fmt.Errorf("unparsable line: %v", line)
|
|
|
|
}
|