Home | History | Annotate | Line # | Download | only in dist
PROTOCOL revision 1.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.1  christos Features from newer versions of the draft are not supported, unless
     10  1.1  christos explicitly 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.1  christos 1. transport: Protocol 2 MAC algorithm "umac-64 (a] openssh.com"
     16  1.1  christos 
     17  1.1  christos This is a new transport-layer MAC method using the UMAC algorithm
     18  1.1  christos (rfc4418). This method is identical to the "umac-64" method documented
     19  1.1  christos in:
     20  1.1  christos 
     21  1.1  christos http://www.openssh.com/txt/draft-miller-secsh-umac-01.txt
     22  1.1  christos 
     23  1.1  christos 2. transport: Protocol 2 compression algorithm "zlib (a] openssh.com"
     24  1.1  christos 
     25  1.1  christos This transport-layer compression method uses the zlib compression
     26  1.1  christos algorithm (identical to the "zlib" method in rfc4253), but delays the
     27  1.1  christos start of compression until after authentication has completed. This
     28  1.1  christos avoids exposing compression code to attacks from unauthenticated users.
     29  1.1  christos 
     30  1.1  christos The method is documented in:
     31  1.1  christos 
     32  1.1  christos http://www.openssh.com/txt/draft-miller-secsh-compression-delayed-00.txt
     33  1.1  christos 
     34  1.1  christos 3. connection: Channel write close extension "eow (a] openssh.com"
     35  1.1  christos 
     36  1.1  christos The SSH connection protocol (rfc4254) provides the SSH_MSG_CHANNEL_EOF
     37  1.1  christos message to allow an endpoint to signal its peer that it will send no
     38  1.1  christos more data over a channel. Unfortunately, there is no symmetric way for
     39  1.1  christos an endpoint to request that its peer should cease sending data to it
     40  1.1  christos while still keeping the channel open for the endpoint to send data to
     41  1.1  christos the peer.
     42  1.1  christos 
     43  1.1  christos This is desirable, since it saves the transmission of data that would
     44  1.1  christos otherwise need to be discarded and it allows an endpoint to signal local
     45  1.1  christos processes of the condition, e.g. by closing the corresponding file
     46  1.1  christos descriptor.
     47  1.1  christos 
     48  1.1  christos OpenSSH implements a channel extension message to perform this
     49  1.1  christos signalling: "eow (a] openssh.com" (End Of Write). This message is sent by
     50  1.1  christos an endpoint when the local output of a session channel is closed or
     51  1.1  christos experiences a write error. The message is formatted as follows:
     52  1.1  christos 
     53  1.1  christos 	byte		SSH_MSG_CHANNEL_REQUEST
     54  1.1  christos 	uint32		recipient channel
     55  1.1  christos 	string		"eow (a] openssh.com"
     56  1.1  christos 	boolean		FALSE
     57  1.1  christos 
     58  1.1  christos On receiving this message, the peer SHOULD cease sending data of
     59  1.1  christos the channel and MAY signal the process from which the channel data
     60  1.1  christos originates (e.g. by closing its read file descriptor).
     61  1.1  christos 
     62  1.1  christos As with the symmetric SSH_MSG_CHANNEL_EOF message, the channel does
     63  1.1  christos remain open after a "eow (a] openssh.com" has been sent and more data may
     64  1.1  christos still be sent in the other direction. This message does not consume
     65  1.1  christos window space and may be sent even if no window space is available.
     66  1.1  christos 
     67  1.1  christos NB. due to certain broken SSH implementations aborting upon receipt
     68  1.1  christos of this message (in contravention of RFC4254 section 5.4), this
     69  1.1  christos message is only sent to OpenSSH peers (identified by banner).
     70  1.1  christos Other SSH implementations may be whitelisted to receive this message
     71  1.1  christos upon request.
     72  1.1  christos 
     73  1.1  christos 4. connection: disallow additional sessions extension
     74  1.1  christos    "no-more-sessions (a] openssh.com"
     75  1.1  christos 
     76  1.1  christos Most SSH connections will only ever request a single session, but a
     77  1.1  christos attacker may abuse a running ssh client to surreptitiously open
     78  1.1  christos additional sessions under their control. OpenSSH provides a global
     79  1.1  christos request "no-more-sessions (a] openssh.com" to mitigate this attack.
     80  1.1  christos 
     81  1.1  christos When an OpenSSH client expects that it will never open another session
     82  1.1  christos (i.e. it has been started with connection multiplexing disabled), it
     83  1.1  christos will send the following global request:
     84  1.1  christos 
     85  1.1  christos 	byte		SSH_MSG_GLOBAL_REQUEST
     86  1.1  christos 	string		"no-more-sessions (a] openssh.com"
     87  1.1  christos 	char		want-reply
     88  1.1  christos 
     89  1.1  christos On receipt of such a message, an OpenSSH server will refuse to open
     90  1.1  christos future channels of type "session" and instead immediately abort the
     91  1.1  christos connection.
     92  1.1  christos 
     93  1.1  christos Note that this is not a general defence against compromised clients
     94  1.1  christos (that is impossible), but it thwarts a simple attack.
     95  1.1  christos 
     96  1.1  christos NB. due to certain broken SSH implementations aborting upon receipt
     97  1.1  christos of this message, the no-more-sessions request is only sent to OpenSSH
     98  1.1  christos servers (identified by banner). Other SSH implementations may be
     99  1.1  christos whitelisted to receive this message upon request.
    100  1.1  christos 
    101  1.1  christos 5. connection: Tunnel forward extension "tun (a] openssh.com"
    102  1.1  christos 
    103  1.1  christos OpenSSH supports layer 2 and layer 3 tunnelling via the "tun (a] openssh.com"
    104  1.1  christos channel type. This channel type supports forwarding of network packets
    105  1.1  christos with datagram boundaries intact between endpoints equipped with 
    106  1.1  christos interfaces like the BSD tun(4) device. Tunnel forwarding channels are
    107  1.1  christos requested by the client with the following packet:
    108  1.1  christos 
    109  1.1  christos 	byte		SSH_MSG_CHANNEL_OPEN
    110  1.1  christos 	string		"tun (a] openssh.com"
    111  1.1  christos 	uint32		sender channel
    112  1.1  christos 	uint32		initial window size
    113  1.1  christos 	uint32		maximum packet size
    114  1.1  christos 	uint32		tunnel mode
    115  1.1  christos 	uint32		remote unit number
    116  1.1  christos 
    117  1.1  christos The "tunnel mode" parameter specifies whether the tunnel should forward
    118  1.1  christos layer 2 frames or layer 3 packets. It may take one of the following values:
    119  1.1  christos 
    120  1.1  christos 	SSH_TUNMODE_POINTOPOINT  1		/* layer 3 packets */
    121  1.1  christos 	SSH_TUNMODE_ETHERNET     2		/* layer 2 frames */
    122  1.1  christos 
    123  1.1  christos The "tunnel unit number" specifies the remote interface number, or may
    124  1.1  christos be zero to allow the server to automatically chose an interface. A server
    125  1.1  christos that is not willing to open a client-specified unit should refuse the
    126  1.1  christos request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful open,
    127  1.1  christos the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS.
    128  1.1  christos 
    129  1.1  christos Once established the client and server may exchange packet or frames
    130  1.1  christos over the tunnel channel by encapsulating them in SSH protocol strings
    131  1.1  christos and sending them as channel data. This ensures that packet boundaries
    132  1.1  christos are kept intact. Specifically, packets are transmitted using normal
    133  1.1  christos SSH_MSG_CHANNEL_DATA packets:
    134  1.1  christos 
    135  1.1  christos 	byte		SSH_MSG_CHANNEL_DATA
    136  1.1  christos 	uint32		recipient channel
    137  1.1  christos 	string		data
    138  1.1  christos 
    139  1.1  christos The contents of the "data" field for layer 3 packets is:
    140  1.1  christos 
    141  1.1  christos 	uint32			packet length
    142  1.1  christos 	uint32			address family
    143  1.1  christos 	byte[packet length - 4]	packet data
    144  1.1  christos 
    145  1.1  christos The "address family" field identifies the type of packet in the message.
    146  1.1  christos It may be one of:
    147  1.1  christos 
    148  1.1  christos 	SSH_TUN_AF_INET		2		/* IPv4 */
    149  1.1  christos 	SSH_TUN_AF_INET6	24		/* IPv6 */
    150  1.1  christos 
    151  1.1  christos The "packet data" field consists of the IPv4/IPv6 datagram itself
    152  1.1  christos without any link layer header.
    153  1.1  christos 
    154  1.1  christos The contents of the "data" field for layer 3 packets is:
    155  1.1  christos 
    156  1.1  christos 	uint32			packet length
    157  1.1  christos 	byte[packet length]	frame
    158  1.1  christos 
    159  1.1  christos The "frame" field contains an IEEE 802.3 Ethernet frame, including
    160  1.1  christos header.
    161  1.1  christos 
    162  1.1  christos 6. sftp: Reversal of arguments to SSH_FXP_SYMLINK
    163  1.1  christos 
    164  1.1  christos When OpenSSH's sftp-server was implemented, the order of the arguments
    165  1.1  christos to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately,
    166  1.1  christos the reversal was not noticed until the server was widely deployed. Since
    167  1.1  christos fixing this to follow the specification would cause incompatibility, the
    168  1.1  christos current order was retained. For correct operation, clients should send
    169  1.1  christos SSH_FXP_SYMLINK as follows:
    170  1.1  christos 
    171  1.1  christos 	uint32		id
    172  1.1  christos 	string		targetpath
    173  1.1  christos 	string		linkpath
    174  1.1  christos 
    175  1.1  christos 7. sftp: Server extension announcement in SSH_FXP_VERSION
    176  1.1  christos 
    177  1.1  christos OpenSSH's sftp-server lists the extensions it supports using the
    178  1.1  christos standard extension announcement mechanism in the SSH_FXP_VERSION server
    179  1.1  christos hello packet:
    180  1.1  christos 
    181  1.1  christos 	uint32		3		/* protocol version */
    182  1.1  christos 	string		ext1-name
    183  1.1  christos 	string		ext1-version
    184  1.1  christos 	string		ext2-name
    185  1.1  christos 	string		ext2-version
    186  1.1  christos 	...
    187  1.1  christos 	string		extN-name
    188  1.1  christos 	string		extN-version
    189  1.1  christos 
    190  1.1  christos Each extension reports its integer version number as an ASCII encoded
    191  1.1  christos string, e.g. "1". The version will be incremented if the extension is
    192  1.1  christos ever changed in an incompatible way. The server MAY advertise the same
    193  1.1  christos extension with multiple versions (though this is unlikely). Clients MUST
    194  1.1  christos check the version number before attempting to use the extension.
    195  1.1  christos 
    196  1.1  christos 8. sftp: Extension request "posix-rename (a] openssh.com"
    197  1.1  christos 
    198  1.1  christos This operation provides a rename operation with POSIX semantics, which
    199  1.1  christos are different to those provided by the standard SSH_FXP_RENAME in
    200  1.1  christos draft-ietf-secsh-filexfer-02.txt. This request is implemented as a
    201  1.1  christos SSH_FXP_EXTENDED request with the following format:
    202  1.1  christos 
    203  1.1  christos 	uint32		id
    204  1.1  christos 	string		"posix-rename (a] openssh.com"
    205  1.1  christos 	string		oldpath
    206  1.1  christos 	string		newpath
    207  1.1  christos 
    208  1.1  christos On receiving this request the server will perform the POSIX operation
    209  1.1  christos rename(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
    210  1.1  christos This extension is advertised in the SSH_FXP_VERSION hello with version
    211  1.1  christos "1".
    212  1.1  christos 
    213  1.1  christos 9. sftp: Extension requests "statvfs (a] openssh.com" and
    214  1.1  christos          "fstatvfs (a] openssh.com"
    215  1.1  christos 
    216  1.1  christos These requests correspond to the statvfs and fstatvfs POSIX system
    217  1.1  christos interfaces. The "statvfs (a] openssh.com" request operates on an explicit
    218  1.1  christos pathname, and is formatted as follows:
    219  1.1  christos 
    220  1.1  christos 	uint32		id
    221  1.1  christos 	string		"statvfs (a] openssh.com"
    222  1.1  christos 	string		path
    223  1.1  christos 
    224  1.1  christos The "fstatvfs (a] openssh.com" operates on an open file handle:
    225  1.1  christos 
    226  1.1  christos 	uint32		id
    227  1.1  christos 	string		"fstatvfs (a] openssh.com"
    228  1.1  christos 	string		handle
    229  1.1  christos 
    230  1.1  christos These requests return a SSH_FXP_STATUS reply on failure. On success they
    231  1.1  christos return the following SSH_FXP_EXTENDED_REPLY reply:
    232  1.1  christos 
    233  1.1  christos 	uint32		id
    234  1.1  christos 	uint64		f_bsize		/* file system block size */
    235  1.1  christos 	uint64		f_frsize	/* fundamental fs block size */
    236  1.1  christos 	uint64		f_blocks	/* number of blocks (unit f_frsize) */
    237  1.1  christos 	uint64		f_bfree		/* free blocks in file system */
    238  1.1  christos 	uint64		f_bavail	/* free blocks for non-root */
    239  1.1  christos 	uint64		f_files		/* total file inodes */
    240  1.1  christos 	uint64		f_ffree		/* free file inodes */
    241  1.1  christos 	uint64		f_favail	/* free file inodes for to non-root */
    242  1.1  christos 	uint64		f_fsid		/* file system id */
    243  1.1  christos 	uint64		f_flag		/* bit mask of f_flag values */
    244  1.1  christos 	uint64		f_namemax	/* maximum filename length */
    245  1.1  christos 
    246  1.1  christos The values of the f_flag bitmask are as follows:
    247  1.1  christos 
    248  1.1  christos 	#define SSH_FXE_STATVFS_ST_RDONLY	0x1	/* read-only */
    249  1.1  christos 	#define SSH_FXE_STATVFS_ST_NOSUID	0x2	/* no setuid */
    250  1.1  christos 
    251  1.1  christos Both the "statvfs (a] openssh.com" and "fstatvfs (a] openssh.com" extensions are
    252  1.1  christos advertised in the SSH_FXP_VERSION hello with version "2".
    253  1.1  christos 
    254  1.1  christos $OpenBSD: PROTOCOL,v 1.12 2009/02/14 06:35:49 djm Exp $
    255