mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-10 09:37: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>
103 lines
2.3 KiB
Go
103 lines
2.3 KiB
Go
package sftp
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
var EBADF = syscall.NewError("fd out of range or not open")
|
|
|
|
func wrapPathError(filepath string, err error) error {
|
|
if errno, ok := err.(syscall.ErrorString); ok {
|
|
return &os.PathError{Path: filepath, Err: errno}
|
|
}
|
|
return err
|
|
}
|
|
|
|
// translateErrno translates a syscall error number to a SFTP error code.
|
|
func translateErrno(errno syscall.ErrorString) uint32 {
|
|
switch errno {
|
|
case "":
|
|
return sshFxOk
|
|
case syscall.ENOENT:
|
|
return sshFxNoSuchFile
|
|
case syscall.EPERM:
|
|
return sshFxPermissionDenied
|
|
}
|
|
|
|
return sshFxFailure
|
|
}
|
|
|
|
func translateSyscallError(err error) (uint32, bool) {
|
|
switch e := err.(type) {
|
|
case syscall.ErrorString:
|
|
return translateErrno(e), true
|
|
case *os.PathError:
|
|
debug("statusFromError,pathError: error is %T %#v", e.Err, e.Err)
|
|
if errno, ok := e.Err.(syscall.ErrorString); ok {
|
|
return translateErrno(errno), true
|
|
}
|
|
}
|
|
return 0, false
|
|
}
|
|
|
|
// isRegular returns true if the mode describes a regular file.
|
|
func isRegular(mode uint32) bool {
|
|
return mode&S_IFMT == syscall.S_IFREG
|
|
}
|
|
|
|
// toFileMode converts sftp filemode bits to the os.FileMode specification
|
|
func toFileMode(mode uint32) os.FileMode {
|
|
var fm = os.FileMode(mode & 0777)
|
|
|
|
switch mode & S_IFMT {
|
|
case syscall.S_IFBLK:
|
|
fm |= os.ModeDevice
|
|
case syscall.S_IFCHR:
|
|
fm |= os.ModeDevice | os.ModeCharDevice
|
|
case syscall.S_IFDIR:
|
|
fm |= os.ModeDir
|
|
case syscall.S_IFIFO:
|
|
fm |= os.ModeNamedPipe
|
|
case syscall.S_IFLNK:
|
|
fm |= os.ModeSymlink
|
|
case syscall.S_IFREG:
|
|
// nothing to do
|
|
case syscall.S_IFSOCK:
|
|
fm |= os.ModeSocket
|
|
}
|
|
|
|
return fm
|
|
}
|
|
|
|
// fromFileMode converts from the os.FileMode specification to sftp filemode bits
|
|
func fromFileMode(mode os.FileMode) uint32 {
|
|
ret := uint32(mode & os.ModePerm)
|
|
|
|
switch mode & os.ModeType {
|
|
case os.ModeDevice | os.ModeCharDevice:
|
|
ret |= syscall.S_IFCHR
|
|
case os.ModeDevice:
|
|
ret |= syscall.S_IFBLK
|
|
case os.ModeDir:
|
|
ret |= syscall.S_IFDIR
|
|
case os.ModeNamedPipe:
|
|
ret |= syscall.S_IFIFO
|
|
case os.ModeSymlink:
|
|
ret |= syscall.S_IFLNK
|
|
case 0:
|
|
ret |= syscall.S_IFREG
|
|
case os.ModeSocket:
|
|
ret |= syscall.S_IFSOCK
|
|
}
|
|
|
|
return ret
|
|
}
|
|
|
|
// Plan 9 doesn't have setuid, setgid or sticky, but a Plan 9 client should
|
|
// be able to send these bits to a POSIX server.
|
|
const (
|
|
s_ISUID = 04000
|
|
s_ISGID = 02000
|
|
s_ISVTX = 01000
|
|
)
|