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