Home | History | Annotate | Line # | Download | only in dist
PROTOCOL revision 1.2.4.1
      1      1.1  christos This documents OpenSSH's deviations and extensions to the published SSH
      2      1.1  christos protocol.
      3      1.1  christos 
      4      1.1  christos Note that OpenSSH's sftp and sftp-server implement revision 3 of the SSH
      5      1.1  christos filexfer protocol described in:
      6      1.1  christos 
      7      1.1  christos http://www.openssh.com/txt/draft-ietf-secsh-filexfer-02.txt
      8      1.1  christos 
      9      1.2  christos Newer versions of the draft will not be supported, though some features
     10      1.2  christos are individually implemented as extensions described below.
     11      1.1  christos 
     12      1.1  christos The protocol used by OpenSSH's ssh-agent is described in the file
     13      1.1  christos PROTOCOL.agent
     14      1.1  christos 
     15      1.2  christos 1. Transport protocol changes
     16      1.2  christos 
     17      1.2  christos 1.1. transport: Protocol 2 MAC algorithm "umac-64 (a] openssh.com"
     18      1.1  christos 
     19      1.1  christos This is a new transport-layer MAC method using the UMAC algorithm
     20      1.1  christos (rfc4418). This method is identical to the "umac-64" method documented
     21      1.1  christos in:
     22      1.1  christos 
     23      1.1  christos http://www.openssh.com/txt/draft-miller-secsh-umac-01.txt
     24      1.1  christos 
     25      1.2  christos 1.2. transport: Protocol 2 compression algorithm "zlib (a] openssh.com"
     26      1.1  christos 
     27      1.1  christos This transport-layer compression method uses the zlib compression
     28      1.1  christos algorithm (identical to the "zlib" method in rfc4253), but delays the
     29      1.1  christos start of compression until after authentication has completed. This
     30      1.1  christos avoids exposing compression code to attacks from unauthenticated users.
     31      1.1  christos 
     32      1.1  christos The method is documented in:
     33      1.1  christos 
     34      1.1  christos http://www.openssh.com/txt/draft-miller-secsh-compression-delayed-00.txt
     35      1.1  christos 
     36      1.2  christos 1.3. transport: New public key algorithms "ssh-rsa-cert-v00 (a] openssh.com",
     37      1.2  christos      "ssh-dsa-cert-v00 (a] openssh.com",
     38      1.2  christos      "ecdsa-sha2-nistp256-cert-v01 (a] openssh.com",
     39      1.2  christos      "ecdsa-sha2-nistp384-cert-v01 (a] openssh.com" and
     40      1.2  christos      "ecdsa-sha2-nistp521-cert-v01 (a] openssh.com"
     41      1.2  christos 
     42      1.2  christos OpenSSH introduces new public key algorithms to support certificate
     43  1.2.4.1       snj authentication for users and host keys. These methods are documented
     44  1.2.4.1       snj in the file PROTOCOL.certkeys
     45      1.2  christos 
     46      1.2  christos 1.4. transport: Elliptic Curve cryptography
     47      1.2  christos 
     48      1.2  christos OpenSSH supports ECC key exchange and public key authentication as
     49      1.2  christos specified in RFC5656. Only the ecdsa-sha2-nistp256, ecdsa-sha2-nistp384
     50      1.2  christos and ecdsa-sha2-nistp521 curves over GF(p) are supported. Elliptic
     51      1.2  christos curve points encoded using point compression are NOT accepted or
     52      1.2  christos generated.
     53      1.2  christos 
     54  1.2.4.1       snj 1.5 transport: Protocol 2 Encrypt-then-MAC MAC algorithms
     55  1.2.4.1       snj 
     56  1.2.4.1       snj OpenSSH supports MAC algorithms, whose names contain "-etm", that
     57  1.2.4.1       snj perform the calculations in a different order to that defined in RFC
     58  1.2.4.1       snj 4253. These variants use the so-called "encrypt then MAC" ordering,
     59  1.2.4.1       snj calculating the MAC over the packet ciphertext rather than the
     60  1.2.4.1       snj plaintext. This ordering closes a security flaw in the SSH transport
     61  1.2.4.1       snj protocol, where decryption of unauthenticated ciphertext provided a
     62  1.2.4.1       snj "decryption oracle" that could, in conjunction with cipher flaws, reveal
     63  1.2.4.1       snj session plaintext.
     64  1.2.4.1       snj 
     65  1.2.4.1       snj Specifically, the "-etm" MAC algorithms modify the transport protocol
     66  1.2.4.1       snj to calculate the MAC over the packet ciphertext and to send the packet
     67  1.2.4.1       snj length unencrypted. This is necessary for the transport to obtain the
     68  1.2.4.1       snj length of the packet and location of the MAC tag so that it may be
     69  1.2.4.1       snj verified without decrypting unauthenticated data.
     70  1.2.4.1       snj 
     71  1.2.4.1       snj As such, the MAC covers:
     72  1.2.4.1       snj 
     73  1.2.4.1       snj       mac = MAC(key, sequence_number || packet_length || encrypted_packet)
     74  1.2.4.1       snj 
     75  1.2.4.1       snj where "packet_length" is encoded as a uint32 and "encrypted_packet"
     76  1.2.4.1       snj contains:
     77  1.2.4.1       snj 
     78  1.2.4.1       snj       byte      padding_length
     79  1.2.4.1       snj       byte[n1]  payload; n1 = packet_length - padding_length - 1
     80  1.2.4.1       snj       byte[n2]  random padding; n2 = padding_length
     81  1.2.4.1       snj 
     82  1.2.4.1       snj 1.6 transport: AES-GCM
     83  1.2.4.1       snj 
     84  1.2.4.1       snj OpenSSH supports the AES-GCM algorithm as specified in RFC 5647.
     85  1.2.4.1       snj Because of problems with the specification of the key exchange
     86  1.2.4.1       snj the behaviour of OpenSSH differs from the RFC as follows:
     87  1.2.4.1       snj 
     88  1.2.4.1       snj AES-GCM is only negotiated as the cipher algorithms
     89  1.2.4.1       snj "aes128-gcm (a] openssh.com" or "aes256-gcm (a] openssh.com" and never as
     90  1.2.4.1       snj an MAC algorithm. Additionally, if AES-GCM is selected as the cipher
     91  1.2.4.1       snj the exchanged MAC algorithms are ignored and there doesn't have to be
     92  1.2.4.1       snj a matching MAC.
     93  1.2.4.1       snj 
     94  1.2.4.1       snj 1.7 transport: chacha20-poly1305 (a] openssh.com authenticated encryption
     95  1.2.4.1       snj 
     96  1.2.4.1       snj OpenSSH supports authenticated encryption using ChaCha20 and Poly1305
     97  1.2.4.1       snj as described in PROTOCOL.chacha20poly1305.
     98  1.2.4.1       snj 
     99  1.2.4.1       snj 1.8 transport: curve25519-sha256 (a] libssh.org key exchange algorithm
    100  1.2.4.1       snj 
    101  1.2.4.1       snj OpenSSH supports the use of ECDH in Curve25519 for key exchange as
    102  1.2.4.1       snj described at:
    103  1.2.4.1       snj http://git.libssh.org/users/aris/libssh.git/plain/doc/curve25519-sha256@libssh.org.txt?h=curve25519
    104  1.2.4.1       snj 
    105      1.2  christos 2. Connection protocol changes
    106      1.2  christos 
    107      1.2  christos 2.1. connection: Channel write close extension "eow (a] openssh.com"
    108      1.1  christos 
    109      1.1  christos The SSH connection protocol (rfc4254) provides the SSH_MSG_CHANNEL_EOF
    110      1.1  christos message to allow an endpoint to signal its peer that it will send no
    111      1.1  christos more data over a channel. Unfortunately, there is no symmetric way for
    112      1.1  christos an endpoint to request that its peer should cease sending data to it
    113      1.1  christos while still keeping the channel open for the endpoint to send data to
    114      1.1  christos the peer.
    115      1.1  christos 
    116      1.1  christos This is desirable, since it saves the transmission of data that would
    117      1.1  christos otherwise need to be discarded and it allows an endpoint to signal local
    118      1.1  christos processes of the condition, e.g. by closing the corresponding file
    119      1.1  christos descriptor.
    120      1.1  christos 
    121      1.1  christos OpenSSH implements a channel extension message to perform this
    122      1.1  christos signalling: "eow (a] openssh.com" (End Of Write). This message is sent by
    123      1.1  christos an endpoint when the local output of a session channel is closed or
    124      1.1  christos experiences a write error. The message is formatted as follows:
    125      1.1  christos 
    126      1.1  christos 	byte		SSH_MSG_CHANNEL_REQUEST
    127      1.1  christos 	uint32		recipient channel
    128      1.1  christos 	string		"eow (a] openssh.com"
    129      1.1  christos 	boolean		FALSE
    130      1.1  christos 
    131      1.1  christos On receiving this message, the peer SHOULD cease sending data of
    132      1.1  christos the channel and MAY signal the process from which the channel data
    133      1.1  christos originates (e.g. by closing its read file descriptor).
    134      1.1  christos 
    135      1.1  christos As with the symmetric SSH_MSG_CHANNEL_EOF message, the channel does
    136      1.1  christos remain open after a "eow (a] openssh.com" has been sent and more data may
    137      1.1  christos still be sent in the other direction. This message does not consume
    138      1.1  christos window space and may be sent even if no window space is available.
    139      1.1  christos 
    140      1.1  christos NB. due to certain broken SSH implementations aborting upon receipt
    141      1.1  christos of this message (in contravention of RFC4254 section 5.4), this
    142      1.1  christos message is only sent to OpenSSH peers (identified by banner).
    143      1.1  christos Other SSH implementations may be whitelisted to receive this message
    144      1.1  christos upon request.
    145      1.1  christos 
    146      1.2  christos 2.2. connection: disallow additional sessions extension
    147      1.2  christos      "no-more-sessions (a] openssh.com"
    148      1.1  christos 
    149      1.1  christos Most SSH connections will only ever request a single session, but a
    150      1.1  christos attacker may abuse a running ssh client to surreptitiously open
    151      1.1  christos additional sessions under their control. OpenSSH provides a global
    152      1.1  christos request "no-more-sessions (a] openssh.com" to mitigate this attack.
    153      1.1  christos 
    154      1.1  christos When an OpenSSH client expects that it will never open another session
    155      1.1  christos (i.e. it has been started with connection multiplexing disabled), it
    156      1.1  christos will send the following global request:
    157      1.1  christos 
    158      1.1  christos 	byte		SSH_MSG_GLOBAL_REQUEST
    159      1.1  christos 	string		"no-more-sessions (a] openssh.com"
    160      1.1  christos 	char		want-reply
    161      1.1  christos 
    162      1.1  christos On receipt of such a message, an OpenSSH server will refuse to open
    163      1.1  christos future channels of type "session" and instead immediately abort the
    164      1.1  christos connection.
    165      1.1  christos 
    166      1.1  christos Note that this is not a general defence against compromised clients
    167      1.1  christos (that is impossible), but it thwarts a simple attack.
    168      1.1  christos 
    169      1.1  christos NB. due to certain broken SSH implementations aborting upon receipt
    170      1.1  christos of this message, the no-more-sessions request is only sent to OpenSSH
    171      1.1  christos servers (identified by banner). Other SSH implementations may be
    172      1.1  christos whitelisted to receive this message upon request.
    173      1.1  christos 
    174      1.2  christos 2.3. connection: Tunnel forward extension "tun (a] openssh.com"
    175      1.1  christos 
    176      1.1  christos OpenSSH supports layer 2 and layer 3 tunnelling via the "tun (a] openssh.com"
    177      1.1  christos channel type. This channel type supports forwarding of network packets
    178  1.2.4.1       snj with datagram boundaries intact between endpoints equipped with
    179      1.1  christos interfaces like the BSD tun(4) device. Tunnel forwarding channels are
    180      1.1  christos requested by the client with the following packet:
    181      1.1  christos 
    182      1.1  christos 	byte		SSH_MSG_CHANNEL_OPEN
    183      1.1  christos 	string		"tun (a] openssh.com"
    184      1.1  christos 	uint32		sender channel
    185      1.1  christos 	uint32		initial window size
    186      1.1  christos 	uint32		maximum packet size
    187      1.1  christos 	uint32		tunnel mode
    188      1.1  christos 	uint32		remote unit number
    189      1.1  christos 
    190      1.1  christos The "tunnel mode" parameter specifies whether the tunnel should forward
    191      1.1  christos layer 2 frames or layer 3 packets. It may take one of the following values:
    192      1.1  christos 
    193      1.1  christos 	SSH_TUNMODE_POINTOPOINT  1		/* layer 3 packets */
    194      1.1  christos 	SSH_TUNMODE_ETHERNET     2		/* layer 2 frames */
    195      1.1  christos 
    196      1.1  christos The "tunnel unit number" specifies the remote interface number, or may
    197      1.2  christos be 0x7fffffff to allow the server to automatically chose an interface. A
    198      1.2  christos server that is not willing to open a client-specified unit should refuse
    199      1.2  christos the request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful
    200      1.2  christos open, the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS.
    201      1.1  christos 
    202      1.1  christos Once established the client and server may exchange packet or frames
    203      1.1  christos over the tunnel channel by encapsulating them in SSH protocol strings
    204      1.1  christos and sending them as channel data. This ensures that packet boundaries
    205      1.1  christos are kept intact. Specifically, packets are transmitted using normal
    206      1.1  christos SSH_MSG_CHANNEL_DATA packets:
    207      1.1  christos 
    208      1.1  christos 	byte		SSH_MSG_CHANNEL_DATA
    209      1.1  christos 	uint32		recipient channel
    210      1.1  christos 	string		data
    211      1.1  christos 
    212      1.1  christos The contents of the "data" field for layer 3 packets is:
    213      1.1  christos 
    214      1.1  christos 	uint32			packet length
    215      1.1  christos 	uint32			address family
    216      1.1  christos 	byte[packet length - 4]	packet data
    217      1.1  christos 
    218      1.1  christos The "address family" field identifies the type of packet in the message.
    219      1.1  christos It may be one of:
    220      1.1  christos 
    221      1.1  christos 	SSH_TUN_AF_INET		2		/* IPv4 */
    222      1.1  christos 	SSH_TUN_AF_INET6	24		/* IPv6 */
    223      1.1  christos 
    224      1.1  christos The "packet data" field consists of the IPv4/IPv6 datagram itself
    225      1.1  christos without any link layer header.
    226      1.1  christos 
    227      1.2  christos The contents of the "data" field for layer 2 packets is:
    228      1.1  christos 
    229      1.1  christos 	uint32			packet length
    230      1.1  christos 	byte[packet length]	frame
    231      1.1  christos 
    232      1.1  christos The "frame" field contains an IEEE 802.3 Ethernet frame, including
    233      1.1  christos header.
    234      1.1  christos 
    235  1.2.4.1       snj 2.4. connection: Unix domain socket forwarding
    236  1.2.4.1       snj 
    237  1.2.4.1       snj OpenSSH supports local and remote Unix domain socket forwarding
    238  1.2.4.1       snj using the "streamlocal" extension.  Forwarding is initiated as per
    239  1.2.4.1       snj TCP sockets but with a single path instead of a host and port.
    240  1.2.4.1       snj 
    241  1.2.4.1       snj Similar to direct-tcpip, direct-streamlocal is sent by the client
    242  1.2.4.1       snj to request that the server make a connection to a Unix domain socket.
    243  1.2.4.1       snj 
    244  1.2.4.1       snj 	byte		SSH_MSG_CHANNEL_OPEN
    245  1.2.4.1       snj 	string		"direct-streamlocal (a] openssh.com"
    246  1.2.4.1       snj 	uint32		sender channel
    247  1.2.4.1       snj 	uint32		initial window size
    248  1.2.4.1       snj 	uint32		maximum packet size
    249  1.2.4.1       snj 	string		socket path
    250  1.2.4.1       snj 	string		reserved
    251  1.2.4.1       snj 	uint32		reserved
    252  1.2.4.1       snj 
    253  1.2.4.1       snj Similar to forwarded-tcpip, forwarded-streamlocal is sent by the
    254  1.2.4.1       snj server when the client has previously send the server a streamlocal-forward
    255  1.2.4.1       snj GLOBAL_REQUEST.
    256  1.2.4.1       snj 
    257  1.2.4.1       snj 	byte		SSH_MSG_CHANNEL_OPEN
    258  1.2.4.1       snj 	string		"forwarded-streamlocal (a] openssh.com"
    259  1.2.4.1       snj 	uint32		sender channel
    260  1.2.4.1       snj 	uint32		initial window size
    261  1.2.4.1       snj 	uint32		maximum packet size
    262  1.2.4.1       snj 	string		socket path
    263  1.2.4.1       snj 	string		reserved for future use
    264  1.2.4.1       snj 
    265  1.2.4.1       snj The reserved field is not currently defined and is ignored on the
    266  1.2.4.1       snj remote end.  It is intended to be used in the future to pass
    267  1.2.4.1       snj information about the socket file, such as ownership and mode.
    268  1.2.4.1       snj The client currently sends the empty string for this field.
    269  1.2.4.1       snj 
    270  1.2.4.1       snj Similar to tcpip-forward, streamlocal-forward is sent by the client
    271  1.2.4.1       snj to request remote forwarding of a Unix domain socket.
    272  1.2.4.1       snj 
    273  1.2.4.1       snj 	byte		SSH2_MSG_GLOBAL_REQUEST
    274  1.2.4.1       snj 	string		"streamlocal-forward (a] openssh.com"
    275  1.2.4.1       snj 	boolean		TRUE
    276  1.2.4.1       snj 	string		socket path
    277  1.2.4.1       snj 
    278  1.2.4.1       snj Similar to cancel-tcpip-forward, cancel-streamlocal-forward is sent
    279  1.2.4.1       snj by the client cancel the forwarding of a Unix domain socket.
    280  1.2.4.1       snj 
    281  1.2.4.1       snj 	byte		SSH2_MSG_GLOBAL_REQUEST
    282  1.2.4.1       snj 	string		"cancel-streamlocal-forward (a] openssh.com"
    283  1.2.4.1       snj 	boolean		FALSE
    284  1.2.4.1       snj 	string		socket path
    285  1.2.4.1       snj 
    286  1.2.4.1       snj 2.5. connection: hostkey update and rotation "hostkeys-00 (a] openssh.com"
    287  1.2.4.1       snj and "hostkeys-prove-00 (a] openssh.com"
    288  1.2.4.1       snj 
    289  1.2.4.1       snj OpenSSH supports a protocol extension allowing a server to inform
    290  1.2.4.1       snj a client of all its protocol v.2 host keys after user-authentication
    291  1.2.4.1       snj has completed.
    292  1.2.4.1       snj 
    293  1.2.4.1       snj 	byte		SSH_MSG_GLOBAL_REQUEST
    294  1.2.4.1       snj 	string		"hostkeys-00 (a] openssh.com"
    295  1.2.4.1       snj 	string[]	hostkeys
    296  1.2.4.1       snj 
    297  1.2.4.1       snj Upon receiving this message, a client should check which of the
    298  1.2.4.1       snj supplied host keys are present in known_hosts. For keys that are
    299  1.2.4.1       snj not present, it should send a "hostkeys-prove (a] openssh.com" message
    300  1.2.4.1       snj to request the server prove ownership of the private half of the
    301  1.2.4.1       snj key.
    302  1.2.4.1       snj 
    303  1.2.4.1       snj 	byte		SSH_MSG_GLOBAL_REQUEST
    304  1.2.4.1       snj 	string		"hostkeys-prove-00 (a] openssh.com"
    305  1.2.4.1       snj 	char		1 /* want-reply */
    306  1.2.4.1       snj 	string[]	hostkeys
    307  1.2.4.1       snj 
    308  1.2.4.1       snj When a server receives this message, it should generate a signature
    309  1.2.4.1       snj using each requested key over the following:
    310  1.2.4.1       snj 
    311  1.2.4.1       snj 	string		"hostkeys-prove-00 (a] openssh.com"
    312  1.2.4.1       snj 	string		session identifier
    313  1.2.4.1       snj 	string		hostkey
    314  1.2.4.1       snj 
    315  1.2.4.1       snj These signatures should be included in the reply, in the order matching
    316  1.2.4.1       snj the hostkeys in the request:
    317  1.2.4.1       snj 
    318  1.2.4.1       snj 	byte		SSH_MSG_REQUEST_SUCCESS
    319  1.2.4.1       snj 	string[]	signatures
    320  1.2.4.1       snj 
    321  1.2.4.1       snj When the client receives this reply (and not a failure), it should
    322  1.2.4.1       snj validate the signatures and may update its known_hosts file, adding keys
    323  1.2.4.1       snj that it has not seen before and deleting keys for the server host that
    324  1.2.4.1       snj are no longer offered.
    325  1.2.4.1       snj 
    326  1.2.4.1       snj These extensions let a client learn key types that it had not previously
    327  1.2.4.1       snj encountered, thereby allowing it to potentially upgrade from weaker
    328  1.2.4.1       snj key algorithms to better ones. It also supports graceful key rotation:
    329  1.2.4.1       snj a server may offer multiple keys of the same type for a period (to
    330  1.2.4.1       snj give clients an opportunity to learn them using this extension) before
    331  1.2.4.1       snj removing the deprecated key from those offered.
    332  1.2.4.1       snj 
    333      1.2  christos 3. SFTP protocol changes
    334      1.2  christos 
    335      1.2  christos 3.1. sftp: Reversal of arguments to SSH_FXP_SYMLINK
    336      1.1  christos 
    337      1.1  christos When OpenSSH's sftp-server was implemented, the order of the arguments
    338      1.1  christos to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately,
    339      1.1  christos the reversal was not noticed until the server was widely deployed. Since
    340      1.1  christos fixing this to follow the specification would cause incompatibility, the
    341      1.1  christos current order was retained. For correct operation, clients should send
    342      1.1  christos SSH_FXP_SYMLINK as follows:
    343      1.1  christos 
    344      1.1  christos 	uint32		id
    345      1.1  christos 	string		targetpath
    346      1.1  christos 	string		linkpath
    347      1.1  christos 
    348      1.2  christos 3.2. sftp: Server extension announcement in SSH_FXP_VERSION
    349      1.1  christos 
    350      1.1  christos OpenSSH's sftp-server lists the extensions it supports using the
    351      1.1  christos standard extension announcement mechanism in the SSH_FXP_VERSION server
    352      1.1  christos hello packet:
    353      1.1  christos 
    354      1.1  christos 	uint32		3		/* protocol version */
    355      1.1  christos 	string		ext1-name
    356      1.1  christos 	string		ext1-version
    357      1.1  christos 	string		ext2-name
    358      1.1  christos 	string		ext2-version
    359      1.1  christos 	...
    360      1.1  christos 	string		extN-name
    361      1.1  christos 	string		extN-version
    362      1.1  christos 
    363      1.1  christos Each extension reports its integer version number as an ASCII encoded
    364      1.1  christos string, e.g. "1". The version will be incremented if the extension is
    365      1.1  christos ever changed in an incompatible way. The server MAY advertise the same
    366      1.1  christos extension with multiple versions (though this is unlikely). Clients MUST
    367      1.1  christos check the version number before attempting to use the extension.
    368      1.1  christos 
    369      1.2  christos 3.3. sftp: Extension request "posix-rename (a] openssh.com"
    370      1.1  christos 
    371      1.1  christos This operation provides a rename operation with POSIX semantics, which
    372      1.1  christos are different to those provided by the standard SSH_FXP_RENAME in
    373      1.1  christos draft-ietf-secsh-filexfer-02.txt. This request is implemented as a
    374      1.1  christos SSH_FXP_EXTENDED request with the following format:
    375      1.1  christos 
    376      1.1  christos 	uint32		id
    377      1.1  christos 	string		"posix-rename (a] openssh.com"
    378      1.1  christos 	string		oldpath
    379      1.1  christos 	string		newpath
    380      1.1  christos 
    381      1.1  christos On receiving this request the server will perform the POSIX operation
    382      1.1  christos rename(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
    383      1.1  christos This extension is advertised in the SSH_FXP_VERSION hello with version
    384      1.1  christos "1".
    385      1.1  christos 
    386      1.2  christos 3.4. sftp: Extension requests "statvfs (a] openssh.com" and
    387      1.1  christos          "fstatvfs (a] openssh.com"
    388      1.1  christos 
    389      1.1  christos These requests correspond to the statvfs and fstatvfs POSIX system
    390      1.1  christos interfaces. The "statvfs (a] openssh.com" request operates on an explicit
    391      1.1  christos pathname, and is formatted as follows:
    392      1.1  christos 
    393      1.1  christos 	uint32		id
    394      1.1  christos 	string		"statvfs (a] openssh.com"
    395      1.1  christos 	string		path
    396      1.1  christos 
    397      1.1  christos The "fstatvfs (a] openssh.com" operates on an open file handle:
    398      1.1  christos 
    399      1.1  christos 	uint32		id
    400      1.1  christos 	string		"fstatvfs (a] openssh.com"
    401      1.1  christos 	string		handle
    402      1.1  christos 
    403      1.1  christos These requests return a SSH_FXP_STATUS reply on failure. On success they
    404      1.1  christos return the following SSH_FXP_EXTENDED_REPLY reply:
    405      1.1  christos 
    406      1.1  christos 	uint32		id
    407      1.1  christos 	uint64		f_bsize		/* file system block size */
    408      1.1  christos 	uint64		f_frsize	/* fundamental fs block size */
    409      1.1  christos 	uint64		f_blocks	/* number of blocks (unit f_frsize) */
    410      1.1  christos 	uint64		f_bfree		/* free blocks in file system */
    411      1.1  christos 	uint64		f_bavail	/* free blocks for non-root */
    412      1.1  christos 	uint64		f_files		/* total file inodes */
    413      1.1  christos 	uint64		f_ffree		/* free file inodes */
    414      1.1  christos 	uint64		f_favail	/* free file inodes for to non-root */
    415      1.1  christos 	uint64		f_fsid		/* file system id */
    416      1.1  christos 	uint64		f_flag		/* bit mask of f_flag values */
    417      1.1  christos 	uint64		f_namemax	/* maximum filename length */
    418      1.1  christos 
    419      1.1  christos The values of the f_flag bitmask are as follows:
    420      1.1  christos 
    421      1.1  christos 	#define SSH_FXE_STATVFS_ST_RDONLY	0x1	/* read-only */
    422      1.1  christos 	#define SSH_FXE_STATVFS_ST_NOSUID	0x2	/* no setuid */
    423      1.1  christos 
    424      1.1  christos Both the "statvfs (a] openssh.com" and "fstatvfs (a] openssh.com" extensions are
    425      1.1  christos advertised in the SSH_FXP_VERSION hello with version "2".
    426      1.1  christos 
    427      1.2  christos 10. sftp: Extension request "hardlink (a] openssh.com"
    428      1.2  christos 
    429      1.2  christos This request is for creating a hard link to a regular file. This
    430      1.2  christos request is implemented as a SSH_FXP_EXTENDED request with the
    431      1.2  christos following format:
    432      1.2  christos 
    433      1.2  christos 	uint32		id
    434      1.2  christos 	string		"hardlink (a] openssh.com"
    435      1.2  christos 	string		oldpath
    436      1.2  christos 	string		newpath
    437      1.2  christos 
    438      1.2  christos On receiving this request the server will perform the operation
    439      1.2  christos link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
    440      1.2  christos This extension is advertised in the SSH_FXP_VERSION hello with version
    441      1.2  christos "1".
    442      1.2  christos 
    443  1.2.4.1       snj 10. sftp: Extension request "fsync (a] openssh.com"
    444  1.2.4.1       snj 
    445  1.2.4.1       snj This request asks the server to call fsync(2) on an open file handle.
    446  1.2.4.1       snj 
    447  1.2.4.1       snj 	uint32		id
    448  1.2.4.1       snj 	string		"fsync (a] openssh.com"
    449  1.2.4.1       snj 	string		handle
    450  1.2.4.1       snj 
    451  1.2.4.1       snj One receiving this request, a server will call fsync(handle_fd) and will
    452  1.2.4.1       snj respond with a SSH_FXP_STATUS message.
    453  1.2.4.1       snj 
    454  1.2.4.1       snj This extension is advertised in the SSH_FXP_VERSION hello with version
    455  1.2.4.1       snj "1".
    456  1.2.4.1       snj 
    457  1.2.4.1       snj $OpenBSD: PROTOCOL,v 1.30 2016/04/08 06:35:54 djm Exp $
    458  1.2.4.1       snj $NetBSD: PROTOCOL,v 1.2.4.1 2017/08/15 05:27:51 snj Exp $
    459