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"
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup"
|
|
|
|
)
|
|
|
|
|
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-11-14 15:57:37 +00:00
|
|
|
func (l *nvmllib) newCommonNVMLDiscoverer() (discover.Discover, error) {
|
2022-11-23 15:29:18 +00:00
|
|
|
metaDevices := discover.NewDeviceDiscoverer(
|
2023-11-14 15:57:37 +00:00
|
|
|
l.logger,
|
2023-01-23 15:01:29 +00:00
|
|
|
lookup.NewCharDeviceLocator(
|
2023-11-14 15:57:37 +00:00
|
|
|
lookup.WithLogger(l.logger),
|
|
|
|
lookup.WithRoot(l.devRoot),
|
2023-01-23 15:01:29 +00:00
|
|
|
),
|
2023-11-14 15:57:37 +00:00
|
|
|
l.devRoot,
|
2022-11-23 15:29:18 +00:00
|
|
|
[]string{
|
|
|
|
"/dev/nvidia-modeset",
|
|
|
|
"/dev/nvidia-uvm-tools",
|
|
|
|
"/dev/nvidia-uvm",
|
|
|
|
"/dev/nvidiactl",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2023-11-14 15:57:37 +00:00
|
|
|
graphicsMounts, err := discover.NewGraphicsMountsDiscoverer(l.logger, l.driverRoot, l.nvidiaCTKPath)
|
2022-11-23 15:29:18 +00:00
|
|
|
if err != nil {
|
2023-11-14 15:57:37 +00:00
|
|
|
l.logger.Warningf("failed to create discoverer for graphics mounts: %v", err)
|
2022-11-23 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
2023-11-14 15:57:37 +00:00
|
|
|
driverFiles, err := NewDriverDiscoverer(l.logger, l.driverRoot, l.nvidiaCTKPath, l.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
|
|
|
|
}
|