2022-03-09 15:51:51 +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"
|
|
|
|
"path/filepath"
|
|
|
|
|
2023-05-11 12:04:16 +00:00
|
|
|
"github.com/NVIDIA/nvidia-container-toolkit/internal/lookup/symlinks"
|
2022-03-09 15:51:51 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type symlinkChain struct {
|
|
|
|
file
|
|
|
|
}
|
|
|
|
|
|
|
|
type symlink struct {
|
|
|
|
file
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSymlinkChainLocator creats a locator that can be used for locating files through symlinks.
|
2023-07-18 09:57:26 +00:00
|
|
|
func NewSymlinkChainLocator(opts ...Option) Locator {
|
|
|
|
f := newFileLocator(opts...)
|
2022-03-09 15:51:51 +00:00
|
|
|
l := symlinkChain{
|
2022-12-02 10:38:40 +00:00
|
|
|
file: *f,
|
2022-03-09 15:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &l
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewSymlinkLocator creats a locator that can be used for locating files through symlinks.
|
2023-07-18 09:57:26 +00:00
|
|
|
func NewSymlinkLocator(opts ...Option) Locator {
|
|
|
|
f := newFileLocator(opts...)
|
2022-03-09 15:51:51 +00:00
|
|
|
l := symlink{
|
2022-12-02 10:38:40 +00:00
|
|
|
file: *f,
|
2022-03-09 15:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &l
|
|
|
|
}
|
|
|
|
|
2022-06-30 09:00:58 +00:00
|
|
|
// Locate finds the specified pattern at the specified root.
|
|
|
|
// If the file is a symlink, the link is followed and all candidates to the final target are returned.
|
|
|
|
func (p symlinkChain) Locate(pattern string) ([]string, error) {
|
|
|
|
candidates, err := p.file.Locate(pattern)
|
2022-03-09 15:51:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(candidates) == 0 {
|
|
|
|
return candidates, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
found := make(map[string]bool)
|
|
|
|
for len(candidates) > 0 {
|
|
|
|
candidate := candidates[0]
|
|
|
|
candidates = candidates[:len(candidates)-1]
|
|
|
|
if found[candidate] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
found[candidate] = true
|
|
|
|
|
2023-05-11 12:04:16 +00:00
|
|
|
target, err := symlinks.Resolve(candidate)
|
2022-03-09 15:51:51 +00:00
|
|
|
if err != nil {
|
2023-05-11 12:04:16 +00:00
|
|
|
return nil, fmt.Errorf("error resolving symlink: %v", err)
|
2022-03-09 15:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !filepath.IsAbs(target) {
|
|
|
|
target, err = filepath.Abs(filepath.Join(filepath.Dir(candidate), target))
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to construct absolute path: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p.logger.Debugf("Resolved link: '%v' => '%v'", candidate, target)
|
|
|
|
if !found[target] {
|
|
|
|
candidates = append(candidates, target)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var filenames []string
|
|
|
|
for f := range found {
|
|
|
|
filenames = append(filenames, f)
|
|
|
|
}
|
|
|
|
return filenames, nil
|
|
|
|
}
|
|
|
|
|
2022-06-30 09:00:58 +00:00
|
|
|
// Locate finds the specified pattern at the specified root.
|
|
|
|
// If the file is a symlink, the link is resolved and the target returned.
|
|
|
|
func (p symlink) Locate(pattern string) ([]string, error) {
|
|
|
|
candidates, err := p.file.Locate(pattern)
|
2022-03-09 15:51:51 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(candidates) != 1 {
|
2022-06-30 09:00:58 +00:00
|
|
|
return nil, fmt.Errorf("failed to uniquely resolve symlink %v: %v", pattern, candidates)
|
2022-03-09 15:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
target, err := filepath.EvalSymlinks(candidates[0])
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to resolve link: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return []string{target}, err
|
|
|
|
}
|