blob: 3d4f603a2df1dd6fc58d3579ebd81f6866cd42fe [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Kenny Root7a4adb52013-10-09 10:14:35 -070017#include "asn1_decoder.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080018#include "common.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070019#include "ui.h"
Kenny Root7a4adb52013-10-09 10:14:35 -070020#include "verifier.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080021
Kenny Root7a4adb52013-10-09 10:14:35 -070022#include "mincrypt/dsa_sig.h"
23#include "mincrypt/p256.h"
24#include "mincrypt/p256_ecdsa.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include "mincrypt/rsa.h"
26#include "mincrypt/sha.h"
Doug Zongker30362a62013-04-10 11:32:17 -070027#include "mincrypt/sha256.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080028
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080029#include <string.h>
Doug Zongker54e2e862009-08-17 13:21:04 -070030#include <stdio.h>
31#include <errno.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032
Doug Zongker211aebc2011-10-28 15:13:10 -070033extern RecoveryUI* ui;
34
Kenny Root7a4adb52013-10-09 10:14:35 -070035/*
36 * Simple version of PKCS#7 SignedData extraction. This extracts the
37 * signature OCTET STRING to be used for signature verification.
38 *
39 * For full details, see http://www.ietf.org/rfc/rfc3852.txt
40 *
41 * The PKCS#7 structure looks like:
42 *
43 * SEQUENCE (ContentInfo)
44 * OID (ContentType)
45 * [0] (content)
46 * SEQUENCE (SignedData)
47 * INTEGER (version CMSVersion)
48 * SET (DigestAlgorithmIdentifiers)
49 * SEQUENCE (EncapsulatedContentInfo)
50 * [0] (CertificateSet OPTIONAL)
51 * [1] (RevocationInfoChoices OPTIONAL)
52 * SET (SignerInfos)
53 * SEQUENCE (SignerInfo)
54 * INTEGER (CMSVersion)
55 * SEQUENCE (SignerIdentifier)
56 * SEQUENCE (DigestAlgorithmIdentifier)
57 * SEQUENCE (SignatureAlgorithmIdentifier)
58 * OCTET STRING (SignatureValue)
59 */
60static bool read_pkcs7(uint8_t* pkcs7_der, size_t pkcs7_der_len, uint8_t** sig_der,
61 size_t* sig_der_length) {
62 asn1_context_t* ctx = asn1_context_new(pkcs7_der, pkcs7_der_len);
63 if (ctx == NULL) {
64 return false;
65 }
66
67 asn1_context_t* pkcs7_seq = asn1_sequence_get(ctx);
68 if (pkcs7_seq != NULL && asn1_sequence_next(pkcs7_seq)) {
69 asn1_context_t *signed_data_app = asn1_constructed_get(pkcs7_seq);
70 if (signed_data_app != NULL) {
71 asn1_context_t* signed_data_seq = asn1_sequence_get(signed_data_app);
72 if (signed_data_seq != NULL
73 && asn1_sequence_next(signed_data_seq)
74 && asn1_sequence_next(signed_data_seq)
75 && asn1_sequence_next(signed_data_seq)
76 && asn1_constructed_skip_all(signed_data_seq)) {
77 asn1_context_t *sig_set = asn1_set_get(signed_data_seq);
78 if (sig_set != NULL) {
79 asn1_context_t* sig_seq = asn1_sequence_get(sig_set);
80 if (sig_seq != NULL
81 && asn1_sequence_next(sig_seq)
82 && asn1_sequence_next(sig_seq)
83 && asn1_sequence_next(sig_seq)
84 && asn1_sequence_next(sig_seq)) {
85 uint8_t* sig_der_ptr;
86 if (asn1_octet_string_get(sig_seq, &sig_der_ptr, sig_der_length)) {
87 *sig_der = (uint8_t*) malloc(*sig_der_length);
88 if (*sig_der != NULL) {
89 memcpy(*sig_der, sig_der_ptr, *sig_der_length);
90 }
91 }
92 asn1_context_free(sig_seq);
93 }
94 asn1_context_free(sig_set);
95 }
96 asn1_context_free(signed_data_seq);
97 }
98 asn1_context_free(signed_data_app);
99 }
100 asn1_context_free(pkcs7_seq);
101 }
102 asn1_context_free(ctx);
103
104 return *sig_der != NULL;
105}
106
Doug Zongker54e2e862009-08-17 13:21:04 -0700107// Look for an RSA signature embedded in the .ZIP file comment given
108// the path to the zip. Verify it matches one of the given public
109// keys.
110//
111// Return VERIFY_SUCCESS, VERIFY_FAILURE (if any error is encountered
112// or no key matches the signature).
113
Doug Zongker99916f02014-01-13 14:16:58 -0800114int verify_file(unsigned char* addr, size_t length,
115 const Certificate* pKeys, unsigned int numKeys) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700116 ui->SetProgress(0.0);
Doug Zongker54e2e862009-08-17 13:21:04 -0700117
Doug Zongker54e2e862009-08-17 13:21:04 -0700118 // An archive with a whole-file signature will end in six bytes:
119 //
Doug Zongker73ae31c2009-12-09 17:01:45 -0800120 // (2-byte signature start) $ff $ff (2-byte comment size)
Doug Zongker54e2e862009-08-17 13:21:04 -0700121 //
122 // (As far as the ZIP format is concerned, these are part of the
123 // archive comment.) We start by reading this footer, this tells
124 // us how far back from the end we have to start reading to find
125 // the whole comment.
126
127#define FOOTER_SIZE 6
128
Doug Zongker99916f02014-01-13 14:16:58 -0800129 if (length < FOOTER_SIZE) {
130 LOGE("not big enough to contain footer\n");
Doug Zongker54e2e862009-08-17 13:21:04 -0700131 return VERIFY_FAILURE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800132 }
133
Doug Zongker99916f02014-01-13 14:16:58 -0800134 unsigned char* footer = addr + length - FOOTER_SIZE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135
Doug Zongker54e2e862009-08-17 13:21:04 -0700136 if (footer[2] != 0xff || footer[3] != 0xff) {
Doug Zongker30362a62013-04-10 11:32:17 -0700137 LOGE("footer is wrong\n");
Doug Zongker54e2e862009-08-17 13:21:04 -0700138 return VERIFY_FAILURE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800139 }
140
Doug Zongker28ce47c2011-10-28 10:33:05 -0700141 size_t comment_size = footer[4] + (footer[5] << 8);
142 size_t signature_start = footer[0] + (footer[1] << 8);
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700143 LOGI("comment is %zu bytes; signature %zu bytes from end\n",
Doug Zongker54e2e862009-08-17 13:21:04 -0700144 comment_size, signature_start);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800145
Tianjie Xu54ea1362016-12-16 16:24:09 -0800146 if (signature_start > comment_size) {
147 LOGE("signature start: %zu is larger than comment size: %zu\n", signature_start,
148 comment_size);
149 return VERIFY_FAILURE;
150 }
151
Kenny Root7a4adb52013-10-09 10:14:35 -0700152 if (signature_start <= FOOTER_SIZE) {
153 LOGE("Signature start is in the footer");
Doug Zongker54e2e862009-08-17 13:21:04 -0700154 return VERIFY_FAILURE;
155 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156
Doug Zongker54e2e862009-08-17 13:21:04 -0700157#define EOCD_HEADER_SIZE 22
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800158
Doug Zongker54e2e862009-08-17 13:21:04 -0700159 // The end-of-central-directory record is 22 bytes plus any
160 // comment length.
161 size_t eocd_size = comment_size + EOCD_HEADER_SIZE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162
Doug Zongker99916f02014-01-13 14:16:58 -0800163 if (length < eocd_size) {
164 LOGE("not big enough to contain EOCD\n");
Doug Zongker54e2e862009-08-17 13:21:04 -0700165 return VERIFY_FAILURE;
166 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800167
Doug Zongker54e2e862009-08-17 13:21:04 -0700168 // Determine how much of the file is covered by the signature.
169 // This is everything except the signature data and length, which
170 // includes all of the EOCD except for the comment length field (2
171 // bytes) and the comment data.
Doug Zongker99916f02014-01-13 14:16:58 -0800172 size_t signed_len = length - eocd_size + EOCD_HEADER_SIZE - 2;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800173
Doug Zongker99916f02014-01-13 14:16:58 -0800174 unsigned char* eocd = addr + length - eocd_size;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800175
Doug Zongker54e2e862009-08-17 13:21:04 -0700176 // If this is really is the EOCD record, it will begin with the
177 // magic number $50 $4b $05 $06.
178 if (eocd[0] != 0x50 || eocd[1] != 0x4b ||
179 eocd[2] != 0x05 || eocd[3] != 0x06) {
180 LOGE("signature length doesn't match EOCD marker\n");
Doug Zongker54e2e862009-08-17 13:21:04 -0700181 return VERIFY_FAILURE;
182 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800183
Doug Zongker28ce47c2011-10-28 10:33:05 -0700184 size_t i;
Doug Zongker54e2e862009-08-17 13:21:04 -0700185 for (i = 4; i < eocd_size-3; ++i) {
186 if (eocd[i ] == 0x50 && eocd[i+1] == 0x4b &&
Doug Zongkerc652e412009-12-08 15:30:09 -0800187 eocd[i+2] == 0x05 && eocd[i+3] == 0x06) {
Doug Zongker54e2e862009-08-17 13:21:04 -0700188 // if the sequence $50 $4b $05 $06 appears anywhere after
189 // the real one, minzip will find the later (wrong) one,
190 // which could be exploitable. Fail verification if
191 // this sequence occurs anywhere after the real one.
192 LOGE("EOCD marker occurs after start of EOCD\n");
Doug Zongker54e2e862009-08-17 13:21:04 -0700193 return VERIFY_FAILURE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194 }
195 }
196
Doug Zongker54e2e862009-08-17 13:21:04 -0700197#define BUFFER_SIZE 4096
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198
Doug Zongker30362a62013-04-10 11:32:17 -0700199 bool need_sha1 = false;
200 bool need_sha256 = false;
201 for (i = 0; i < numKeys; ++i) {
202 switch (pKeys[i].hash_len) {
203 case SHA_DIGEST_SIZE: need_sha1 = true; break;
204 case SHA256_DIGEST_SIZE: need_sha256 = true; break;
205 }
206 }
207
208 SHA_CTX sha1_ctx;
209 SHA256_CTX sha256_ctx;
210 SHA_init(&sha1_ctx);
211 SHA256_init(&sha256_ctx);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800212
Doug Zongker54e2e862009-08-17 13:21:04 -0700213 double frac = -1.0;
214 size_t so_far = 0;
Doug Zongker54e2e862009-08-17 13:21:04 -0700215 while (so_far < signed_len) {
Doug Zongker99916f02014-01-13 14:16:58 -0800216 size_t size = signed_len - so_far;
217 if (size > BUFFER_SIZE) size = BUFFER_SIZE;
218
219 if (need_sha1) SHA_update(&sha1_ctx, addr + so_far, size);
220 if (need_sha256) SHA256_update(&sha256_ctx, addr + so_far, size);
Doug Zongker54e2e862009-08-17 13:21:04 -0700221 so_far += size;
Doug Zongker99916f02014-01-13 14:16:58 -0800222
Doug Zongker54e2e862009-08-17 13:21:04 -0700223 double f = so_far / (double)signed_len;
224 if (f > frac + 0.02 || size == so_far) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700225 ui->SetProgress(f);
Doug Zongker54e2e862009-08-17 13:21:04 -0700226 frac = f;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800227 }
228 }
229
Doug Zongker30362a62013-04-10 11:32:17 -0700230 const uint8_t* sha1 = SHA_final(&sha1_ctx);
231 const uint8_t* sha256 = SHA256_final(&sha256_ctx);
232
Kenny Root7a4adb52013-10-09 10:14:35 -0700233 uint8_t* sig_der = NULL;
234 size_t sig_der_length = 0;
235
236 size_t signature_size = signature_start - FOOTER_SIZE;
237 if (!read_pkcs7(eocd + eocd_size - signature_start, signature_size, &sig_der,
238 &sig_der_length)) {
239 LOGE("Could not find signature DER block\n");
Kenny Root7a4adb52013-10-09 10:14:35 -0700240 return VERIFY_FAILURE;
241 }
Kenny Root7a4adb52013-10-09 10:14:35 -0700242
243 /*
244 * Check to make sure at least one of the keys matches the signature. Since
245 * any key can match, we need to try each before determining a verification
246 * failure has happened.
247 */
Doug Zongker54e2e862009-08-17 13:21:04 -0700248 for (i = 0; i < numKeys; ++i) {
Doug Zongker30362a62013-04-10 11:32:17 -0700249 const uint8_t* hash;
250 switch (pKeys[i].hash_len) {
251 case SHA_DIGEST_SIZE: hash = sha1; break;
252 case SHA256_DIGEST_SIZE: hash = sha256; break;
253 default: continue;
254 }
255
Doug Zongker73ae31c2009-12-09 17:01:45 -0800256 // The 6 bytes is the "(signature_start) $ff $ff (comment_size)" that
Doug Zongker54e2e862009-08-17 13:21:04 -0700257 // the signing tool appends after the signature itself.
Kenny Root7a4adb52013-10-09 10:14:35 -0700258 if (pKeys[i].key_type == Certificate::RSA) {
259 if (sig_der_length < RSANUMBYTES) {
260 // "signature" block isn't big enough to contain an RSA block.
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700261 LOGI("signature is too short for RSA key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700262 continue;
263 }
264
265 if (!RSA_verify(pKeys[i].rsa, sig_der, RSANUMBYTES,
266 hash, pKeys[i].hash_len)) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700267 LOGI("failed to verify against RSA key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700268 continue;
269 }
270
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700271 LOGI("whole-file signature verified against RSA key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700272 free(sig_der);
273 return VERIFY_SUCCESS;
274 } else if (pKeys[i].key_type == Certificate::EC
275 && pKeys[i].hash_len == SHA256_DIGEST_SIZE) {
276 p256_int r, s;
277 if (!dsa_sig_unpack(sig_der, sig_der_length, &r, &s)) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700278 LOGI("Not a DSA signature block for EC key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700279 continue;
280 }
281
282 p256_int p256_hash;
283 p256_from_bin(hash, &p256_hash);
284 if (!p256_ecdsa_verify(&(pKeys[i].ec->x), &(pKeys[i].ec->y),
285 &p256_hash, &r, &s)) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700286 LOGI("failed to verify against EC key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700287 continue;
288 }
289
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700290 LOGI("whole-file signature verified against EC key %zu\n", i);
Kenny Root7a4adb52013-10-09 10:14:35 -0700291 free(sig_der);
Doug Zongker54e2e862009-08-17 13:21:04 -0700292 return VERIFY_SUCCESS;
Doug Zongker6c249f72012-11-02 15:04:05 -0700293 } else {
Kenny Root7a4adb52013-10-09 10:14:35 -0700294 LOGI("Unknown key type %d\n", pKeys[i].key_type);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295 }
296 }
Kenny Root7a4adb52013-10-09 10:14:35 -0700297 free(sig_der);
Doug Zongker54e2e862009-08-17 13:21:04 -0700298 LOGE("failed to verify whole-file signature\n");
299 return VERIFY_FAILURE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800300}
Doug Zongker6c249f72012-11-02 15:04:05 -0700301
302// Reads a file containing one or more public keys as produced by
303// DumpPublicKey: this is an RSAPublicKey struct as it would appear
304// as a C source literal, eg:
305//
306// "{64,0xc926ad21,{1795090719,...,-695002876},{-857949815,...,1175080310}}"
307//
308// For key versions newer than the original 2048-bit e=3 keys
309// supported by Android, the string is preceded by a version
310// identifier, eg:
311//
312// "v2 {64,0xc926ad21,{1795090719,...,-695002876},{-857949815,...,1175080310}}"
313//
314// (Note that the braces and commas in this example are actual
315// characters the parser expects to find in the file; the ellipses
316// indicate more numbers omitted from this example.)
317//
318// The file may contain multiple keys in this format, separated by
319// commas. The last key must not be followed by a comma.
320//
Doug Zongker30362a62013-04-10 11:32:17 -0700321// A Certificate is a pair of an RSAPublicKey and a particular hash
322// (we support SHA-1 and SHA-256; we store the hash length to signify
323// which is being used). The hash used is implied by the version number.
324//
325// 1: 2048-bit RSA key with e=3 and SHA-1 hash
326// 2: 2048-bit RSA key with e=65537 and SHA-1 hash
327// 3: 2048-bit RSA key with e=3 and SHA-256 hash
328// 4: 2048-bit RSA key with e=65537 and SHA-256 hash
Kenny Root7a4adb52013-10-09 10:14:35 -0700329// 5: 256-bit EC key using the NIST P-256 curve parameters and SHA-256 hash
Doug Zongker30362a62013-04-10 11:32:17 -0700330//
Doug Zongker6c249f72012-11-02 15:04:05 -0700331// Returns NULL if the file failed to parse, or if it contain zero keys.
Doug Zongker30362a62013-04-10 11:32:17 -0700332Certificate*
Doug Zongker6c249f72012-11-02 15:04:05 -0700333load_keys(const char* filename, int* numKeys) {
Doug Zongker30362a62013-04-10 11:32:17 -0700334 Certificate* out = NULL;
Doug Zongker6c249f72012-11-02 15:04:05 -0700335 *numKeys = 0;
336
337 FILE* f = fopen(filename, "r");
338 if (f == NULL) {
339 LOGE("opening %s: %s\n", filename, strerror(errno));
340 goto exit;
341 }
342
343 {
344 int i;
345 bool done = false;
346 while (!done) {
347 ++*numKeys;
Doug Zongker30362a62013-04-10 11:32:17 -0700348 out = (Certificate*)realloc(out, *numKeys * sizeof(Certificate));
349 Certificate* cert = out + (*numKeys - 1);
Kenny Root7a4adb52013-10-09 10:14:35 -0700350 memset(cert, '\0', sizeof(Certificate));
Doug Zongker6c249f72012-11-02 15:04:05 -0700351
352 char start_char;
353 if (fscanf(f, " %c", &start_char) != 1) goto exit;
354 if (start_char == '{') {
355 // a version 1 key has no version specifier.
Kenny Root7a4adb52013-10-09 10:14:35 -0700356 cert->key_type = Certificate::RSA;
357 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
358 cert->rsa->exponent = 3;
Doug Zongker30362a62013-04-10 11:32:17 -0700359 cert->hash_len = SHA_DIGEST_SIZE;
Doug Zongker6c249f72012-11-02 15:04:05 -0700360 } else if (start_char == 'v') {
361 int version;
362 if (fscanf(f, "%d {", &version) != 1) goto exit;
Doug Zongker30362a62013-04-10 11:32:17 -0700363 switch (version) {
364 case 2:
Kenny Root7a4adb52013-10-09 10:14:35 -0700365 cert->key_type = Certificate::RSA;
366 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
367 cert->rsa->exponent = 65537;
Doug Zongker30362a62013-04-10 11:32:17 -0700368 cert->hash_len = SHA_DIGEST_SIZE;
369 break;
370 case 3:
Kenny Root7a4adb52013-10-09 10:14:35 -0700371 cert->key_type = Certificate::RSA;
372 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
373 cert->rsa->exponent = 3;
Doug Zongker30362a62013-04-10 11:32:17 -0700374 cert->hash_len = SHA256_DIGEST_SIZE;
375 break;
376 case 4:
Kenny Root7a4adb52013-10-09 10:14:35 -0700377 cert->key_type = Certificate::RSA;
378 cert->rsa = (RSAPublicKey*)malloc(sizeof(RSAPublicKey));
379 cert->rsa->exponent = 65537;
380 cert->hash_len = SHA256_DIGEST_SIZE;
381 break;
382 case 5:
383 cert->key_type = Certificate::EC;
384 cert->ec = (ECPublicKey*)calloc(1, sizeof(ECPublicKey));
Doug Zongker30362a62013-04-10 11:32:17 -0700385 cert->hash_len = SHA256_DIGEST_SIZE;
386 break;
387 default:
388 goto exit;
Doug Zongker6c249f72012-11-02 15:04:05 -0700389 }
390 }
391
Kenny Root7a4adb52013-10-09 10:14:35 -0700392 if (cert->key_type == Certificate::RSA) {
393 RSAPublicKey* key = cert->rsa;
394 if (fscanf(f, " %i , 0x%x , { %u",
395 &(key->len), &(key->n0inv), &(key->n[0])) != 3) {
396 goto exit;
397 }
398 if (key->len != RSANUMWORDS) {
399 LOGE("key length (%d) does not match expected size\n", key->len);
400 goto exit;
401 }
402 for (i = 1; i < key->len; ++i) {
403 if (fscanf(f, " , %u", &(key->n[i])) != 1) goto exit;
404 }
405 if (fscanf(f, " } , { %u", &(key->rr[0])) != 1) goto exit;
406 for (i = 1; i < key->len; ++i) {
407 if (fscanf(f, " , %u", &(key->rr[i])) != 1) goto exit;
408 }
409 fscanf(f, " } } ");
410
411 LOGI("read key e=%d hash=%d\n", key->exponent, cert->hash_len);
412 } else if (cert->key_type == Certificate::EC) {
413 ECPublicKey* key = cert->ec;
414 int key_len;
415 unsigned int byte;
416 uint8_t x_bytes[P256_NBYTES];
417 uint8_t y_bytes[P256_NBYTES];
418 if (fscanf(f, " %i , { %u", &key_len, &byte) != 2) goto exit;
419 if (key_len != P256_NBYTES) {
420 LOGE("Key length (%d) does not match expected size %d\n", key_len, P256_NBYTES);
421 goto exit;
422 }
423 x_bytes[P256_NBYTES - 1] = byte;
424 for (i = P256_NBYTES - 2; i >= 0; --i) {
425 if (fscanf(f, " , %u", &byte) != 1) goto exit;
426 x_bytes[i] = byte;
427 }
428 if (fscanf(f, " } , { %u", &byte) != 1) goto exit;
429 y_bytes[P256_NBYTES - 1] = byte;
430 for (i = P256_NBYTES - 2; i >= 0; --i) {
431 if (fscanf(f, " , %u", &byte) != 1) goto exit;
432 y_bytes[i] = byte;
433 }
434 fscanf(f, " } } ");
435 p256_from_bin(x_bytes, &key->x);
436 p256_from_bin(y_bytes, &key->y);
437 } else {
438 LOGE("Unknown key type %d\n", cert->key_type);
Doug Zongker6c249f72012-11-02 15:04:05 -0700439 goto exit;
440 }
Doug Zongker6c249f72012-11-02 15:04:05 -0700441
442 // if the line ends in a comma, this file has more keys.
443 switch (fgetc(f)) {
444 case ',':
445 // more keys to come.
446 break;
447
448 case EOF:
449 done = true;
450 break;
451
452 default:
453 LOGE("unexpected character between keys\n");
454 goto exit;
455 }
Doug Zongker6c249f72012-11-02 15:04:05 -0700456 }
457 }
458
459 fclose(f);
460 return out;
461
462exit:
463 if (f) fclose(f);
464 free(out);
465 *numKeys = 0;
466 return NULL;
467}