diff options
author | jsing <> | 2021-12-25 12:19:16 +0000 |
---|---|---|
committer | jsing <> | 2021-12-25 12:19:16 +0000 |
commit | 44295c3a6df64c57f818d4167872c08fefeb15e4 (patch) | |
tree | cb78b3fb458447aacd99c9428d8b086e3f53f316 /src | |
parent | 82039a0b66d9e62c5617556d457e9612bfc56e8d (diff) | |
download | openbsd-44295c3a6df64c57f818d4167872c08fefeb15e4.tar.gz openbsd-44295c3a6df64c57f818d4167872c08fefeb15e4.tar.bz2 openbsd-44295c3a6df64c57f818d4167872c08fefeb15e4.zip |
Merge evp_asn1.c into a_type.c - these are all ASN1_TYPE_* functions.
No functional change.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/Makefile | 4 | ||||
-rw-r--r-- | src/lib/libcrypto/asn1/a_type.c | 134 | ||||
-rw-r--r-- | src/lib/libcrypto/asn1/evp_asn1.c | 193 |
3 files changed, 134 insertions, 197 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 9b9d448fa2..dd5caec219 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.61 2021/12/25 12:00:22 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.62 2021/12/25 12:19:16 jsing Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -64,7 +64,7 @@ SRCS+= tasn_prn.c ameth_lib.c | |||
64 | SRCS+= n_pkey.c | 64 | SRCS+= n_pkey.c |
65 | SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c | 65 | SRCS+= x_pkey.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c |
66 | SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c | 66 | SRCS+= asn1_gen.c asn1_par.c asn1_old_lib.c asn1_err.c a_strnid.c |
67 | SRCS+= evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | 67 | SRCS+= asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c |
68 | SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c | 68 | SRCS+= a_time_tm.c asn1_item.c asn1_old.c asn1_types.c asn1_lib.c |
69 | 69 | ||
70 | # bf/ | 70 | # bf/ |
diff --git a/src/lib/libcrypto/asn1/a_type.c b/src/lib/libcrypto/asn1/a_type.c index 23fa9f602c..61609c38f7 100644 --- a/src/lib/libcrypto/asn1/a_type.c +++ b/src/lib/libcrypto/asn1/a_type.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: a_type.c,v 1.22 2021/12/25 08:52:44 jsing Exp $ */ | 1 | /* $OpenBSD: a_type.c,v 1.23 2021/12/25 12:19:16 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -56,11 +56,39 @@ | |||
56 | * [including the GNU Public Licence.] | 56 | * [including the GNU Public Licence.] |
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <stdio.h> | 59 | #include <string.h> |
60 | 60 | ||
61 | #include <openssl/asn1t.h> | 61 | #include <openssl/asn1t.h> |
62 | #include <openssl/err.h> | ||
62 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
63 | 64 | ||
65 | typedef struct { | ||
66 | ASN1_INTEGER *num; | ||
67 | ASN1_OCTET_STRING *value; | ||
68 | } ASN1_int_octetstring; | ||
69 | |||
70 | static const ASN1_TEMPLATE ASN1_INT_OCTETSTRING_seq_tt[] = { | ||
71 | { | ||
72 | .offset = offsetof(ASN1_int_octetstring, num), | ||
73 | .field_name = "num", | ||
74 | .item = &ASN1_INTEGER_it, | ||
75 | }, | ||
76 | { | ||
77 | .offset = offsetof(ASN1_int_octetstring, value), | ||
78 | .field_name = "value", | ||
79 | .item = &ASN1_OCTET_STRING_it, | ||
80 | }, | ||
81 | }; | ||
82 | |||
83 | const ASN1_ITEM ASN1_INT_OCTETSTRING_it = { | ||
84 | .itype = ASN1_ITYPE_SEQUENCE, | ||
85 | .utype = V_ASN1_SEQUENCE, | ||
86 | .templates = ASN1_INT_OCTETSTRING_seq_tt, | ||
87 | .tcount = sizeof(ASN1_INT_OCTETSTRING_seq_tt) / sizeof(ASN1_TEMPLATE), | ||
88 | .size = sizeof(ASN1_int_octetstring), | ||
89 | .sname = "ASN1_INT_OCTETSTRING", | ||
90 | }; | ||
91 | |||
64 | ASN1_TYPE * | 92 | ASN1_TYPE * |
65 | ASN1_TYPE_new(void) | 93 | ASN1_TYPE_new(void) |
66 | { | 94 | { |
@@ -167,6 +195,108 @@ ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b) | |||
167 | return result; | 195 | return result; |
168 | } | 196 | } |
169 | 197 | ||
198 | int | ||
199 | ASN1_TYPE_set_octetstring(ASN1_TYPE *a, const unsigned char *data, int len) | ||
200 | { | ||
201 | ASN1_STRING *os; | ||
202 | |||
203 | if ((os = ASN1_OCTET_STRING_new()) == NULL) | ||
204 | return (0); | ||
205 | if (!ASN1_STRING_set(os, data, len)) { | ||
206 | ASN1_OCTET_STRING_free(os); | ||
207 | return (0); | ||
208 | } | ||
209 | ASN1_TYPE_set(a, V_ASN1_OCTET_STRING, os); | ||
210 | return (1); | ||
211 | } | ||
212 | |||
213 | int | ||
214 | ASN1_TYPE_get_octetstring(const ASN1_TYPE *a, unsigned char *data, int max_len) | ||
215 | { | ||
216 | int ret, num; | ||
217 | unsigned char *p; | ||
218 | |||
219 | if ((a->type != V_ASN1_OCTET_STRING) || | ||
220 | (a->value.octet_string == NULL)) { | ||
221 | ASN1error(ASN1_R_DATA_IS_WRONG); | ||
222 | return (-1); | ||
223 | } | ||
224 | p = ASN1_STRING_data(a->value.octet_string); | ||
225 | ret = ASN1_STRING_length(a->value.octet_string); | ||
226 | if (ret < max_len) | ||
227 | num = ret; | ||
228 | else | ||
229 | num = max_len; | ||
230 | memcpy(data, p, num); | ||
231 | return (ret); | ||
232 | } | ||
233 | |||
234 | int | ||
235 | ASN1_TYPE_set_int_octetstring(ASN1_TYPE *at, long num, const unsigned char *data, | ||
236 | int len) | ||
237 | { | ||
238 | ASN1_int_octetstring *ios; | ||
239 | ASN1_STRING *sp = NULL; | ||
240 | int ret = 0; | ||
241 | |||
242 | if ((ios = (ASN1_int_octetstring *)ASN1_item_new( | ||
243 | &ASN1_INT_OCTETSTRING_it)) == NULL) | ||
244 | goto err; | ||
245 | if (!ASN1_INTEGER_set(ios->num, num)) | ||
246 | goto err; | ||
247 | if (!ASN1_OCTET_STRING_set(ios->value, data, len)) | ||
248 | goto err; | ||
249 | |||
250 | if ((sp = ASN1_item_pack(ios, &ASN1_INT_OCTETSTRING_it, NULL)) == NULL) | ||
251 | goto err; | ||
252 | |||
253 | ASN1_TYPE_set(at, V_ASN1_SEQUENCE, sp); | ||
254 | sp = NULL; | ||
255 | |||
256 | ret = 1; | ||
257 | |||
258 | err: | ||
259 | ASN1_item_free((ASN1_VALUE *)ios, &ASN1_INT_OCTETSTRING_it); | ||
260 | ASN1_STRING_free(sp); | ||
261 | |||
262 | return ret; | ||
263 | } | ||
264 | |||
265 | int | ||
266 | ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *at, long *num, unsigned char *data, | ||
267 | int max_len) | ||
268 | { | ||
269 | ASN1_STRING *sp = at->value.sequence; | ||
270 | ASN1_int_octetstring *ios = NULL; | ||
271 | int ret = -1; | ||
272 | int len; | ||
273 | |||
274 | if (at->type != V_ASN1_SEQUENCE || sp == NULL) | ||
275 | goto err; | ||
276 | |||
277 | if ((ios = ASN1_item_unpack(sp, &ASN1_INT_OCTETSTRING_it)) == NULL) | ||
278 | goto err; | ||
279 | |||
280 | if (num != NULL) | ||
281 | *num = ASN1_INTEGER_get(ios->num); | ||
282 | if (data != NULL) { | ||
283 | len = ASN1_STRING_length(ios->value); | ||
284 | if (len > max_len) | ||
285 | len = max_len; | ||
286 | memcpy(data, ASN1_STRING_data(ios->value), len); | ||
287 | } | ||
288 | |||
289 | ret = ASN1_STRING_length(ios->value); | ||
290 | |||
291 | err: | ||
292 | ASN1_item_free((ASN1_VALUE *)ios, &ASN1_INT_OCTETSTRING_it); | ||
293 | |||
294 | if (ret == -1) | ||
295 | ASN1error(ASN1_R_DATA_IS_WRONG); | ||
296 | |||
297 | return ret; | ||
298 | } | ||
299 | |||
170 | ASN1_TYPE * | 300 | ASN1_TYPE * |
171 | ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s, ASN1_TYPE **t) | 301 | ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s, ASN1_TYPE **t) |
172 | { | 302 | { |
diff --git a/src/lib/libcrypto/asn1/evp_asn1.c b/src/lib/libcrypto/asn1/evp_asn1.c deleted file mode 100644 index 4b7ebbb022..0000000000 --- a/src/lib/libcrypto/asn1/evp_asn1.c +++ /dev/null | |||
@@ -1,193 +0,0 @@ | |||
1 | /* $OpenBSD: evp_asn1.c,v 1.23 2018/11/09 04:20:27 tb Exp $ */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
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. | ||
8 | * | ||
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). | ||
15 | * | ||
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. | ||
22 | * | ||
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 :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
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. | ||
52 | * | ||
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> | ||
60 | #include <string.h> | ||
61 | |||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1t.h> | ||
64 | #include <openssl/err.h> | ||
65 | |||
66 | int | ||
67 | ASN1_TYPE_set_octetstring(ASN1_TYPE *a, const unsigned char *data, int len) | ||
68 | { | ||
69 | ASN1_STRING *os; | ||
70 | |||
71 | if ((os = ASN1_OCTET_STRING_new()) == NULL) | ||
72 | return (0); | ||
73 | if (!ASN1_STRING_set(os, data, len)) { | ||
74 | ASN1_OCTET_STRING_free(os); | ||
75 | return (0); | ||
76 | } | ||
77 | ASN1_TYPE_set(a, V_ASN1_OCTET_STRING, os); | ||
78 | return (1); | ||
79 | } | ||
80 | |||
81 | int | ||
82 | ASN1_TYPE_get_octetstring(const ASN1_TYPE *a, unsigned char *data, int max_len) | ||
83 | { | ||
84 | int ret, num; | ||
85 | unsigned char *p; | ||
86 | |||
87 | if ((a->type != V_ASN1_OCTET_STRING) || | ||
88 | (a->value.octet_string == NULL)) { | ||
89 | ASN1error(ASN1_R_DATA_IS_WRONG); | ||
90 | return (-1); | ||
91 | } | ||
92 | p = ASN1_STRING_data(a->value.octet_string); | ||
93 | ret = ASN1_STRING_length(a->value.octet_string); | ||
94 | if (ret < max_len) | ||
95 | num = ret; | ||
96 | else | ||
97 | num = max_len; | ||
98 | memcpy(data, p, num); | ||
99 | return (ret); | ||
100 | } | ||
101 | |||
102 | typedef struct { | ||
103 | ASN1_INTEGER *num; | ||
104 | ASN1_OCTET_STRING *value; | ||
105 | } ASN1_int_octetstring; | ||
106 | |||
107 | static const ASN1_TEMPLATE ASN1_INT_OCTETSTRING_seq_tt[] = { | ||
108 | { | ||
109 | .offset = offsetof(ASN1_int_octetstring, num), | ||
110 | .field_name = "num", | ||
111 | .item = &ASN1_INTEGER_it, | ||
112 | }, | ||
113 | { | ||
114 | .offset = offsetof(ASN1_int_octetstring, value), | ||
115 | .field_name = "value", | ||
116 | .item = &ASN1_OCTET_STRING_it, | ||
117 | }, | ||
118 | }; | ||
119 | |||
120 | const ASN1_ITEM ASN1_INT_OCTETSTRING_it = { | ||
121 | .itype = ASN1_ITYPE_SEQUENCE, | ||
122 | .utype = V_ASN1_SEQUENCE, | ||
123 | .templates = ASN1_INT_OCTETSTRING_seq_tt, | ||
124 | .tcount = sizeof(ASN1_INT_OCTETSTRING_seq_tt) / sizeof(ASN1_TEMPLATE), | ||
125 | .size = sizeof(ASN1_int_octetstring), | ||
126 | .sname = "ASN1_INT_OCTETSTRING", | ||
127 | }; | ||
128 | |||
129 | int | ||
130 | ASN1_TYPE_set_int_octetstring(ASN1_TYPE *at, long num, const unsigned char *data, | ||
131 | int len) | ||
132 | { | ||
133 | ASN1_int_octetstring *ios; | ||
134 | ASN1_STRING *sp = NULL; | ||
135 | int ret = 0; | ||
136 | |||
137 | if ((ios = (ASN1_int_octetstring *)ASN1_item_new( | ||
138 | &ASN1_INT_OCTETSTRING_it)) == NULL) | ||
139 | goto err; | ||
140 | if (!ASN1_INTEGER_set(ios->num, num)) | ||
141 | goto err; | ||
142 | if (!ASN1_OCTET_STRING_set(ios->value, data, len)) | ||
143 | goto err; | ||
144 | |||
145 | if ((sp = ASN1_item_pack(ios, &ASN1_INT_OCTETSTRING_it, NULL)) == NULL) | ||
146 | goto err; | ||
147 | |||
148 | ASN1_TYPE_set(at, V_ASN1_SEQUENCE, sp); | ||
149 | sp = NULL; | ||
150 | |||
151 | ret = 1; | ||
152 | |||
153 | err: | ||
154 | ASN1_item_free((ASN1_VALUE *)ios, &ASN1_INT_OCTETSTRING_it); | ||
155 | ASN1_STRING_free(sp); | ||
156 | |||
157 | return ret; | ||
158 | } | ||
159 | |||
160 | int | ||
161 | ASN1_TYPE_get_int_octetstring(const ASN1_TYPE *at, long *num, unsigned char *data, | ||
162 | int max_len) | ||
163 | { | ||
164 | ASN1_STRING *sp = at->value.sequence; | ||
165 | ASN1_int_octetstring *ios = NULL; | ||
166 | int ret = -1; | ||
167 | int len; | ||
168 | |||
169 | if (at->type != V_ASN1_SEQUENCE || sp == NULL) | ||
170 | goto err; | ||
171 | |||
172 | if ((ios = ASN1_item_unpack(sp, &ASN1_INT_OCTETSTRING_it)) == NULL) | ||
173 | goto err; | ||
174 | |||
175 | if (num != NULL) | ||
176 | *num = ASN1_INTEGER_get(ios->num); | ||
177 | if (data != NULL) { | ||
178 | len = ASN1_STRING_length(ios->value); | ||
179 | if (len > max_len) | ||
180 | len = max_len; | ||
181 | memcpy(data, ASN1_STRING_data(ios->value), len); | ||
182 | } | ||
183 | |||
184 | ret = ASN1_STRING_length(ios->value); | ||
185 | |||
186 | err: | ||
187 | ASN1_item_free((ASN1_VALUE *)ios, &ASN1_INT_OCTETSTRING_it); | ||
188 | |||
189 | if (ret == -1) | ||
190 | ASN1error(ASN1_R_DATA_IS_WRONG); | ||
191 | |||
192 | return ret; | ||
193 | } | ||