-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This uses the [email protected] extension: https://github.com/openssh/openssh-portable/blob/master/PROTOCOL, §3.6.
- Loading branch information
greatroar
committed
Oct 23, 2020
1 parent
fcaa492
commit d352a1d
Showing
3 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1294,6 +1294,26 @@ func (f *File) Chmod(mode os.FileMode) error { | |
return f.c.Chmod(f.path, mode) | ||
} | ||
|
||
// Sync requests a flush of the contents of a File to stable storage. | ||
// | ||
// Sync requires the server to support the [email protected] extension. | ||
func (f *File) Sync() error { | ||
id := f.c.nextID() | ||
typ, data, err := f.c.sendPacket(sshFxpFsyncPacket{ | ||
ID: id, | ||
Handle: f.handle, | ||
}) | ||
|
||
switch { | ||
case err != nil: | ||
return err | ||
case typ == sshFxpStatus: | ||
return normaliseError(unmarshalStatus(id, data)) | ||
default: | ||
return &unexpectedPacketErr{want: sshFxpStatus, got: typ} | ||
} | ||
} | ||
|
||
// Truncate sets the size of the current file. Although it may be safely assumed | ||
// that if the size is less than its current size it will be truncated to fit, | ||
// the SFTP protocol does not specify what behavior the server should do when setting | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -917,6 +917,26 @@ func (p *StatVFS) MarshalBinary() ([]byte, error) { | |
return buf.Bytes(), err | ||
} | ||
|
||
type sshFxpFsyncPacket struct { | ||
ID uint32 | ||
Handle string | ||
} | ||
|
||
func (p sshFxpFsyncPacket) id() uint32 { return p.ID } | ||
|
||
func (p sshFxpFsyncPacket) MarshalBinary() ([]byte, error) { | ||
l := 1 + 4 + // type (byte) + ID (uint32) | ||
4 + len("[email protected]") + | ||
4 + len(p.Handle) | ||
|
||
b := make([]byte, 0, l) | ||
b = append(b, sshFxpExtended) | ||
b = marshalUint32(b, p.ID) | ||
b = marshalString(b, "[email protected]") | ||
b = marshalString(b, p.Handle) | ||
return b, nil | ||
} | ||
|
||
type sshFxpExtendedPacket struct { | ||
ID uint32 | ||
ExtendedRequest string | ||
|