xref: /openssl/crypto/asn1/a_bitstr.c (revision 7c310e87)
1 /*
2  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
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
8  */
9 
10 #include <limits.h>
11 #include <stdio.h>
12 #include "internal/cryptlib.h"
13 #include <openssl/asn1.h>
14 #include "asn1_local.h"
15 
ASN1_BIT_STRING_set(ASN1_BIT_STRING * x,unsigned char * d,int len)16 int ASN1_BIT_STRING_set(ASN1_BIT_STRING *x, unsigned char *d, int len)
17 {
18     return ASN1_STRING_set(x, d, len);
19 }
20 
ossl_i2c_ASN1_BIT_STRING(ASN1_BIT_STRING * a,unsigned char ** pp)21 int ossl_i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp)
22 {
23     int ret, j, bits, len;
24     unsigned char *p, *d;
25 
26     if (a == NULL)
27         return 0;
28 
29     len = a->length;
30 
31     if (len > 0) {
32         if (a->flags & ASN1_STRING_FLAG_BITS_LEFT) {
33             bits = (int)a->flags & 0x07;
34         } else {
35             for (; len > 0; len--) {
36                 if (a->data[len - 1])
37                     break;
38             }
39             j = a->data[len - 1];
40             if (j & 0x01)
41                 bits = 0;
42             else if (j & 0x02)
43                 bits = 1;
44             else if (j & 0x04)
45                 bits = 2;
46             else if (j & 0x08)
47                 bits = 3;
48             else if (j & 0x10)
49                 bits = 4;
50             else if (j & 0x20)
51                 bits = 5;
52             else if (j & 0x40)
53                 bits = 6;
54             else if (j & 0x80)
55                 bits = 7;
56             else
57                 bits = 0;       /* should not happen */
58         }
59     } else
60         bits = 0;
61 
62     ret = 1 + len;
63     if (pp == NULL)
64         return ret;
65 
66     p = *pp;
67 
68     *(p++) = (unsigned char)bits;
69     d = a->data;
70     if (len > 0) {
71         memcpy(p, d, len);
72         p += len;
73         p[-1] &= (0xff << bits);
74     }
75     *pp = p;
76     return ret;
77 }
78 
ossl_c2i_ASN1_BIT_STRING(ASN1_BIT_STRING ** a,const unsigned char ** pp,long len)79 ASN1_BIT_STRING *ossl_c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
80                                           const unsigned char **pp, long len)
81 {
82     ASN1_BIT_STRING *ret = NULL;
83     const unsigned char *p;
84     unsigned char *s;
85     int i;
86 
87     if (len < 1) {
88         i = ASN1_R_STRING_TOO_SHORT;
89         goto err;
90     }
91 
92     if (len > INT_MAX) {
93         i = ASN1_R_STRING_TOO_LONG;
94         goto err;
95     }
96 
97     if ((a == NULL) || ((*a) == NULL)) {
98         if ((ret = ASN1_BIT_STRING_new()) == NULL)
99             return NULL;
100     } else
101         ret = (*a);
102 
103     p = *pp;
104     i = *(p++);
105     if (i > 7) {
106         i = ASN1_R_INVALID_BIT_STRING_BITS_LEFT;
107         goto err;
108     }
109     /*
110      * We do this to preserve the settings.  If we modify the settings, via
111      * the _set_bit function, we will recalculate on output
112      */
113     ossl_asn1_string_set_bits_left(ret, i);
114 
115     if (len-- > 1) {            /* using one because of the bits left byte */
116         s = OPENSSL_malloc((int)len);
117         if (s == NULL) {
118             i = ERR_R_MALLOC_FAILURE;
119             goto err;
120         }
121         memcpy(s, p, (int)len);
122         s[len - 1] &= (0xff << i);
123         p += len;
124     } else
125         s = NULL;
126 
127     ASN1_STRING_set0(ret, s, (int)len);
128     ret->type = V_ASN1_BIT_STRING;
129     if (a != NULL)
130         (*a) = ret;
131     *pp = p;
132     return ret;
133  err:
134     ERR_raise(ERR_LIB_ASN1, i);
135     if ((a == NULL) || (*a != ret))
136         ASN1_BIT_STRING_free(ret);
137     return NULL;
138 }
139 
140 /*
141  * These next 2 functions from Goetz Babin-Ebell.
142  */
ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING * a,int n,int value)143 int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value)
144 {
145     int w, v, iv;
146     unsigned char *c;
147 
148     w = n / 8;
149     v = 1 << (7 - (n & 0x07));
150     iv = ~v;
151     if (!value)
152         v = 0;
153 
154     if (a == NULL)
155         return 0;
156 
157     a->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07); /* clear, set on write */
158 
159     if ((a->length < (w + 1)) || (a->data == NULL)) {
160         if (!value)
161             return 1;         /* Don't need to set */
162         c = OPENSSL_clear_realloc(a->data, a->length, w + 1);
163         if (c == NULL) {
164             ERR_raise(ERR_LIB_ASN1, ERR_R_MALLOC_FAILURE);
165             return 0;
166         }
167         if (w + 1 - a->length > 0)
168             memset(c + a->length, 0, w + 1 - a->length);
169         a->data = c;
170         a->length = w + 1;
171     }
172     a->data[w] = ((a->data[w]) & iv) | v;
173     while ((a->length > 0) && (a->data[a->length - 1] == 0))
174         a->length--;
175     return 1;
176 }
177 
ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING * a,int n)178 int ASN1_BIT_STRING_get_bit(const ASN1_BIT_STRING *a, int n)
179 {
180     int w, v;
181 
182     w = n / 8;
183     v = 1 << (7 - (n & 0x07));
184     if ((a == NULL) || (a->length < (w + 1)) || (a->data == NULL))
185         return 0;
186     return ((a->data[w] & v) != 0);
187 }
188 
189 /*
190  * Checks if the given bit string contains only bits specified by
191  * the flags vector. Returns 0 if there is at least one bit set in 'a'
192  * which is not specified in 'flags', 1 otherwise.
193  * 'len' is the length of 'flags'.
194  */
ASN1_BIT_STRING_check(const ASN1_BIT_STRING * a,const unsigned char * flags,int flags_len)195 int ASN1_BIT_STRING_check(const ASN1_BIT_STRING *a,
196                           const unsigned char *flags, int flags_len)
197 {
198     int i, ok;
199     /* Check if there is one bit set at all. */
200     if (!a || !a->data)
201         return 1;
202 
203     /*
204      * Check each byte of the internal representation of the bit string.
205      */
206     ok = 1;
207     for (i = 0; i < a->length && ok; ++i) {
208         unsigned char mask = i < flags_len ? ~flags[i] : 0xff;
209         /* We are done if there is an unneeded bit set. */
210         ok = (a->data[i] & mask) == 0;
211     }
212     return ok;
213 }
214