2022-07-06 10:19:16 +00:00
|
|
|
/*
|
|
|
|
# Copyright (c) 2021, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package lookup
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/ldcache"
|
2023-03-22 12:27:43 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/logger"
|
2022-07-06 10:19:16 +00:00
|
|
|
)
|
|
|
|
|
2023-11-03 21:16:16 +00:00
|
|
|
type ldcacheLocator struct {
|
|
|
|
logger logger.Interface
|
|
|
|
cache ldcache.LDCache
|
2022-07-06 10:19:16 +00:00
|
|
|
}
|
|
|
|
|
2023-11-03 21:16:16 +00:00
|
|
|
var _ Locator = (*ldcacheLocator)(nil)
|
2022-07-06 10:19:16 +00:00
|
|
|
|
2023-08-15 12:29:22 +00:00
|
|
|
// NewLibraryLocator creates a library locator using the specified options.
|
|
|
|
func NewLibraryLocator(opts ...Option) Locator {
|
|
|
|
opts = append(opts,
|
2023-11-03 21:16:16 +00:00
|
|
|
WithSearchPaths([]string{
|
|
|
|
"/",
|
|
|
|
"/usr/lib64",
|
|
|
|
"/usr/lib/x86_64-linux-gnu",
|
|
|
|
"/usr/lib/aarch64-linux-gnu",
|
|
|
|
"/usr/lib/x86_64-linux-gnu/nvidia/current",
|
|
|
|
"/usr/lib/aarch64-linux-gnu/nvidia/current",
|
|
|
|
"/lib64",
|
|
|
|
"/lib/x86_64-linux-gnu",
|
|
|
|
"/lib/aarch64-linux-gnu",
|
|
|
|
"/lib/x86_64-linux-gnu/nvidia/current",
|
|
|
|
"/lib/aarch64-linux-gnu/nvidia/current",
|
|
|
|
}...),
|
|
|
|
)
|
2023-08-15 12:29:22 +00:00
|
|
|
// We construct a symlink locator for expected library locations.
|
|
|
|
symlinkLocator := NewSymlinkLocator(opts...)
|
2023-11-03 21:16:16 +00:00
|
|
|
|
|
|
|
l := First(
|
|
|
|
symlinkLocator,
|
2023-08-15 12:29:22 +00:00
|
|
|
newLdcacheLocator(opts...),
|
2023-11-03 21:16:16 +00:00
|
|
|
)
|
2023-08-15 12:29:22 +00:00
|
|
|
return l
|
2023-11-03 21:16:16 +00:00
|
|
|
}
|
|
|
|
|
2023-08-15 12:29:22 +00:00
|
|
|
func newLdcacheLocator(opts ...Option) Locator {
|
|
|
|
b := newBuilder(opts...)
|
|
|
|
|
|
|
|
cache, err := ldcache.New(b.logger, b.root)
|
2022-07-06 10:19:16 +00:00
|
|
|
if err != nil {
|
2023-11-03 21:16:16 +00:00
|
|
|
// If we failed to open the LDCache, we default to a symlink locator.
|
2023-08-15 12:29:22 +00:00
|
|
|
b.logger.Warningf("Failed to load ldcache: %v", err)
|
2023-11-03 21:16:16 +00:00
|
|
|
return nil
|
2022-07-06 10:19:16 +00:00
|
|
|
}
|
|
|
|
|
2023-08-15 12:56:33 +00:00
|
|
|
return &ldcacheLocator{
|
2023-08-15 12:29:22 +00:00
|
|
|
logger: b.logger,
|
2023-11-03 21:16:16 +00:00
|
|
|
cache: cache,
|
2022-07-06 10:19:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Locate finds the specified libraryname.
|
|
|
|
// If the input is a library name, the ldcache is searched otherwise the
|
|
|
|
// provided path is resolved as a symlink.
|
2023-11-03 21:16:16 +00:00
|
|
|
func (l ldcacheLocator) Locate(libname string) ([]string, error) {
|
2022-07-06 10:19:16 +00:00
|
|
|
paths32, paths64 := l.cache.Lookup(libname)
|
|
|
|
if len(paths32) > 0 {
|
2023-06-06 19:46:38 +00:00
|
|
|
l.logger.Warningf("Ignoring 32-bit libraries for %v: %v", libname, paths32)
|
2022-07-06 10:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(paths64) == 0 {
|
2023-08-15 12:56:33 +00:00
|
|
|
return nil, fmt.Errorf("64-bit library %v: %w", libname, errNotFound)
|
2022-07-06 10:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return paths64, nil
|
|
|
|
}
|