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