Coverage Report

Created: 2023-06-08 06:41

/src/openssl111/ssl/ssl_asn1.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright 2005 Nokia. All rights reserved.
4
 *
5
 * Licensed under the OpenSSL license (the "License").  You may not use
6
 * this file except in compliance with the License.  You can obtain a copy
7
 * in the file LICENSE in the source distribution or at
8
 * https://www.openssl.org/source/license.html
9
 */
10
11
#include <stdio.h>
12
#include <stdlib.h>
13
#include "ssl_local.h"
14
#include <openssl/asn1t.h>
15
#include <openssl/x509.h>
16
17
typedef struct {
18
    uint32_t version;
19
    int32_t ssl_version;
20
    ASN1_OCTET_STRING *cipher;
21
    ASN1_OCTET_STRING *comp_id;
22
    ASN1_OCTET_STRING *master_key;
23
    ASN1_OCTET_STRING *session_id;
24
    ASN1_OCTET_STRING *key_arg;
25
    int64_t time;
26
    int64_t timeout;
27
    X509 *peer;
28
    ASN1_OCTET_STRING *session_id_context;
29
    int32_t verify_result;
30
    ASN1_OCTET_STRING *tlsext_hostname;
31
    uint64_t tlsext_tick_lifetime_hint;
32
    uint32_t tlsext_tick_age_add;
33
    ASN1_OCTET_STRING *tlsext_tick;
34
#ifndef OPENSSL_NO_PSK
35
    ASN1_OCTET_STRING *psk_identity_hint;
36
    ASN1_OCTET_STRING *psk_identity;
37
#endif
38
#ifndef OPENSSL_NO_SRP
39
    ASN1_OCTET_STRING *srp_username;
40
#endif
41
    uint64_t flags;
42
    uint32_t max_early_data;
43
    ASN1_OCTET_STRING *alpn_selected;
44
    uint32_t tlsext_max_fragment_len_mode;
45
    ASN1_OCTET_STRING *ticket_appdata;
46
} SSL_SESSION_ASN1;
47
48
ASN1_SEQUENCE(SSL_SESSION_ASN1) = {
49
    ASN1_EMBED(SSL_SESSION_ASN1, version, UINT32),
50
    ASN1_EMBED(SSL_SESSION_ASN1, ssl_version, INT32),
51
    ASN1_SIMPLE(SSL_SESSION_ASN1, cipher, ASN1_OCTET_STRING),
52
    ASN1_SIMPLE(SSL_SESSION_ASN1, session_id, ASN1_OCTET_STRING),
53
    ASN1_SIMPLE(SSL_SESSION_ASN1, master_key, ASN1_OCTET_STRING),
54
    ASN1_IMP_OPT(SSL_SESSION_ASN1, key_arg, ASN1_OCTET_STRING, 0),
55
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, time, ZINT64, 1),
56
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, timeout, ZINT64, 2),
57
    ASN1_EXP_OPT(SSL_SESSION_ASN1, peer, X509, 3),
58
    ASN1_EXP_OPT(SSL_SESSION_ASN1, session_id_context, ASN1_OCTET_STRING, 4),
59
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, verify_result, ZINT32, 5),
60
    ASN1_EXP_OPT(SSL_SESSION_ASN1, tlsext_hostname, ASN1_OCTET_STRING, 6),
61
#ifndef OPENSSL_NO_PSK
62
    ASN1_EXP_OPT(SSL_SESSION_ASN1, psk_identity_hint, ASN1_OCTET_STRING, 7),
63
    ASN1_EXP_OPT(SSL_SESSION_ASN1, psk_identity, ASN1_OCTET_STRING, 8),
64
#endif
65
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, tlsext_tick_lifetime_hint, ZUINT64, 9),
66
    ASN1_EXP_OPT(SSL_SESSION_ASN1, tlsext_tick, ASN1_OCTET_STRING, 10),
67
    ASN1_EXP_OPT(SSL_SESSION_ASN1, comp_id, ASN1_OCTET_STRING, 11),
68
#ifndef OPENSSL_NO_SRP
69
    ASN1_EXP_OPT(SSL_SESSION_ASN1, srp_username, ASN1_OCTET_STRING, 12),
70
#endif
71
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, flags, ZUINT64, 13),
72
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, tlsext_tick_age_add, ZUINT32, 14),
73
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, max_early_data, ZUINT32, 15),
74
    ASN1_EXP_OPT(SSL_SESSION_ASN1, alpn_selected, ASN1_OCTET_STRING, 16),
75
    ASN1_EXP_OPT_EMBED(SSL_SESSION_ASN1, tlsext_max_fragment_len_mode, ZUINT32, 17),
76
    ASN1_EXP_OPT(SSL_SESSION_ASN1, ticket_appdata, ASN1_OCTET_STRING, 18)
77
} static_ASN1_SEQUENCE_END(SSL_SESSION_ASN1)
78
79
IMPLEMENT_STATIC_ASN1_ENCODE_FUNCTIONS(SSL_SESSION_ASN1)
80
81
/* Utility functions for i2d_SSL_SESSION */
82
83
/* Initialise OCTET STRING from buffer and length */
84
85
static void ssl_session_oinit(ASN1_OCTET_STRING **dest, ASN1_OCTET_STRING *os,
86
                              unsigned char *data, size_t len)
87
1.69k
{
88
1.69k
    os->data = data;
89
1.69k
    os->length = (int)len;
90
1.69k
    os->flags = 0;
91
1.69k
    *dest = os;
92
1.69k
}
93
94
/* Initialise OCTET STRING from string */
95
static void ssl_session_sinit(ASN1_OCTET_STRING **dest, ASN1_OCTET_STRING *os,
96
                              char *data)
97
1.62k
{
98
1.62k
    if (data != NULL)
99
57
        ssl_session_oinit(dest, os, (unsigned char *)data, strlen(data));
100
1.57k
    else
101
1.57k
        *dest = NULL;
102
1.62k
}
103
104
int i2d_SSL_SESSION(SSL_SESSION *in, unsigned char **pp)
105
407
{
106
107
407
    SSL_SESSION_ASN1 as;
108
109
407
    ASN1_OCTET_STRING cipher;
110
407
    unsigned char cipher_data[2];
111
407
    ASN1_OCTET_STRING master_key, session_id, sid_ctx;
112
113
407
#ifndef OPENSSL_NO_COMP
114
407
    ASN1_OCTET_STRING comp_id;
115
407
    unsigned char comp_id_data;
116
407
#endif
117
407
    ASN1_OCTET_STRING tlsext_hostname, tlsext_tick;
118
407
#ifndef OPENSSL_NO_SRP
119
407
    ASN1_OCTET_STRING srp_username;
120
407
#endif
121
407
#ifndef OPENSSL_NO_PSK
122
407
    ASN1_OCTET_STRING psk_identity, psk_identity_hint;
123
407
#endif
124
407
    ASN1_OCTET_STRING alpn_selected;
125
407
    ASN1_OCTET_STRING ticket_appdata;
126
127
407
    long l;
128
129
407
    if ((in == NULL) || ((in->cipher == NULL) && (in->cipher_id == 0)))
130
0
        return 0;
131
132
407
    memset(&as, 0, sizeof(as));
133
134
407
    as.version = SSL_SESSION_ASN1_VERSION;
135
407
    as.ssl_version = in->ssl_version;
136
137
407
    if (in->cipher == NULL)
138
0
        l = in->cipher_id;
139
407
    else
140
407
        l = in->cipher->id;
141
407
    cipher_data[0] = ((unsigned char)(l >> 8L)) & 0xff;
142
407
    cipher_data[1] = ((unsigned char)(l)) & 0xff;
143
144
407
    ssl_session_oinit(&as.cipher, &cipher, cipher_data, 2);
145
146
407
#ifndef OPENSSL_NO_COMP
147
407
    if (in->compress_meth) {
148
1
        comp_id_data = (unsigned char)in->compress_meth;
149
1
        ssl_session_oinit(&as.comp_id, &comp_id, &comp_id_data, 1);
150
1
    }
151
407
#endif
152
153
407
    ssl_session_oinit(&as.master_key, &master_key,
154
407
                      in->master_key, in->master_key_length);
155
156
407
    ssl_session_oinit(&as.session_id, &session_id,
157
407
                      in->session_id, in->session_id_length);
158
159
407
    ssl_session_oinit(&as.session_id_context, &sid_ctx,
160
407
                      in->sid_ctx, in->sid_ctx_length);
161
162
407
    as.time = in->time;
163
407
    as.timeout = in->timeout;
164
407
    as.verify_result = in->verify_result;
165
166
407
    as.peer = in->peer;
167
168
407
    ssl_session_sinit(&as.tlsext_hostname, &tlsext_hostname,
169
407
                      in->ext.hostname);
170
407
    if (in->ext.tick) {
171
2
        ssl_session_oinit(&as.tlsext_tick, &tlsext_tick,
172
2
                          in->ext.tick, in->ext.ticklen);
173
2
    }
174
407
    if (in->ext.tick_lifetime_hint > 0)
175
53
        as.tlsext_tick_lifetime_hint = in->ext.tick_lifetime_hint;
176
407
    as.tlsext_tick_age_add = in->ext.tick_age_add;
177
407
#ifndef OPENSSL_NO_PSK
178
407
    ssl_session_sinit(&as.psk_identity_hint, &psk_identity_hint,
179
407
                      in->psk_identity_hint);
180
407
    ssl_session_sinit(&as.psk_identity, &psk_identity, in->psk_identity);
181
407
#endif                          /* OPENSSL_NO_PSK */
182
407
#ifndef OPENSSL_NO_SRP
183
407
    ssl_session_sinit(&as.srp_username, &srp_username, in->srp_username);
184
407
#endif                          /* OPENSSL_NO_SRP */
185
186
407
    as.flags = in->flags;
187
407
    as.max_early_data = in->ext.max_early_data;
188
189
407
    if (in->ext.alpn_selected == NULL)
190
406
        as.alpn_selected = NULL;
191
1
    else
192
1
        ssl_session_oinit(&as.alpn_selected, &alpn_selected,
193
1
                          in->ext.alpn_selected, in->ext.alpn_selected_len);
194
195
407
    as.tlsext_max_fragment_len_mode = in->ext.max_fragment_len_mode;
196
197
407
    if (in->ticket_appdata == NULL)
198
406
        as.ticket_appdata = NULL;
199
1
    else
200
1
        ssl_session_oinit(&as.ticket_appdata, &ticket_appdata,
201
1
                          in->ticket_appdata, in->ticket_appdata_len);
202
203
407
    return i2d_SSL_SESSION_ASN1(&as, pp);
204
205
407
}
206
207
/* Utility functions for d2i_SSL_SESSION */
208
209
/* OPENSSL_strndup an OCTET STRING */
210
211
static int ssl_session_strndup(char **pdst, ASN1_OCTET_STRING *src)
212
1.63k
{
213
1.63k
    OPENSSL_free(*pdst);
214
1.63k
    *pdst = NULL;
215
1.63k
    if (src == NULL)
216
1.57k
        return 1;
217
57
    *pdst = OPENSSL_strndup((char *)src->data, src->length);
218
57
    if (*pdst == NULL)
219
0
        return 0;
220
57
    return 1;
221
57
}
222
223
/* Copy an OCTET STRING, return error if it exceeds maximum length */
224
225
static int ssl_session_memcpy(unsigned char *dst, size_t *pdstlen,
226
                              ASN1_OCTET_STRING *src, size_t maxlen)
227
1.29k
{
228
1.29k
    if (src == NULL || src->length == 0) {
229
554
        *pdstlen = 0;
230
554
        return 1;
231
554
    }
232
742
    if (src->length < 0 || src->length > (int)maxlen)
233
30
        return 0;
234
712
    memcpy(dst, src->data, src->length);
235
712
    *pdstlen = src->length;
236
712
    return 1;
237
742
}
238
239
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a, const unsigned char **pp,
240
                             long length)
241
12.7k
{
242
12.7k
    long id;
243
12.7k
    size_t tmpl;
244
12.7k
    const unsigned char *p = *pp;
245
12.7k
    SSL_SESSION_ASN1 *as = NULL;
246
12.7k
    SSL_SESSION *ret = NULL;
247
248
12.7k
    as = d2i_SSL_SESSION_ASN1(NULL, &p, length);
249
    /* ASN.1 code returns suitable error */
250
12.7k
    if (as == NULL)
251
12.2k
        goto err;
252
253
543
    if (!a || !*a) {
254
543
        ret = SSL_SESSION_new();
255
543
        if (ret == NULL)
256
0
            goto err;
257
543
    } else {
258
0
        ret = *a;
259
0
    }
260
261
543
    if (as->version != SSL_SESSION_ASN1_VERSION) {
262
37
        SSLerr(SSL_F_D2I_SSL_SESSION, SSL_R_UNKNOWN_SSL_VERSION);
263
37
        goto err;
264
37
    }
265
266
506
    if ((as->ssl_version >> 8) != SSL3_VERSION_MAJOR
267
506
        && (as->ssl_version >> 8) != DTLS1_VERSION_MAJOR
268
506
        && as->ssl_version != DTLS1_BAD_VER) {
269
57
        SSLerr(SSL_F_D2I_SSL_SESSION, SSL_R_UNSUPPORTED_SSL_VERSION);
270
57
        goto err;
271
57
    }
272
273
449
    ret->ssl_version = (int)as->ssl_version;
274
275
449
    if (as->cipher->length != 2) {
276
1
        SSLerr(SSL_F_D2I_SSL_SESSION, SSL_R_CIPHER_CODE_WRONG_LENGTH);
277
1
        goto err;
278
1
    }
279
280
448
    id = 0x03000000L | ((unsigned long)as->cipher->data[0] << 8L)
281
448
                     | (unsigned long)as->cipher->data[1];
282
283
448
    ret->cipher_id = id;
284
448
    ret->cipher = ssl3_get_cipher_by_id(id);
285
448
    if (ret->cipher == NULL)
286
10
        goto err;
287
288
438
    if (!ssl_session_memcpy(ret->session_id, &ret->session_id_length,
289
438
                            as->session_id, SSL3_MAX_SSL_SESSION_ID_LENGTH))
290
2
        goto err;
291
292
436
    if (!ssl_session_memcpy(ret->master_key, &tmpl,
293
436
                            as->master_key, TLS13_MAX_RESUMPTION_PSK_LENGTH))
294
14
        goto err;
295
296
422
    ret->master_key_length = tmpl;
297
298
422
    if (as->time != 0)
299
86
        ret->time = (long)as->time;
300
336
    else
301
336
        ret->time = (long)time(NULL);
302
303
422
    if (as->timeout != 0)
304
104
        ret->timeout = (long)as->timeout;
305
318
    else
306
318
        ret->timeout = 3;
307
308
422
    X509_free(ret->peer);
309
422
    ret->peer = as->peer;
310
422
    as->peer = NULL;
311
312
422
    if (!ssl_session_memcpy(ret->sid_ctx, &ret->sid_ctx_length,
313
422
                            as->session_id_context, SSL_MAX_SID_CTX_LENGTH))
314
14
        goto err;
315
316
    /* NB: this defaults to zero which is X509_V_OK */
317
408
    ret->verify_result = as->verify_result;
318
319
408
    if (!ssl_session_strndup(&ret->ext.hostname, as->tlsext_hostname))
320
0
        goto err;
321
322
408
#ifndef OPENSSL_NO_PSK
323
408
    if (!ssl_session_strndup(&ret->psk_identity_hint, as->psk_identity_hint))
324
0
        goto err;
325
408
    if (!ssl_session_strndup(&ret->psk_identity, as->psk_identity))
326
0
        goto err;
327
408
#endif
328
329
408
    ret->ext.tick_lifetime_hint = (unsigned long)as->tlsext_tick_lifetime_hint;
330
408
    ret->ext.tick_age_add = as->tlsext_tick_age_add;
331
408
    OPENSSL_free(ret->ext.tick);
332
408
    if (as->tlsext_tick != NULL) {
333
2
        ret->ext.tick = as->tlsext_tick->data;
334
2
        ret->ext.ticklen = as->tlsext_tick->length;
335
2
        as->tlsext_tick->data = NULL;
336
406
    } else {
337
406
        ret->ext.tick = NULL;
338
406
    }
339
408
#ifndef OPENSSL_NO_COMP
340
408
    if (as->comp_id) {
341
2
        if (as->comp_id->length != 1) {
342
1
            SSLerr(SSL_F_D2I_SSL_SESSION, SSL_R_BAD_LENGTH);
343
1
            goto err;
344
1
        }
345
1
        ret->compress_meth = as->comp_id->data[0];
346
406
    } else {
347
406
        ret->compress_meth = 0;
348
406
    }
349
407
#endif
350
351
407
#ifndef OPENSSL_NO_SRP
352
407
    if (!ssl_session_strndup(&ret->srp_username, as->srp_username))
353
0
        goto err;
354
407
#endif                          /* OPENSSL_NO_SRP */
355
    /* Flags defaults to zero which is fine */
356
407
    ret->flags = (int32_t)as->flags;
357
407
    ret->ext.max_early_data = as->max_early_data;
358
359
407
    OPENSSL_free(ret->ext.alpn_selected);
360
407
    if (as->alpn_selected != NULL) {
361
1
        ret->ext.alpn_selected = as->alpn_selected->data;
362
1
        ret->ext.alpn_selected_len = as->alpn_selected->length;
363
1
        as->alpn_selected->data = NULL;
364
406
    } else {
365
406
        ret->ext.alpn_selected = NULL;
366
406
        ret->ext.alpn_selected_len = 0;
367
406
    }
368
369
407
    ret->ext.max_fragment_len_mode = as->tlsext_max_fragment_len_mode;
370
371
407
    OPENSSL_free(ret->ticket_appdata);
372
407
    if (as->ticket_appdata != NULL) {
373
1
        ret->ticket_appdata = as->ticket_appdata->data;
374
1
        ret->ticket_appdata_len = as->ticket_appdata->length;
375
1
        as->ticket_appdata->data = NULL;
376
406
    } else {
377
406
        ret->ticket_appdata = NULL;
378
406
        ret->ticket_appdata_len = 0;
379
406
    }
380
381
407
    M_ASN1_free_of(as, SSL_SESSION_ASN1);
382
383
407
    if ((a != NULL) && (*a == NULL))
384
0
        *a = ret;
385
407
    *pp = p;
386
407
    return ret;
387
388
12.3k
 err:
389
12.3k
    M_ASN1_free_of(as, SSL_SESSION_ASN1);
390
12.3k
    if ((a == NULL) || (*a != ret))
391
12.3k
        SSL_SESSION_free(ret);
392
12.3k
    return NULL;
393
407
}