blob: 48b3a4400750b693841368a681561585dc8c912a [file] [log] [blame]
Damien Miller58a81142008-05-19 16:11:56 +10001This documents OpenSSH's deviations and extensions to the published SSH
2protocol.
3
4Note that OpenSSH's sftp and sftp-server implement revision 3 of the SSH
5filexfer protocol described in:
6
7http://www.openssh.com/txt/draft-ietf-secsh-filexfer-02.txt
8
Darren Tuckera2e10482010-01-09 22:25:14 +11009Newer versions of the draft will not be supported, though some features
10are individually implemented as extensions described below.
Damien Miller58a81142008-05-19 16:11:56 +100011
Damien Miller1e18beb2008-06-30 00:07:00 +100012The protocol used by OpenSSH's ssh-agent is described in the file
13PROTOCOL.agent
14
Damien Millereb8b60e2010-08-31 22:41:14 +1000151. Transport protocol changes
16
171.1. transport: Protocol 2 MAC algorithm "umac-64@openssh.com"
Damien Miller58a81142008-05-19 16:11:56 +100018
19This is a new transport-layer MAC method using the UMAC algorithm
20(rfc4418). This method is identical to the "umac-64" method documented
21in:
22
23http://www.openssh.com/txt/draft-miller-secsh-umac-01.txt
24
Damien Millereb8b60e2010-08-31 22:41:14 +1000251.2. transport: Protocol 2 compression algorithm "zlib@openssh.com"
Damien Miller58a81142008-05-19 16:11:56 +100026
27This transport-layer compression method uses the zlib compression
28algorithm (identical to the "zlib" method in rfc4253), but delays the
29start of compression until after authentication has completed. This
30avoids exposing compression code to attacks from unauthenticated users.
31
32The method is documented in:
33
34http://www.openssh.com/txt/draft-miller-secsh-compression-delayed-00.txt
35
Damien Millereb8b60e2010-08-31 22:41:14 +1000361.3. transport: New public key algorithms "ssh-rsa-cert-v00@openssh.com",
37 "ssh-dsa-cert-v00@openssh.com",
38 "ecdsa-sha2-nistp256-cert-v01@openssh.com",
39 "ecdsa-sha2-nistp384-cert-v01@openssh.com" and
40 "ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Miller0a80ca12010-02-27 07:55:05 +110041
Damien Millereb8b60e2010-08-31 22:41:14 +100042OpenSSH introduces new public key algorithms to support certificate
Damien Miller0a80ca12010-02-27 07:55:05 +110043authentication for users and hostkeys. These methods are documented in
44the file PROTOCOL.certkeys
45
Damien Millereb8b60e2010-08-31 22:41:14 +1000461.4. transport: Elliptic Curve cryptography
47
48OpenSSH supports ECC key exchange and public key authentication as
49specified in RFC5656. Only the ecdsa-sha2-nistp256, ecdsa-sha2-nistp384
50and ecdsa-sha2-nistp521 curves over GF(p) are supported. Elliptic
51curve points encoded using point compression are NOT accepted or
52generated.
53
Damien Milleraf43a7a2012-12-12 10:46:31 +1100541.5 transport: Protocol 2 Encrypt-then-MAC MAC algorithms
55
56OpenSSH supports MAC algorithms, whose names contain "-etm", that
57perform the calculations in a different order to that defined in RFC
584253. These variants use the so-called "encrypt then MAC" ordering,
59calculating the MAC over the packet ciphertext rather than the
60plaintext. This ordering closes a security flaw in the SSH transport
61protocol, where decryption of unauthenticated ciphertext provided a
62"decryption oracle" that could, in conjunction with cipher flaws, reveal
63session plaintext.
64
65Specifically, the "-etm" MAC algorithms modify the transport protocol
66to calculate the MAC over the packet ciphertext and to send the packet
67length unencrypted. This is necessary for the transport to obtain the
68length of the packet and location of the MAC tag so that it may be
69verified without decrypting unauthenticated data.
70
71As such, the MAC covers:
72
Damien Miller3739c8f2013-01-09 15:57:16 +110073 mac = MAC(key, sequence_number || packet_length || encrypted_packet)
Damien Milleraf43a7a2012-12-12 10:46:31 +110074
Damien Miller3739c8f2013-01-09 15:57:16 +110075where "packet_length" is encoded as a uint32 and "encrypted_packet"
76contains:
Damien Milleraf43a7a2012-12-12 10:46:31 +110077
78 byte padding_length
79 byte[n1] payload; n1 = packet_length - padding_length - 1
80 byte[n2] random padding; n2 = padding_length
81
Damien Miller1d75abf2013-01-09 16:12:19 +1100821.6 transport: AES-GCM
83
84OpenSSH supports the AES-GCM algorithm as specified in RFC 5647.
85Because of problems with the specification of the key exchange
86the behaviour of OpenSSH differs from the RFC as follows:
87
88AES-GCM is only negotiated as the cipher algorithms
89"aes128-gcm@openssh.com" or "aes256-gcm@openssh.com" and never as
90an MAC algorithm. Additionally, if AES-GCM is selected as the cipher
91the exchanged MAC algorithms are ignored and there doesn't have to be
92a matching MAC.
93
Damien Millereb8b60e2010-08-31 22:41:14 +1000942. Connection protocol changes
95
962.1. connection: Channel write close extension "eow@openssh.com"
Damien Miller58a81142008-05-19 16:11:56 +100097
98The SSH connection protocol (rfc4254) provides the SSH_MSG_CHANNEL_EOF
99message to allow an endpoint to signal its peer that it will send no
100more data over a channel. Unfortunately, there is no symmetric way for
101an endpoint to request that its peer should cease sending data to it
102while still keeping the channel open for the endpoint to send data to
103the peer.
104
105This is desirable, since it saves the transmission of data that would
106otherwise need to be discarded and it allows an endpoint to signal local
107processes of the condition, e.g. by closing the corresponding file
108descriptor.
109
110OpenSSH implements a channel extension message to perform this
Darren Tucker1f781b12008-07-02 22:33:16 +1000111signalling: "eow@openssh.com" (End Of Write). This message is sent by
112an endpoint when the local output of a session channel is closed or
113experiences a write error. The message is formatted as follows:
Damien Miller58a81142008-05-19 16:11:56 +1000114
115 byte SSH_MSG_CHANNEL_REQUEST
116 uint32 recipient channel
117 string "eow@openssh.com"
118 boolean FALSE
119
120On receiving this message, the peer SHOULD cease sending data of
121the channel and MAY signal the process from which the channel data
122originates (e.g. by closing its read file descriptor).
123
124As with the symmetric SSH_MSG_CHANNEL_EOF message, the channel does
125remain open after a "eow@openssh.com" has been sent and more data may
126still be sent in the other direction. This message does not consume
127window space and may be sent even if no window space is available.
128
Damien Miller6385e752009-02-14 18:00:52 +1100129NB. due to certain broken SSH implementations aborting upon receipt
130of this message (in contravention of RFC4254 section 5.4), this
131message is only sent to OpenSSH peers (identified by banner).
132Other SSH implementations may be whitelisted to receive this message
133upon request.
134
Damien Millereb8b60e2010-08-31 22:41:14 +10001352.2. connection: disallow additional sessions extension
136 "no-more-sessions@openssh.com"
Darren Tucker8901fa92008-06-11 09:34:01 +1000137
138Most SSH connections will only ever request a single session, but a
139attacker may abuse a running ssh client to surreptitiously open
140additional sessions under their control. OpenSSH provides a global
141request "no-more-sessions@openssh.com" to mitigate this attack.
142
143When an OpenSSH client expects that it will never open another session
144(i.e. it has been started with connection multiplexing disabled), it
145will send the following global request:
146
147 byte SSH_MSG_GLOBAL_REQUEST
148 string "no-more-sessions@openssh.com"
149 char want-reply
150
151On receipt of such a message, an OpenSSH server will refuse to open
152future channels of type "session" and instead immediately abort the
153connection.
154
155Note that this is not a general defence against compromised clients
156(that is impossible), but it thwarts a simple attack.
157
Damien Miller6385e752009-02-14 18:00:52 +1100158NB. due to certain broken SSH implementations aborting upon receipt
159of this message, the no-more-sessions request is only sent to OpenSSH
160servers (identified by banner). Other SSH implementations may be
161whitelisted to receive this message upon request.
162
Damien Millereb8b60e2010-08-31 22:41:14 +10001632.3. connection: Tunnel forward extension "tun@openssh.com"
Darren Tuckere5d98292008-06-13 04:53:27 +1000164
Damien Millerbd45afb2008-06-30 00:04:57 +1000165OpenSSH supports layer 2 and layer 3 tunnelling via the "tun@openssh.com"
Darren Tuckere5d98292008-06-13 04:53:27 +1000166channel type. This channel type supports forwarding of network packets
Damien Millerbd45afb2008-06-30 00:04:57 +1000167with datagram boundaries intact between endpoints equipped with
Darren Tuckere5d98292008-06-13 04:53:27 +1000168interfaces like the BSD tun(4) device. Tunnel forwarding channels are
169requested by the client with the following packet:
170
171 byte SSH_MSG_CHANNEL_OPEN
172 string "tun@openssh.com"
173 uint32 sender channel
174 uint32 initial window size
175 uint32 maximum packet size
176 uint32 tunnel mode
177 uint32 remote unit number
178
179The "tunnel mode" parameter specifies whether the tunnel should forward
180layer 2 frames or layer 3 packets. It may take one of the following values:
181
182 SSH_TUNMODE_POINTOPOINT 1 /* layer 3 packets */
183 SSH_TUNMODE_ETHERNET 2 /* layer 2 frames */
184
185The "tunnel unit number" specifies the remote interface number, or may
Darren Tuckerf2705c82010-01-08 18:54:17 +1100186be 0x7fffffff to allow the server to automatically chose an interface. A
187server that is not willing to open a client-specified unit should refuse
188the request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful
189open, the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS.
Darren Tuckere5d98292008-06-13 04:53:27 +1000190
191Once established the client and server may exchange packet or frames
192over the tunnel channel by encapsulating them in SSH protocol strings
193and sending them as channel data. This ensures that packet boundaries
194are kept intact. Specifically, packets are transmitted using normal
195SSH_MSG_CHANNEL_DATA packets:
196
197 byte SSH_MSG_CHANNEL_DATA
198 uint32 recipient channel
199 string data
200
201The contents of the "data" field for layer 3 packets is:
202
203 uint32 packet length
204 uint32 address family
205 byte[packet length - 4] packet data
206
207The "address family" field identifies the type of packet in the message.
208It may be one of:
209
210 SSH_TUN_AF_INET 2 /* IPv4 */
211 SSH_TUN_AF_INET6 24 /* IPv6 */
212
213The "packet data" field consists of the IPv4/IPv6 datagram itself
214without any link layer header.
215
Darren Tuckerf2705c82010-01-08 18:54:17 +1100216The contents of the "data" field for layer 2 packets is:
Darren Tuckere5d98292008-06-13 04:53:27 +1000217
218 uint32 packet length
219 byte[packet length] frame
220
Damien Millerbd45afb2008-06-30 00:04:57 +1000221The "frame" field contains an IEEE 802.3 Ethernet frame, including
Darren Tuckere5d98292008-06-13 04:53:27 +1000222header.
223
Damien Millereb8b60e2010-08-31 22:41:14 +10002243. SFTP protocol changes
225
2263.1. sftp: Reversal of arguments to SSH_FXP_SYMLINK
Damien Miller58a81142008-05-19 16:11:56 +1000227
228When OpenSSH's sftp-server was implemented, the order of the arguments
Damien Millerbd45afb2008-06-30 00:04:57 +1000229to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately,
Damien Miller58a81142008-05-19 16:11:56 +1000230the reversal was not noticed until the server was widely deployed. Since
231fixing this to follow the specification would cause incompatibility, the
232current order was retained. For correct operation, clients should send
233SSH_FXP_SYMLINK as follows:
234
235 uint32 id
236 string targetpath
237 string linkpath
238
Damien Millereb8b60e2010-08-31 22:41:14 +10002393.2. sftp: Server extension announcement in SSH_FXP_VERSION
Damien Miller58a81142008-05-19 16:11:56 +1000240
241OpenSSH's sftp-server lists the extensions it supports using the
242standard extension announcement mechanism in the SSH_FXP_VERSION server
243hello packet:
244
245 uint32 3 /* protocol version */
246 string ext1-name
247 string ext1-version
248 string ext2-name
249 string ext2-version
250 ...
251 string extN-name
252 string extN-version
253
254Each extension reports its integer version number as an ASCII encoded
255string, e.g. "1". The version will be incremented if the extension is
256ever changed in an incompatible way. The server MAY advertise the same
257extension with multiple versions (though this is unlikely). Clients MUST
Damien Millerbd45afb2008-06-30 00:04:57 +1000258check the version number before attempting to use the extension.
Damien Miller58a81142008-05-19 16:11:56 +1000259
Damien Millereb8b60e2010-08-31 22:41:14 +10002603.3. sftp: Extension request "posix-rename@openssh.com"
Damien Miller58a81142008-05-19 16:11:56 +1000261
262This operation provides a rename operation with POSIX semantics, which
263are different to those provided by the standard SSH_FXP_RENAME in
264draft-ietf-secsh-filexfer-02.txt. This request is implemented as a
265SSH_FXP_EXTENDED request with the following format:
266
267 uint32 id
268 string "posix-rename@openssh.com"
269 string oldpath
270 string newpath
271
272On receiving this request the server will perform the POSIX operation
273rename(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
274This extension is advertised in the SSH_FXP_VERSION hello with version
275"1".
276
Damien Millereb8b60e2010-08-31 22:41:14 +10002773.4. sftp: Extension requests "statvfs@openssh.com" and
Damien Miller58a81142008-05-19 16:11:56 +1000278 "fstatvfs@openssh.com"
279
280These requests correspond to the statvfs and fstatvfs POSIX system
281interfaces. The "statvfs@openssh.com" request operates on an explicit
282pathname, and is formatted as follows:
283
284 uint32 id
285 string "statvfs@openssh.com"
286 string path
287
Damien Millerbd45afb2008-06-30 00:04:57 +1000288The "fstatvfs@openssh.com" operates on an open file handle:
Damien Miller58a81142008-05-19 16:11:56 +1000289
290 uint32 id
291 string "fstatvfs@openssh.com"
292 string handle
293
294These requests return a SSH_FXP_STATUS reply on failure. On success they
295return the following SSH_FXP_EXTENDED_REPLY reply:
296
297 uint32 id
Darren Tuckercd2ada62008-06-09 23:49:09 +1000298 uint64 f_bsize /* file system block size */
299 uint64 f_frsize /* fundamental fs block size */
Damien Miller58a81142008-05-19 16:11:56 +1000300 uint64 f_blocks /* number of blocks (unit f_frsize) */
301 uint64 f_bfree /* free blocks in file system */
302 uint64 f_bavail /* free blocks for non-root */
303 uint64 f_files /* total file inodes */
304 uint64 f_ffree /* free file inodes */
305 uint64 f_favail /* free file inodes for to non-root */
Darren Tucker17ec5d42008-06-09 23:47:37 +1000306 uint64 f_fsid /* file system id */
Darren Tuckercd2ada62008-06-09 23:49:09 +1000307 uint64 f_flag /* bit mask of f_flag values */
308 uint64 f_namemax /* maximum filename length */
Damien Miller58a81142008-05-19 16:11:56 +1000309
310The values of the f_flag bitmask are as follows:
311
312 #define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */
313 #define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */
314
Damien Millerc9c96f22008-07-05 15:17:48 +1000315Both the "statvfs@openssh.com" and "fstatvfs@openssh.com" extensions are
316advertised in the SSH_FXP_VERSION hello with version "2".
Darren Tucker17ec5d42008-06-09 23:47:37 +1000317
Darren Tuckeraf1f9092010-12-05 09:02:47 +110031810. sftp: Extension request "hardlink@openssh.com"
319
320This request is for creating a hard link to a regular file. This
321request is implemented as a SSH_FXP_EXTENDED request with the
322following format:
323
324 uint32 id
325 string "hardlink@openssh.com"
326 string oldpath
327 string newpath
328
329On receiving this request the server will perform the operation
330link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message.
331This extension is advertised in the SSH_FXP_VERSION hello with version
332"1".
333
Damien Miller1d75abf2013-01-09 16:12:19 +1100334$OpenBSD: PROTOCOL,v 1.20 2013/01/08 18:49:04 markus Exp $