OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include <openssl/ec.h> | |
6 #include <openssl/ec_key.h> | |
7 #include <openssl/evp.h> | |
8 | |
9 #include "base/logging.h" | |
10 #include "content/child/webcrypto/algorithm_implementation.h" | |
11 #include "content/child/webcrypto/crypto_data.h" | |
12 #include "content/child/webcrypto/generate_key_result.h" | |
13 #include "content/child/webcrypto/openssl/ec_key_openssl.h" | |
14 #include "content/child/webcrypto/openssl/key_openssl.h" | |
15 #include "content/child/webcrypto/openssl/util_openssl.h" | |
16 #include "content/child/webcrypto/status.h" | |
17 #include "content/child/webcrypto/webcrypto_util.h" | |
18 #include "crypto/openssl_util.h" | |
19 #include "crypto/scoped_openssl_types.h" | |
20 #include "crypto/secure_util.h" | |
21 #include "third_party/WebKit/public/platform/WebCryptoAlgorithmParams.h" | |
22 #include "third_party/WebKit/public/platform/WebCryptoKey.h" | |
23 #include "third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h" | |
24 | |
25 namespace content { | |
26 | |
27 namespace webcrypto { | |
28 | |
29 namespace { | |
30 | |
31 // Extracts the OpenSSL key and digest from a WebCrypto key + algorithm. The | |
32 // returned pkey pointer will remain valid as long as |key| is alive. | |
33 Status GetPKeyAndDigest(const blink::WebCryptoAlgorithm& algorithm, | |
34 const blink::WebCryptoKey& key, | |
35 EVP_PKEY** pkey, | |
36 const EVP_MD** digest) { | |
37 *pkey = AsymKeyOpenSsl::Cast(key)->key(); | |
38 *digest = GetDigest(algorithm.ecdsaParams()->hash().id()); | |
39 if (!*digest) | |
40 return Status::ErrorUnsupported(); | |
41 return Status::Success(); | |
42 } | |
43 | |
44 // Gets the EC key's order size in bytes. | |
45 Status GetEcGroupOrderSize(EVP_PKEY* pkey, size_t* order_size_bytes) { | |
46 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); | |
47 | |
48 crypto::ScopedEC_KEY ec(EVP_PKEY_get1_EC_KEY(pkey)); | |
49 if (!ec.get()) | |
50 return Status::ErrorUnexpected(); | |
51 | |
52 const EC_GROUP* group = EC_KEY_get0_group(ec.get()); | |
53 | |
54 crypto::ScopedBIGNUM order(BN_new()); | |
55 if (!EC_GROUP_get_order(group, order.get(), NULL)) | |
56 return Status::OperationError(); | |
57 | |
58 *order_size_bytes = BN_num_bytes(order.get()); | |
59 return Status::Success(); | |
60 } | |
61 | |
62 // Formats a DER-encoded signature (ECDSA-Sig-Value as specified in RFC 3279) to | |
63 // the signature format expected by WebCrypto (raw concatenated "r" and "s"). | |
64 // | |
65 // TODO(eroman): Where is the specification for WebCrypto's signature format? | |
66 Status ConvertDerSignatureToWebCryptoSignature( | |
67 EVP_PKEY* key, | |
68 std::vector<uint8_t>* signature) { | |
69 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); | |
70 | |
71 const unsigned char* der_data = &signature->front(); | |
72 crypto::ScopedECDSA_SIG ecdsa_sig( | |
73 d2i_ECDSA_SIG(NULL, &der_data, static_cast<long>(signature->size()))); | |
74 if (!ecdsa_sig.get()) | |
75 return Status::OperationError(); | |
davidben
2014/11/11 00:00:57
(It's a little unfortunate that this could either
eroman
2014/11/11 01:26:27
I'll change it to an unexpected error. The main di
| |
76 | |
77 // |der_data| is updated to point to past the end of the DER structure. | |
78 if (der_data != (&signature->front()) + signature->size()) | |
79 return Status::ErrorUnexpected(); | |
80 | |
81 // Determine the maximum length of r and s. | |
82 size_t order_size_bytes; | |
83 Status status = GetEcGroupOrderSize(key, &order_size_bytes); | |
84 if (status.IsError()) | |
85 return status; | |
86 | |
87 signature->resize(order_size_bytes * 2); | |
88 | |
89 if (!BN_bn2bin_padded(&signature->front(), order_size_bytes, | |
90 ecdsa_sig.get()->r)) { | |
91 return Status::ErrorUnexpected(); | |
92 } | |
93 | |
94 if (!BN_bn2bin_padded(&(*signature)[order_size_bytes], order_size_bytes, | |
95 ecdsa_sig.get()->s)) { | |
96 return Status::ErrorUnexpected(); | |
97 } | |
98 | |
99 return Status::Success(); | |
100 } | |
101 | |
102 // Formats a WebCrypto ECDSA signature to a DER-encoded signature | |
103 // (ECDSA-Sig-Value as specified in RFC 3279). | |
104 // | |
105 // TODO(eroman): What is the specification for WebCrypto's signature format? | |
106 // | |
107 // If the signature length is incorrect (not 2 * order_size), then | |
108 // Status::Success() is returned and |*incorrect_length| is set to true; | |
109 // | |
110 // Otherwise on success, der_signature is filled with a ASN.1 encoded | |
111 // ECDSA-Sig-Value. | |
112 Status ConvertWebCryptoSignatureToDerSignature( | |
113 EVP_PKEY* key, | |
114 const CryptoData& signature, | |
115 std::vector<uint8_t>* der_signature, | |
116 bool* incorrect_length) { | |
117 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); | |
118 | |
119 // Determine the length of r and s. | |
120 size_t order_size_bytes; | |
121 Status status = GetEcGroupOrderSize(key, &order_size_bytes); | |
122 if (status.IsError()) | |
123 return status; | |
124 | |
125 // If the size of the signature is incorrect, verification must fail. Success | |
126 // is returned here rather than an error, so that the caller can fail | |
127 // verification with a boolean, rather than reject the promise with an | |
128 // exception. | |
129 if (signature.byte_length() != 2 * order_size_bytes) { | |
130 *incorrect_length = true; | |
131 return Status::Success(); | |
132 } | |
133 | |
134 *incorrect_length = false; | |
135 | |
136 // Construct an ECDSA_SIG from |signature|. | |
137 crypto::ScopedECDSA_SIG ecdsa_sig(ECDSA_SIG_new()); | |
138 if (!ecdsa_sig) | |
139 return Status::OperationError(); | |
140 | |
141 ecdsa_sig->r = BN_bin2bn(signature.bytes(), order_size_bytes, NULL); | |
142 ecdsa_sig->s = | |
143 BN_bin2bn(signature.bytes() + order_size_bytes, order_size_bytes, NULL); | |
144 | |
145 if (!ecdsa_sig->r || !ecdsa_sig->s) | |
146 return Status::ErrorUnexpected(); | |
147 | |
148 // Determine the size of the DER-encoded signature. | |
149 int der_encoding_size = i2d_ECDSA_SIG(ecdsa_sig.get(), NULL); | |
150 if (der_encoding_size < 0) | |
151 return Status::OperationError(); | |
152 | |
153 // DER-encode the signature. | |
154 der_signature->resize(der_encoding_size); | |
155 uint8_t* result = &der_signature->front(); | |
156 if (0 > i2d_ECDSA_SIG(ecdsa_sig.get(), &result)) | |
157 return Status::OperationError(); | |
158 | |
159 return Status::Success(); | |
160 } | |
161 | |
162 class EcdsaImplementation : public EcAlgorithm { | |
163 public: | |
164 EcdsaImplementation() | |
165 : EcAlgorithm(blink::WebCryptoKeyUsageVerify, | |
166 blink::WebCryptoKeyUsageSign) {} | |
167 | |
168 const char* GetJwkAlgorithm( | |
169 const blink::WebCryptoNamedCurve curve) const override { | |
170 switch (curve) { | |
171 case blink::WebCryptoNamedCurveP256: | |
172 return "ES256"; | |
173 case blink::WebCryptoNamedCurveP384: | |
174 return "ES384"; | |
175 case blink::WebCryptoNamedCurveP521: | |
176 // This is not a typo! ES512 means P-521 with SHA-512. | |
177 return "ES512"; | |
178 default: | |
179 return NULL; | |
180 } | |
181 } | |
182 | |
183 Status Sign(const blink::WebCryptoAlgorithm& algorithm, | |
184 const blink::WebCryptoKey& key, | |
185 const CryptoData& data, | |
186 std::vector<uint8_t>* buffer) const override { | |
187 if (key.type() != blink::WebCryptoKeyTypePrivate) | |
188 return Status::ErrorUnexpectedKeyType(); | |
189 | |
190 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); | |
191 crypto::ScopedEVP_MD_CTX ctx(EVP_MD_CTX_create()); | |
192 | |
193 EVP_PKEY* private_key = NULL; | |
194 const EVP_MD* digest = NULL; | |
195 Status status = GetPKeyAndDigest(algorithm, key, &private_key, &digest); | |
196 if (status.IsError()) | |
197 return status; | |
198 | |
199 // NOTE: A call to EVP_DigestSignFinal() with a NULL second parameter | |
200 // returns a maximum allocation size, while the call without a NULL returns | |
201 // the real one, which may be smaller. | |
202 size_t sig_len = 0; | |
203 if (!ctx.get() || | |
204 !EVP_DigestSignInit(ctx.get(), NULL, digest, NULL, private_key) || | |
205 !EVP_DigestSignUpdate(ctx.get(), data.bytes(), data.byte_length()) || | |
206 !EVP_DigestSignFinal(ctx.get(), NULL, &sig_len)) { | |
207 return Status::OperationError(); | |
208 } | |
209 | |
210 buffer->resize(sig_len); | |
211 if (!EVP_DigestSignFinal(ctx.get(), &buffer->front(), &sig_len)) | |
212 return Status::OperationError(); | |
213 buffer->resize(sig_len); | |
214 | |
215 // ECDSA signing in BoringSSL outputs a DER-encoded (r,s). WebCrypto however | |
216 // expects a padded bitstring that is r concatenated to s. Convert to the | |
217 // expected format. | |
218 return ConvertDerSignatureToWebCryptoSignature(private_key, buffer); | |
219 } | |
220 | |
221 Status Verify(const blink::WebCryptoAlgorithm& algorithm, | |
222 const blink::WebCryptoKey& key, | |
223 const CryptoData& signature, | |
224 const CryptoData& data, | |
225 bool* signature_match) const override { | |
226 if (key.type() != blink::WebCryptoKeyTypePublic) | |
227 return Status::ErrorUnexpectedKeyType(); | |
228 | |
229 crypto::OpenSSLErrStackTracer err_tracer(FROM_HERE); | |
230 crypto::ScopedEVP_MD_CTX ctx(EVP_MD_CTX_create()); | |
231 | |
232 EVP_PKEY* public_key = NULL; | |
233 const EVP_MD* digest = NULL; | |
234 Status status = GetPKeyAndDigest(algorithm, key, &public_key, &digest); | |
235 if (status.IsError()) | |
236 return status; | |
237 | |
238 std::vector<uint8_t> der_signature; | |
239 bool incorrect_length_signature; | |
240 status = ConvertWebCryptoSignatureToDerSignature( | |
241 public_key, signature, &der_signature, &incorrect_length_signature); | |
242 if (status.IsError()) | |
243 return status; | |
244 | |
245 if (incorrect_length_signature) { | |
246 *signature_match = false; | |
247 return Status::Success(); | |
248 } | |
249 | |
250 if (!EVP_DigestVerifyInit(ctx.get(), NULL, digest, NULL, public_key) || | |
251 !EVP_DigestVerifyUpdate(ctx.get(), data.bytes(), data.byte_length())) { | |
252 return Status::OperationError(); | |
253 } | |
254 | |
255 *signature_match = | |
256 1 == EVP_DigestVerifyFinal(ctx.get(), &der_signature.front(), | |
257 der_signature.size()); | |
258 return Status::Success(); | |
259 } | |
260 }; | |
261 | |
262 } // namespace | |
263 | |
264 AlgorithmImplementation* CreatePlatformEcdsaImplementation() { | |
265 return new EcdsaImplementation; | |
266 } | |
267 | |
268 } // namespace webcrypto | |
269 | |
270 } // namespace content | |
OLD | NEW |