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
|
package device
import (
"errors"
"fmt"
"net/http"
"github.com/lxc/incus/v6/internal/linux"
deviceConfig "github.com/lxc/incus/v6/internal/server/device/config"
"github.com/lxc/incus/v6/internal/server/instance"
"github.com/lxc/incus/v6/internal/server/instance/instancetype"
"github.com/lxc/incus/v6/internal/server/network"
"github.com/lxc/incus/v6/shared/api"
"github.com/lxc/incus/v6/shared/util"
)
type nicSRIOV struct {
deviceCommon
network network.Network // Populated in validateConfig().
}
// CanHotPlug returns whether the device can be managed whilst the instance is running. Returns true.
func (d *nicSRIOV) CanHotPlug() bool {
return true
}
// CanMigrate returns whether the device can be migrated to any other cluster member.
func (d *nicSRIOV) CanMigrate() bool {
return d.config["network"] != ""
}
// validateConfig checks the supplied config for correctness.
func (d *nicSRIOV) validateConfig(instConf instance.ConfigReader) error {
if !instanceSupported(instConf.Type(), instancetype.Container, instancetype.VM) {
return ErrUnsupportedDevType
}
var requiredFields []string
optionalFields := []string{
// gendoc:generate(entity=devices, group=nic_sriov, key=name)
//
// ---
// type: string
// default: kernel assigned
// managed: no
// shortdesc: The name of the interface inside the instance
"name",
// gendoc:generate(entity=devices, group=nic_sriov, key=network)
//
// ---
// type: string
// managed: no
// shortdesc: The managed network to link the device to (instead of specifying the `nictype` directly)
"network",
// gendoc:generate(entity=devices, group=nic_sriov, key=parent)
//
// ---
// type: string
// managed: yes
// shortdesc: The name of the parent host device (required if specifying the `nictype` directly)
"parent",
// gendoc:generate(entity=devices, group=nic_sriov, key=hwaddr)
//
// ---
// type: string
// default: randomly assigned
// managed: no
// shortdesc: The MAC address of the new interface
"hwaddr",
// gendoc:generate(entity=devices, group=nic_sriov, key=mtu)
//
// ---
// type: integer
// default: kernel assigned
// managed: yes
// shortdesc: The Maximum Transmit Unit (MTU) of the new interface
"mtu",
// gendoc:generate(entity=devices, group=nic_sriov, key=vlan)
//
// ---
// type: integer
// managed: no
// shortdesc: The VLAN ID to attach to
"vlan",
// gendoc:generate(entity=devices, group=nic_sriov, key=security.mac_filtering)
//
// ---
// type: bool
// default: false
// managed: no
// shortdesc: Prevent the instance from spoofing another instance's MAC address
"security.mac_filtering",
// gendoc:generate(entity=devices, group=nic_sriov, key=boot.priority)
//
// ---
// type: integer
// managed: no
// shortdesc: Boot priority for VMs (higher value boots first)
"boot.priority",
}
// Check that if network property is set that conflicting keys are not present.
if d.config["network"] != "" {
requiredFields = append(requiredFields, "network")
bannedKeys := []string{"nictype", "parent", "mtu", "vlan"}
for _, bannedKey := range bannedKeys {
if d.config[bannedKey] != "" {
return fmt.Errorf("Cannot use %q property in conjunction with %q property", bannedKey, "network")
}
}
// If network property is specified, lookup network settings and apply them to the device's config.
// api.ProjectDefaultName is used here as macvlan networks don't support projects.
var err error
d.network, err = network.LoadByName(d.state, api.ProjectDefaultName, d.config["network"])
if err != nil {
return fmt.Errorf("Error loading network config for %q: %w", d.config["network"], err)
}
if d.network.Status() != api.NetworkStatusCreated {
return errors.New("Specified network is not fully created")
}
if d.network.Type() != "sriov" {
return errors.New("Specified network must be of type macvlan")
}
netConfig := d.network.Config()
// Get actual parent device from network's parent setting.
d.config["parent"] = netConfig["parent"]
// Copy certain keys verbatim from the network's settings.
inheritKeys := []string{"mtu", "vlan"}
for _, inheritKey := range inheritKeys {
_, found := netConfig[inheritKey]
if found {
d.config[inheritKey] = netConfig[inheritKey]
}
}
} else {
// If no network property supplied, then parent property is required.
requiredFields = append(requiredFields, "parent")
}
err := d.config.Validate(nicValidationRules(requiredFields, optionalFields, instConf))
if err != nil {
return err
}
return nil
}
// PreStartCheck checks the managed parent network is available (if relevant).
func (d *nicSRIOV) PreStartCheck() error {
// Non-managed network NICs are not relevant for checking managed network availability.
if d.network == nil {
return nil
}
// If managed network is not available, don't try and start instance.
if d.network.LocalStatus() == api.NetworkStatusUnavailable {
return api.StatusErrorf(http.StatusServiceUnavailable, "Network %q unavailable on this server", d.network.Name())
}
return nil
}
// validateEnvironment checks the runtime environment for correctness.
func (d *nicSRIOV) validateEnvironment() error {
if d.inst.Type() == instancetype.VM && util.IsTrue(d.inst.ExpandedConfig()["migration.stateful"]) {
return errors.New("Network SR-IOV devices cannot be used when migration.stateful is enabled")
}
if d.inst.Type() == instancetype.Container && d.config["name"] == "" {
return errors.New("Requires name property to start")
}
if !network.InterfaceExists(d.config["parent"]) {
return fmt.Errorf("Parent device %q 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 *nicSRIOV) Start() (*deviceConfig.RunConfig, error) {
err := d.validateEnvironment()
if err != nil {
return nil, err
}
saveData := make(map[string]string)
// 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)
}
}
// Find free VF exclusively.
network.SRIOVVirtualFunctionMutex.Lock()
vfDev, vfID, err := network.SRIOVFindFreeVirtualFunction(d.state, d.config["parent"])
if err != nil {
network.SRIOVVirtualFunctionMutex.Unlock()
return nil, err
}
// Claim the SR-IOV virtual function (VF) on the parent (PF) and get the PCI information.
vfPCIDev, pciIOMMUGroup, err := networkSRIOVSetupVF(d.deviceCommon, d.config["parent"], vfDev, vfID, saveData)
if err != nil {
network.SRIOVVirtualFunctionMutex.Unlock()
return nil, err
}
network.SRIOVVirtualFunctionMutex.Unlock()
if d.inst.Type() == instancetype.Container {
err := networkSRIOVSetupContainerVFNIC(saveData["host_name"], d.config)
if err != nil {
return nil, err
}
}
// Save new volatile keys.
err = d.volatileSet(saveData)
if err != nil {
return nil, err
}
// Get all volatile keys.
volatile := d.volatileGet()
// Apply stable MAC address.
if d.config["hwaddr"] == "" {
d.config["hwaddr"] = volatile["hwaddr"]
}
runConf := deviceConfig.RunConfig{}
runConf.NetworkInterface = []deviceConfig.RunConfigItem{
{Key: "type", Value: "phys"},
{Key: "name", Value: d.config["name"]},
{Key: "flags", Value: "up"},
{Key: "link", Value: saveData["host_name"]},
{Key: "hwaddr", Value: d.config["hwaddr"]},
}
if d.inst.Type() == instancetype.VM {
runConf.NetworkInterface = append(runConf.NetworkInterface,
[]deviceConfig.RunConfigItem{
{Key: "devName", Value: d.name},
{Key: "pciSlotName", Value: vfPCIDev.SlotName},
{Key: "pciIOMMUGroup", Value: fmt.Sprintf("%d", pciIOMMUGroup)},
}...)
}
return &runConf, nil
}
// Stop is run when the device is removed from the instance.
func (d *nicSRIOV) Stop() (*deviceConfig.RunConfig, error) {
v := d.volatileGet()
runConf := deviceConfig.RunConfig{
PostHooks: []func() error{d.postStop},
NetworkInterface: []deviceConfig.RunConfigItem{
{Key: "link", Value: v["host_name"]},
},
}
return &runConf, nil
}
// postStop is run after the device is removed from the instance.
func (d *nicSRIOV) postStop() error {
defer func() {
_ = d.volatileSet(map[string]string{
"host_name": "",
"last_state.hwaddr": "",
"last_state.mtu": "",
"last_state.created": "",
"last_state.vf.parent": "",
"last_state.vf.id": "",
"last_state.vf.hwaddr": "",
"last_state.vf.vlan": "",
"last_state.vf.spoofcheck": "",
"last_state.pci.driver": "",
})
}()
v := d.volatileGet()
network.SRIOVVirtualFunctionMutex.Lock()
err := networkSRIOVRestoreVF(d.deviceCommon, true, v)
if err != nil {
network.SRIOVVirtualFunctionMutex.Unlock()
return err
}
network.SRIOVVirtualFunctionMutex.Unlock()
return nil
}
|