Whitespace cleanup in crypto
[openssl.git] / crypto / ts / ts_rsp_verify.c
1 /*
2  * Copyright 2006-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include "internal/cryptlib.h"
12 #include <openssl/objects.h>
13 #include <openssl/ts.h>
14 #include <openssl/pkcs7.h>
15 #include "ts_lcl.h"
16
17 static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
18                           X509 *signer, STACK_OF(X509) **chain);
19 static int ts_check_signing_certs(PKCS7_SIGNER_INFO *si,
20                                   STACK_OF(X509) *chain);
21 static ESS_SIGNING_CERT *ess_get_signing_cert(PKCS7_SIGNER_INFO *si);
22 static int ts_find_cert(STACK_OF(ESS_CERT_ID) *cert_ids, X509 *cert);
23 static int ts_issuer_serial_cmp(ESS_ISSUER_SERIAL *is, X509 *cert);
24 static int int_ts_RESP_verify_token(TS_VERIFY_CTX *ctx,
25                                     PKCS7 *token, TS_TST_INFO *tst_info);
26 static int ts_check_status_info(TS_RESP *response);
27 static char *ts_get_status_text(STACK_OF(ASN1_UTF8STRING) *text);
28 static int ts_check_policy(ASN1_OBJECT *req_oid, TS_TST_INFO *tst_info);
29 static int ts_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
30                               X509_ALGOR **md_alg,
31                               unsigned char **imprint, unsigned *imprint_len);
32 static int ts_check_imprints(X509_ALGOR *algor_a,
33                              unsigned char *imprint_a, unsigned len_a,
34                              TS_TST_INFO *tst_info);
35 static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info);
36 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer);
37 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names,
38                         GENERAL_NAME *name);
39
40 /*
41  * This must be large enough to hold all values in ts_status_text (with
42  * comma separator) or all text fields in ts_failure_info (also with comma).
43  */
44 #define TS_STATUS_BUF_SIZE      256
45
46 /*
47  * Local mapping between response codes and descriptions.
48  */
49 static const char *ts_status_text[] = {
50     "granted",
51     "grantedWithMods",
52     "rejection",
53     "waiting",
54     "revocationWarning",
55     "revocationNotification"
56 };
57
58 #define TS_STATUS_TEXT_SIZE     OSSL_NELEM(ts_status_text)
59
60 static struct {
61     int code;
62     const char *text;
63 } ts_failure_info[] = {
64     {TS_INFO_BAD_ALG, "badAlg"},
65     {TS_INFO_BAD_REQUEST, "badRequest"},
66     {TS_INFO_BAD_DATA_FORMAT, "badDataFormat"},
67     {TS_INFO_TIME_NOT_AVAILABLE, "timeNotAvailable"},
68     {TS_INFO_UNACCEPTED_POLICY, "unacceptedPolicy"},
69     {TS_INFO_UNACCEPTED_EXTENSION, "unacceptedExtension"},
70     {TS_INFO_ADD_INFO_NOT_AVAILABLE, "addInfoNotAvailable"},
71     {TS_INFO_SYSTEM_FAILURE, "systemFailure"}
72 };
73
74
75 /*-
76  * This function carries out the following tasks:
77  *      - Checks if there is one and only one signer.
78  *      - Search for the signing certificate in 'certs' and in the response.
79  *      - Check the extended key usage and key usage fields of the signer
80  *      certificate (done by the path validation).
81  *      - Build and validate the certificate path.
82  *      - Check if the certificate path meets the requirements of the
83  *      SigningCertificate ESS signed attribute.
84  *      - Verify the signature value.
85  *      - Returns the signer certificate in 'signer', if 'signer' is not NULL.
86  */
87 int TS_RESP_verify_signature(PKCS7 *token, STACK_OF(X509) *certs,
88                              X509_STORE *store, X509 **signer_out)
89 {
90     STACK_OF(PKCS7_SIGNER_INFO) *sinfos = NULL;
91     PKCS7_SIGNER_INFO *si;
92     STACK_OF(X509) *signers = NULL;
93     X509 *signer;
94     STACK_OF(X509) *chain = NULL;
95     char buf[4096];
96     int i, j = 0, ret = 0;
97     BIO *p7bio = NULL;
98
99     /* Some sanity checks first. */
100     if (!token) {
101         TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_INVALID_NULL_POINTER);
102         goto err;
103     }
104     if (!PKCS7_type_is_signed(token)) {
105         TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_WRONG_CONTENT_TYPE);
106         goto err;
107     }
108     sinfos = PKCS7_get_signer_info(token);
109     if (!sinfos || sk_PKCS7_SIGNER_INFO_num(sinfos) != 1) {
110         TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_THERE_MUST_BE_ONE_SIGNER);
111         goto err;
112     }
113     si = sk_PKCS7_SIGNER_INFO_value(sinfos, 0);
114     if (PKCS7_get_detached(token)) {
115         TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_NO_CONTENT);
116         goto err;
117     }
118
119     /*
120      * Get hold of the signer certificate, search only internal certificates
121      * if it was requested.
122      */
123     signers = PKCS7_get0_signers(token, certs, 0);
124     if (!signers || sk_X509_num(signers) != 1)
125         goto err;
126     signer = sk_X509_value(signers, 0);
127
128     if (!ts_verify_cert(store, certs, signer, &chain))
129         goto err;
130     if (!ts_check_signing_certs(si, chain))
131         goto err;
132     p7bio = PKCS7_dataInit(token, NULL);
133
134     /* We now have to 'read' from p7bio to calculate digests etc. */
135     while ((i = BIO_read(p7bio, buf, sizeof(buf))) > 0)
136         continue;
137
138     j = PKCS7_signatureVerify(p7bio, token, si, signer);
139     if (j <= 0) {
140         TSerr(TS_F_TS_RESP_VERIFY_SIGNATURE, TS_R_SIGNATURE_FAILURE);
141         goto err;
142     }
143
144     if (signer_out) {
145         *signer_out = signer;
146         X509_up_ref(signer);
147     }
148     ret = 1;
149
150  err:
151     BIO_free_all(p7bio);
152     sk_X509_pop_free(chain, X509_free);
153     sk_X509_free(signers);
154
155     return ret;
156 }
157
158 /*
159  * The certificate chain is returned in chain. Caller is responsible for
160  * freeing the vector.
161  */
162 static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
163                           X509 *signer, STACK_OF(X509) **chain)
164 {
165     X509_STORE_CTX *cert_ctx = NULL;
166     int i;
167     int ret = 0;
168
169     *chain = NULL;
170     cert_ctx = X509_STORE_CTX_new();
171     if (cert_ctx == NULL) {
172         TSerr(TS_F_TS_VERIFY_CERT, ERR_R_MALLOC_FAILURE);
173         goto err;
174     }
175     if (!X509_STORE_CTX_init(cert_ctx, store, signer, untrusted))
176         goto end;
177     X509_STORE_CTX_set_purpose(cert_ctx, X509_PURPOSE_TIMESTAMP_SIGN);
178     i = X509_verify_cert(cert_ctx);
179     if (i <= 0) {
180         int j = X509_STORE_CTX_get_error(cert_ctx);
181         TSerr(TS_F_TS_VERIFY_CERT, TS_R_CERTIFICATE_VERIFY_ERROR);
182         ERR_add_error_data(2, "Verify error:",
183                            X509_verify_cert_error_string(j));
184         goto err;
185     }
186     *chain = X509_STORE_CTX_get1_chain(cert_ctx);
187     ret = 1;
188     goto end;
189
190 err:
191     ret = 0;
192
193 end:
194     X509_STORE_CTX_free(cert_ctx);
195     return ret;
196 }
197
198 static int ts_check_signing_certs(PKCS7_SIGNER_INFO *si,
199                                   STACK_OF(X509) *chain)
200 {
201     ESS_SIGNING_CERT *ss = ess_get_signing_cert(si);
202     STACK_OF(ESS_CERT_ID) *cert_ids = NULL;
203     X509 *cert;
204     int i = 0;
205     int ret = 0;
206
207     if (!ss)
208         goto err;
209     cert_ids = ss->cert_ids;
210     cert = sk_X509_value(chain, 0);
211     if (ts_find_cert(cert_ids, cert) != 0)
212         goto err;
213
214     /*
215      * Check the other certificates of the chain if there are more than one
216      * certificate ids in cert_ids.
217      */
218     if (sk_ESS_CERT_ID_num(cert_ids) > 1) {
219         for (i = 1; i < sk_X509_num(chain); ++i) {
220             cert = sk_X509_value(chain, i);
221             if (ts_find_cert(cert_ids, cert) < 0)
222                 goto err;
223         }
224     }
225     ret = 1;
226  err:
227     if (!ret)
228         TSerr(TS_F_TS_CHECK_SIGNING_CERTS,
229               TS_R_ESS_SIGNING_CERTIFICATE_ERROR);
230     ESS_SIGNING_CERT_free(ss);
231     return ret;
232 }
233
234 static ESS_SIGNING_CERT *ess_get_signing_cert(PKCS7_SIGNER_INFO *si)
235 {
236     ASN1_TYPE *attr;
237     const unsigned char *p;
238     attr = PKCS7_get_signed_attribute(si, NID_id_smime_aa_signingCertificate);
239     if (!attr)
240         return NULL;
241     p = attr->value.sequence->data;
242     return d2i_ESS_SIGNING_CERT(NULL, &p, attr->value.sequence->length);
243 }
244
245 /* Returns < 0 if certificate is not found, certificate index otherwise. */
246 static int ts_find_cert(STACK_OF(ESS_CERT_ID) *cert_ids, X509 *cert)
247 {
248     int i;
249     unsigned char cert_sha1[SHA_DIGEST_LENGTH];
250
251     if (!cert_ids || !cert)
252         return -1;
253
254     X509_digest(cert, EVP_sha1(), cert_sha1, NULL);
255
256     /* Recompute SHA1 hash of certificate if necessary (side effect). */
257     X509_check_purpose(cert, -1, 0);
258
259     /* Look for cert in the cert_ids vector. */
260     for (i = 0; i < sk_ESS_CERT_ID_num(cert_ids); ++i) {
261         ESS_CERT_ID *cid = sk_ESS_CERT_ID_value(cert_ids, i);
262
263         if (cid->hash->length == SHA_DIGEST_LENGTH
264             && memcmp(cid->hash->data, cert_sha1, SHA_DIGEST_LENGTH) == 0) {
265             ESS_ISSUER_SERIAL *is = cid->issuer_serial;
266             if (!is || !ts_issuer_serial_cmp(is, cert))
267                 return i;
268         }
269     }
270
271     return -1;
272 }
273
274 static int ts_issuer_serial_cmp(ESS_ISSUER_SERIAL *is, X509 *cert)
275 {
276     GENERAL_NAME *issuer;
277
278     if (!is || !cert || sk_GENERAL_NAME_num(is->issuer) != 1)
279         return -1;
280
281     issuer = sk_GENERAL_NAME_value(is->issuer, 0);
282     if (issuer->type != GEN_DIRNAME
283         || X509_NAME_cmp(issuer->d.dirn, X509_get_issuer_name(cert)))
284         return -1;
285
286     if (ASN1_INTEGER_cmp(is->serial, X509_get_serialNumber(cert)))
287         return -1;
288
289     return 0;
290 }
291
292 /*-
293  * Verifies whether 'response' contains a valid response with regards
294  * to the settings of the context:
295  *      - Gives an error message if the TS_TST_INFO is not present.
296  *      - Calls _TS_RESP_verify_token to verify the token content.
297  */
298 int TS_RESP_verify_response(TS_VERIFY_CTX *ctx, TS_RESP *response)
299 {
300     PKCS7 *token = response->token;
301     TS_TST_INFO *tst_info = response->tst_info;
302     int ret = 0;
303
304     if (!ts_check_status_info(response))
305         goto err;
306     if (!int_ts_RESP_verify_token(ctx, token, tst_info))
307         goto err;
308     ret = 1;
309
310  err:
311     return ret;
312 }
313
314 /*
315  * Tries to extract a TS_TST_INFO structure from the PKCS7 token and
316  * calls the internal int_TS_RESP_verify_token function for verifying it.
317  */
318 int TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token)
319 {
320     TS_TST_INFO *tst_info = PKCS7_to_TS_TST_INFO(token);
321     int ret = 0;
322     if (tst_info) {
323         ret = int_ts_RESP_verify_token(ctx, token, tst_info);
324         TS_TST_INFO_free(tst_info);
325     }
326     return ret;
327 }
328
329 /*-
330  * Verifies whether the 'token' contains a valid time stamp token
331  * with regards to the settings of the context. Only those checks are
332  * carried out that are specified in the context:
333  *      - Verifies the signature of the TS_TST_INFO.
334  *      - Checks the version number of the response.
335  *      - Check if the requested and returned policies math.
336  *      - Check if the message imprints are the same.
337  *      - Check if the nonces are the same.
338  *      - Check if the TSA name matches the signer.
339  *      - Check if the TSA name is the expected TSA.
340  */
341 static int int_ts_RESP_verify_token(TS_VERIFY_CTX *ctx,
342                                     PKCS7 *token, TS_TST_INFO *tst_info)
343 {
344     X509 *signer = NULL;
345     GENERAL_NAME *tsa_name = tst_info->tsa;
346     X509_ALGOR *md_alg = NULL;
347     unsigned char *imprint = NULL;
348     unsigned imprint_len = 0;
349     int ret = 0;
350     int flags = ctx->flags;
351
352     /* Some options require us to also check the signature */
353     if (((flags & TS_VFY_SIGNER) && tsa_name != NULL)
354             || (flags & TS_VFY_TSA_NAME)) {
355         flags |= TS_VFY_SIGNATURE;
356     }
357
358     if ((flags & TS_VFY_SIGNATURE)
359         && !TS_RESP_verify_signature(token, ctx->certs, ctx->store, &signer))
360         goto err;
361     if ((flags & TS_VFY_VERSION)
362         && TS_TST_INFO_get_version(tst_info) != 1) {
363         TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_UNSUPPORTED_VERSION);
364         goto err;
365     }
366     if ((flags & TS_VFY_POLICY)
367         && !ts_check_policy(ctx->policy, tst_info))
368         goto err;
369     if ((flags & TS_VFY_IMPRINT)
370         && !ts_check_imprints(ctx->md_alg, ctx->imprint, ctx->imprint_len,
371                               tst_info))
372         goto err;
373     if ((flags & TS_VFY_DATA)
374         && (!ts_compute_imprint(ctx->data, tst_info,
375                                 &md_alg, &imprint, &imprint_len)
376             || !ts_check_imprints(md_alg, imprint, imprint_len, tst_info)))
377         goto err;
378     if ((flags & TS_VFY_NONCE)
379         && !ts_check_nonces(ctx->nonce, tst_info))
380         goto err;
381     if ((flags & TS_VFY_SIGNER)
382         && tsa_name && !ts_check_signer_name(tsa_name, signer)) {
383         TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_TSA_NAME_MISMATCH);
384         goto err;
385     }
386     if ((flags & TS_VFY_TSA_NAME)
387         && !ts_check_signer_name(ctx->tsa_name, signer)) {
388         TSerr(TS_F_INT_TS_RESP_VERIFY_TOKEN, TS_R_TSA_UNTRUSTED);
389         goto err;
390     }
391     ret = 1;
392
393  err:
394     X509_free(signer);
395     X509_ALGOR_free(md_alg);
396     OPENSSL_free(imprint);
397     return ret;
398 }
399
400 static int ts_check_status_info(TS_RESP *response)
401 {
402     TS_STATUS_INFO *info = response->status_info;
403     long status = ASN1_INTEGER_get(info->status);
404     const char *status_text = NULL;
405     char *embedded_status_text = NULL;
406     char failure_text[TS_STATUS_BUF_SIZE] = "";
407
408     if (status == 0 || status == 1)
409         return 1;
410
411     /* There was an error, get the description in status_text. */
412     if (0 <= status && status < (long) OSSL_NELEM(ts_status_text))
413         status_text = ts_status_text[status];
414     else
415         status_text = "unknown code";
416
417     if (sk_ASN1_UTF8STRING_num(info->text) > 0
418         && (embedded_status_text = ts_get_status_text(info->text)) == NULL)
419         return 0;
420
421     /* Fill in failure_text with the failure information. */
422     if (info->failure_info) {
423         int i;
424         int first = 1;
425         for (i = 0; i < (int)OSSL_NELEM(ts_failure_info); ++i) {
426             if (ASN1_BIT_STRING_get_bit(info->failure_info,
427                                         ts_failure_info[i].code)) {
428                 if (!first)
429                     strcat(failure_text, ",");
430                 else
431                     first = 0;
432                 strcat(failure_text, ts_failure_info[i].text);
433             }
434         }
435     }
436     if (failure_text[0] == '\0')
437         strcpy(failure_text, "unspecified");
438
439     TSerr(TS_F_TS_CHECK_STATUS_INFO, TS_R_NO_TIME_STAMP_TOKEN);
440     ERR_add_error_data(6,
441                        "status code: ", status_text,
442                        ", status text: ", embedded_status_text ?
443                        embedded_status_text : "unspecified",
444                        ", failure codes: ", failure_text);
445     OPENSSL_free(embedded_status_text);
446
447     return 0;
448 }
449
450 static char *ts_get_status_text(STACK_OF(ASN1_UTF8STRING) *text)
451 {
452     int i;
453     unsigned int length = 0;
454     char *result = NULL;
455     char *p;
456
457     for (i = 0; i < sk_ASN1_UTF8STRING_num(text); ++i) {
458         ASN1_UTF8STRING *current = sk_ASN1_UTF8STRING_value(text, i);
459         length += ASN1_STRING_length(current);
460         length += 1;            /* separator character */
461     }
462     if ((result = OPENSSL_malloc(length)) == NULL) {
463         TSerr(TS_F_TS_GET_STATUS_TEXT, ERR_R_MALLOC_FAILURE);
464         return NULL;
465     }
466
467     for (i = 0, p = result; i < sk_ASN1_UTF8STRING_num(text); ++i) {
468         ASN1_UTF8STRING *current = sk_ASN1_UTF8STRING_value(text, i);
469         length = ASN1_STRING_length(current);
470         if (i > 0)
471             *p++ = '/';
472         strncpy(p, (const char *)ASN1_STRING_data(current), length);
473         p += length;
474     }
475     *p = '\0';
476
477     return result;
478 }
479
480 static int ts_check_policy(ASN1_OBJECT *req_oid, TS_TST_INFO *tst_info)
481 {
482     ASN1_OBJECT *resp_oid = tst_info->policy_id;
483
484     if (OBJ_cmp(req_oid, resp_oid) != 0) {
485         TSerr(TS_F_TS_CHECK_POLICY, TS_R_POLICY_MISMATCH);
486         return 0;
487     }
488
489     return 1;
490 }
491
492 static int ts_compute_imprint(BIO *data, TS_TST_INFO *tst_info,
493                               X509_ALGOR **md_alg,
494                               unsigned char **imprint, unsigned *imprint_len)
495 {
496     TS_MSG_IMPRINT *msg_imprint = tst_info->msg_imprint;
497     X509_ALGOR *md_alg_resp = msg_imprint->hash_algo;
498     const EVP_MD *md;
499     EVP_MD_CTX *md_ctx = NULL;
500     unsigned char buffer[4096];
501     int length;
502
503     *md_alg = NULL;
504     *imprint = NULL;
505
506     if ((*md_alg = X509_ALGOR_dup(md_alg_resp)) == NULL)
507         goto err;
508     if ((md = EVP_get_digestbyobj((*md_alg)->algorithm)) == NULL) {
509         TSerr(TS_F_TS_COMPUTE_IMPRINT, TS_R_UNSUPPORTED_MD_ALGORITHM);
510         goto err;
511     }
512     length = EVP_MD_size(md);
513     if (length < 0)
514         goto err;
515     *imprint_len = length;
516     if ((*imprint = OPENSSL_malloc(*imprint_len)) == NULL) {
517         TSerr(TS_F_TS_COMPUTE_IMPRINT, ERR_R_MALLOC_FAILURE);
518         goto err;
519     }
520
521     md_ctx = EVP_MD_CTX_new();
522     if (md_ctx == NULL) {
523         TSerr(TS_F_TS_COMPUTE_IMPRINT, ERR_R_MALLOC_FAILURE);
524         goto err;
525     }
526     if (!EVP_DigestInit(md_ctx, md))
527         goto err;
528     while ((length = BIO_read(data, buffer, sizeof(buffer))) > 0) {
529         if (!EVP_DigestUpdate(md_ctx, buffer, length))
530             goto err;
531     }
532     if (!EVP_DigestFinal(md_ctx, *imprint, NULL))
533         goto err;
534     EVP_MD_CTX_free(md_ctx);
535
536     return 1;
537  err:
538     EVP_MD_CTX_free(md_ctx);
539     X509_ALGOR_free(*md_alg);
540     OPENSSL_free(*imprint);
541     *imprint_len = 0;
542     *imprint = 0;
543     return 0;
544 }
545
546 static int ts_check_imprints(X509_ALGOR *algor_a,
547                              unsigned char *imprint_a, unsigned len_a,
548                              TS_TST_INFO *tst_info)
549 {
550     TS_MSG_IMPRINT *b = tst_info->msg_imprint;
551     X509_ALGOR *algor_b = b->hash_algo;
552     int ret = 0;
553
554     if (algor_a) {
555         if (OBJ_cmp(algor_a->algorithm, algor_b->algorithm))
556             goto err;
557
558         /* The parameter must be NULL in both. */
559         if ((algor_a->parameter
560              && ASN1_TYPE_get(algor_a->parameter) != V_ASN1_NULL)
561             || (algor_b->parameter
562                 && ASN1_TYPE_get(algor_b->parameter) != V_ASN1_NULL))
563             goto err;
564     }
565
566     ret = len_a == (unsigned)ASN1_STRING_length(b->hashed_msg) &&
567         memcmp(imprint_a, ASN1_STRING_data(b->hashed_msg), len_a) == 0;
568  err:
569     if (!ret)
570         TSerr(TS_F_TS_CHECK_IMPRINTS, TS_R_MESSAGE_IMPRINT_MISMATCH);
571     return ret;
572 }
573
574 static int ts_check_nonces(const ASN1_INTEGER *a, TS_TST_INFO *tst_info)
575 {
576     const ASN1_INTEGER *b = tst_info->nonce;
577
578     if (!b) {
579         TSerr(TS_F_TS_CHECK_NONCES, TS_R_NONCE_NOT_RETURNED);
580         return 0;
581     }
582
583     /* No error if a nonce is returned without being requested. */
584     if (ASN1_INTEGER_cmp(a, b) != 0) {
585         TSerr(TS_F_TS_CHECK_NONCES, TS_R_NONCE_MISMATCH);
586         return 0;
587     }
588
589     return 1;
590 }
591
592 /*
593  * Check if the specified TSA name matches either the subject or one of the
594  * subject alternative names of the TSA certificate.
595  */
596 static int ts_check_signer_name(GENERAL_NAME *tsa_name, X509 *signer)
597 {
598     STACK_OF(GENERAL_NAME) *gen_names = NULL;
599     int idx = -1;
600     int found = 0;
601
602     if (tsa_name->type == GEN_DIRNAME
603         && X509_name_cmp(tsa_name->d.dirn, X509_get_subject_name(signer)) == 0)
604         return 1;
605     gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name, NULL, &idx);
606     while (gen_names != NULL) {
607         found = ts_find_name(gen_names, tsa_name) >= 0;
608         if (found)
609             break;
610         /*
611          * Get the next subject alternative name, although there should be no
612          * more than one.
613          */
614         GENERAL_NAMES_free(gen_names);
615         gen_names = X509_get_ext_d2i(signer, NID_subject_alt_name, NULL, &idx);
616     }
617     GENERAL_NAMES_free(gen_names);
618
619     return found;
620 }
621
622 /* Returns 1 if name is in gen_names, 0 otherwise. */
623 static int ts_find_name(STACK_OF(GENERAL_NAME) *gen_names, GENERAL_NAME *name)
624 {
625     int i, found;
626     for (i = 0, found = 0; !found && i < sk_GENERAL_NAME_num(gen_names); ++i) {
627         GENERAL_NAME *current = sk_GENERAL_NAME_value(gen_names, i);
628         found = GENERAL_NAME_cmp(current, name) == 0;
629     }
630     return found ? i - 1 : -1;
631 }