mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-11 01:57:53 +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>
63 lines
2.1 KiB
Go
63 lines
2.1 KiB
Go
package sftp
|
|
|
|
// Methods on the Request object to make working with the Flags bitmasks and
|
|
// Attr(ibutes) byte blob easier. Use Pflags() when working with an Open/Write
|
|
// request and AttrFlags() and Attributes() when working with SetStat requests.
|
|
import "os"
|
|
|
|
// FileOpenFlags defines Open and Write Flags. Correlate directly with with os.OpenFile flags
|
|
// (https://golang.org/pkg/os/#pkg-constants).
|
|
type FileOpenFlags struct {
|
|
Read, Write, Append, Creat, Trunc, Excl bool
|
|
}
|
|
|
|
func newFileOpenFlags(flags uint32) FileOpenFlags {
|
|
return FileOpenFlags{
|
|
Read: flags&sshFxfRead != 0,
|
|
Write: flags&sshFxfWrite != 0,
|
|
Append: flags&sshFxfAppend != 0,
|
|
Creat: flags&sshFxfCreat != 0,
|
|
Trunc: flags&sshFxfTrunc != 0,
|
|
Excl: flags&sshFxfExcl != 0,
|
|
}
|
|
}
|
|
|
|
// Pflags converts the bitmap/uint32 from SFTP Open packet pflag values,
|
|
// into a FileOpenFlags struct with booleans set for flags set in bitmap.
|
|
func (r *Request) Pflags() FileOpenFlags {
|
|
return newFileOpenFlags(r.Flags)
|
|
}
|
|
|
|
// FileAttrFlags that indicate whether SFTP file attributes were passed. When a flag is
|
|
// true the corresponding attribute should be available from the FileStat
|
|
// object returned by Attributes method. Used with SetStat.
|
|
type FileAttrFlags struct {
|
|
Size, UidGid, Permissions, Acmodtime bool
|
|
}
|
|
|
|
func newFileAttrFlags(flags uint32) FileAttrFlags {
|
|
return FileAttrFlags{
|
|
Size: (flags & sshFileXferAttrSize) != 0,
|
|
UidGid: (flags & sshFileXferAttrUIDGID) != 0,
|
|
Permissions: (flags & sshFileXferAttrPermissions) != 0,
|
|
Acmodtime: (flags & sshFileXferAttrACmodTime) != 0,
|
|
}
|
|
}
|
|
|
|
// AttrFlags returns a FileAttrFlags boolean struct based on the
|
|
// bitmap/uint32 file attribute flags from the SFTP packaet.
|
|
func (r *Request) AttrFlags() FileAttrFlags {
|
|
return newFileAttrFlags(r.Flags)
|
|
}
|
|
|
|
// FileMode returns the Mode SFTP file attributes wrapped as os.FileMode
|
|
func (a FileStat) FileMode() os.FileMode {
|
|
return os.FileMode(a.Mode)
|
|
}
|
|
|
|
// Attributes parses file attributes byte blob and return them in a
|
|
// FileStat object.
|
|
func (r *Request) Attributes() *FileStat {
|
|
fs, _ := unmarshalFileStat(r.Flags, r.Attrs)
|
|
return fs
|
|
}
|