1This 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 7https://www.openssh.com/txt/draft-ietf-secsh-filexfer-02.txt 8 9Newer versions of the draft will not be supported, though some features 10are individually implemented as extensions described below. 11 12The protocol used by OpenSSH's ssh-agent is described in the file 13PROTOCOL.agent 14 151. Transport protocol changes 16 171.1. transport: Protocol 2 MAC algorithm "umac-64@openssh.com" 18 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 23https://www.openssh.com/txt/draft-miller-secsh-umac-01.txt 24 251.2. transport: Protocol 2 compression algorithm "zlib@openssh.com" 26 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 34https://www.openssh.com/txt/draft-miller-secsh-compression-delayed-00.txt 35 361.3. transport: New public key algorithms "ssh-rsa-cert-v01@openssh.com", 37 "ssh-dsa-cert-v01@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" 41 42OpenSSH introduces new public key algorithms to support certificate 43authentication for users and host keys. These methods are documented 44in the file PROTOCOL.certkeys 45 461.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 541.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 73 mac = MAC(key, sequence_number || packet_length || encrypted_packet) 74 75where "packet_length" is encoded as a uint32 and "encrypted_packet" 76contains: 77 78 byte padding_length 79 byte[n1] payload; n1 = packet_length - padding_length - 1 80 byte[n2] random padding; n2 = padding_length 81 821.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 941.7 transport: chacha20-poly1305@openssh.com authenticated encryption 95 96OpenSSH supports authenticated encryption using ChaCha20 and Poly1305 97as described in PROTOCOL.chacha20poly1305. 98 991.8 transport: curve25519-sha256@libssh.org key exchange algorithm 100 101OpenSSH supports the use of ECDH in Curve25519 for key exchange as 102described at: 103http://git.libssh.org/users/aris/libssh.git/plain/doc/curve25519-sha256@libssh.org.txt?h=curve25519 104 1052. Connection protocol changes 106 1072.1. connection: Channel write close extension "eow@openssh.com" 108 109The SSH connection protocol (rfc4254) provides the SSH_MSG_CHANNEL_EOF 110message to allow an endpoint to signal its peer that it will send no 111more data over a channel. Unfortunately, there is no symmetric way for 112an endpoint to request that its peer should cease sending data to it 113while still keeping the channel open for the endpoint to send data to 114the peer. 115 116This is desirable, since it saves the transmission of data that would 117otherwise need to be discarded and it allows an endpoint to signal local 118processes of the condition, e.g. by closing the corresponding file 119descriptor. 120 121OpenSSH implements a channel extension message to perform this 122signalling: "eow@openssh.com" (End Of Write). This message is sent by 123an endpoint when the local output of a session channel is closed or 124experiences a write error. The message is formatted as follows: 125 126 byte SSH_MSG_CHANNEL_REQUEST 127 uint32 recipient channel 128 string "eow@openssh.com" 129 boolean FALSE 130 131On receiving this message, the peer SHOULD cease sending data of 132the channel and MAY signal the process from which the channel data 133originates (e.g. by closing its read file descriptor). 134 135As with the symmetric SSH_MSG_CHANNEL_EOF message, the channel does 136remain open after a "eow@openssh.com" has been sent and more data may 137still be sent in the other direction. This message does not consume 138window space and may be sent even if no window space is available. 139 140NB. due to certain broken SSH implementations aborting upon receipt 141of this message (in contravention of RFC4254 section 5.4), this 142message is only sent to OpenSSH peers (identified by banner). 143Other SSH implementations may be listed to receive this message 144upon request. 145 1462.2. connection: disallow additional sessions extension 147 "no-more-sessions@openssh.com" 148 149Most SSH connections will only ever request a single session, but a 150attacker may abuse a running ssh client to surreptitiously open 151additional sessions under their control. OpenSSH provides a global 152request "no-more-sessions@openssh.com" to mitigate this attack. 153 154When an OpenSSH client expects that it will never open another session 155(i.e. it has been started with connection multiplexing disabled), it 156will send the following global request: 157 158 byte SSH_MSG_GLOBAL_REQUEST 159 string "no-more-sessions@openssh.com" 160 char want-reply 161 162On receipt of such a message, an OpenSSH server will refuse to open 163future channels of type "session" and instead immediately abort the 164connection. 165 166Note that this is not a general defence against compromised clients 167(that is impossible), but it thwarts a simple attack. 168 169NB. due to certain broken SSH implementations aborting upon receipt 170of this message, the no-more-sessions request is only sent to OpenSSH 171servers (identified by banner). Other SSH implementations may be 172listed to receive this message upon request. 173 1742.3. connection: Tunnel forward extension "tun@openssh.com" 175 176OpenSSH supports layer 2 and layer 3 tunnelling via the "tun@openssh.com" 177channel type. This channel type supports forwarding of network packets 178with datagram boundaries intact between endpoints equipped with 179interfaces like the BSD tun(4) device. Tunnel forwarding channels are 180requested by the client with the following packet: 181 182 byte SSH_MSG_CHANNEL_OPEN 183 string "tun@openssh.com" 184 uint32 sender channel 185 uint32 initial window size 186 uint32 maximum packet size 187 uint32 tunnel mode 188 uint32 remote unit number 189 190The "tunnel mode" parameter specifies whether the tunnel should forward 191layer 2 frames or layer 3 packets. It may take one of the following values: 192 193 SSH_TUNMODE_POINTOPOINT 1 /* layer 3 packets */ 194 SSH_TUNMODE_ETHERNET 2 /* layer 2 frames */ 195 196The "tunnel unit number" specifies the remote interface number, or may 197be 0x7fffffff to allow the server to automatically choose an interface. A 198server that is not willing to open a client-specified unit should refuse 199the request with a SSH_MSG_CHANNEL_OPEN_FAILURE error. On successful 200open, the server should reply with SSH_MSG_CHANNEL_OPEN_SUCCESS. 201 202Once established the client and server may exchange packet or frames 203over the tunnel channel by encapsulating them in SSH protocol strings 204and sending them as channel data. This ensures that packet boundaries 205are kept intact. Specifically, packets are transmitted using normal 206SSH_MSG_CHANNEL_DATA packets: 207 208 byte SSH_MSG_CHANNEL_DATA 209 uint32 recipient channel 210 string data 211 212The contents of the "data" field for layer 3 packets is: 213 214 uint32 packet length 215 uint32 address family 216 byte[packet length - 4] packet data 217 218The "address family" field identifies the type of packet in the message. 219It may be one of: 220 221 SSH_TUN_AF_INET 2 /* IPv4 */ 222 SSH_TUN_AF_INET6 24 /* IPv6 */ 223 224The "packet data" field consists of the IPv4/IPv6 datagram itself 225without any link layer header. 226 227The contents of the "data" field for layer 2 packets is: 228 229 uint32 packet length 230 byte[packet length] frame 231 232The "frame" field contains an IEEE 802.3 Ethernet frame, including 233header. 234 2352.4. connection: Unix domain socket forwarding 236 237OpenSSH supports local and remote Unix domain socket forwarding 238using the "streamlocal" extension. Forwarding is initiated as per 239TCP sockets but with a single path instead of a host and port. 240 241Similar to direct-tcpip, direct-streamlocal is sent by the client 242to request that the server make a connection to a Unix domain socket. 243 244 byte SSH_MSG_CHANNEL_OPEN 245 string "direct-streamlocal@openssh.com" 246 uint32 sender channel 247 uint32 initial window size 248 uint32 maximum packet size 249 string socket path 250 string reserved 251 uint32 reserved 252 253Similar to forwarded-tcpip, forwarded-streamlocal is sent by the 254server when the client has previously send the server a streamlocal-forward 255GLOBAL_REQUEST. 256 257 byte SSH_MSG_CHANNEL_OPEN 258 string "forwarded-streamlocal@openssh.com" 259 uint32 sender channel 260 uint32 initial window size 261 uint32 maximum packet size 262 string socket path 263 string reserved for future use 264 265The reserved field is not currently defined and is ignored on the 266remote end. It is intended to be used in the future to pass 267information about the socket file, such as ownership and mode. 268The client currently sends the empty string for this field. 269 270Similar to tcpip-forward, streamlocal-forward is sent by the client 271to request remote forwarding of a Unix domain socket. 272 273 byte SSH2_MSG_GLOBAL_REQUEST 274 string "streamlocal-forward@openssh.com" 275 boolean TRUE 276 string socket path 277 278Similar to cancel-tcpip-forward, cancel-streamlocal-forward is sent 279by the client cancel the forwarding of a Unix domain socket. 280 281 byte SSH2_MSG_GLOBAL_REQUEST 282 string "cancel-streamlocal-forward@openssh.com" 283 boolean FALSE 284 string socket path 285 2862.5. connection: hostkey update and rotation "hostkeys-00@openssh.com" 287and "hostkeys-prove-00@openssh.com" 288 289OpenSSH supports a protocol extension allowing a server to inform 290a client of all its protocol v.2 host keys after user-authentication 291has completed. 292 293 byte SSH_MSG_GLOBAL_REQUEST 294 string "hostkeys-00@openssh.com" 295 char 0 /* want-reply */ 296 string[] hostkeys 297 298Upon receiving this message, a client should check which of the 299supplied host keys are present in known_hosts. 300 301Note that the server may send key types that the client does not 302support. The client should disregard such keys if they are received. 303 304If the client identifies any keys that are not present for the host, 305it should send a "hostkeys-prove@openssh.com" message to request the 306server prove ownership of the private half of the key. 307 308 byte SSH_MSG_GLOBAL_REQUEST 309 string "hostkeys-prove-00@openssh.com" 310 char 1 /* want-reply */ 311 string[] hostkeys 312 313When a server receives this message, it should generate a signature 314using each requested key over the following: 315 316 string "hostkeys-prove-00@openssh.com" 317 string session identifier 318 string hostkey 319 320These signatures should be included in the reply, in the order matching 321the hostkeys in the request: 322 323 byte SSH_MSG_REQUEST_SUCCESS 324 string[] signatures 325 326When the client receives this reply (and not a failure), it should 327validate the signatures and may update its known_hosts file, adding keys 328that it has not seen before and deleting keys for the server host that 329are no longer offered. 330 331These extensions let a client learn key types that it had not previously 332encountered, thereby allowing it to potentially upgrade from weaker 333key algorithms to better ones. It also supports graceful key rotation: 334a server may offer multiple keys of the same type for a period (to 335give clients an opportunity to learn them using this extension) before 336removing the deprecated key from those offered. 337 3382.6. connection: SIGINFO support for "signal" channel request 339 340The SSH channels protocol (RFC4254 section 6.9) supports sending a 341signal to a session attached to a channel. OpenSSH supports one 342extension signal "INFO@openssh.com" that allows sending SIGINFO on 343BSD-derived systems. 344 3453. Authentication protocol changes 346 3473.1. Host-bound public key authentication 348 349This is trivial change to the traditional "publickey" authentication 350method. The authentication request is identical to the original method 351but for the name and one additional field: 352 353 byte SSH2_MSG_USERAUTH_REQUEST 354 string username 355 string "ssh-connection" 356 string "publickey-hostbound-v00@openssh.com" 357 bool has_signature 358 string pkalg 359 string public key 360 string server host key 361 362Because the entire SSH2_MSG_USERAUTH_REQUEST message is included in 363the signed data, this ensures that a binding between the destination 364user, the server identity and the session identifier is visible to the 365signer. OpenSSH uses this binding via signed data to implement per-key 366restrictions in ssh-agent. 367 368A server may advertise this method using the SSH2_MSG_EXT_INFO 369mechanism (RFC8308), with the following message: 370 371 string "publickey-hostbound@openssh.com" 372 string "0" (version) 373 374Clients should prefer host-bound authentication when advertised by 375server. 376 3774. SFTP protocol changes 378 3794.1. sftp: Reversal of arguments to SSH_FXP_SYMLINK 380 381When OpenSSH's sftp-server was implemented, the order of the arguments 382to the SSH_FXP_SYMLINK method was inadvertently reversed. Unfortunately, 383the reversal was not noticed until the server was widely deployed. Since 384fixing this to follow the specification would cause incompatibility, the 385current order was retained. For correct operation, clients should send 386SSH_FXP_SYMLINK as follows: 387 388 uint32 id 389 string targetpath 390 string linkpath 391 3924.2. sftp: Server extension announcement in SSH_FXP_VERSION 393 394OpenSSH's sftp-server lists the extensions it supports using the 395standard extension announcement mechanism in the SSH_FXP_VERSION server 396hello packet: 397 398 uint32 3 /* protocol version */ 399 string ext1-name 400 string ext1-version 401 string ext2-name 402 string ext2-version 403 ... 404 string extN-name 405 string extN-version 406 407Each extension reports its integer version number as an ASCII encoded 408string, e.g. "1". The version will be incremented if the extension is 409ever changed in an incompatible way. The server MAY advertise the same 410extension with multiple versions (though this is unlikely). Clients MUST 411check the version number before attempting to use the extension. 412 4134.3. sftp: Extension request "posix-rename@openssh.com" 414 415This operation provides a rename operation with POSIX semantics, which 416are different to those provided by the standard SSH_FXP_RENAME in 417draft-ietf-secsh-filexfer-02.txt. This request is implemented as a 418SSH_FXP_EXTENDED request with the following format: 419 420 uint32 id 421 string "posix-rename@openssh.com" 422 string oldpath 423 string newpath 424 425On receiving this request the server will perform the POSIX operation 426rename(oldpath, newpath) and will respond with a SSH_FXP_STATUS message. 427This extension is advertised in the SSH_FXP_VERSION hello with version 428"1". 429 4304.4. sftp: Extension requests "statvfs@openssh.com" and 431 "fstatvfs@openssh.com" 432 433These requests correspond to the statvfs and fstatvfs POSIX system 434interfaces. The "statvfs@openssh.com" request operates on an explicit 435pathname, and is formatted as follows: 436 437 uint32 id 438 string "statvfs@openssh.com" 439 string path 440 441The "fstatvfs@openssh.com" operates on an open file handle: 442 443 uint32 id 444 string "fstatvfs@openssh.com" 445 string handle 446 447These requests return a SSH_FXP_STATUS reply on failure. On success they 448return the following SSH_FXP_EXTENDED_REPLY reply: 449 450 uint32 id 451 uint64 f_bsize /* file system block size */ 452 uint64 f_frsize /* fundamental fs block size */ 453 uint64 f_blocks /* number of blocks (unit f_frsize) */ 454 uint64 f_bfree /* free blocks in file system */ 455 uint64 f_bavail /* free blocks for non-root */ 456 uint64 f_files /* total file inodes */ 457 uint64 f_ffree /* free file inodes */ 458 uint64 f_favail /* free file inodes for to non-root */ 459 uint64 f_fsid /* file system id */ 460 uint64 f_flag /* bit mask of f_flag values */ 461 uint64 f_namemax /* maximum filename length */ 462 463The values of the f_flag bitmask are as follows: 464 465 #define SSH_FXE_STATVFS_ST_RDONLY 0x1 /* read-only */ 466 #define SSH_FXE_STATVFS_ST_NOSUID 0x2 /* no setuid */ 467 468Both the "statvfs@openssh.com" and "fstatvfs@openssh.com" extensions are 469advertised in the SSH_FXP_VERSION hello with version "2". 470 4714.5. sftp: Extension request "hardlink@openssh.com" 472 473This request is for creating a hard link to a regular file. This 474request is implemented as a SSH_FXP_EXTENDED request with the 475following format: 476 477 uint32 id 478 string "hardlink@openssh.com" 479 string oldpath 480 string newpath 481 482On receiving this request the server will perform the operation 483link(oldpath, newpath) and will respond with a SSH_FXP_STATUS message. 484This extension is advertised in the SSH_FXP_VERSION hello with version 485"1". 486 4874.6. sftp: Extension request "fsync@openssh.com" 488 489This request asks the server to call fsync(2) on an open file handle. 490 491 uint32 id 492 string "fsync@openssh.com" 493 string handle 494 495On receiving this request, a server will call fsync(handle_fd) and will 496respond with a SSH_FXP_STATUS message. 497 498This extension is advertised in the SSH_FXP_VERSION hello with version 499"1". 500 5014.7. sftp: Extension request "lsetstat@openssh.com" 502 503This request is like the "setstat" command, but sets file attributes on 504symlinks. It is implemented as a SSH_FXP_EXTENDED request with the 505following format: 506 507 uint32 id 508 string "lsetstat@openssh.com" 509 string path 510 ATTRS attrs 511 512See the "setstat" command for more details. 513 514This extension is advertised in the SSH_FXP_VERSION hello with version 515"1". 516 5174.8. sftp: Extension request "limits@openssh.com" 518 519This request is used to determine various limits the server might impose. 520Clients should not attempt to exceed these limits as the server might sever 521the connection immediately. 522 523 uint32 id 524 string "limits@openssh.com" 525 526The server will respond with a SSH_FXP_EXTENDED_REPLY reply: 527 528 uint32 id 529 uint64 max-packet-length 530 uint64 max-read-length 531 uint64 max-write-length 532 uint64 max-open-handles 533 534The 'max-packet-length' applies to the total number of bytes in a 535single SFTP packet. Servers SHOULD set this at least to 34000. 536 537The 'max-read-length' is the largest length in a SSH_FXP_READ packet. 538Even if the client requests a larger size, servers will usually respond 539with a shorter SSH_FXP_DATA packet. Servers SHOULD set this at least to 54032768. 541 542The 'max-write-length' is the largest length in a SSH_FXP_WRITE packet 543the server will accept. Servers SHOULD set this at least to 32768. 544 545The 'max-open-handles' is the maximum number of active handles that the 546server allows (e.g. handles created by SSH_FXP_OPEN and SSH_FXP_OPENDIR 547packets). Servers MAY count internal file handles against this limit 548(e.g. system logging or stdout/stderr), so clients SHOULD NOT expect to 549open this many handles in practice. 550 551If the server doesn't enforce a specific limit, then the field may be 552set to 0. This implies the server relies on the OS to enforce limits 553(e.g. available memory or file handles), and such limits might be 554dynamic. The client SHOULD take care to not try to exceed reasonable 555limits. 556 557This extension is advertised in the SSH_FXP_VERSION hello with version 558"1". 559 5604.9. sftp: Extension request "expand-path@openssh.com" 561 562This request supports canonicalisation of relative paths and 563those that need tilde-expansion, i.e. "~", "~/..." and "~user/..." 564These paths are expanded using shell-like rules and the resultant 565path is canonicalised similarly to SSH2_FXP_REALPATH. 566 567It is implemented as a SSH_FXP_EXTENDED request with the following 568format: 569 570 uint32 id 571 string "expand-path@openssh.com" 572 string path 573 574Its reply is the same format as that of SSH2_FXP_REALPATH. 575 576This extension is advertised in the SSH_FXP_VERSION hello with version 577"1". 578 5794.10. sftp: Extension request "copy-data" 580 581This request asks the server to copy data from one open file handle and 582write it to a different open file handle. This avoids needing to transfer 583the data across the network twice (a download followed by an upload). 584 585 byte SSH_FXP_EXTENDED 586 uint32 id 587 string "copy-data" 588 string read-from-handle 589 uint64 read-from-offset 590 uint64 read-data-length 591 string write-to-handle 592 uint64 write-to-offset 593 594The server will copy read-data-length bytes starting from 595read-from-offset from the read-from-handle and write them to 596write-to-handle starting from write-to-offset, and then respond with a 597SSH_FXP_STATUS message. 598 599It's equivalent to issuing a series of SSH_FXP_READ requests on 600read-from-handle and a series of requests of SSH_FXP_WRITE on 601write-to-handle. 602 603If read-from-handle and write-to-handle are the same, the server will 604fail the request and respond with a SSH_FX_INVALID_PARAMETER message. 605 606If read-data-length is 0, then the server will read data from the 607read-from-handle until EOF is reached. 608 609This extension is advertised in the SSH_FXP_VERSION hello with version 610"1". 611 612This request is identical to the "copy-data" request documented in: 613 614https://tools.ietf.org/html/draft-ietf-secsh-filexfer-extensions-00#section-7 615 6165. Miscellaneous changes 617 6185.1 Public key format 619 620OpenSSH public keys, as generated by ssh-keygen(1) and appearing in 621authorized_keys files, are formatted as a single line of text consisting 622of the public key algorithm name followed by a base64-encoded key blob. 623The public key blob (before base64 encoding) is the same format used for 624the encoding of public keys sent on the wire: as described in RFC4253 625section 6.6 for RSA and DSA keys, RFC5656 section 3.1 for ECDSA keys 626and the "New public key formats" section of PROTOCOL.certkeys for the 627OpenSSH certificate formats. 628 6295.2 Private key format 630 631OpenSSH private keys, as generated by ssh-keygen(1) use the format 632described in PROTOCOL.key by default. As a legacy option, PEM format 633(RFC7468) private keys are also supported for RSA, DSA and ECDSA keys 634and were the default format before OpenSSH 7.8. 635 6365.3 KRL format 637 638OpenSSH supports a compact format for Key Revocation Lists (KRLs). This 639format is described in the PROTOCOL.krl file. 640 6415.4 Connection multiplexing 642 643OpenSSH's connection multiplexing uses messages as described in 644PROTOCOL.mux over a Unix domain socket for communications between a 645master instance and later clients. 646 6475.5. Agent protocol extensions 648 649OpenSSH extends the usual agent protocol. These changes are documented 650in the PROTOCOL.agent file. 651 652$OpenBSD: PROTOCOL,v 1.44 2022/03/31 03:05:49 djm Exp $ 653