-
Notifications
You must be signed in to change notification settings - Fork 165
/
cert.rs
204 lines (172 loc) · 7.78 KB
/
cert.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
// Copyright 2015 Brian Smith.
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use {Error, der, signed_data};
use untrusted;
pub enum EndEntityOrCA<'a> {
EndEntity,
CA(&'a Cert<'a>),
}
pub struct Cert<'a> {
pub ee_or_ca: EndEntityOrCA<'a>,
pub signed_data: signed_data::SignedData<'a>,
pub issuer: untrusted::Input<'a>,
pub validity: untrusted::Input<'a>,
pub subject: untrusted::Input<'a>,
pub spki: untrusted::Input<'a>,
pub basic_constraints: Option<untrusted::Input<'a>>,
pub eku: Option<untrusted::Input<'a>>,
pub name_constraints: Option<untrusted::Input<'a>>,
pub subject_alt_name: Option<untrusted::Input<'a>>,
}
pub fn parse_cert<'a>(cert_der: untrusted::Input<'a>,
ee_or_ca: EndEntityOrCA<'a>) -> Result<Cert<'a>, Error> {
parse_cert_internal(cert_der, ee_or_ca, certificate_serial_number)
}
/// Used by `parse_cert` for regular certificates (end-entity and intermediate)
/// and by `cert_der_as_trust_anchor` for trust anchors encoded as
/// certificates.
pub fn parse_cert_internal<'a>(
cert_der: untrusted::Input<'a>, ee_or_ca: EndEntityOrCA<'a>,
serial_number: fn(input: &mut untrusted::Reader<'a>)
-> Result<(), Error>)
-> Result<Cert<'a>, Error> {
let (tbs, signed_data) = cert_der.read_all(Error::BadDER, |cert_der| {
der::nested(cert_der, der::Tag::Sequence, Error::BadDER,
signed_data::parse_signed_data)
})?;
tbs.read_all(Error::BadDER, |tbs| {
version3(tbs)?;
serial_number(tbs)?;
let signature = der::expect_tag_and_get_value(tbs, der::Tag::Sequence)?;
// TODO: In mozilla::pkix, the comparison is done based on the
// normalized value (ignoring whether or not there is an optional NULL
// parameter for RSA-based algorithms), so this may be too strict.
if signature != signed_data.algorithm {
return Err(Error::SignatureAlgorithmMismatch);
}
let issuer = der::expect_tag_and_get_value(tbs, der::Tag::Sequence)?;
let validity = der::expect_tag_and_get_value(tbs, der::Tag::Sequence)?;
let subject = der::expect_tag_and_get_value(tbs, der::Tag::Sequence)?;
let spki = der::expect_tag_and_get_value(tbs, der::Tag::Sequence)?;
// In theory there could be fields [1] issuerUniqueID and [2]
// subjectUniqueID, but in practice there never are, and to keep the
// code small and simple we don't accept any certificates that do
// contain them.
let mut cert: Cert<'a> = Cert {
ee_or_ca: ee_or_ca,
signed_data: signed_data,
issuer: issuer,
validity: validity,
subject: subject,
spki: spki,
basic_constraints: None,
eku: None,
name_constraints: None,
subject_alt_name: None,
};
// mozilla::pkix allows the extensions to be omitted. However, since
// the subjectAltName extension is mandatory, the extensions are
// mandatory too, and we enforce that. Also, mozilla::pkix includes
// special logic for handling critical Netscape Cert Type extensions.
// That has been intentionally omitted.
der::nested_mut(tbs, der::Tag::ContextSpecificConstructed3,
Error::BadDER, |tagged| {
der::nested_of_mut(tagged, der::Tag::Sequence, der::Tag::Sequence,
Error::BadDER, |extension| {
let extn_id =
der::expect_tag_and_get_value(extension, der::Tag::OID)?;
let critical = der::optional_boolean(extension)?;
let extn_value: untrusted::Input<'a> =
der::expect_tag_and_get_value(extension,
der::Tag::OctetString)?;
match remember_extension(&mut cert, extn_id, extn_value)? {
Understood::No if critical => {
Err(Error::UnsupportedCriticalExtension)
},
_ => Ok(())
}
})
})?;
Ok(cert)
})
}
// mozilla::pkix supports v1, v2, v3, and v4, including both the implicit
// (correct) and explicit (incorrect) encoding of v1. We allow only v3.
fn version3(input: &mut untrusted::Reader) -> Result<(), Error> {
der::nested(input, der::Tag::ContextSpecificConstructed0,
Error::BadDER, |input| {
let version = der::small_nonnegative_integer(input)?;
if version != 2 { // v3
return Err(Error::UnsupportedCertVersion);
}
Ok(())
})
}
pub fn certificate_serial_number<'a>(input: &mut untrusted::Reader<'a>)
-> Result<(), Error> {
// https://tools.ietf.org/html/rfc5280#section-4.1.2.2:
// * Conforming CAs MUST NOT use serialNumber values longer than 20 octets."
// * "The serial number MUST be a positive integer [...]"
let value = der::positive_integer(input)?;
if value.big_endian_without_leading_zero().len() > 20 {
return Err(Error::BadDER);
}
Ok(())
}
enum Understood { Yes, No }
fn remember_extension<'a>(cert: &mut Cert<'a>, extn_id: untrusted::Input,
value: untrusted::Input<'a>)
-> Result<Understood, Error> {
// We don't do anything with certificate policies so we can safely ignore
// all policy-related stuff. We assume that the policy-related extensions
// are not marked critical.
// id-ce 2.5.29
static ID_CE: [u8; 2] = oid![2, 5, 29];
if extn_id.len() != ID_CE.len() + 1 ||
!extn_id.as_slice_less_safe().starts_with(&ID_CE) {
return Ok(Understood::No);
}
let out = match *extn_id.as_slice_less_safe().last().unwrap() {
// id-ce-keyUsage 2.5.29.15. We ignore the KeyUsage extension. For CA
// certificates, BasicConstraints.cA makes KeyUsage redundant. Firefox
// and other common browsers do not check KeyUsage for end-entities,
// though it would be kind of nice to ensure that a KeyUsage without
// the keyEncipherment bit could not be used for RSA key exchange.
15 => { return Ok(Understood::Yes); },
// id-ce-subjectAltName 2.5.29.17
17 => &mut cert.subject_alt_name,
// id-ce-basicConstraints 2.5.29.19
19 => &mut cert.basic_constraints,
// id-ce-nameConstraints 2.5.29.30
30 => &mut cert.name_constraints,
// id-ce-extKeyUsage 2.5.29.37
37 => &mut cert.eku,
_ => { return Ok(Understood::No); }
};
match *out {
Some(..) => {
// The certificate contains more than one instance of this
// extension.
return Err(Error::ExtensionValueInvalid);
}
None => {
// All the extensions that we care about are wrapped in a SEQUENCE.
let sequence_value = value.read_all(Error::BadDER, |value| {
der::expect_tag_and_get_value(value, der::Tag::Sequence)
})?;
*out = Some(sequence_value);
}
}
Ok(Understood::Yes)
}