]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/asn1/asn1_lib.c
libcrypto refactoring: introduce and use ossl_asn1_string_set_bits_left()
[thirdparty/openssl.git] / crypto / asn1 / asn1_lib.c
CommitLineData
b1322259 1/*
3c2bdd7d 2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
365a2d99 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
b1322259
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
10#include <stdio.h>
f9082268 11#include <limits.h>
b39fc560 12#include "internal/cryptlib.h"
ec577822 13#include <openssl/asn1.h>
706457b7 14#include "asn1_local.h"
d02b48c6 15
0f113f3e 16static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
79c7f74d 17 long max);
d02b48c6 18static void asn1_put_length(unsigned char **pp, int length);
d02b48c6 19
875a644a 20static int _asn1_check_infinite_end(const unsigned char **p, long len)
0f113f3e
MC
21{
22 /*
23 * If there is 0 or 1 byte left, the length check should pick things up
24 */
da42c2a3 25 if (len <= 0) {
1f06acc0 26 return 1;
da42c2a3
DDO
27 } else {
28 if ((len >= 2) && ((*p)[0] == 0) && ((*p)[1] == 0)) {
29 (*p) += 2;
30 return 1;
31 }
0f113f3e 32 }
1f06acc0 33 return 0;
0f113f3e 34}
d02b48c6 35
6343829a 36int ASN1_check_infinite_end(unsigned char **p, long len)
0f113f3e
MC
37{
38 return _asn1_check_infinite_end((const unsigned char **)p, len);
39}
d02b48c6 40
6343829a 41int ASN1_const_check_infinite_end(const unsigned char **p, long len)
0f113f3e
MC
42{
43 return _asn1_check_infinite_end(p, len);
44}
875a644a 45
6343829a 46int ASN1_get_object(const unsigned char **pp, long *plength, int *ptag,
0f113f3e
MC
47 int *pclass, long omax)
48{
49 int i, ret;
da42c2a3 50 long len;
0f113f3e
MC
51 const unsigned char *p = *pp;
52 int tag, xclass, inf;
53 long max = omax;
54
3e73111d
DDO
55 if (omax <= 0) {
56 ERR_raise(ERR_LIB_ASN1, ASN1_R_TOO_SMALL);
57 return 0x80;
58 }
0f113f3e
MC
59 ret = (*p & V_ASN1_CONSTRUCTED);
60 xclass = (*p & V_ASN1_PRIVATE);
61 i = *p & V_ASN1_PRIMITIVE_TAG;
62 if (i == V_ASN1_PRIMITIVE_TAG) { /* high-tag */
63 p++;
64 if (--max == 0)
65 goto err;
da42c2a3 66 len = 0;
0f113f3e 67 while (*p & 0x80) {
da42c2a3
DDO
68 len <<= 7L;
69 len |= *(p++) & 0x7f;
0f113f3e
MC
70 if (--max == 0)
71 goto err;
da42c2a3 72 if (len > (INT_MAX >> 7L))
0f113f3e
MC
73 goto err;
74 }
da42c2a3
DDO
75 len <<= 7L;
76 len |= *(p++) & 0x7f;
77 tag = (int)len;
0f113f3e
MC
78 if (--max == 0)
79 goto err;
80 } else {
81 tag = i;
82 p++;
83 if (--max == 0)
84 goto err;
85 }
86 *ptag = tag;
87 *pclass = xclass;
79c7f74d 88 if (!asn1_get_length(&p, &inf, plength, max))
0f113f3e
MC
89 goto err;
90
91 if (inf && !(ret & V_ASN1_CONSTRUCTED))
92 goto err;
398e99fe 93
0f113f3e 94 if (*plength > (omax - (p - *pp))) {
9311d0c4 95 ERR_raise(ERR_LIB_ASN1, ASN1_R_TOO_LONG);
0f113f3e
MC
96 /*
97 * Set this so that even if things are not long enough the values are
98 * set correctly
99 */
100 ret |= 0x80;
101 }
102 *pp = p;
1f06acc0 103 return ret | inf;
0f113f3e 104 err:
9311d0c4 105 ERR_raise(ERR_LIB_ASN1, ASN1_R_HEADER_TOO_LONG);
1f06acc0 106 return 0x80;
0f113f3e
MC
107}
108
a9a157e7
P
109/*
110 * Decode a length field.
111 * The short form is a single byte defining a length 0 - 127.
112 * The long form is a byte 0 - 127 with the top bit set and this indicates
113 * the number of following octets that contain the length. These octets
114 * are stored most significant digit first.
115 */
0f113f3e 116static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
79c7f74d 117 long max)
0f113f3e
MC
118{
119 const unsigned char *p = *pp;
120 unsigned long ret = 0;
a9a157e7 121 int i;
0f113f3e
MC
122
123 if (max-- < 1)
79c7f74d 124 return 0;
0f113f3e
MC
125 if (*p == 0x80) {
126 *inf = 1;
0f113f3e
MC
127 p++;
128 } else {
129 *inf = 0;
130 i = *p & 0x7f;
a9a157e7
P
131 if (*p++ & 0x80) {
132 if (max < i + 1)
0f113f3e
MC
133 return 0;
134 /* Skip leading zeroes */
a9a157e7 135 while (i > 0 && *p == 0) {
0f113f3e
MC
136 p++;
137 i--;
138 }
a9a157e7 139 if (i > (int)sizeof(long))
0f113f3e 140 return 0;
a9a157e7
P
141 while (i > 0) {
142 ret <<= 8;
143 ret |= *p++;
144 i--;
0f113f3e 145 }
a9a157e7
P
146 if (ret > LONG_MAX)
147 return 0;
da42c2a3 148 } else {
0f113f3e 149 ret = i;
da42c2a3 150 }
0f113f3e 151 }
0f113f3e
MC
152 *pp = p;
153 *rl = (long)ret;
79c7f74d 154 return 1;
0f113f3e
MC
155}
156
157/*
0f077b5f 158 * constructed == 2 for indefinite length constructed
0f113f3e 159 */
6343829a 160void ASN1_put_object(unsigned char **pp, int constructed, int length, int tag,
0f113f3e
MC
161 int xclass)
162{
163 unsigned char *p = *pp;
164 int i, ttag;
165
166 i = (constructed) ? V_ASN1_CONSTRUCTED : 0;
167 i |= (xclass & V_ASN1_PRIVATE);
da42c2a3 168 if (tag < 31) {
0f113f3e 169 *(p++) = i | (tag & V_ASN1_PRIMITIVE_TAG);
da42c2a3 170 } else {
0f113f3e
MC
171 *(p++) = i | V_ASN1_PRIMITIVE_TAG;
172 for (i = 0, ttag = tag; ttag > 0; i++)
173 ttag >>= 7;
174 ttag = i;
175 while (i-- > 0) {
176 p[i] = tag & 0x7f;
177 if (i != (ttag - 1))
178 p[i] |= 0x80;
179 tag >>= 7;
180 }
181 p += ttag;
182 }
183 if (constructed == 2)
184 *(p++) = 0x80;
185 else
186 asn1_put_length(&p, length);
187 *pp = p;
188}
d02b48c6 189
230fd6b7 190int ASN1_put_eoc(unsigned char **pp)
0f113f3e
MC
191{
192 unsigned char *p = *pp;
da42c2a3 193
0f113f3e
MC
194 *p++ = 0;
195 *p++ = 0;
196 *pp = p;
197 return 2;
198}
230fd6b7 199
6b691a5c 200static void asn1_put_length(unsigned char **pp, int length)
0f113f3e
MC
201{
202 unsigned char *p = *pp;
da42c2a3
DDO
203 int i, len;
204
205 if (length <= 127) {
0f113f3e 206 *(p++) = (unsigned char)length;
da42c2a3
DDO
207 } else {
208 len = length;
209 for (i = 0; len > 0; i++)
210 len >>= 8;
0f113f3e 211 *(p++) = i | 0x80;
da42c2a3 212 len = i;
0f113f3e
MC
213 while (i-- > 0) {
214 p[i] = length & 0xff;
215 length >>= 8;
216 }
da42c2a3 217 p += len;
0f113f3e
MC
218 }
219 *pp = p;
220}
d02b48c6 221
6343829a 222int ASN1_object_size(int constructed, int length, int tag)
0f113f3e 223{
e9f17097 224 int ret = 1;
da42c2a3 225
e9f17097
DSH
226 if (length < 0)
227 return -1;
0f113f3e
MC
228 if (tag >= 31) {
229 while (tag > 0) {
230 tag >>= 7;
231 ret++;
232 }
233 }
e9f17097
DSH
234 if (constructed == 2) {
235 ret += 3;
236 } else {
237 ret++;
238 if (length > 127) {
239 int tmplen = length;
240 while (tmplen > 0) {
241 tmplen >>= 8;
242 ret++;
243 }
0f113f3e
MC
244 }
245 }
e9f17097
DSH
246 if (ret >= INT_MAX - length)
247 return -1;
248 return ret + length;
0f113f3e 249}
d02b48c6 250
7c310e87
DDO
251void ossl_asn1_string_set_bits_left(ASN1_STRING *str, unsigned int num)
252{
253 str->flags &= ~0x07;
254 str->flags |= ASN1_STRING_FLAG_BITS_LEFT | (num & 0x07);
255}
256
18f54773 257int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str)
0f113f3e
MC
258{
259 if (str == NULL)
260 return 0;
261 dst->type = str->type;
262 if (!ASN1_STRING_set(dst, str->data, str->length))
263 return 0;
4002da0f
DSH
264 /* Copy flags but preserve embed value */
265 dst->flags &= ASN1_STRING_FLAG_EMBED;
266 dst->flags |= str->flags & ~ASN1_STRING_FLAG_EMBED;
0f113f3e
MC
267 return 1;
268}
18f54773 269
6384e46d 270ASN1_STRING *ASN1_STRING_dup(const ASN1_STRING *str)
0f113f3e
MC
271{
272 ASN1_STRING *ret;
da42c2a3 273
0f113f3e
MC
274 if (!str)
275 return NULL;
276 ret = ASN1_STRING_new();
90945fa3 277 if (ret == NULL)
0f113f3e
MC
278 return NULL;
279 if (!ASN1_STRING_copy(ret, str)) {
280 ASN1_STRING_free(ret);
281 return NULL;
282 }
283 return ret;
284}
d02b48c6 285
96218269 286int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len_in)
0f113f3e
MC
287{
288 unsigned char *c;
289 const char *data = _data;
96218269 290 size_t len;
0f113f3e 291
96218269 292 if (len_in < 0) {
0f113f3e 293 if (data == NULL)
1f06acc0 294 return 0;
96218269
P
295 len = strlen(data);
296 } else {
297 len = (size_t)len_in;
298 }
299 /*
300 * Verify that the length fits within an integer for assignment to
301 * str->length below. The additional 1 is subtracted to allow for the
302 * '\0' terminator even though this isn't strictly necessary.
303 */
304 if (len > INT_MAX - 1) {
9311d0c4 305 ERR_raise(ERR_LIB_ASN1, ASN1_R_TOO_LARGE);
96218269 306 return 0;
0f113f3e 307 }
96218269 308 if ((size_t)str->length <= len || str->data == NULL) {
0f113f3e 309 c = str->data;
e20fc2ee
MC
310#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
311 /* No NUL terminator in fuzzing builds */
72a509f9 312 str->data = OPENSSL_realloc(c, len != 0 ? len : 1);
e20fc2ee 313#else
2d29e2df 314 str->data = OPENSSL_realloc(c, len + 1);
e20fc2ee 315#endif
0f113f3e 316 if (str->data == NULL) {
9311d0c4 317 ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
0f113f3e 318 str->data = c;
1f06acc0 319 return 0;
0f113f3e
MC
320 }
321 }
322 str->length = len;
323 if (data != NULL) {
324 memcpy(str->data, data, len);
72a509f9
TM
325#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION
326 /* Set the unused byte to something non NUL and printable. */
327 if (len == 0)
328 str->data[len] = '~';
329#else
e20fc2ee
MC
330 /*
331 * Add a NUL terminator. This should not be necessary - but we add it as
332 * a safety precaution
333 */
0f113f3e 334 str->data[len] = '\0';
e20fc2ee 335#endif
0f113f3e 336 }
1f06acc0 337 return 1;
0f113f3e 338}
d02b48c6 339
6343829a 340void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len)
0f113f3e 341{
b548a1f1 342 OPENSSL_free(str->data);
0f113f3e
MC
343 str->data = data;
344 str->length = len;
345}
399a6f0b 346
6b691a5c 347ASN1_STRING *ASN1_STRING_new(void)
0f113f3e 348{
1f06acc0 349 return ASN1_STRING_type_new(V_ASN1_OCTET_STRING);
0f113f3e 350}
d02b48c6 351
6b691a5c 352ASN1_STRING *ASN1_STRING_type_new(int type)
0f113f3e
MC
353{
354 ASN1_STRING *ret;
355
64b25758 356 ret = OPENSSL_zalloc(sizeof(*ret));
0f113f3e 357 if (ret == NULL) {
9311d0c4 358 ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
1f06acc0 359 return NULL;
0f113f3e 360 }
0f113f3e 361 ret->type = type;
1f06acc0 362 return ret;
0f113f3e 363}
d02b48c6 364
adf7e6d1 365void ossl_asn1_string_embed_free(ASN1_STRING *a, int embed)
0f113f3e
MC
366{
367 if (a == NULL)
368 return;
b548a1f1 369 if (!(a->flags & ASN1_STRING_FLAG_NDEF))
0f113f3e 370 OPENSSL_free(a->data);
6215f27a 371 if (embed == 0)
47c9a1b5 372 OPENSSL_free(a);
0f113f3e 373}
d02b48c6 374
6215f27a
DSH
375void ASN1_STRING_free(ASN1_STRING *a)
376{
377 if (a == NULL)
378 return;
adf7e6d1 379 ossl_asn1_string_embed_free(a, a->flags & ASN1_STRING_FLAG_EMBED);
6215f27a
DSH
380}
381
a8ae0891
DSH
382void ASN1_STRING_clear_free(ASN1_STRING *a)
383{
0dfb9398
RS
384 if (a == NULL)
385 return;
386 if (a->data && !(a->flags & ASN1_STRING_FLAG_NDEF))
a8ae0891
DSH
387 OPENSSL_cleanse(a->data, a->length);
388 ASN1_STRING_free(a);
389}
390
6384e46d 391int ASN1_STRING_cmp(const ASN1_STRING *a, const ASN1_STRING *b)
0f113f3e
MC
392{
393 int i;
394
395 i = (a->length - b->length);
396 if (i == 0) {
72a509f9
TM
397 if (a->length != 0)
398 i = memcmp(a->data, b->data, a->length);
0f113f3e 399 if (i == 0)
1f06acc0 400 return a->type - b->type;
0f113f3e 401 else
1f06acc0 402 return i;
da42c2a3 403 } else {
1f06acc0 404 return i;
da42c2a3 405 }
0f113f3e 406}
d02b48c6 407
6343829a 408int ASN1_STRING_length(const ASN1_STRING *x)
0f113f3e 409{
f422a514 410 return x->length;
0f113f3e 411}
08e9c1af 412
08e9684c 413#ifndef OPENSSL_NO_DEPRECATED_3_0
6343829a 414void ASN1_STRING_length_set(ASN1_STRING *x, int len)
0f113f3e 415{
f422a514 416 x->length = len;
0f113f3e 417}
08e9684c 418#endif
08e9c1af 419
08275a29 420int ASN1_STRING_type(const ASN1_STRING *x)
0f113f3e 421{
f422a514 422 return x->type;
0f113f3e
MC
423}
424
17ebf85a
DSH
425const unsigned char *ASN1_STRING_get0_data(const ASN1_STRING *x)
426{
427 return x->data;
428}
429
da42c2a3 430#ifndef OPENSSL_NO_DEPRECATED_1_1_0
0f113f3e
MC
431unsigned char *ASN1_STRING_data(ASN1_STRING *x)
432{
f422a514 433 return x->data;
0f113f3e 434}
17ebf85a 435#endif
da42c2a3 436
cfd854a5 437/* |max_len| excludes NUL terminator and may be 0 to indicate no restriction */
adf7e6d1 438char *ossl_sk_ASN1_UTF8STRING2text(STACK_OF(ASN1_UTF8STRING) *text,
cfd854a5 439 const char *sep, size_t max_len)
da42c2a3
DDO
440{
441 int i;
442 ASN1_UTF8STRING *current;
443 size_t length = 0, sep_len;
444 char *result = NULL;
445 char *p;
446
cfd854a5
DDO
447 if (sep == NULL)
448 sep = "";
da42c2a3
DDO
449 sep_len = strlen(sep);
450
cfd854a5 451 for (i = 0; i < sk_ASN1_UTF8STRING_num(text); i++) {
da42c2a3
DDO
452 current = sk_ASN1_UTF8STRING_value(text, i);
453 if (i > 0)
454 length += sep_len;
455 length += ASN1_STRING_length(current);
cfd854a5 456 if (max_len != 0 && length > max_len)
da42c2a3
DDO
457 return NULL;
458 }
459 if ((result = OPENSSL_malloc(length + 1)) == NULL)
460 return NULL;
461
cfd854a5
DDO
462 p = result;
463 for (i = 0; i < sk_ASN1_UTF8STRING_num(text); i++) {
da42c2a3
DDO
464 current = sk_ASN1_UTF8STRING_value(text, i);
465 length = ASN1_STRING_length(current);
466 if (i > 0 && sep_len > 0) {
cfd854a5 467 strncpy(p, sep, sep_len + 1); /* using + 1 to silence gcc warning */
da42c2a3
DDO
468 p += sep_len;
469 }
470 strncpy(p, (const char *)ASN1_STRING_get0_data(current), length);
471 p += length;
472 }
473 *p = '\0';
474
475 return result;
476}