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
|
package device
import (
"errors"
"fmt"
"strconv"
"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/internal/server/ip"
"github.com/lxc/incus/v6/shared/resources"
"github.com/lxc/incus/v6/shared/util"
)
type infinibandPhysical struct {
deviceCommon
}
// validateConfig checks the supplied config for correctness.
func (d *infinibandPhysical) validateConfig(instConf instance.ConfigReader) error {
requiredFields := []string{
// gendoc:generate(entity=devices, group=infiniband, key=parent)
//
// ---
// type: string
// required: no
// defaultdesc: kernel assigned
// shortdesc: The name of the interface inside the instance
"parent",
}
optionalFields := []string{
// gendoc:generate(entity=devices, group=infiniband, key=name)
//
// ---
// type: string
// required: no
// defaultdesc: kernel assigned
// shortdesc: The name of the interface inside the instance
"name",
// gendoc:generate(entity=devices, group=infiniband, key=mtu)
//
// ---
// type: integer
// required: no
// defaultdesc: parent MTU
// shortdesc: The MTU of the new interface
"mtu",
// gendoc:generate(entity=devices, group=infiniband, key=hwaddr)
//
// ---
// type: string
// required: no
// defaultdesc: randomly assigned
// shortdesc: The MAC address of the new interface (can be either the full 20-byte variant or the short 8-byte variant, which will only modify the last 8 bytes of the parent device)
"hwaddr",
}
rules := nicValidationRules(requiredFields, optionalFields, instConf)
rules["hwaddr"] = func(value string) error {
if value == "" {
return nil
}
return infinibandValidMAC(value)
}
err := d.config.Validate(rules)
if err != nil {
return err
}
return nil
}
// validateEnvironment checks the runtime environment for correctness.
func (d *infinibandPhysical) validateEnvironment() error {
if d.inst.Type() == instancetype.Container && d.config["name"] == "" {
return errors.New("Requires name property to start")
}
if !util.PathExists(fmt.Sprintf("/sys/class/net/%s", d.config["parent"])) {
return fmt.Errorf("Parent device '%s' doesn't exist", d.config["parent"])
}
return nil
}
// Start is run when the device is added to a running instance or instance is starting up.
func (d *infinibandPhysical) Start() (*deviceConfig.RunConfig, error) {
err := d.validateEnvironment()
if err != nil {
return nil, err
}
saveData := make(map[string]string)
// pciIOMMUGroup, used for VM physical passthrough.
var pciIOMMUGroup uint64
// If VM, then try and load the vfio-pci module first.
if d.inst.Type() == instancetype.VM {
err = linux.LoadModule("vfio-pci")
if err != nil {
return nil, fmt.Errorf("Error loading %q module: %w", "vfio-pci", err)
}
}
runConf := deviceConfig.RunConfig{}
// Load network interface info.
nics, err := resources.GetNetwork()
if err != nil {
return nil, err
}
// Filter the network interfaces to just infiniband devices related to parent.
ibDevs := infinibandDevices(nics, d.config["parent"])
ibDev, found := ibDevs[d.config["parent"]]
if !found {
return nil, fmt.Errorf("Specified infiniband device \"%s\" not found", d.config["parent"])
}
saveData["host_name"] = ibDev.ID
if d.inst.Type() == instancetype.Container {
// Record hwaddr and mtu before potentially modifying them.
err = networkSnapshotPhysicalNIC(saveData["host_name"], saveData)
if err != nil {
return nil, err
}
// Set the MAC address.
if d.config["hwaddr"] != "" {
err := infinibandSetDevMAC(saveData["host_name"], d.config["hwaddr"])
if err != nil {
return nil, fmt.Errorf("Failed to set the MAC address: %s", err)
}
}
// Set the MTU.
if d.config["mtu"] != "" {
mtu, err := strconv.ParseUint(d.config["mtu"], 10, 32)
if err != nil {
return nil, fmt.Errorf("Invalid MTU specified %q: %w", d.config["mtu"], err)
}
link := &ip.Link{Name: saveData["host_name"]}
err = link.SetMTU(uint32(mtu))
if err != nil {
return nil, fmt.Errorf("Failed setting MTU %q on %q: %w", d.config["mtu"], saveData["host_name"], err)
}
}
// Configure runConf with infiniband setup instructions.
err = infinibandAddDevices(d.state, d.inst.DevicesPath(), d.name, ibDev, &runConf)
if err != nil {
return nil, err
}
} else if d.inst.Type() == instancetype.VM {
// Get PCI information about the network interface.
ueventPath := fmt.Sprintf("/sys/class/net/%s/device/uevent", saveData["host_name"])
pciDev, err := pcidev.ParseUeventFile(ueventPath)
if err != nil {
return nil, fmt.Errorf("Failed to get PCI device info for %q: %w", saveData["host_name"], err)
}
saveData["last_state.pci.slot.name"] = pciDev.SlotName
saveData["last_state.pci.driver"] = pciDev.Driver
err = pcidev.DeviceDriverOverride(pciDev, "vfio-pci")
if err != nil {
return nil, err
}
pciIOMMUGroup, err = pcidev.DeviceIOMMUGroup(saveData["last_state.pci.slot.name"])
if err != nil {
return nil, err
}
// Record original driver used by device for restore.
saveData["last_state.pci.driver"] = pciDev.Driver
}
err = d.volatileSet(saveData)
if err != nil {
return nil, err
}
runConf.NetworkInterface = []deviceConfig.RunConfigItem{
{Key: "type", Value: "phys"},
{Key: "name", Value: d.config["name"]},
{Key: "flags", Value: "up"},
{Key: "link", Value: saveData["host_name"]},
}
if d.inst.Type() == instancetype.VM {
runConf.NetworkInterface = append(runConf.NetworkInterface,
[]deviceConfig.RunConfigItem{
{Key: "devName", Value: d.name},
{Key: "pciSlotName", Value: saveData["last_state.pci.slot.name"]},
{Key: "pciIOMMUGroup", Value: fmt.Sprintf("%d", pciIOMMUGroup)},
}...)
}
return &runConf, nil
}
// Stop is run when the device is removed from the instance.
func (d *infinibandPhysical) Stop() (*deviceConfig.RunConfig, error) {
v := d.volatileGet()
runConf := deviceConfig.RunConfig{
PostHooks: []func() error{d.postStop},
NetworkInterface: []deviceConfig.RunConfigItem{
{Key: "link", Value: v["host_name"]},
},
}
if d.inst.Type() == instancetype.Container {
err := unixDeviceRemove(d.inst.DevicesPath(), IBDevPrefix, 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 *infinibandPhysical) postStop() error {
defer func() {
_ = d.volatileSet(map[string]string{
"host_name": "",
"last_state.hwaddr": "",
"last_state.mtu": "",
"last_state.pci.slot.name": "",
"last_state.pci.driver": "",
})
}()
v := d.volatileGet()
// 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"] != "" {
vfioDev := pcidev.Device{
Driver: "vfio-pci",
SlotName: v["last_state.pci.slot.name"],
}
// Unbind device from the host so that the restored settings will take effect when we rebind it.
err := pcidev.DeviceUnbind(vfioDev)
if err != nil {
return err
}
err = pcidev.DeviceDriverOverride(vfioDev, v["last_state.pci.driver"])
if err != nil {
return err
}
} else if d.inst.Type() == instancetype.Container {
// Remove infiniband host files for this device.
err := unixDeviceDeleteFiles(d.state, d.inst.DevicesPath(), IBDevPrefix, d.name, "")
if err != nil {
return fmt.Errorf("Failed to delete files for device '%s': %w", d.name, err)
}
}
// Restore hwaddr and mtu.
if v["host_name"] != "" {
err := networkRestorePhysicalNIC(v["host_name"], v)
if err != nil {
return err
}
}
return nil
}
|