]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/asn1/asn1_lib.c
Adjust unixly mk1mf after introduction of tkey
[thirdparty/openssl.git] / crypto / asn1 / asn1_lib.c
CommitLineData
d02b48c6 1/* crypto/asn1/asn1_lib.c */
58964a49 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 8 *
d02b48c6
RE
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 15 *
d02b48c6
RE
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
0f113f3e 22 *
d02b48c6
RE
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
0f113f3e 37 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 40 *
d02b48c6
RE
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
0f113f3e 52 *
d02b48c6
RE
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59#include <stdio.h>
f9082268 60#include <limits.h>
d02b48c6 61#include "cryptlib.h"
ec577822 62#include <openssl/asn1.h>
d02b48c6 63
0f113f3e
MC
64static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
65 int max);
d02b48c6 66static void asn1_put_length(unsigned char **pp, int length);
0f113f3e 67const char ASN1_version[] = "ASN.1" OPENSSL_VERSION_PTEXT;
d02b48c6 68
875a644a 69static int _asn1_check_infinite_end(const unsigned char **p, long len)
0f113f3e
MC
70{
71 /*
72 * If there is 0 or 1 byte left, the length check should pick things up
73 */
74 if (len <= 0)
75 return (1);
76 else if ((len >= 2) && ((*p)[0] == 0) && ((*p)[1] == 0)) {
77 (*p) += 2;
78 return (1);
79 }
80 return (0);
81}
d02b48c6 82
6343829a 83int ASN1_check_infinite_end(unsigned char **p, long len)
0f113f3e
MC
84{
85 return _asn1_check_infinite_end((const unsigned char **)p, len);
86}
d02b48c6 87
6343829a 88int ASN1_const_check_infinite_end(const unsigned char **p, long len)
0f113f3e
MC
89{
90 return _asn1_check_infinite_end(p, len);
91}
875a644a 92
6343829a 93int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag,
0f113f3e
MC
94 int *pclass, long omax)
95{
96 int i, ret;
97 long l;
98 const unsigned char *p = *pp;
99 int tag, xclass, inf;
100 long max = omax;
101
102 if (!max)
103 goto err;
104 ret = (*p & V_ASN1_CONSTRUCTED);
105 xclass = (*p & V_ASN1_PRIVATE);
106 i = *p & V_ASN1_PRIMITIVE_TAG;
107 if (i == V_ASN1_PRIMITIVE_TAG) { /* high-tag */
108 p++;
109 if (--max == 0)
110 goto err;
111 l = 0;
112 while (*p & 0x80) {
113 l <<= 7L;
114 l |= *(p++) & 0x7f;
115 if (--max == 0)
116 goto err;
117 if (l > (INT_MAX >> 7L))
118 goto err;
119 }
120 l <<= 7L;
121 l |= *(p++) & 0x7f;
122 tag = (int)l;
123 if (--max == 0)
124 goto err;
125 } else {
126 tag = i;
127 p++;
128 if (--max == 0)
129 goto err;
130 }
131 *ptag = tag;
132 *pclass = xclass;
133 if (!asn1_get_length(&p, &inf, plength, (int)max))
134 goto err;
135
136 if (inf && !(ret & V_ASN1_CONSTRUCTED))
137 goto err;
398e99fe 138
0f113f3e
MC
139 if (*plength > (omax - (p - *pp))) {
140 ASN1err(ASN1_F_ASN1_GET_OBJECT, ASN1_R_TOO_LONG);
141 /*
142 * Set this so that even if things are not long enough the values are
143 * set correctly
144 */
145 ret |= 0x80;
146 }
147 *pp = p;
148 return (ret | inf);
149 err:
150 ASN1err(ASN1_F_ASN1_GET_OBJECT, ASN1_R_HEADER_TOO_LONG);
151 return (0x80);
152}
153
154static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
155 int max)
156{
157 const unsigned char *p = *pp;
158 unsigned long ret = 0;
159 unsigned int i;
160
161 if (max-- < 1)
162 return (0);
163 if (*p == 0x80) {
164 *inf = 1;
165 ret = 0;
166 p++;
167 } else {
168 *inf = 0;
169 i = *p & 0x7f;
170 if (*(p++) & 0x80) {
171 if (max < (int)i)
172 return 0;
173 /* Skip leading zeroes */
174 while (i && *p == 0) {
175 p++;
176 i--;
177 }
178 if (i > sizeof(long))
179 return 0;
180 while (i-- > 0) {
181 ret <<= 8L;
182 ret |= *(p++);
183 }
184 } else
185 ret = i;
186 }
187 if (ret > LONG_MAX)
188 return 0;
189 *pp = p;
190 *rl = (long)ret;
191 return (1);
192}
193
194/*
195 * class 0 is constructed constructed == 2 for indefinite length constructed
196 */
6343829a 197void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
0f113f3e
MC
198 int xclass)
199{
200 unsigned char *p = *pp;
201 int i, ttag;
202
203 i = (constructed) ? V_ASN1_CONSTRUCTED : 0;
204 i |= (xclass & V_ASN1_PRIVATE);
205 if (tag < 31)
206 *(p++) = i | (tag & V_ASN1_PRIMITIVE_TAG);
207 else {
208 *(p++) = i | V_ASN1_PRIMITIVE_TAG;
209 for (i = 0, ttag = tag; ttag > 0; i++)
210 ttag >>= 7;
211 ttag = i;
212 while (i-- > 0) {
213 p[i] = tag & 0x7f;
214 if (i != (ttag - 1))
215 p[i] |= 0x80;
216 tag >>= 7;
217 }
218 p += ttag;
219 }
220 if (constructed == 2)
221 *(p++) = 0x80;
222 else
223 asn1_put_length(&p, length);
224 *pp = p;
225}
d02b48c6 226
230fd6b7 227int ASN1_put_eoc(unsigned char **pp)
0f113f3e
MC
228{
229 unsigned char *p = *pp;
230 *p++ = 0;
231 *p++ = 0;
232 *pp = p;
233 return 2;
234}
230fd6b7 235
6b691a5c 236static void asn1_put_length(unsigned char **pp, int length)
0f113f3e
MC
237{
238 unsigned char *p = *pp;
239 int i, l;
240 if (length <= 127)
241 *(p++) = (unsigned char)length;
242 else {
243 l = length;
244 for (i = 0; l > 0; i++)
245 l >>= 8;
246 *(p++) = i | 0x80;
247 l = i;
248 while (i-- > 0) {
249 p[i] = length & 0xff;
250 length >>= 8;
251 }
252 p += l;
253 }
254 *pp = p;
255}
d02b48c6 256
6343829a 257int ASN1_object_size(int constructed, int length, int tag)
0f113f3e
MC
258{
259 int ret;
260
261 ret = length;
262 ret++;
263 if (tag >= 31) {
264 while (tag > 0) {
265 tag >>= 7;
266 ret++;
267 }
268 }
269 if (constructed == 2)
270 return ret + 3;
271 ret++;
272 if (length > 127) {
273 while (length > 0) {
274 length >>= 8;
275 ret++;
276 }
277 }
278 return (ret);
279}
d02b48c6 280
18f54773 281int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str)
0f113f3e
MC
282{
283 if (str == NULL)
284 return 0;
285 dst->type = str->type;
286 if (!ASN1_STRING_set(dst, str->data, str->length))
287 return 0;
288 dst->flags = str->flags;
289 return 1;
290}
18f54773 291
6384e46d 292ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str)
0f113f3e
MC
293{
294 ASN1_STRING *ret;
295 if (!str)
296 return NULL;
297 ret = ASN1_STRING_new();
298 if (!ret)
299 return NULL;
300 if (!ASN1_STRING_copy(ret, str)) {
301 ASN1_STRING_free(ret);
302 return NULL;
303 }
304 return ret;
305}
d02b48c6 306
6343829a 307int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len)
0f113f3e
MC
308{
309 unsigned char *c;
310 const char *data = _data;
311
312 if (len < 0) {
313 if (data == NULL)
314 return (0);
315 else
316 len = strlen(data);
317 }
318 if ((str->length < len) || (str->data == NULL)) {
319 c = str->data;
2d29e2df 320 str->data = OPENSSL_realloc(c, len + 1);
0f113f3e
MC
321 if (str->data == NULL) {
322 ASN1err(ASN1_F_ASN1_STRING_SET, ERR_R_MALLOC_FAILURE);
323 str->data = c;
324 return (0);
325 }
326 }
327 str->length = len;
328 if (data != NULL) {
329 memcpy(str->data, data, len);
330 /* an allowance for strings :-) */
331 str->data[len] = '\0';
332 }
333 return (1);
334}
d02b48c6 335
6343829a 336void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len)
0f113f3e 337{
b548a1f1 338 OPENSSL_free(str->data);
0f113f3e
MC
339 str->data = data;
340 str->length = len;
341}
399a6f0b 342
6b691a5c 343ASN1_STRING *ASN1_STRING_new(void)
0f113f3e
MC
344{
345 return (ASN1_STRING_type_new(V_ASN1_OCTET_STRING));
346}
d02b48c6 347
6b691a5c 348ASN1_STRING *ASN1_STRING_type_new(int type)
0f113f3e
MC
349{
350 ASN1_STRING *ret;
351
b4faea50 352 ret = OPENSSL_malloc(sizeof(*ret));
0f113f3e
MC
353 if (ret == NULL) {
354 ASN1err(ASN1_F_ASN1_STRING_TYPE_NEW, ERR_R_MALLOC_FAILURE);
355 return (NULL);
356 }
357 ret->length = 0;
358 ret->type = type;
359 ret->data = NULL;
360 ret->flags = 0;
361 return (ret);
362}
d02b48c6 363
6b691a5c 364void ASN1_STRING_free(ASN1_STRING *a)
0f113f3e
MC
365{
366 if (a == NULL)
367 return;
b548a1f1 368 if (!(a->flags & ASN1_STRING_FLAG_NDEF))
0f113f3e
MC
369 OPENSSL_free(a->data);
370 OPENSSL_free(a);
371}
d02b48c6 372
a8ae0891
DSH
373void ASN1_STRING_clear_free(ASN1_STRING *a)
374{
0dfb9398
RS
375 if (a == NULL)
376 return;
377 if (a->data && !(a->flags & ASN1_STRING_FLAG_NDEF))
a8ae0891
DSH
378 OPENSSL_cleanse(a->data, a->length);
379 ASN1_STRING_free(a);
380}
381
6384e46d 382int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b)
0f113f3e
MC
383{
384 int i;
385
386 i = (a->length - b->length);
387 if (i == 0) {
388 i = memcmp(a->data, b->data, a->length);
389 if (i == 0)
390 return (a->type - b->type);
391 else
392 return (i);
393 } else
394 return (i);
395}
d02b48c6 396
6343829a 397int ASN1_STRING_length(const ASN1_STRING *x)
0f113f3e 398{
f422a514 399 return x->length;
0f113f3e 400}
08e9c1af 401
6343829a 402void ASN1_STRING_length_set(ASN1_STRING *x, int len)
0f113f3e 403{
f422a514 404 x->length = len;
0f113f3e 405}
08e9c1af
DSH
406
407int ASN1_STRING_type(ASN1_STRING *x)
0f113f3e 408{
f422a514 409 return x->type;
0f113f3e
MC
410}
411
412unsigned char *ASN1_STRING_data(ASN1_STRING *x)
413{
f422a514 414 return x->data;
0f113f3e 415}