| package openssh |
| |
| import ( |
| sshfx "github.com/pkg/sftp/v2/encoding/ssh/filexfer" |
| ) |
| |
| const extensionHardlink = "[email protected]" |
| |
| // ExtensionHardlink returns an ExtensionPair suitable to append into an sshfx.InitPacket or sshfx.VersionPacket. |
| func ExtensionHardlink() *sshfx.ExtensionPair { |
| return &sshfx.ExtensionPair{ |
| Name: extensionHardlink, |
| Data: "1", |
| } |
| } |
| |
| // HardlinkExtendedPacket defines the [email protected] extend packet. |
| type HardlinkExtendedPacket struct { |
| OldPath string |
| NewPath string |
| } |
| |
| // Type returns the SSH_FXP_EXTENDED packet type. |
| func (ep *HardlinkExtendedPacket) Type() sshfx.PacketType { |
| return sshfx.PacketTypeExtended |
| } |
| |
| // MarshalSize returns the number of bytes that the extended request data would marshal into. |
| func (ep *HardlinkExtendedPacket) MarshalSize() int { |
| // string(oldpath) + string(newpath) |
| return 4 + len(ep.OldPath) + 4 + len(ep.NewPath) |
| } |
| |
| // ExtendedRequest returns the SSH_FXP_EXTENDED extended-request field associated with this packet type. |
| func (ep *HardlinkExtendedPacket) ExtendedRequest() string { |
| return extensionHardlink |
| } |
| |
| // MarshalPacket returns ep as a two-part binary encoding of the full extended packet. |
| func (ep *HardlinkExtendedPacket) MarshalPacket(reqid uint32, b []byte) (header, payload []byte, err error) { |
| p := &sshfx.ExtendedPacket{ |
| ExtendedRequest: extensionHardlink, |
| |
| Data: ep, |
| } |
| return p.MarshalPacket(reqid, b) |
| } |
| |
| // MarshalInto encodes ep into the binary encoding of the [email protected] extended packet-specific data. |
| func (ep *HardlinkExtendedPacket) MarshalInto(buf *sshfx.Buffer) { |
| buf.AppendString(ep.OldPath) |
| buf.AppendString(ep.NewPath) |
| } |
| |
| // MarshalBinary encodes ep into the binary encoding of the [email protected] extended packet-specific data. |
| // |
| // NOTE: This _only_ encodes the packet-specific data, it does not encode the full extended packet. |
| func (ep *HardlinkExtendedPacket) MarshalBinary() ([]byte, error) { |
| buf := sshfx.NewMarshalBuffer(ep.MarshalSize()) |
| ep.MarshalInto(buf) |
| return buf.Bytes(), nil |
| } |
| |
| // UnmarshalFrom decodes the [email protected] extended packet-specific data from buf. |
| func (ep *HardlinkExtendedPacket) UnmarshalFrom(buf *sshfx.Buffer) (err error) { |
| *ep = HardlinkExtendedPacket{ |
| OldPath: buf.ConsumeString(), |
| NewPath: buf.ConsumeString(), |
| } |
| |
| return buf.Err |
| } |
| |
| // UnmarshalBinary decodes the [email protected] extended packet-specific data into ep. |
| func (ep *HardlinkExtendedPacket) UnmarshalBinary(data []byte) (err error) { |
| return ep.UnmarshalFrom(sshfx.NewBuffer(data)) |
| } |