2022-11-23 15:29:18 +00:00
|
|
|
/**
|
|
|
|
# Copyright (c) NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
**/
|
|
|
|
|
2022-12-02 13:17:52 +00:00
|
|
|
package nvcdi
|
2022-11-23 15:29:18 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/discover"
|
2023-03-22 12:27:43 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/logger"
|
2022-11-23 15:29:18 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
|
2022-12-02 13:17:52 +00:00
|
|
|
|
2022-11-23 15:29:18 +00:00
|
|
|
"gitlab.com/nvidia/cloud-native/go-nvlib/pkg/nvml"
|
|
|
|
)
|
|
|
|
|
2023-02-16 15:29:53 +00:00
|
|
|
// newCommonNVMLDiscoverer returns a discoverer for entities that are not associated with a specific CDI device.
|
2022-11-23 15:29:18 +00:00
|
|
|
// This includes driver libraries and meta devices, for example.
|
2023-03-22 12:27:43 +00:00
|
|
|
func newCommonNVMLDiscoverer(logger logger.Interface, driverRoot string, nvidiaCTKPath string, nvmllib nvml.Interface) (discover.Discover, error) {
|
2022-11-23 15:29:18 +00:00
|
|
|
metaDevices := discover.NewDeviceDiscoverer(
|
|
|
|
logger,
|
2023-01-23 15:01:29 +00:00
|
|
|
lookup.NewCharDeviceLocator(
|
|
|
|
lookup.WithLogger(logger),
|
2023-02-02 14:42:01 +00:00
|
|
|
lookup.WithRoot(driverRoot),
|
2023-01-23 15:01:29 +00:00
|
|
|
),
|
2023-02-02 14:42:01 +00:00
|
|
|
driverRoot,
|
2022-11-23 15:29:18 +00:00
|
|
|
[]string{
|
|
|
|
"/dev/nvidia-modeset",
|
|
|
|
"/dev/nvidia-uvm-tools",
|
|
|
|
"/dev/nvidia-uvm",
|
|
|
|
"/dev/nvidiactl",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-05-10 14:53:10 +00:00
|
|
|
graphicsMounts, err := discover.NewGraphicsMountsDiscoverer(logger, driverRoot, nvidiaCTKPath)
|
2022-11-23 15:29:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error constructing discoverer for graphics mounts: %v", err)
|
|
|
|
}
|
|
|
|
|
2023-02-02 14:42:01 +00:00
|
|
|
driverFiles, err := NewDriverDiscoverer(logger, driverRoot, nvidiaCTKPath, nvmllib)
|
2022-11-23 15:29:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to create discoverer for driver files: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
d := discover.Merge(
|
|
|
|
metaDevices,
|
|
|
|
graphicsMounts,
|
|
|
|
driverFiles,
|
|
|
|
)
|
|
|
|
|
|
|
|
return d, nil
|
|
|
|
}
|