blob: 48338e671cc5ec80e896bd9eeb2cf79d10d1cbc6 [file] [log] [blame]
Damien Miller0a80ca12010-02-27 07:55:05 +11001This document describes a simple public-key certificate authentication
2system for use by SSH.
3
4Background
5----------
6
7The SSH protocol currently supports a simple public key authentication
Damien Millereb8b60e2010-08-31 22:41:14 +10008mechanism. Unlike other public key implementations, SSH eschews the use
9of X.509 certificates and uses raw keys. This approach has some benefits
10relating to simplicity of configuration and minimisation of attack
11surface, but it does not support the important use-cases of centrally
12managed, passwordless authentication and centrally certified host keys.
Damien Miller0a80ca12010-02-27 07:55:05 +110013
14These protocol extensions build on the simple public key authentication
Damien Millereb8b60e2010-08-31 22:41:14 +100015system already in SSH to allow certificate-based authentication. The
16certificates used are not traditional X.509 certificates, with numerous
17options and complex encoding rules, but something rather more minimal: a
18key, some identity information and usage options that have been signed
19with some other trusted key.
Damien Miller0a80ca12010-02-27 07:55:05 +110020
21A sshd server may be configured to allow authentication via certified
Damien Millereb8b60e2010-08-31 22:41:14 +100022keys, by extending the existing ~/.ssh/authorized_keys mechanism to
23allow specification of certification authority keys in addition to
24raw user keys. The ssh client will support automatic verification of
25acceptance of certified host keys, by adding a similar ability to
26specify CA keys in ~/.ssh/known_hosts.
Damien Miller0a80ca12010-02-27 07:55:05 +110027
djm@openbsd.org4ba0d542018-07-03 11:39:54 +000028All certificate types include certification information along with the
29public key that is used to sign challenges. In OpenSSH, ssh-keygen
30performs the CA signing operation.
31
Damien Millereb8b60e2010-08-31 22:41:14 +100032Certified keys are represented using new key types:
33
34 ssh-rsa-cert-v01@openssh.com
35 ssh-dss-cert-v01@openssh.com
36 ecdsa-sha2-nistp256-cert-v01@openssh.com
37 ecdsa-sha2-nistp384-cert-v01@openssh.com
38 ecdsa-sha2-nistp521-cert-v01@openssh.com
djm@openbsd.org46925ae2018-10-26 01:23:03 +000039 ssh-ed25519-cert-v01@openssh.com
Damien Millereb8b60e2010-08-31 22:41:14 +100040
djm@openbsd.org4ba0d542018-07-03 11:39:54 +000041Two additional types exist for RSA certificates to force use of
42SHA-2 signatures (SHA-256 and SHA-512 respectively):
43
44 rsa-sha2-256-cert-v01@openssh.com
45 rsa-sha2-512-cert-v01@openssh.com
46
47These RSA/SHA-2 types should not appear in keys at rest or transmitted
48on their wire, but do appear in a SSH_MSG_KEXINIT's host-key algorithms
49field or in the "public key algorithm name" field of a "publickey"
50SSH_USERAUTH_REQUEST to indicate that the signature will use the
51specified algorithm.
Damien Miller0a80ca12010-02-27 07:55:05 +110052
53Protocol extensions
54-------------------
55
56The SSH wire protocol includes several extensibility mechanisms.
57These modifications shall take advantage of namespaced public key
58algorithm names to add support for certificate authentication without
59breaking the protocol - implementations that do not support the
60extensions will simply ignore them.
61
62Authentication using the new key formats described below proceeds
63using the existing SSH "publickey" authentication method described
64in RFC4252 section 7.
65
66New public key formats
67----------------------
68
Damien Millereb8b60e2010-08-31 22:41:14 +100069The certificate key types take a similar high-level format (note: data
70types and encoding are as per RFC4251 section 5). The serialised wire
71encoding of these certificates is also used for storing them on disk.
Damien Miller0a80ca12010-02-27 07:55:05 +110072
73#define SSH_CERT_TYPE_USER 1
74#define SSH_CERT_TYPE_HOST 2
75
76RSA certificate
77
Damien Miller4e270b02010-04-16 15:56:21 +100078 string "ssh-rsa-cert-v01@openssh.com"
79 string nonce
Damien Miller0a80ca12010-02-27 07:55:05 +110080 mpint e
81 mpint n
Damien Miller4e270b02010-04-16 15:56:21 +100082 uint64 serial
Damien Miller0a80ca12010-02-27 07:55:05 +110083 uint32 type
84 string key id
85 string valid principals
86 uint64 valid after
87 uint64 valid before
Damien Miller4e270b02010-04-16 15:56:21 +100088 string critical options
89 string extensions
Damien Miller0a80ca12010-02-27 07:55:05 +110090 string reserved
91 string signature key
92 string signature
93
94DSA certificate
95
Damien Miller4e270b02010-04-16 15:56:21 +100096 string "ssh-dss-cert-v01@openssh.com"
97 string nonce
Damien Miller0a80ca12010-02-27 07:55:05 +110098 mpint p
99 mpint q
100 mpint g
101 mpint y
Damien Miller4e270b02010-04-16 15:56:21 +1000102 uint64 serial
Damien Miller0a80ca12010-02-27 07:55:05 +1100103 uint32 type
104 string key id
105 string valid principals
106 uint64 valid after
107 uint64 valid before
Damien Miller4e270b02010-04-16 15:56:21 +1000108 string critical options
109 string extensions
Damien Miller0a80ca12010-02-27 07:55:05 +1100110 string reserved
111 string signature key
112 string signature
113
Damien Millereb8b60e2010-08-31 22:41:14 +1000114ECDSA certificate
115
djm@openbsd.org@openbsd.orgc357eed2017-11-03 02:32:19 +0000116 string "ecdsa-sha2-nistp256-cert-v01@openssh.com" |
117 "ecdsa-sha2-nistp384-cert-v01@openssh.com" |
118 "ecdsa-sha2-nistp521-cert-v01@openssh.com"
Damien Millereb8b60e2010-08-31 22:41:14 +1000119 string nonce
120 string curve
121 string public_key
122 uint64 serial
123 uint32 type
124 string key id
125 string valid principals
126 uint64 valid after
127 uint64 valid before
128 string critical options
129 string extensions
130 string reserved
131 string signature key
132 string signature
133
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000134ED25519 certificate
135
136 string "ssh-ed25519-cert-v01@openssh.com"
137 string nonce
138 string pk
139 uint64 serial
140 uint32 type
141 string key id
142 string valid principals
143 uint64 valid after
144 uint64 valid before
145 string critical options
146 string extensions
147 string reserved
148 string signature key
149 string signature
150
Damien Miller4e270b02010-04-16 15:56:21 +1000151The nonce field is a CA-provided random bitstring of arbitrary length
152(but typically 16 or 32 bytes) included to make attacks that depend on
153inducing collisions in the signature hash infeasible.
154
Damien Miller0a80ca12010-02-27 07:55:05 +1100155e and n are the RSA exponent and public modulus respectively.
156
157p, q, g, y are the DSA parameters as described in FIPS-186-2.
158
Damien Millereb8b60e2010-08-31 22:41:14 +1000159curve and public key are respectively the ECDSA "[identifier]" and "Q"
160defined in section 3.1 of RFC5656.
161
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000162pk is the encoded Ed25519 public key as defined by
163draft-josefsson-eddsa-ed25519-03.
164
Damien Miller4e270b02010-04-16 15:56:21 +1000165serial is an optional certificate serial number set by the CA to
166provide an abbreviated way to refer to certificates from that CA.
Damien Miller2725c212010-05-10 11:56:14 +1000167If a CA does not wish to number its certificates it must set this
Damien Miller4e270b02010-04-16 15:56:21 +1000168field to zero.
169
Damien Miller0a80ca12010-02-27 07:55:05 +1100170type specifies whether this certificate is for identification of a user
171or a host using a SSH_CERT_TYPE_... value.
172
173key id is a free-form text field that is filled in by the CA at the time
174of signing; the intention is that the contents of this field are used to
175identify the identity principal in log messages.
176
177"valid principals" is a string containing zero or more principals as
178strings packed inside it. These principals list the names for which this
179certificate is valid; hostnames for SSH_CERT_TYPE_HOST certificates and
180usernames for SSH_CERT_TYPE_USER certificates. As a special case, a
181zero-length "valid principals" field means the certificate is valid for
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000182any principal of the specified type.
Damien Miller0a80ca12010-02-27 07:55:05 +1100183
184"valid after" and "valid before" specify a validity period for the
185certificate. Each represents a time in seconds since 1970-01-01
18600:00:00. A certificate is considered valid if:
Damien Millereb8b60e2010-08-31 22:41:14 +1000187
188 valid after <= current time < valid before
Damien Miller0a80ca12010-02-27 07:55:05 +1100189
djm@openbsd.org001aa552018-04-10 00:10:49 +0000190critical options is a set of zero or more key options encoded as
Damien Miller4e270b02010-04-16 15:56:21 +1000191below. All such options are "critical" in the sense that an implementation
192must refuse to authorise a key that has an unrecognised option.
Damien Miller0a80ca12010-02-27 07:55:05 +1100193
Damien Miller4e270b02010-04-16 15:56:21 +1000194extensions is a set of zero or more optional extensions. These extensions
195are not critical, and an implementation that encounters one that it does
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000196not recognise may safely ignore it.
Damien Miller0a80ca12010-02-27 07:55:05 +1100197
Damien Miller48348fc2012-04-22 11:08:30 +1000198Generally, critical options are used to control features that restrict
199access where extensions are used to enable features that grant access.
200This ensures that certificates containing unknown restrictions do not
201inadvertently grant access while allowing new protocol features to be
202enabled via extensions without breaking certificates' backwards
203compatibility.
204
Damien Miller4e270b02010-04-16 15:56:21 +1000205The reserved field is currently unused and is ignored in this version of
Damien Miller0a80ca12010-02-27 07:55:05 +1100206the protocol.
207
djm@openbsd.orgadb47ce2017-05-16 16:54:05 +0000208The signature key field contains the CA key used to sign the
209certificate. The valid key types for CA keys are ssh-rsa,
210ssh-dss, ssh-ed25519 and the ECDSA types ecdsa-sha2-nistp256,
211ecdsa-sha2-nistp384, ecdsa-sha2-nistp521. "Chained" certificates, where
212the signature key type is a certificate type itself are NOT supported.
213Note that it is possible for a RSA certificate key to be signed by a
214Ed25519 or ECDSA CA key and vice-versa.
Damien Miller0a80ca12010-02-27 07:55:05 +1100215
216signature is computed over all preceding fields from the initial string
217up to, and including the signature key. Signatures are computed and
218encoded according to the rules defined for the CA's public key algorithm
Damien Millereb8b60e2010-08-31 22:41:14 +1000219(RFC4253 section 6.6 for ssh-rsa and ssh-dss, RFC5656 for the ECDSA
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000220types), and draft-josefsson-eddsa-ed25519-03 for Ed25519.
Damien Miller0a80ca12010-02-27 07:55:05 +1100221
Damien Miller4e270b02010-04-16 15:56:21 +1000222Critical options
223----------------
Damien Miller0a80ca12010-02-27 07:55:05 +1100224
Damien Miller4e270b02010-04-16 15:56:21 +1000225The critical options section of the certificate specifies zero or more
226options on the certificates validity. The format of this field
Damien Miller0a80ca12010-02-27 07:55:05 +1100227is a sequence of zero or more tuples:
228
229 string name
230 string data
231
Damien Miller1da63882010-08-05 13:03:51 +1000232Options must be lexically ordered by "name" if they appear in the
Damien Miller48348fc2012-04-22 11:08:30 +1000233sequence. Each named option may only appear once in a certificate.
Damien Miller1da63882010-08-05 13:03:51 +1000234
Damien Miller4e270b02010-04-16 15:56:21 +1000235The name field identifies the option and the data field encodes
236option-specific information (see below). All options are
237"critical", if an implementation does not recognise a option
Damien Miller0a80ca12010-02-27 07:55:05 +1100238then the validating party should refuse to accept the certificate.
239
djm@openbsd.orgd40dbdc2017-05-31 04:29:44 +0000240Custom options should append the originating author or organisation's
241domain name to the option name, e.g. "my-option@example.com".
242
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000243No critical options are defined for host certificates at present. The
244supported user certificate options and the contents and structure of
245their data fields are:
Damien Miller0a80ca12010-02-27 07:55:05 +1100246
247Name Format Description
248-----------------------------------------------------------------------------
249force-command string Specifies a command that is executed
250 (replacing any the user specified on the
251 ssh command-line) whenever this key is
252 used for authentication.
253
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000254source-address string Comma-separated list of source addresses
255 from which this certificate is accepted
256 for authentication. Addresses are
257 specified in CIDR format (nn.nn.nn.nn/nn
258 or hhhh::hhhh/nn).
259 If this option is not present then
260 certificates may be presented from any
261 source address.
262
263Extensions
264----------
265
266The extensions section of the certificate specifies zero or more
Damien Miller1da63882010-08-05 13:03:51 +1000267non-critical certificate extensions. The encoding and ordering of
Damien Miller48348fc2012-04-22 11:08:30 +1000268extensions in this field is identical to that of the critical options,
269as is the requirement that each name appear only once.
270
Damien Miller1da63882010-08-05 13:03:51 +1000271If an implementation does not recognise an extension, then it should
272ignore it.
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000273
djm@openbsd.orgd40dbdc2017-05-31 04:29:44 +0000274Custom options should append the originating author or organisation's
275domain name to the option name, e.g. "my-option@example.com".
276
djm@openbsd.orgfa582082016-05-03 10:27:59 +0000277No extensions are defined for host certificates at present. The
278supported user certificate extensions and the contents and structure of
279their data fields are:
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000280
281Name Format Description
282-----------------------------------------------------------------------------
Damien Miller0a80ca12010-02-27 07:55:05 +1100283permit-X11-forwarding empty Flag indicating that X11 forwarding
284 should be permitted. X11 forwarding will
Damien Miller4e270b02010-04-16 15:56:21 +1000285 be refused if this option is absent.
Damien Miller0a80ca12010-02-27 07:55:05 +1100286
287permit-agent-forwarding empty Flag indicating that agent forwarding
288 should be allowed. Agent forwarding
289 must not be permitted unless this
Damien Miller4e270b02010-04-16 15:56:21 +1000290 option is present.
Damien Miller0a80ca12010-02-27 07:55:05 +1100291
292permit-port-forwarding empty Flag indicating that port-forwarding
Damien Miller4e270b02010-04-16 15:56:21 +1000293 should be allowed. If this option is
Damien Miller0a80ca12010-02-27 07:55:05 +1100294 not present then no port forwarding will
295 be allowed.
296
297permit-pty empty Flag indicating that PTY allocation
298 should be permitted. In the absence of
Damien Miller4e270b02010-04-16 15:56:21 +1000299 this option PTY allocation will be
Damien Miller0a80ca12010-02-27 07:55:05 +1100300 disabled.
301
302permit-user-rc empty Flag indicating that execution of
303 ~/.ssh/rc should be permitted. Execution
304 of this script will not be permitted if
Damien Miller4e270b02010-04-16 15:56:21 +1000305 this option is not present.
Damien Miller0a80ca12010-02-27 07:55:05 +1100306
djm@openbsd.org46925ae2018-10-26 01:23:03 +0000307$OpenBSD: PROTOCOL.certkeys,v 1.16 2018/10/26 01:23:03 djm Exp $