48deb2ed3b1a5208fffa75984fcbaa9dea2dfdfb
[openssl.git] / crypto / ts / ts_verify_ctx.c
1 /* crypto/ts/ts_verify_ctx.c */
2 /*
3  * Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL project
4  * 2003.
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 "internal/cryptlib.h"
61 #include <openssl/objects.h>
62 #include <openssl/ts.h>
63 #include "ts_lcl.h"
64
65 TS_VERIFY_CTX *TS_VERIFY_CTX_new(void)
66 {
67     TS_VERIFY_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
68
69     if (!ctx)
70         TSerr(TS_F_TS_VERIFY_CTX_NEW, ERR_R_MALLOC_FAILURE);
71     return ctx;
72 }
73
74 void TS_VERIFY_CTX_init(TS_VERIFY_CTX *ctx)
75 {
76     OPENSSL_assert(ctx != NULL);
77     memset(ctx, 0, sizeof(*ctx));
78 }
79
80 void TS_VERIFY_CTX_free(TS_VERIFY_CTX *ctx)
81 {
82     if (!ctx)
83         return;
84
85     TS_VERIFY_CTX_cleanup(ctx);
86     OPENSSL_free(ctx);
87 }
88
89 int TS_VERIFY_CTX_add_flags(TS_VERIFY_CTX *ctx, int f)
90 {
91     ctx->flags |= f;
92     return ctx->flags;
93 }
94
95 int TS_VERIFY_CTX_set_flags(TS_VERIFY_CTX *ctx, int f)
96 {
97     ctx->flags = f;
98     return ctx->flags;
99 }
100
101 BIO *TS_VERIFY_CTX_set_data(TS_VERIFY_CTX *ctx, BIO *b)
102 {
103     ctx->data = b;
104     return ctx->data;
105 }
106
107 X509_STORE *TS_VERIFY_CTX_set_store(TS_VERIFY_CTX *ctx, X509_STORE *s)
108 {
109     ctx->store = s;
110     return ctx->store;
111 }
112
113 STACK_OF(X509) *TS_VERIFY_CTS_set_certs(TS_VERIFY_CTX *ctx,
114                                         STACK_OF(X509) *certs)
115 {
116     ctx->certs = certs;
117     return ctx->certs;
118 }
119
120 unsigned char *TS_VERIFY_CTX_set_imprint(TS_VERIFY_CTX *ctx,
121                                          unsigned char *hexstr, long len)
122 {
123     ctx->imprint = hexstr;
124     ctx->imprint_len = len;
125     return ctx->imprint;
126 }
127
128 void TS_VERIFY_CTX_cleanup(TS_VERIFY_CTX *ctx)
129 {
130     if (!ctx)
131         return;
132
133     X509_STORE_free(ctx->store);
134     sk_X509_pop_free(ctx->certs, X509_free);
135
136     ASN1_OBJECT_free(ctx->policy);
137
138     X509_ALGOR_free(ctx->md_alg);
139     OPENSSL_free(ctx->imprint);
140
141     BIO_free_all(ctx->data);
142
143     ASN1_INTEGER_free(ctx->nonce);
144
145     GENERAL_NAME_free(ctx->tsa_name);
146
147     TS_VERIFY_CTX_init(ctx);
148 }
149
150 TS_VERIFY_CTX *TS_REQ_to_TS_VERIFY_CTX(TS_REQ *req, TS_VERIFY_CTX *ctx)
151 {
152     TS_VERIFY_CTX *ret = ctx;
153     ASN1_OBJECT *policy;
154     TS_MSG_IMPRINT *imprint;
155     X509_ALGOR *md_alg;
156     ASN1_OCTET_STRING *msg;
157     const ASN1_INTEGER *nonce;
158
159     OPENSSL_assert(req != NULL);
160     if (ret)
161         TS_VERIFY_CTX_cleanup(ret);
162     else if ((ret = TS_VERIFY_CTX_new()) == NULL)
163         return NULL;
164
165     ret->flags = TS_VFY_ALL_IMPRINT & ~(TS_VFY_TSA_NAME | TS_VFY_SIGNATURE);
166
167     if ((policy = req->policy_id) != NULL) {
168         if ((ret->policy = OBJ_dup(policy)) == NULL)
169             goto err;
170     } else
171         ret->flags &= ~TS_VFY_POLICY;
172
173     imprint = req->msg_imprint;
174     md_alg = imprint->hash_algo;
175     if ((ret->md_alg = X509_ALGOR_dup(md_alg)) == NULL)
176         goto err;
177     msg = imprint->hashed_msg;
178     ret->imprint_len = ASN1_STRING_length(msg);
179     if ((ret->imprint = OPENSSL_malloc(ret->imprint_len)) == NULL)
180         goto err;
181     memcpy(ret->imprint, ASN1_STRING_data(msg), ret->imprint_len);
182
183     if ((nonce = req->nonce) != NULL) {
184         if ((ret->nonce = ASN1_INTEGER_dup(nonce)) == NULL)
185             goto err;
186     } else
187         ret->flags &= ~TS_VFY_NONCE;
188
189     return ret;
190  err:
191     if (ctx)
192         TS_VERIFY_CTX_cleanup(ctx);
193     else
194         TS_VERIFY_CTX_free(ret);
195     return NULL;
196 }