1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
|
package device
import (
"errors"
"fmt"
"io/fs"
"os"
"path/filepath"
"regexp"
"strconv"
"strings"
"golang.org/x/sys/unix"
"github.com/lxc/incus/v6/internal/linux"
deviceConfig "github.com/lxc/incus/v6/internal/server/device/config"
pcidev "github.com/lxc/incus/v6/internal/server/device/pci"
"github.com/lxc/incus/v6/internal/server/instance"
"github.com/lxc/incus/v6/internal/server/instance/instancetype"
"github.com/lxc/incus/v6/shared/resources"
"github.com/lxc/incus/v6/shared/util"
)
const gpuDRIDevPath = "/dev/dri"
// Non-card devices such as {/dev/nvidiactl, /dev/nvidia-uvm, ...}.
type nvidiaNonCardDevice struct {
path string
major uint32
minor uint32
}
type gpuPhysical struct {
deviceCommon
}
// validateConfig checks the supplied config for correctness.
func (d *gpuPhysical) validateConfig(instConf instance.ConfigReader) error {
if !instanceSupported(instConf.Type(), instancetype.Container, instancetype.VM) {
return ErrUnsupportedDevType
}
optionalFields := []string{
// gendoc:generate(entity=devices, group=gpu_physical, key=vendorid)
//
// ---
// type: string
// required: no
// shortdesc: The vendor ID of the GPU device
"vendorid",
// gendoc:generate(entity=devices, group=gpu_physical, key=productid)
//
// ---
// type: string
// required: no
// shortdesc: The product ID of the GPU device
"productid",
// gendoc:generate(entity=devices, group=gpu_physical, key=id)
//
// ---
// type: string
// required: no
// shortdesc: The DRM card ID of the GPU device
"id",
// gendoc:generate(entity=devices, group=gpu_physical, key=pci)
//
// ---
// type: string
// required: no
// shortdesc: The PCI address of the GPU device
"pci",
}
if instConf.Type() == instancetype.Container || instConf.Type() == instancetype.Any {
// gendoc:generate(entity=devices, group=gpu_physical, key=uid)
//
// ---
// type: int
// default: 0
// required: no
// shortdesc: UID of the device owner in the instance (container only)
// gendoc:generate(entity=devices, group=gpu_physical, key=gid)
//
// ---
// type: int
// default: 0
// required: no
// shortdesc: GID of the device owner in the instance (container only)
// gendoc:generate(entity=devices, group=gpu_physical, key=mode)
//
// ---
// type: int
// default: 0660
// required: no
// shortdesc: Mode of the device in the instance (container only)
optionalFields = append(optionalFields, "uid", "gid", "mode")
}
err := d.config.Validate(gpuValidationRules(nil, optionalFields))
if err != nil {
return err
}
if d.config["pci"] != "" {
for _, field := range []string{"id", "productid", "vendorid"} {
if d.config[field] != "" {
return fmt.Errorf(`Cannot use %q when "pci" is set`, field)
}
}
d.config["pci"] = pcidev.NormaliseAddress(d.config["pci"])
}
if d.config["id"] != "" {
for _, field := range []string{"pci", "productid", "vendorid"} {
if d.config[field] != "" {
return fmt.Errorf(`Cannot use %q when "id" is set`, field)
}
}
}
return nil
}
// validateEnvironment checks the runtime environment for correctness.
func (d *gpuPhysical) validateEnvironment() error {
if d.inst.Type() == instancetype.VM && util.IsTrue(d.inst.ExpandedConfig()["migration.stateful"]) {
return errors.New("GPU devices cannot be used when migration.stateful is enabled")
}
return validatePCIDevice(d.config["pci"])
}
// Start is run when the device is added to the container.
func (d *gpuPhysical) Start() (*deviceConfig.RunConfig, error) {
err := d.validateEnvironment()
if err != nil {
return nil, err
}
if d.inst.Type() == instancetype.VM {
return d.startVM()
}
return d.startContainer()
}
// startContainer detects the requested GPU devices and sets up unix-char devices.
// Returns RunConfig populated with mount info required to pass the unix-char devices into the container.
func (d *gpuPhysical) startContainer() (*deviceConfig.RunConfig, error) {
runConf := deviceConfig.RunConfig{}
gpus, err := resources.GetGPU()
if err != nil {
return nil, err
}
sawNvidia := false
found := false
for _, gpu := range gpus.Cards {
// Skip any cards that are not selected.
if !gpuSelected(d.Config(), gpu) {
continue
}
// We found a match.
found = true
// Setup DRM unix-char devices if present.
if gpu.DRM != nil {
if gpu.DRM.CardName != "" && gpu.DRM.CardDevice != "" && util.PathExists(filepath.Join(gpuDRIDevPath, gpu.DRM.CardName)) {
path := filepath.Join(gpuDRIDevPath, gpu.DRM.CardName)
major, minor, err := d.deviceNumStringToUint32(gpu.DRM.CardDevice)
if err != nil {
return nil, err
}
err = unixDeviceSetupCharNum(d.state, d.inst.DevicesPath(), "unix", d.name, d.config, major, minor, path, false, &runConf)
if err != nil {
return nil, err
}
}
if gpu.DRM.RenderName != "" && gpu.DRM.RenderDevice != "" && util.PathExists(filepath.Join(gpuDRIDevPath, gpu.DRM.RenderName)) {
path := filepath.Join(gpuDRIDevPath, gpu.DRM.RenderName)
major, minor, err := d.deviceNumStringToUint32(gpu.DRM.RenderDevice)
if err != nil {
return nil, err
}
err = unixDeviceSetupCharNum(d.state, d.inst.DevicesPath(), "unix", d.name, d.config, major, minor, path, false, &runConf)
if err != nil {
return nil, err
}
}
if gpu.DRM.ControlName != "" && gpu.DRM.ControlDevice != "" && util.PathExists(filepath.Join(gpuDRIDevPath, gpu.DRM.ControlName)) {
path := filepath.Join(gpuDRIDevPath, gpu.DRM.ControlName)
major, minor, err := d.deviceNumStringToUint32(gpu.DRM.ControlDevice)
if err != nil {
return nil, err
}
err = unixDeviceSetupCharNum(d.state, d.inst.DevicesPath(), "unix", d.name, d.config, major, minor, path, false, &runConf)
if err != nil {
return nil, err
}
}
}
// Add Nvidia device if present.
if gpu.Nvidia != nil && gpu.Nvidia.CardName != "" && gpu.Nvidia.CardDevice != "" && util.PathExists(filepath.Join("/dev", gpu.Nvidia.CardName)) {
sawNvidia = true
path := filepath.Join("/dev", gpu.Nvidia.CardName)
major, minor, err := d.deviceNumStringToUint32(gpu.Nvidia.CardDevice)
if err != nil {
return nil, err
}
err = unixDeviceSetupCharNum(d.state, d.inst.DevicesPath(), "unix", d.name, d.config, major, minor, path, false, &runConf)
if err != nil {
return nil, err
}
}
}
// Setup additional unix-char devices for nvidia cards.
// No need to mount additional nvidia non-card devices as the nvidia.runtime setting will do this for us.
if sawNvidia {
instanceConfig := d.inst.ExpandedConfig()
if util.IsFalseOrEmpty(instanceConfig["nvidia.runtime"]) {
nvidiaDevices, err := d.getNvidiaNonCardDevices()
if err != nil {
return nil, err
}
for _, dev := range nvidiaDevices {
prefix := deviceJoinPath("unix", d.name)
if UnixDeviceExists(d.inst.DevicesPath(), prefix, dev.path) {
continue
}
err = unixDeviceSetupCharNum(d.state, d.inst.DevicesPath(), "unix", d.name, d.config, dev.major, dev.minor, dev.path, false, &runConf)
if err != nil {
return nil, err
}
}
}
}
if !found {
return nil, errors.New("Failed to detect requested GPU device")
}
return &runConf, nil
}
// startVM detects the requested GPU devices and related virtual functions and rebinds them to the vfio-pci driver.
func (d *gpuPhysical) startVM() (*deviceConfig.RunConfig, error) {
runConf := deviceConfig.RunConfig{}
gpus, err := resources.GetGPU()
if err != nil {
return nil, err
}
saveData := make(map[string]string)
var pciAddress string
for _, gpu := range gpus.Cards {
// Skip any cards that are not selected.
if !gpuSelected(d.Config(), gpu) {
continue
}
// Check for existing running processes tied to the GPU.
// Failing early here in case of attached running processes to the card
// avoids a blocking call to os.WriteFile() when unbinding the device.
if gpu.Nvidia != nil && gpu.Nvidia.CardName != "" && util.PathExists(filepath.Join("/dev", gpu.Nvidia.CardName)) {
devPath := filepath.Join("/dev", gpu.Nvidia.CardName)
runningProcs, err := checkAttachedRunningProcesses(devPath)
if err != nil {
return nil, err
}
if len(runningProcs) > 0 {
return nil, fmt.Errorf(
"Cannot use device %q, %d processes are still attached to it:\n\t%s",
devPath, len(runningProcs), strings.Join(runningProcs, "\n\t"),
)
}
}
if pciAddress != "" {
return nil, errors.New("VMs cannot match multiple GPUs per device")
}
pciAddress = gpu.PCIAddress
}
if pciAddress == "" {
return nil, errors.New("Failed to detect requested GPU device")
}
// Make sure that vfio-pci is loaded.
err = linux.LoadModule("vfio-pci")
if err != nil {
return nil, fmt.Errorf("Error loading %q module: %w", "vfio-pci", err)
}
// Get PCI information about the GPU device.
devicePath := filepath.Join("/sys/bus/pci/devices", pciAddress)
pciDev, err := pcidev.ParseUeventFile(filepath.Join(devicePath, "uevent"))
if err != nil {
return nil, fmt.Errorf("Failed to get PCI device info for GPU %q: %w", pciAddress, err)
}
saveData["last_state.pci.slot.name"] = pciDev.SlotName
saveData["last_state.pci.driver"] = pciDev.Driver
err = d.pciDeviceDriverOverrideIOMMU(pciDev, "vfio-pci", false)
if err != nil {
return nil, fmt.Errorf("Failed to override IOMMU group driver: %w", err)
}
runConf.GPUDevice = append(runConf.GPUDevice,
[]deviceConfig.RunConfigItem{
{Key: "devName", Value: d.name},
{Key: "pciSlotName", Value: saveData["last_state.pci.slot.name"]},
}...)
err = d.volatileSet(saveData)
if err != nil {
return nil, err
}
return &runConf, nil
}
// pciDeviceDriverOverrideIOMMU overrides all functions in the specified device's IOMMU group (if exists) that
// are functions of the device. If IOMMU group doesn't exist, only the device itself is overridden.
// If restore argument is true, then IOMMU VF devices related to the main device have their driver override cleared
// rather than being set to the driverOverride specified. This allows for IOMMU VFs that were using a different
// driver (or no driver) when being overridden are not restored back to the main device's driver.
func (d *gpuPhysical) pciDeviceDriverOverrideIOMMU(pciDev pcidev.Device, driverOverride string, restore bool) error {
iommuGroupPath := filepath.Join("/sys/bus/pci/devices", pciDev.SlotName, "iommu_group", "devices")
if util.PathExists(iommuGroupPath) {
// Extract parent slot name by removing any virtual function ID.
parts := strings.SplitN(pciDev.SlotName, ".", 2)
prefix := parts[0]
// Iterate the members of the IOMMU group and override any that match the parent slot name prefix.
err := filepath.Walk(iommuGroupPath, func(path string, _ os.FileInfo, err error) error {
if err != nil {
return err
}
iommuSlotName := filepath.Base(path) // Virtual function's address is dir name.
if strings.HasPrefix(iommuSlotName, prefix) {
iommuPciDev := pcidev.Device{
Driver: pciDev.Driver,
SlotName: iommuSlotName,
}
if iommuSlotName != pciDev.SlotName && restore {
// We don't know the original driver for VFs, so just remove override.
err = pcidev.DeviceDriverOverride(iommuPciDev, "")
} else {
err = pcidev.DeviceDriverOverride(iommuPciDev, driverOverride)
}
if err != nil {
return err
}
}
return nil
})
if err != nil {
return err
}
} else {
err := pcidev.DeviceDriverOverride(pciDev, driverOverride)
if err != nil {
return err
}
}
return nil
}
// Stop is run when the device is removed from the instance.
func (d *gpuPhysical) Stop() (*deviceConfig.RunConfig, error) {
runConf := deviceConfig.RunConfig{
PostHooks: []func() error{d.postStop},
}
if d.inst.Type() == instancetype.Container {
err := unixDeviceRemove(d.inst.DevicesPath(), "unix", d.name, "", &runConf)
if err != nil {
return nil, err
}
}
return &runConf, nil
}
// postStop is run after the device is removed from the instance.
func (d *gpuPhysical) postStop() error {
defer func() {
_ = d.volatileSet(map[string]string{
"last_state.pci.slot.name": "",
"last_state.pci.driver": "",
"vgpu.uuid": "",
})
}()
v := d.volatileGet()
if d.inst.Type() == instancetype.Container {
// Remove host files for this device.
err := unixDeviceDeleteFiles(d.state, d.inst.DevicesPath(), "unix", d.name, "")
if err != nil {
return fmt.Errorf("Failed to delete files for device '%s': %w", d.name, err)
}
}
// If VM physical pass through, unbind from vfio-pci and bind back to host driver.
if d.inst.Type() == instancetype.VM && v["last_state.pci.slot.name"] != "" {
pciDev := pcidev.Device{
Driver: "vfio-pci",
SlotName: v["last_state.pci.slot.name"],
}
err := d.pciDeviceDriverOverrideIOMMU(pciDev, v["last_state.pci.driver"], true)
if err != nil {
return err
}
}
return nil
}
// deviceNumStringToUint32 converts a device number string (major:minor) into separare major and
// minor uint32s.
func (d *gpuPhysical) deviceNumStringToUint32(devNum string) (uint32, uint32, error) {
devParts := strings.SplitN(devNum, ":", 2)
tmp, err := strconv.ParseUint(devParts[0], 10, 32)
if err != nil {
return 0, 0, err
}
major := uint32(tmp)
tmp, err = strconv.ParseUint(devParts[1], 10, 32)
if err != nil {
return 0, 0, err
}
minor := uint32(tmp)
return major, minor, nil
}
// getNvidiaNonCardDevices returns device information about Nvidia non-card devices.
func (d *gpuPhysical) getNvidiaNonCardDevices() ([]nvidiaNonCardDevice, error) {
nvidiaEnts, err := os.ReadDir("/dev")
if err != nil {
if errors.Is(err, fs.ErrNotExist) {
return nil, err
}
}
regexNvidiaCard, err := regexp.Compile(`^nvidia[0-9]+`)
if err != nil {
return nil, err
}
nvidiaDevices := []nvidiaNonCardDevice{}
for _, nvidiaEnt := range nvidiaEnts {
if !strings.HasPrefix(nvidiaEnt.Name(), "nvidia") {
continue
}
// Skip the nvidia directories for now (require extra MIG support).
if nvidiaEnt.IsDir() {
continue
}
if regexNvidiaCard.MatchString(nvidiaEnt.Name()) {
continue
}
nvidiaPath := filepath.Join("/dev", nvidiaEnt.Name())
stat := unix.Stat_t{}
err = unix.Stat(nvidiaPath, &stat)
if err != nil {
continue
}
tmpNividiaGpu := nvidiaNonCardDevice{
path: nvidiaPath,
major: unix.Major(uint64(stat.Rdev)),
minor: unix.Minor(uint64(stat.Rdev)),
}
nvidiaDevices = append(nvidiaDevices, tmpNividiaGpu)
}
return nvidiaDevices, nil
}
|