/src/openssl/ssl/ssl_asn1.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* ssl/ssl_asn1.c */ |
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 | | * Copyright 2005 Nokia. All rights reserved. |
60 | | * |
61 | | * The portions of the attached software ("Contribution") is developed by |
62 | | * Nokia Corporation and is licensed pursuant to the OpenSSL open source |
63 | | * license. |
64 | | * |
65 | | * The Contribution, originally written by Mika Kousa and Pasi Eronen of |
66 | | * Nokia Corporation, consists of the "PSK" (Pre-Shared Key) ciphersuites |
67 | | * support (see RFC 4279) to OpenSSL. |
68 | | * |
69 | | * No patent licenses or other rights except those expressly stated in |
70 | | * the OpenSSL open source license shall be deemed granted or received |
71 | | * expressly, by implication, estoppel, or otherwise. |
72 | | * |
73 | | * No assurances are provided by Nokia that the Contribution does not |
74 | | * infringe the patent or other intellectual property rights of any third |
75 | | * party or that the license provides you with all the necessary rights |
76 | | * to make use of the Contribution. |
77 | | * |
78 | | * THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. IN |
79 | | * ADDITION TO THE DISCLAIMERS INCLUDED IN THE LICENSE, NOKIA |
80 | | * SPECIFICALLY DISCLAIMS ANY LIABILITY FOR CLAIMS BROUGHT BY YOU OR ANY |
81 | | * OTHER ENTITY BASED ON INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS OR |
82 | | * OTHERWISE. |
83 | | */ |
84 | | |
85 | | #include <stdio.h> |
86 | | #include <stdlib.h> |
87 | | #include "ssl_locl.h" |
88 | | #include <openssl/asn1_mac.h> |
89 | | #include <openssl/objects.h> |
90 | | #include <openssl/x509.h> |
91 | | |
92 | | typedef struct ssl_session_asn1_st { |
93 | | ASN1_INTEGER version; |
94 | | ASN1_INTEGER ssl_version; |
95 | | ASN1_OCTET_STRING cipher; |
96 | | ASN1_OCTET_STRING comp_id; |
97 | | ASN1_OCTET_STRING master_key; |
98 | | ASN1_OCTET_STRING session_id; |
99 | | ASN1_OCTET_STRING session_id_context; |
100 | | ASN1_OCTET_STRING key_arg; |
101 | | #ifndef OPENSSL_NO_KRB5 |
102 | | ASN1_OCTET_STRING krb5_princ; |
103 | | #endif /* OPENSSL_NO_KRB5 */ |
104 | | ASN1_INTEGER time; |
105 | | ASN1_INTEGER timeout; |
106 | | ASN1_INTEGER verify_result; |
107 | | #ifndef OPENSSL_NO_TLSEXT |
108 | | ASN1_OCTET_STRING tlsext_hostname; |
109 | | ASN1_INTEGER tlsext_tick_lifetime; |
110 | | ASN1_OCTET_STRING tlsext_tick; |
111 | | #endif /* OPENSSL_NO_TLSEXT */ |
112 | | #ifndef OPENSSL_NO_PSK |
113 | | ASN1_OCTET_STRING psk_identity_hint; |
114 | | ASN1_OCTET_STRING psk_identity; |
115 | | #endif /* OPENSSL_NO_PSK */ |
116 | | #ifndef OPENSSL_NO_SRP |
117 | | ASN1_OCTET_STRING srp_username; |
118 | | #endif /* OPENSSL_NO_SRP */ |
119 | | } SSL_SESSION_ASN1; |
120 | | |
121 | | int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp) |
122 | 0 | { |
123 | 0 | #define LSIZE2 (sizeof(long)*2) |
124 | 0 | int v1 = 0, v2 = 0, v3 = 0, v4 = 0, v5 = 0; |
125 | 0 | unsigned char buf[4], ibuf1[LSIZE2], ibuf2[LSIZE2]; |
126 | 0 | unsigned char ibuf3[LSIZE2], ibuf4[LSIZE2], ibuf5[LSIZE2]; |
127 | 0 | #ifndef OPENSSL_NO_TLSEXT |
128 | 0 | int v6 = 0, v9 = 0, v10 = 0; |
129 | 0 | unsigned char ibuf6[LSIZE2]; |
130 | 0 | #endif |
131 | 0 | #ifndef OPENSSL_NO_PSK |
132 | 0 | int v7 = 0, v8 = 0; |
133 | 0 | #endif |
134 | 0 | #ifndef OPENSSL_NO_COMP |
135 | 0 | unsigned char cbuf; |
136 | 0 | int v11 = 0; |
137 | 0 | #endif |
138 | 0 | #ifndef OPENSSL_NO_SRP |
139 | 0 | int v12 = 0; |
140 | 0 | #endif |
141 | 0 | long l; |
142 | 0 | SSL_SESSION_ASN1 a; |
143 | 0 | M_ASN1_I2D_vars(in); |
144 | | |
145 | 0 | if ((in == NULL) || ((in->cipher == NULL) && (in->cipher_id == 0))) |
146 | 0 | return (0); |
147 | | |
148 | | /* |
149 | | * Note that I cheat in the following 2 assignments. I know that if the |
150 | | * ASN1_INTEGER passed to ASN1_INTEGER_set is > sizeof(long)+1, the |
151 | | * buffer will not be re-OPENSSL_malloc()ed. This is a bit evil but makes |
152 | | * things simple, no dynamic allocation to clean up :-) |
153 | | */ |
154 | 0 | a.version.length = LSIZE2; |
155 | 0 | a.version.type = V_ASN1_INTEGER; |
156 | 0 | a.version.data = ibuf1; |
157 | 0 | ASN1_INTEGER_set(&(a.version), SSL_SESSION_ASN1_VERSION); |
158 | |
|
159 | 0 | a.ssl_version.length = LSIZE2; |
160 | 0 | a.ssl_version.type = V_ASN1_INTEGER; |
161 | 0 | a.ssl_version.data = ibuf2; |
162 | 0 | ASN1_INTEGER_set(&(a.ssl_version), in->ssl_version); |
163 | |
|
164 | 0 | a.cipher.type = V_ASN1_OCTET_STRING; |
165 | 0 | a.cipher.data = buf; |
166 | |
|
167 | 0 | if (in->cipher == NULL) |
168 | 0 | l = in->cipher_id; |
169 | 0 | else |
170 | 0 | l = in->cipher->id; |
171 | 0 | if (in->ssl_version == SSL2_VERSION) { |
172 | 0 | a.cipher.length = 3; |
173 | 0 | buf[0] = ((unsigned char)(l >> 16L)) & 0xff; |
174 | 0 | buf[1] = ((unsigned char)(l >> 8L)) & 0xff; |
175 | 0 | buf[2] = ((unsigned char)(l)) & 0xff; |
176 | 0 | } else { |
177 | 0 | a.cipher.length = 2; |
178 | 0 | buf[0] = ((unsigned char)(l >> 8L)) & 0xff; |
179 | 0 | buf[1] = ((unsigned char)(l)) & 0xff; |
180 | 0 | } |
181 | |
|
182 | 0 | #ifndef OPENSSL_NO_COMP |
183 | 0 | if (in->compress_meth) { |
184 | 0 | cbuf = (unsigned char)in->compress_meth; |
185 | 0 | a.comp_id.length = 1; |
186 | 0 | a.comp_id.type = V_ASN1_OCTET_STRING; |
187 | 0 | a.comp_id.data = &cbuf; |
188 | 0 | } |
189 | 0 | #endif |
190 | |
|
191 | 0 | a.master_key.length = in->master_key_length; |
192 | 0 | a.master_key.type = V_ASN1_OCTET_STRING; |
193 | 0 | a.master_key.data = in->master_key; |
194 | |
|
195 | 0 | a.session_id.length = in->session_id_length; |
196 | 0 | a.session_id.type = V_ASN1_OCTET_STRING; |
197 | 0 | a.session_id.data = in->session_id; |
198 | |
|
199 | 0 | a.session_id_context.length = in->sid_ctx_length; |
200 | 0 | a.session_id_context.type = V_ASN1_OCTET_STRING; |
201 | 0 | a.session_id_context.data = in->sid_ctx; |
202 | |
|
203 | 0 | a.key_arg.length = in->key_arg_length; |
204 | 0 | a.key_arg.type = V_ASN1_OCTET_STRING; |
205 | 0 | a.key_arg.data = in->key_arg; |
206 | |
|
207 | | #ifndef OPENSSL_NO_KRB5 |
208 | | if (in->krb5_client_princ_len) { |
209 | | a.krb5_princ.length = in->krb5_client_princ_len; |
210 | | a.krb5_princ.type = V_ASN1_OCTET_STRING; |
211 | | a.krb5_princ.data = in->krb5_client_princ; |
212 | | } |
213 | | #endif /* OPENSSL_NO_KRB5 */ |
214 | |
|
215 | 0 | if (in->time != 0L) { |
216 | 0 | a.time.length = LSIZE2; |
217 | 0 | a.time.type = V_ASN1_INTEGER; |
218 | 0 | a.time.data = ibuf3; |
219 | 0 | ASN1_INTEGER_set(&(a.time), in->time); |
220 | 0 | } |
221 | |
|
222 | 0 | if (in->timeout != 0L) { |
223 | 0 | a.timeout.length = LSIZE2; |
224 | 0 | a.timeout.type = V_ASN1_INTEGER; |
225 | 0 | a.timeout.data = ibuf4; |
226 | 0 | ASN1_INTEGER_set(&(a.timeout), in->timeout); |
227 | 0 | } |
228 | |
|
229 | 0 | if (in->verify_result != X509_V_OK) { |
230 | 0 | a.verify_result.length = LSIZE2; |
231 | 0 | a.verify_result.type = V_ASN1_INTEGER; |
232 | 0 | a.verify_result.data = ibuf5; |
233 | 0 | ASN1_INTEGER_set(&a.verify_result, in->verify_result); |
234 | 0 | } |
235 | 0 | #ifndef OPENSSL_NO_TLSEXT |
236 | 0 | if (in->tlsext_hostname) { |
237 | 0 | a.tlsext_hostname.length = strlen(in->tlsext_hostname); |
238 | 0 | a.tlsext_hostname.type = V_ASN1_OCTET_STRING; |
239 | 0 | a.tlsext_hostname.data = (unsigned char *)in->tlsext_hostname; |
240 | 0 | } |
241 | 0 | if (in->tlsext_tick) { |
242 | 0 | a.tlsext_tick.length = in->tlsext_ticklen; |
243 | 0 | a.tlsext_tick.type = V_ASN1_OCTET_STRING; |
244 | 0 | a.tlsext_tick.data = (unsigned char *)in->tlsext_tick; |
245 | 0 | } |
246 | 0 | if (in->tlsext_tick_lifetime_hint > 0) { |
247 | 0 | a.tlsext_tick_lifetime.length = LSIZE2; |
248 | 0 | a.tlsext_tick_lifetime.type = V_ASN1_INTEGER; |
249 | 0 | a.tlsext_tick_lifetime.data = ibuf6; |
250 | 0 | ASN1_INTEGER_set(&a.tlsext_tick_lifetime, |
251 | 0 | in->tlsext_tick_lifetime_hint); |
252 | 0 | } |
253 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
254 | 0 | #ifndef OPENSSL_NO_PSK |
255 | 0 | if (in->psk_identity_hint) { |
256 | 0 | a.psk_identity_hint.length = strlen(in->psk_identity_hint); |
257 | 0 | a.psk_identity_hint.type = V_ASN1_OCTET_STRING; |
258 | 0 | a.psk_identity_hint.data = (unsigned char *)(in->psk_identity_hint); |
259 | 0 | } |
260 | 0 | if (in->psk_identity) { |
261 | 0 | a.psk_identity.length = strlen(in->psk_identity); |
262 | 0 | a.psk_identity.type = V_ASN1_OCTET_STRING; |
263 | 0 | a.psk_identity.data = (unsigned char *)(in->psk_identity); |
264 | 0 | } |
265 | 0 | #endif /* OPENSSL_NO_PSK */ |
266 | 0 | #ifndef OPENSSL_NO_SRP |
267 | 0 | if (in->srp_username) { |
268 | 0 | a.srp_username.length = strlen(in->srp_username); |
269 | 0 | a.srp_username.type = V_ASN1_OCTET_STRING; |
270 | 0 | a.srp_username.data = (unsigned char *)(in->srp_username); |
271 | 0 | } |
272 | 0 | #endif /* OPENSSL_NO_SRP */ |
273 | |
|
274 | 0 | M_ASN1_I2D_len(&(a.version), i2d_ASN1_INTEGER); |
275 | 0 | M_ASN1_I2D_len(&(a.ssl_version), i2d_ASN1_INTEGER); |
276 | 0 | M_ASN1_I2D_len(&(a.cipher), i2d_ASN1_OCTET_STRING); |
277 | 0 | M_ASN1_I2D_len(&(a.session_id), i2d_ASN1_OCTET_STRING); |
278 | 0 | M_ASN1_I2D_len(&(a.master_key), i2d_ASN1_OCTET_STRING); |
279 | | #ifndef OPENSSL_NO_KRB5 |
280 | | if (in->krb5_client_princ_len) |
281 | | M_ASN1_I2D_len(&(a.krb5_princ), i2d_ASN1_OCTET_STRING); |
282 | | #endif /* OPENSSL_NO_KRB5 */ |
283 | 0 | if (in->key_arg_length > 0) |
284 | 0 | M_ASN1_I2D_len_IMP_opt(&(a.key_arg), i2d_ASN1_OCTET_STRING); |
285 | 0 | if (in->time != 0L) |
286 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.time), i2d_ASN1_INTEGER, 1, v1); |
287 | 0 | if (in->timeout != 0L) |
288 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.timeout), i2d_ASN1_INTEGER, 2, v2); |
289 | 0 | if (in->peer != NULL) |
290 | 0 | M_ASN1_I2D_len_EXP_opt(in->peer, i2d_X509, 3, v3); |
291 | 0 | M_ASN1_I2D_len_EXP_opt(&a.session_id_context, i2d_ASN1_OCTET_STRING, 4, |
292 | 0 | v4); |
293 | 0 | if (in->verify_result != X509_V_OK) |
294 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.verify_result), i2d_ASN1_INTEGER, 5, v5); |
295 | |
|
296 | 0 | #ifndef OPENSSL_NO_TLSEXT |
297 | 0 | if (in->tlsext_tick_lifetime_hint > 0) |
298 | 0 | M_ASN1_I2D_len_EXP_opt(&a.tlsext_tick_lifetime, i2d_ASN1_INTEGER, 9, |
299 | 0 | v9); |
300 | 0 | if (in->tlsext_tick) |
301 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.tlsext_tick), i2d_ASN1_OCTET_STRING, 10, |
302 | 0 | v10); |
303 | 0 | if (in->tlsext_hostname) |
304 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.tlsext_hostname), i2d_ASN1_OCTET_STRING, 6, |
305 | 0 | v6); |
306 | 0 | # ifndef OPENSSL_NO_COMP |
307 | 0 | if (in->compress_meth) |
308 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.comp_id), i2d_ASN1_OCTET_STRING, 11, v11); |
309 | 0 | # endif |
310 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
311 | 0 | #ifndef OPENSSL_NO_PSK |
312 | 0 | if (in->psk_identity_hint) |
313 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.psk_identity_hint), i2d_ASN1_OCTET_STRING, |
314 | 0 | 7, v7); |
315 | 0 | if (in->psk_identity) |
316 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.psk_identity), i2d_ASN1_OCTET_STRING, 8, |
317 | 0 | v8); |
318 | 0 | #endif /* OPENSSL_NO_PSK */ |
319 | 0 | #ifndef OPENSSL_NO_SRP |
320 | 0 | if (in->srp_username) |
321 | 0 | M_ASN1_I2D_len_EXP_opt(&(a.srp_username), i2d_ASN1_OCTET_STRING, 12, |
322 | 0 | v12); |
323 | 0 | #endif /* OPENSSL_NO_SRP */ |
324 | |
|
325 | 0 | M_ASN1_I2D_seq_total(); |
326 | |
|
327 | 0 | M_ASN1_I2D_put(&(a.version), i2d_ASN1_INTEGER); |
328 | 0 | M_ASN1_I2D_put(&(a.ssl_version), i2d_ASN1_INTEGER); |
329 | 0 | M_ASN1_I2D_put(&(a.cipher), i2d_ASN1_OCTET_STRING); |
330 | 0 | M_ASN1_I2D_put(&(a.session_id), i2d_ASN1_OCTET_STRING); |
331 | 0 | M_ASN1_I2D_put(&(a.master_key), i2d_ASN1_OCTET_STRING); |
332 | | #ifndef OPENSSL_NO_KRB5 |
333 | | if (in->krb5_client_princ_len) |
334 | | M_ASN1_I2D_put(&(a.krb5_princ), i2d_ASN1_OCTET_STRING); |
335 | | #endif /* OPENSSL_NO_KRB5 */ |
336 | 0 | if (in->key_arg_length > 0) |
337 | 0 | M_ASN1_I2D_put_IMP_opt(&(a.key_arg), i2d_ASN1_OCTET_STRING, 0); |
338 | 0 | if (in->time != 0L) |
339 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.time), i2d_ASN1_INTEGER, 1, v1); |
340 | 0 | if (in->timeout != 0L) |
341 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.timeout), i2d_ASN1_INTEGER, 2, v2); |
342 | 0 | if (in->peer != NULL) |
343 | 0 | M_ASN1_I2D_put_EXP_opt(in->peer, i2d_X509, 3, v3); |
344 | 0 | M_ASN1_I2D_put_EXP_opt(&a.session_id_context, i2d_ASN1_OCTET_STRING, 4, |
345 | 0 | v4); |
346 | 0 | if (in->verify_result != X509_V_OK) |
347 | 0 | M_ASN1_I2D_put_EXP_opt(&a.verify_result, i2d_ASN1_INTEGER, 5, v5); |
348 | 0 | #ifndef OPENSSL_NO_TLSEXT |
349 | 0 | if (in->tlsext_hostname) |
350 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.tlsext_hostname), i2d_ASN1_OCTET_STRING, 6, |
351 | 0 | v6); |
352 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
353 | 0 | #ifndef OPENSSL_NO_PSK |
354 | 0 | if (in->psk_identity_hint) |
355 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.psk_identity_hint), i2d_ASN1_OCTET_STRING, |
356 | 0 | 7, v7); |
357 | 0 | if (in->psk_identity) |
358 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.psk_identity), i2d_ASN1_OCTET_STRING, 8, |
359 | 0 | v8); |
360 | 0 | #endif /* OPENSSL_NO_PSK */ |
361 | 0 | #ifndef OPENSSL_NO_TLSEXT |
362 | 0 | if (in->tlsext_tick_lifetime_hint > 0) |
363 | 0 | M_ASN1_I2D_put_EXP_opt(&a.tlsext_tick_lifetime, i2d_ASN1_INTEGER, 9, |
364 | 0 | v9); |
365 | 0 | if (in->tlsext_tick) |
366 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.tlsext_tick), i2d_ASN1_OCTET_STRING, 10, |
367 | 0 | v10); |
368 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
369 | 0 | #ifndef OPENSSL_NO_COMP |
370 | 0 | if (in->compress_meth) |
371 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.comp_id), i2d_ASN1_OCTET_STRING, 11, v11); |
372 | 0 | #endif |
373 | 0 | #ifndef OPENSSL_NO_SRP |
374 | 0 | if (in->srp_username) |
375 | 0 | M_ASN1_I2D_put_EXP_opt(&(a.srp_username), i2d_ASN1_OCTET_STRING, 12, |
376 | 0 | v12); |
377 | 0 | #endif /* OPENSSL_NO_SRP */ |
378 | 0 | M_ASN1_I2D_finish(); |
379 | 0 | } |
380 | | |
381 | | SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp, |
382 | | long length) |
383 | 0 | { |
384 | 0 | int ssl_version = 0, i; |
385 | 0 | long id; |
386 | 0 | ASN1_INTEGER ai, *aip; |
387 | 0 | ASN1_OCTET_STRING os, *osp; |
388 | 0 | M_ASN1_D2I_vars(a, SSL_SESSION *, SSL_SESSION_new); |
389 | |
|
390 | 0 | aip = &ai; |
391 | 0 | osp = &os; |
392 | |
|
393 | 0 | M_ASN1_D2I_Init(); |
394 | 0 | M_ASN1_D2I_start_sequence(); |
395 | |
|
396 | 0 | ai.data = NULL; |
397 | 0 | ai.length = 0; |
398 | 0 | M_ASN1_D2I_get_x(ASN1_INTEGER, aip, d2i_ASN1_INTEGER); |
399 | 0 | if (ai.data != NULL) { |
400 | 0 | OPENSSL_free(ai.data); |
401 | 0 | ai.data = NULL; |
402 | 0 | ai.length = 0; |
403 | 0 | } |
404 | | |
405 | | /* we don't care about the version right now :-) */ |
406 | 0 | M_ASN1_D2I_get_x(ASN1_INTEGER, aip, d2i_ASN1_INTEGER); |
407 | 0 | ssl_version = (int)ASN1_INTEGER_get(aip); |
408 | 0 | ret->ssl_version = ssl_version; |
409 | 0 | if (ai.data != NULL) { |
410 | 0 | OPENSSL_free(ai.data); |
411 | 0 | ai.data = NULL; |
412 | 0 | ai.length = 0; |
413 | 0 | } |
414 | |
|
415 | 0 | os.data = NULL; |
416 | 0 | os.length = 0; |
417 | 0 | M_ASN1_D2I_get_x(ASN1_OCTET_STRING, osp, d2i_ASN1_OCTET_STRING); |
418 | 0 | if (ssl_version == SSL2_VERSION) { |
419 | 0 | if (os.length != 3) { |
420 | 0 | c.error = SSL_R_CIPHER_CODE_WRONG_LENGTH; |
421 | 0 | c.line = __LINE__; |
422 | 0 | goto err; |
423 | 0 | } |
424 | 0 | id = 0x02000000L | |
425 | 0 | ((unsigned long)os.data[0] << 16L) | |
426 | 0 | ((unsigned long)os.data[1] << 8L) | (unsigned long)os.data[2]; |
427 | 0 | } else if ((ssl_version >> 8) == SSL3_VERSION_MAJOR |
428 | 0 | || (ssl_version >> 8) == DTLS1_VERSION_MAJOR |
429 | 0 | || ssl_version == DTLS1_BAD_VER) { |
430 | 0 | if (os.length != 2) { |
431 | 0 | c.error = SSL_R_CIPHER_CODE_WRONG_LENGTH; |
432 | 0 | c.line = __LINE__; |
433 | 0 | goto err; |
434 | 0 | } |
435 | 0 | id = 0x03000000L | |
436 | 0 | ((unsigned long)os.data[0] << 8L) | (unsigned long)os.data[1]; |
437 | 0 | } else { |
438 | 0 | c.error = SSL_R_UNKNOWN_SSL_VERSION; |
439 | 0 | c.line = __LINE__; |
440 | 0 | goto err; |
441 | 0 | } |
442 | | |
443 | 0 | ret->cipher = NULL; |
444 | 0 | ret->cipher_id = id; |
445 | |
|
446 | 0 | M_ASN1_D2I_get_x(ASN1_OCTET_STRING, osp, d2i_ASN1_OCTET_STRING); |
447 | 0 | if ((ssl_version >> 8) >= SSL3_VERSION_MAJOR) |
448 | 0 | i = SSL3_MAX_SSL_SESSION_ID_LENGTH; |
449 | 0 | else /* if (ssl_version>>8 == SSL2_VERSION_MAJOR) */ |
450 | 0 | i = SSL2_MAX_SSL_SESSION_ID_LENGTH; |
451 | |
|
452 | 0 | if (os.length > i) |
453 | 0 | os.length = i; |
454 | 0 | if (os.length > (int)sizeof(ret->session_id)) /* can't happen */ |
455 | 0 | os.length = sizeof(ret->session_id); |
456 | |
|
457 | 0 | ret->session_id_length = os.length; |
458 | 0 | OPENSSL_assert(os.length <= (int)sizeof(ret->session_id)); |
459 | 0 | memcpy(ret->session_id, os.data, os.length); |
460 | |
|
461 | 0 | M_ASN1_D2I_get_x(ASN1_OCTET_STRING, osp, d2i_ASN1_OCTET_STRING); |
462 | 0 | if (os.length > SSL_MAX_MASTER_KEY_LENGTH) |
463 | 0 | ret->master_key_length = SSL_MAX_MASTER_KEY_LENGTH; |
464 | 0 | else |
465 | 0 | ret->master_key_length = os.length; |
466 | 0 | memcpy(ret->master_key, os.data, ret->master_key_length); |
467 | |
|
468 | 0 | os.length = 0; |
469 | |
|
470 | | #ifndef OPENSSL_NO_KRB5 |
471 | | os.length = 0; |
472 | | M_ASN1_D2I_get_opt(osp, d2i_ASN1_OCTET_STRING, V_ASN1_OCTET_STRING); |
473 | | if (os.data) { |
474 | | if (os.length > SSL_MAX_KRB5_PRINCIPAL_LENGTH) |
475 | | ret->krb5_client_princ_len = 0; |
476 | | else |
477 | | ret->krb5_client_princ_len = os.length; |
478 | | memcpy(ret->krb5_client_princ, os.data, ret->krb5_client_princ_len); |
479 | | OPENSSL_free(os.data); |
480 | | os.data = NULL; |
481 | | os.length = 0; |
482 | | } else |
483 | | ret->krb5_client_princ_len = 0; |
484 | | #endif /* OPENSSL_NO_KRB5 */ |
485 | |
|
486 | 0 | M_ASN1_D2I_get_IMP_opt(osp, d2i_ASN1_OCTET_STRING, 0, |
487 | 0 | V_ASN1_OCTET_STRING); |
488 | 0 | if (os.length > SSL_MAX_KEY_ARG_LENGTH) |
489 | 0 | ret->key_arg_length = SSL_MAX_KEY_ARG_LENGTH; |
490 | 0 | else |
491 | 0 | ret->key_arg_length = os.length; |
492 | 0 | memcpy(ret->key_arg, os.data, ret->key_arg_length); |
493 | 0 | if (os.data != NULL) |
494 | 0 | OPENSSL_free(os.data); |
495 | |
|
496 | 0 | ai.length = 0; |
497 | 0 | M_ASN1_D2I_get_EXP_opt(aip, d2i_ASN1_INTEGER, 1); |
498 | 0 | if (ai.data != NULL) { |
499 | 0 | ret->time = ASN1_INTEGER_get(aip); |
500 | 0 | OPENSSL_free(ai.data); |
501 | 0 | ai.data = NULL; |
502 | 0 | ai.length = 0; |
503 | 0 | } else |
504 | 0 | ret->time = (unsigned long)time(NULL); |
505 | |
|
506 | 0 | ai.length = 0; |
507 | 0 | M_ASN1_D2I_get_EXP_opt(aip, d2i_ASN1_INTEGER, 2); |
508 | 0 | if (ai.data != NULL) { |
509 | 0 | ret->timeout = ASN1_INTEGER_get(aip); |
510 | 0 | OPENSSL_free(ai.data); |
511 | 0 | ai.data = NULL; |
512 | 0 | ai.length = 0; |
513 | 0 | } else |
514 | 0 | ret->timeout = 3; |
515 | |
|
516 | 0 | if (ret->peer != NULL) { |
517 | 0 | X509_free(ret->peer); |
518 | 0 | ret->peer = NULL; |
519 | 0 | } |
520 | 0 | M_ASN1_D2I_get_EXP_opt(ret->peer, d2i_X509, 3); |
521 | |
|
522 | 0 | os.length = 0; |
523 | 0 | os.data = NULL; |
524 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 4); |
525 | |
|
526 | 0 | if (os.data != NULL) { |
527 | 0 | if (os.length > SSL_MAX_SID_CTX_LENGTH) { |
528 | 0 | c.error = SSL_R_BAD_LENGTH; |
529 | 0 | c.line = __LINE__; |
530 | 0 | OPENSSL_free(os.data); |
531 | 0 | os.data = NULL; |
532 | 0 | os.length = 0; |
533 | 0 | goto err; |
534 | 0 | } else { |
535 | 0 | ret->sid_ctx_length = os.length; |
536 | 0 | memcpy(ret->sid_ctx, os.data, os.length); |
537 | 0 | } |
538 | 0 | OPENSSL_free(os.data); |
539 | 0 | os.data = NULL; |
540 | 0 | os.length = 0; |
541 | 0 | } else |
542 | 0 | ret->sid_ctx_length = 0; |
543 | | |
544 | 0 | ai.length = 0; |
545 | 0 | M_ASN1_D2I_get_EXP_opt(aip, d2i_ASN1_INTEGER, 5); |
546 | 0 | if (ai.data != NULL) { |
547 | 0 | ret->verify_result = ASN1_INTEGER_get(aip); |
548 | 0 | OPENSSL_free(ai.data); |
549 | 0 | ai.data = NULL; |
550 | 0 | ai.length = 0; |
551 | 0 | } else |
552 | 0 | ret->verify_result = X509_V_OK; |
553 | |
|
554 | 0 | #ifndef OPENSSL_NO_TLSEXT |
555 | 0 | os.length = 0; |
556 | 0 | os.data = NULL; |
557 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 6); |
558 | 0 | if (os.data) { |
559 | 0 | ret->tlsext_hostname = BUF_strndup((char *)os.data, os.length); |
560 | 0 | OPENSSL_free(os.data); |
561 | 0 | os.data = NULL; |
562 | 0 | os.length = 0; |
563 | 0 | } else |
564 | 0 | ret->tlsext_hostname = NULL; |
565 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
566 | |
|
567 | 0 | #ifndef OPENSSL_NO_PSK |
568 | 0 | os.length = 0; |
569 | 0 | os.data = NULL; |
570 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 7); |
571 | 0 | if (os.data) { |
572 | 0 | ret->psk_identity_hint = BUF_strndup((char *)os.data, os.length); |
573 | 0 | OPENSSL_free(os.data); |
574 | 0 | os.data = NULL; |
575 | 0 | os.length = 0; |
576 | 0 | } else |
577 | 0 | ret->psk_identity_hint = NULL; |
578 | |
|
579 | 0 | os.length = 0; |
580 | 0 | os.data = NULL; |
581 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 8); |
582 | 0 | if (os.data) { |
583 | 0 | ret->psk_identity = BUF_strndup((char *)os.data, os.length); |
584 | 0 | OPENSSL_free(os.data); |
585 | 0 | os.data = NULL; |
586 | 0 | os.length = 0; |
587 | 0 | } else |
588 | 0 | ret->psk_identity = NULL; |
589 | 0 | #endif /* OPENSSL_NO_PSK */ |
590 | |
|
591 | 0 | #ifndef OPENSSL_NO_TLSEXT |
592 | 0 | ai.length = 0; |
593 | 0 | M_ASN1_D2I_get_EXP_opt(aip, d2i_ASN1_INTEGER, 9); |
594 | 0 | if (ai.data != NULL) { |
595 | 0 | ret->tlsext_tick_lifetime_hint = ASN1_INTEGER_get(aip); |
596 | 0 | OPENSSL_free(ai.data); |
597 | 0 | ai.data = NULL; |
598 | 0 | ai.length = 0; |
599 | 0 | } else if (ret->tlsext_ticklen && ret->session_id_length) |
600 | 0 | ret->tlsext_tick_lifetime_hint = -1; |
601 | 0 | else |
602 | 0 | ret->tlsext_tick_lifetime_hint = 0; |
603 | 0 | os.length = 0; |
604 | 0 | os.data = NULL; |
605 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 10); |
606 | 0 | if (os.data) { |
607 | 0 | ret->tlsext_tick = os.data; |
608 | 0 | ret->tlsext_ticklen = os.length; |
609 | 0 | os.data = NULL; |
610 | 0 | os.length = 0; |
611 | 0 | } else |
612 | 0 | ret->tlsext_tick = NULL; |
613 | 0 | #endif /* OPENSSL_NO_TLSEXT */ |
614 | 0 | #ifndef OPENSSL_NO_COMP |
615 | 0 | os.length = 0; |
616 | 0 | os.data = NULL; |
617 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 11); |
618 | 0 | if (os.data) { |
619 | 0 | ret->compress_meth = os.data[0]; |
620 | 0 | OPENSSL_free(os.data); |
621 | 0 | os.data = NULL; |
622 | 0 | } |
623 | 0 | #endif |
624 | |
|
625 | 0 | #ifndef OPENSSL_NO_SRP |
626 | 0 | os.length = 0; |
627 | 0 | os.data = NULL; |
628 | 0 | M_ASN1_D2I_get_EXP_opt(osp, d2i_ASN1_OCTET_STRING, 12); |
629 | 0 | if (os.data) { |
630 | 0 | ret->srp_username = BUF_strndup((char *)os.data, os.length); |
631 | 0 | OPENSSL_free(os.data); |
632 | 0 | os.data = NULL; |
633 | 0 | os.length = 0; |
634 | 0 | } else |
635 | 0 | ret->srp_username = NULL; |
636 | 0 | #endif /* OPENSSL_NO_SRP */ |
637 | |
|
638 | 0 | M_ASN1_D2I_Finish(a, SSL_SESSION_free, SSL_F_D2I_SSL_SESSION); |
639 | 0 | } |