mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-10-21 11:58:41 +00:00
This is a virtcontainers 1.0.8 import into Kata Containers runtime. virtcontainers is a Go library designed to manage hardware virtualized pods and containers. It is the core Clear Containers framework and will become the core Kata Containers framework, as discussed at https://github.com/kata-containers/runtime/issues/33 Some more more pointers: virtcontainers README, including some design and architecure notes: https://github.com/containers/virtcontainers/blob/master/README.md virtcontainers 1.0 API: https://github.com/containers/virtcontainers/blob/master/documentation/api/1.0/api.md Fixes #40 Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
78 lines
2.1 KiB
Go
78 lines
2.1 KiB
Go
//
|
|
// Copyright (c) 2017 Intel Corporation
|
|
//
|
|
// 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 virtcontainers
|
|
|
|
import "fmt"
|
|
|
|
type bridgeType string
|
|
|
|
const (
|
|
pciBridge bridgeType = "pci"
|
|
pcieBridge = "pcie"
|
|
)
|
|
|
|
const pciBridgeMaxCapacity = 30
|
|
|
|
// Bridge is a bridge where devices can be hot plugged
|
|
type Bridge struct {
|
|
// Address contains information about devices plugged and its address in the bridge
|
|
Address map[uint32]string
|
|
|
|
// Type is the type of the bridge (pci, pcie, etc)
|
|
Type bridgeType
|
|
|
|
//ID is used to identify the bridge in the hypervisor
|
|
ID string
|
|
}
|
|
|
|
// addDevice on success adds the device ID to the bridge and return the address
|
|
// where the device was added, otherwise an error is returned
|
|
func (b *Bridge) addDevice(ID string) (uint32, error) {
|
|
var addr uint32
|
|
|
|
// looking for the first available address
|
|
for i := uint32(1); i <= pciBridgeMaxCapacity; i++ {
|
|
if _, ok := b.Address[i]; !ok {
|
|
addr = i
|
|
break
|
|
}
|
|
}
|
|
|
|
if addr == 0 {
|
|
return 0, fmt.Errorf("Unable to hot plug device on bridge: there are not empty slots")
|
|
}
|
|
|
|
// save address and device
|
|
b.Address[addr] = ID
|
|
return addr, nil
|
|
}
|
|
|
|
// removeDevice on success removes the device ID from the bridge and return nil,
|
|
// otherwise an error is returned
|
|
func (b *Bridge) removeDevice(ID string) error {
|
|
// check if the device was hot plugged in the bridge
|
|
for addr, devID := range b.Address {
|
|
if devID == ID {
|
|
// free address to re-use the same slot with other devices
|
|
delete(b.Address, addr)
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return fmt.Errorf("Unable to hot unplug device %s: not present on bridge", ID)
|
|
}
|