mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-10 17:47:52 +00:00
Align codebase with v4.4.1-rhel PodmanConfig structure and API signatures to resolve compilation errors. - Update all cfg.Engine.* references to cfg.ContainersConf.Engine.* or cfg.ContainersConfDefaultsRO.Engine.* - Update all cfg.Network.* references to cfg.ContainersConf.Network.* - Update all cfg.Containers.* references to cfg.ContainersConf.Containers.* or cfg.ContainersConfDefaultsRO.Containers.* - Update cfg.Machine.* references to cfg.ContainersConfDefaultsRO.Machine.* - Fix PodmanConfig initialization in config.go to use ContainersConf and ContainersConfDefaultsRO fields - Add createOptions parameter to NetworkCreate method across all implementations (abi, tunnel, handlers) - Update ContainerEngine interface to match new NetworkCreate signature - Fix manager.Store call in secrets.go to use StoreOptions struct - Update DiskUsage to handle 3 return values - Fix NewConnectionWithIdentity call signature - Remove duplicate setupRemoteConnection function - Remove duplicate readRemoteCliFlags function - Remove duplicate function declarations in container_path_resolution.go, oci_conmon_linux.go - Comment out duplicate SpecGenToOCI and helper functions in oci.go/oci_linux.go - Remove unused imports across multiple files - Fix SSHMode flag handling (field doesn't exist in current PodmanConfig) - Fix ns.NetNS type handling in container_internal_linux.go - Add missing Terminal() method to Container struct - Add missing SdNotifySocket field to ContainerConfig - Fix DefaultCapabilities to use .Get() method - Fix cgroups.AvailableControllers reference - Fix ConmonPath type conversion (attributedstring.Slice) - Add missing ErrNetworkConnected error definition - Fix NetworkCreateOptions handling in secrets.go - Update networking code to use getNetNSPathCommon helper - Fix teardownNetwork method signature - Fix makeInspectPorts to makeInspectPortBindings - Remove hardcoded IsPasta() checks - Fix runtime_libpod.go field access patterns All changes align with the v4.4.1-rhel worktree structure to ensure compatibility with upcoming cherry-picks. Substantially Assisted-by AI: Cursor <auto> Signed-off-by: Chris Evich <cevich@redhat.com>
137 lines
3.3 KiB
Go
137 lines
3.3 KiB
Go
package sftp
|
|
|
|
import (
|
|
"path"
|
|
"strings"
|
|
)
|
|
|
|
// ErrBadPattern indicates a globbing pattern was malformed.
|
|
var ErrBadPattern = path.ErrBadPattern
|
|
|
|
// Match reports whether name matches the shell pattern.
|
|
//
|
|
// This is an alias for path.Match from the standard library,
|
|
// offered so that callers need not import the path package.
|
|
// For details, see https://golang.org/pkg/path/#Match.
|
|
func Match(pattern, name string) (matched bool, err error) {
|
|
return path.Match(pattern, name)
|
|
}
|
|
|
|
// detect if byte(char) is path separator
|
|
func isPathSeparator(c byte) bool {
|
|
return c == '/'
|
|
}
|
|
|
|
// Split splits the path p immediately following the final slash,
|
|
// separating it into a directory and file name component.
|
|
//
|
|
// This is an alias for path.Split from the standard library,
|
|
// offered so that callers need not import the path package.
|
|
// For details, see https://golang.org/pkg/path/#Split.
|
|
func Split(p string) (dir, file string) {
|
|
return path.Split(p)
|
|
}
|
|
|
|
// Glob returns the names of all files matching pattern or nil
|
|
// if there is no matching file. The syntax of patterns is the same
|
|
// as in Match. The pattern may describe hierarchical names such as
|
|
// /usr/*/bin/ed.
|
|
//
|
|
// Glob ignores file system errors such as I/O errors reading directories.
|
|
// The only possible returned error is ErrBadPattern, when pattern
|
|
// is malformed.
|
|
func (c *Client) Glob(pattern string) (matches []string, err error) {
|
|
if !hasMeta(pattern) {
|
|
file, err := c.Lstat(pattern)
|
|
if err != nil {
|
|
return nil, nil
|
|
}
|
|
dir, _ := Split(pattern)
|
|
dir = cleanGlobPath(dir)
|
|
return []string{Join(dir, file.Name())}, nil
|
|
}
|
|
|
|
dir, file := Split(pattern)
|
|
dir = cleanGlobPath(dir)
|
|
|
|
if !hasMeta(dir) {
|
|
return c.glob(dir, file, nil)
|
|
}
|
|
|
|
// Prevent infinite recursion. See issue 15879.
|
|
if dir == pattern {
|
|
return nil, ErrBadPattern
|
|
}
|
|
|
|
var m []string
|
|
m, err = c.Glob(dir)
|
|
if err != nil {
|
|
return
|
|
}
|
|
for _, d := range m {
|
|
matches, err = c.glob(d, file, matches)
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// cleanGlobPath prepares path for glob matching.
|
|
func cleanGlobPath(path string) string {
|
|
switch path {
|
|
case "":
|
|
return "."
|
|
case "/":
|
|
return path
|
|
default:
|
|
return path[0 : len(path)-1] // chop off trailing separator
|
|
}
|
|
}
|
|
|
|
// glob searches for files matching pattern in the directory dir
|
|
// and appends them to matches. If the directory cannot be
|
|
// opened, it returns the existing matches. New matches are
|
|
// added in lexicographical order.
|
|
func (c *Client) glob(dir, pattern string, matches []string) (m []string, e error) {
|
|
m = matches
|
|
fi, err := c.Stat(dir)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if !fi.IsDir() {
|
|
return
|
|
}
|
|
names, err := c.ReadDir(dir)
|
|
if err != nil {
|
|
return
|
|
}
|
|
//sort.Strings(names)
|
|
|
|
for _, n := range names {
|
|
matched, err := Match(pattern, n.Name())
|
|
if err != nil {
|
|
return m, err
|
|
}
|
|
if matched {
|
|
m = append(m, Join(dir, n.Name()))
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// Join joins any number of path elements into a single path, separating
|
|
// them with slashes.
|
|
//
|
|
// This is an alias for path.Join from the standard library,
|
|
// offered so that callers need not import the path package.
|
|
// For details, see https://golang.org/pkg/path/#Join.
|
|
func Join(elem ...string) string {
|
|
return path.Join(elem...)
|
|
}
|
|
|
|
// hasMeta reports whether path contains any of the magic characters
|
|
// recognized by Match.
|
|
func hasMeta(path string) bool {
|
|
return strings.ContainsAny(path, "\\*?[")
|
|
}
|