1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-15 17:50:49 +00:00
node-feature-discovery/source/storage/storage.go
Carlos Eduardo Arango Gutierrez 3434557d7c
Move NFD api to a separate go mod
Signed-off-by: Carlos Eduardo Arango Gutierrez <eduardoa@nvidia.com>
2024-04-05 16:35:47 +02:00

129 lines
3.6 KiB
Go

/*
Copyright 2018-2021 The Kubernetes Authors.
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 storage
import (
"fmt"
"os"
"path/filepath"
"strings"
"k8s.io/klog/v2"
nfdv1alpha1 "sigs.k8s.io/node-feature-discovery/api/nfd/v1alpha1"
"sigs.k8s.io/node-feature-discovery/pkg/utils"
"sigs.k8s.io/node-feature-discovery/pkg/utils/hostpath"
"sigs.k8s.io/node-feature-discovery/source"
)
// Name of this feature source
const Name = "storage"
const BlockFeature = "block"
// storageSource implements the FeatureSource and LabelSource interfaces.
type storageSource struct {
features *nfdv1alpha1.Features
}
// Singleton source instance
var (
src storageSource
_ source.FeatureSource = &src
_ source.LabelSource = &src
)
// queueAttrs is the list of files under /sys/block/<dev>/queue that we're trying to read
var queueAttrs = []string{"dax", "rotational", "nr_zones", "zoned"}
// Name returns an identifier string for this feature source.
func (s *storageSource) Name() string { return Name }
// Priority method of the LabelSource interface
func (s *storageSource) Priority() int { return 0 }
// GetLabels method of the LabelSource interface
func (s *storageSource) GetLabels() (source.FeatureLabels, error) {
labels := source.FeatureLabels{}
features := s.GetFeatures()
for _, dev := range features.Instances[BlockFeature].Elements {
if dev.Attributes["rotational"] == "0" {
labels["nonrotationaldisk"] = true
break
}
}
return labels, nil
}
// Discover method of the FeatureSource interface
func (s *storageSource) Discover() error {
s.features = nfdv1alpha1.NewFeatures()
devs, err := detectBlock()
if err != nil {
return fmt.Errorf("failed to detect block devices: %w", err)
}
s.features.Instances[BlockFeature] = nfdv1alpha1.InstanceFeatureSet{Elements: devs}
klog.V(3).InfoS("discovered features", "featureSource", s.Name(), "features", utils.DelayedDumper(s.features))
return nil
}
// GetFeatures method of the FeatureSource Interface.
func (s *storageSource) GetFeatures() *nfdv1alpha1.Features {
if s.features == nil {
s.features = nfdv1alpha1.NewFeatures()
}
return s.features
}
func detectBlock() ([]nfdv1alpha1.InstanceFeature, error) {
sysfsBasePath := hostpath.SysfsDir.Path("block")
blockdevices, err := os.ReadDir(sysfsBasePath)
if err != nil {
return nil, fmt.Errorf("failed to list block devices: %w", err)
}
// Iterate over devices
info := make([]nfdv1alpha1.InstanceFeature, 0, len(blockdevices))
for _, device := range blockdevices {
info = append(info, *readBlockDevQueueInfo(filepath.Join(sysfsBasePath, device.Name())))
}
return info, nil
}
func readBlockDevQueueInfo(path string) *nfdv1alpha1.InstanceFeature {
attrs := map[string]string{"name": filepath.Base(path)}
for _, attrName := range queueAttrs {
data, err := os.ReadFile(filepath.Join(path, "queue", attrName))
if err != nil {
klog.V(3).ErrorS(err, "failed to read block device queue attribute", "attributeName", attrName)
continue
}
attrs[attrName] = strings.TrimSpace(string(data))
}
return nfdv1alpha1.NewInstanceFeature(attrs)
}
func init() {
source.Register(&src)
}