sl@0
|
1 |
/* tasn_utl.c */
|
sl@0
|
2 |
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
|
sl@0
|
3 |
* project 2000.
|
sl@0
|
4 |
*/
|
sl@0
|
5 |
/* ====================================================================
|
sl@0
|
6 |
* Copyright (c) 2000-2004 The OpenSSL Project. All rights reserved.
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
9 |
* modification, are permitted provided that the following conditions
|
sl@0
|
10 |
* are met:
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* 1. Redistributions of source code must retain the above copyright
|
sl@0
|
13 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
16 |
* notice, this list of conditions and the following disclaimer in
|
sl@0
|
17 |
* the documentation and/or other materials provided with the
|
sl@0
|
18 |
* distribution.
|
sl@0
|
19 |
*
|
sl@0
|
20 |
* 3. All advertising materials mentioning features or use of this
|
sl@0
|
21 |
* software must display the following acknowledgment:
|
sl@0
|
22 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
23 |
* for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
|
sl@0
|
24 |
*
|
sl@0
|
25 |
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
sl@0
|
26 |
* endorse or promote products derived from this software without
|
sl@0
|
27 |
* prior written permission. For written permission, please contact
|
sl@0
|
28 |
* licensing@OpenSSL.org.
|
sl@0
|
29 |
*
|
sl@0
|
30 |
* 5. Products derived from this software may not be called "OpenSSL"
|
sl@0
|
31 |
* nor may "OpenSSL" appear in their names without prior written
|
sl@0
|
32 |
* permission of the OpenSSL Project.
|
sl@0
|
33 |
*
|
sl@0
|
34 |
* 6. Redistributions of any form whatsoever must retain the following
|
sl@0
|
35 |
* acknowledgment:
|
sl@0
|
36 |
* "This product includes software developed by the OpenSSL Project
|
sl@0
|
37 |
* for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
|
sl@0
|
38 |
*
|
sl@0
|
39 |
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
sl@0
|
40 |
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
41 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
sl@0
|
42 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
sl@0
|
43 |
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
sl@0
|
44 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
sl@0
|
45 |
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
sl@0
|
46 |
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
47 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
sl@0
|
48 |
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
sl@0
|
49 |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
sl@0
|
50 |
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
sl@0
|
51 |
* ====================================================================
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* This product includes cryptographic software written by Eric Young
|
sl@0
|
54 |
* (eay@cryptsoft.com). This product includes software written by Tim
|
sl@0
|
55 |
* Hudson (tjh@cryptsoft.com).
|
sl@0
|
56 |
*
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
|
sl@0
|
59 |
|
sl@0
|
60 |
#include <stddef.h>
|
sl@0
|
61 |
#include <string.h>
|
sl@0
|
62 |
#include <openssl/asn1.h>
|
sl@0
|
63 |
#include <openssl/asn1t.h>
|
sl@0
|
64 |
#include <openssl/objects.h>
|
sl@0
|
65 |
#include <openssl/err.h>
|
sl@0
|
66 |
|
sl@0
|
67 |
/* Utility functions for manipulating fields and offsets */
|
sl@0
|
68 |
|
sl@0
|
69 |
/* Add 'offset' to 'addr' */
|
sl@0
|
70 |
#define offset2ptr(addr, offset) (void *)(((char *) addr) + offset)
|
sl@0
|
71 |
|
sl@0
|
72 |
/* Given an ASN1_ITEM CHOICE type return
|
sl@0
|
73 |
* the selector value
|
sl@0
|
74 |
*/
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
int *sel = offset2ptr(*pval, it->utype);
|
sl@0
|
79 |
return *sel;
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
/* Given an ASN1_ITEM CHOICE type set
|
sl@0
|
83 |
* the selector value, return old value.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
|
sl@0
|
86 |
EXPORT_C int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
int *sel, ret;
|
sl@0
|
89 |
sel = offset2ptr(*pval, it->utype);
|
sl@0
|
90 |
ret = *sel;
|
sl@0
|
91 |
*sel = value;
|
sl@0
|
92 |
return ret;
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
/* Do reference counting. The value 'op' decides what to do.
|
sl@0
|
96 |
* if it is +1 then the count is incremented. If op is 0 count is
|
sl@0
|
97 |
* set to 1. If op is -1 count is decremented and the return value
|
sl@0
|
98 |
* is the current refrence count or 0 if no reference count exists.
|
sl@0
|
99 |
*/
|
sl@0
|
100 |
|
sl@0
|
101 |
EXPORT_C int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
const ASN1_AUX *aux;
|
sl@0
|
104 |
int *lck, ret;
|
sl@0
|
105 |
if ((it->itype != ASN1_ITYPE_SEQUENCE)
|
sl@0
|
106 |
&& (it->itype != ASN1_ITYPE_NDEF_SEQUENCE))
|
sl@0
|
107 |
return 0;
|
sl@0
|
108 |
aux = it->funcs;
|
sl@0
|
109 |
if (!aux || !(aux->flags & ASN1_AFLG_REFCOUNT))
|
sl@0
|
110 |
return 0;
|
sl@0
|
111 |
lck = offset2ptr(*pval, aux->ref_offset);
|
sl@0
|
112 |
if (op == 0)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
*lck = 1;
|
sl@0
|
115 |
return 1;
|
sl@0
|
116 |
}
|
sl@0
|
117 |
ret = CRYPTO_add(lck, op, aux->ref_lock);
|
sl@0
|
118 |
#ifdef REF_PRINT
|
sl@0
|
119 |
fprintf(stderr, "%s: Reference Count: %d\n", it->sname, *lck);
|
sl@0
|
120 |
#endif
|
sl@0
|
121 |
#ifdef REF_CHECK
|
sl@0
|
122 |
if (ret < 0)
|
sl@0
|
123 |
fprintf(stderr, "%s, bad reference count\n", it->sname);
|
sl@0
|
124 |
#endif
|
sl@0
|
125 |
return ret;
|
sl@0
|
126 |
}
|
sl@0
|
127 |
|
sl@0
|
128 |
static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
sl@0
|
129 |
{
|
sl@0
|
130 |
const ASN1_AUX *aux;
|
sl@0
|
131 |
if (!pval || !*pval)
|
sl@0
|
132 |
return NULL;
|
sl@0
|
133 |
aux = it->funcs;
|
sl@0
|
134 |
if (!aux || !(aux->flags & ASN1_AFLG_ENCODING))
|
sl@0
|
135 |
return NULL;
|
sl@0
|
136 |
return offset2ptr(*pval, aux->enc_offset);
|
sl@0
|
137 |
}
|
sl@0
|
138 |
|
sl@0
|
139 |
EXPORT_C void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
sl@0
|
140 |
{
|
sl@0
|
141 |
ASN1_ENCODING *enc;
|
sl@0
|
142 |
enc = asn1_get_enc_ptr(pval, it);
|
sl@0
|
143 |
if (enc)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
enc->enc = NULL;
|
sl@0
|
146 |
enc->len = 0;
|
sl@0
|
147 |
enc->modified = 1;
|
sl@0
|
148 |
}
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
EXPORT_C void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
ASN1_ENCODING *enc;
|
sl@0
|
154 |
enc = asn1_get_enc_ptr(pval, it);
|
sl@0
|
155 |
if (enc)
|
sl@0
|
156 |
{
|
sl@0
|
157 |
if (enc->enc)
|
sl@0
|
158 |
OPENSSL_free(enc->enc);
|
sl@0
|
159 |
enc->enc = NULL;
|
sl@0
|
160 |
enc->len = 0;
|
sl@0
|
161 |
enc->modified = 1;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
}
|
sl@0
|
164 |
|
sl@0
|
165 |
EXPORT_C int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
|
sl@0
|
166 |
const ASN1_ITEM *it)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
ASN1_ENCODING *enc;
|
sl@0
|
169 |
enc = asn1_get_enc_ptr(pval, it);
|
sl@0
|
170 |
if (!enc)
|
sl@0
|
171 |
return 1;
|
sl@0
|
172 |
|
sl@0
|
173 |
if (enc->enc)
|
sl@0
|
174 |
OPENSSL_free(enc->enc);
|
sl@0
|
175 |
enc->enc = OPENSSL_malloc(inlen);
|
sl@0
|
176 |
if (!enc->enc)
|
sl@0
|
177 |
return 0;
|
sl@0
|
178 |
memcpy(enc->enc, in, inlen);
|
sl@0
|
179 |
enc->len = inlen;
|
sl@0
|
180 |
enc->modified = 0;
|
sl@0
|
181 |
|
sl@0
|
182 |
return 1;
|
sl@0
|
183 |
}
|
sl@0
|
184 |
|
sl@0
|
185 |
EXPORT_C int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
|
sl@0
|
186 |
const ASN1_ITEM *it)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
ASN1_ENCODING *enc;
|
sl@0
|
189 |
enc = asn1_get_enc_ptr(pval, it);
|
sl@0
|
190 |
if (!enc || enc->modified)
|
sl@0
|
191 |
return 0;
|
sl@0
|
192 |
if (out)
|
sl@0
|
193 |
{
|
sl@0
|
194 |
memcpy(*out, enc->enc, enc->len);
|
sl@0
|
195 |
*out += enc->len;
|
sl@0
|
196 |
}
|
sl@0
|
197 |
if (len)
|
sl@0
|
198 |
*len = enc->len;
|
sl@0
|
199 |
return 1;
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
/* Given an ASN1_TEMPLATE get a pointer to a field */
|
sl@0
|
203 |
EXPORT_C ASN1_VALUE ** asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
ASN1_VALUE **pvaltmp;
|
sl@0
|
206 |
if (tt->flags & ASN1_TFLG_COMBINE)
|
sl@0
|
207 |
return pval;
|
sl@0
|
208 |
pvaltmp = offset2ptr(*pval, tt->offset);
|
sl@0
|
209 |
/* NOTE for BOOLEAN types the field is just a plain
|
sl@0
|
210 |
* int so we can't return int **, so settle for
|
sl@0
|
211 |
* (int *).
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
return pvaltmp;
|
sl@0
|
214 |
}
|
sl@0
|
215 |
|
sl@0
|
216 |
/* Handle ANY DEFINED BY template, find the selector, look up
|
sl@0
|
217 |
* the relevant ASN1_TEMPLATE in the table and return it.
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
|
sl@0
|
220 |
EXPORT_C const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
|
sl@0
|
221 |
int nullerr)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
const ASN1_ADB *adb;
|
sl@0
|
224 |
const ASN1_ADB_TABLE *atbl;
|
sl@0
|
225 |
long selector;
|
sl@0
|
226 |
ASN1_VALUE **sfld;
|
sl@0
|
227 |
int i;
|
sl@0
|
228 |
if (!(tt->flags & ASN1_TFLG_ADB_MASK))
|
sl@0
|
229 |
return tt;
|
sl@0
|
230 |
|
sl@0
|
231 |
/* Else ANY DEFINED BY ... get the table */
|
sl@0
|
232 |
adb = ASN1_ADB_ptr(tt->item);
|
sl@0
|
233 |
|
sl@0
|
234 |
/* Get the selector field */
|
sl@0
|
235 |
sfld = offset2ptr(*pval, adb->offset);
|
sl@0
|
236 |
|
sl@0
|
237 |
/* Check if NULL */
|
sl@0
|
238 |
if (!sfld)
|
sl@0
|
239 |
{
|
sl@0
|
240 |
if (!adb->null_tt)
|
sl@0
|
241 |
goto err;
|
sl@0
|
242 |
return adb->null_tt;
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
/* Convert type to a long:
|
sl@0
|
246 |
* NB: don't check for NID_undef here because it
|
sl@0
|
247 |
* might be a legitimate value in the table
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
if (tt->flags & ASN1_TFLG_ADB_OID)
|
sl@0
|
250 |
selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld);
|
sl@0
|
251 |
else
|
sl@0
|
252 |
selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld);
|
sl@0
|
253 |
|
sl@0
|
254 |
/* Try to find matching entry in table
|
sl@0
|
255 |
* Maybe should check application types first to
|
sl@0
|
256 |
* allow application override? Might also be useful
|
sl@0
|
257 |
* to have a flag which indicates table is sorted and
|
sl@0
|
258 |
* we can do a binary search. For now stick to a
|
sl@0
|
259 |
* linear search.
|
sl@0
|
260 |
*/
|
sl@0
|
261 |
|
sl@0
|
262 |
for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++)
|
sl@0
|
263 |
if (atbl->value == selector)
|
sl@0
|
264 |
return &atbl->tt;
|
sl@0
|
265 |
|
sl@0
|
266 |
/* FIXME: need to search application table too */
|
sl@0
|
267 |
|
sl@0
|
268 |
/* No match, return default type */
|
sl@0
|
269 |
if (!adb->default_tt)
|
sl@0
|
270 |
goto err;
|
sl@0
|
271 |
return adb->default_tt;
|
sl@0
|
272 |
|
sl@0
|
273 |
err:
|
sl@0
|
274 |
/* FIXME: should log the value or OID of unsupported type */
|
sl@0
|
275 |
if (nullerr)
|
sl@0
|
276 |
ASN1err(ASN1_F_ASN1_DO_ADB,
|
sl@0
|
277 |
ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE);
|
sl@0
|
278 |
return NULL;
|
sl@0
|
279 |
}
|