Files
cloudpods/pkg/hostman/isolated_device/container_device/base_dev.go

168 lines
4.1 KiB
Go

// Copyright 2019 Yunion
//
// 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 container_device
import (
"fmt"
"os"
"path"
"strings"
"yunion.io/x/log"
"yunion.io/x/pkg/errors"
"yunion.io/x/onecloud/pkg/hostman/isolated_device"
"yunion.io/x/onecloud/pkg/util/fileutils2"
)
type BaseDevice struct {
*isolated_device.SBaseDevice
Path string
VirtualNum int
}
func NewBaseDevice(
dev *isolated_device.PCIDevice, devType, devPath, sharingMode string, virtualNum int,
) *BaseDevice {
return &BaseDevice{
SBaseDevice: isolated_device.NewBaseDevice(dev, string(devType), sharingMode),
Path: devPath,
VirtualNum: virtualNum,
}
}
func (b BaseDevice) GetVGACmd() string {
return ""
}
func (b BaseDevice) GetCPUCmd() string {
return ""
}
func (b BaseDevice) GetQemuId() string {
return ""
}
func (c BaseDevice) CustomProbe(idx int) error {
return nil
}
func (c BaseDevice) GetDevicePath() string {
return c.Path
}
func (c BaseDevice) GetVirtualNum() int {
return c.VirtualNum
}
func (c BaseDevice) HotPluggable() bool {
return false
}
func (c *BaseDevice) SetDevicePath(devPath string) {
c.Path = devPath
}
func (c BaseDevice) GetNvidiaMpsMemoryLimit() int {
return -1
}
func (c BaseDevice) GetNvidiaMpsMemoryTotal() int {
return -1
}
func (c BaseDevice) GetNvidiaMpsThreadPercentage() int {
return -1
}
func (c BaseDevice) GetCardPath() string {
return ""
}
func (c BaseDevice) GetRenderPath() string {
return ""
}
func (c BaseDevice) GetNumaNode() (int, error) {
if c.SBaseDevice == nil {
return -1, nil
}
numaNodePath := fmt.Sprintf("/sys/bus/pci/devices/0000:%s/numa_node", c.SBaseDevice.GetOriginAddr())
numaNode, err := fileutils2.FileGetIntContent(numaNodePath)
if err != nil {
log.Debugf("failed get numa node %s: %s", c.SBaseDevice.GetOriginAddr(), err)
return -1, nil
}
return numaNode, nil
}
func CheckVirtualNumber(dev *isolated_device.ContainerDevice) error {
if dev.VirtualNumber <= 0 {
return errors.Errorf("virtual_number must > 0")
}
return nil
}
func getGPUPCIAddr(linkPartName string) (string, error) {
if !strings.HasPrefix(linkPartName, "pci-") {
return "", errors.Errorf("wrong link name: %s", linkPartName)
}
segs := strings.Split(linkPartName, "-")
if len(segs) < 3 {
return "", errors.Errorf("%s: segments length is less than 3 after splited by -", linkPartName)
}
fullAddr := segs[1]
return fullAddr, nil
}
func NewPCIGPURenderBaseDevice(devPath string, virtualNum int, devType, sharingMode string) (*BaseDevice, error) {
dir := "/dev/dri/by-path/"
entries, err := os.ReadDir(dir)
if err != nil {
return nil, errors.Wrap(err, "read dir")
}
for _, entry := range entries {
entryName := entry.Name()
fp := path.Join(dir, entryName)
linkPath, err := os.Readlink(fp)
if err != nil {
return nil, errors.Wrapf(err, "read link of %s", entry.Name())
}
linkDevPath := path.Join(dir, linkPath)
if linkDevPath == devPath {
// get pci address
if !strings.HasSuffix(entryName, "-render") {
return nil, errors.Errorf("%s isn't render device", devPath)
}
pciAddr, err := getGPUPCIAddr(entryName)
if err != nil {
return nil, errors.Wrapf(err, "get pci address of %s", devPath)
}
pciOutput, err := isolated_device.GetPCIStrByAddr(pciAddr)
if err != nil {
return nil, errors.Wrapf(err, "GetPCIStrByAddr %s", pciAddr)
}
dev := isolated_device.NewPCIDevice2(pciOutput[0])
// devAddr := dev.Addr
baseDev := NewBaseDevice(dev, devType, devPath, sharingMode, virtualNum)
//baseDev.SetAddr(fmt.Sprintf("%s-%d", devAddr, index), devAddr)
return baseDev, nil
}
}
return nil, errors.Wrapf(errors.ErrNotFound, "%s doesn't exist in %s", devPath, dir)
}