Coverage Report

Created: 2025-06-13 06:58

/src/openssl32/ssl/d1_srtp.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2011-2023 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
/*
11
 * DTLS code by Eric Rescorla <ekr@rtfm.com>
12
 *
13
 * Copyright (C) 2006, Network Resonance, Inc. Copyright (C) 2011, RTFM, Inc.
14
 */
15
16
#include <stdio.h>
17
#include <openssl/objects.h>
18
#include "ssl_local.h"
19
#include "quic/quic_local.h"
20
21
#ifndef OPENSSL_NO_SRTP
22
23
static SRTP_PROTECTION_PROFILE srtp_known_profiles[] = {
24
    {
25
     "SRTP_AES128_CM_SHA1_80",
26
     SRTP_AES128_CM_SHA1_80,
27
     },
28
    {
29
     "SRTP_AES128_CM_SHA1_32",
30
     SRTP_AES128_CM_SHA1_32,
31
     },
32
    {
33
     "SRTP_AEAD_AES_128_GCM",
34
     SRTP_AEAD_AES_128_GCM,
35
     },
36
    {
37
     "SRTP_AEAD_AES_256_GCM",
38
     SRTP_AEAD_AES_256_GCM,
39
     },
40
    {
41
     "SRTP_DOUBLE_AEAD_AES_128_GCM_AEAD_AES_128_GCM",
42
     SRTP_DOUBLE_AEAD_AES_128_GCM_AEAD_AES_128_GCM,
43
     },
44
    {
45
     "SRTP_DOUBLE_AEAD_AES_256_GCM_AEAD_AES_256_GCM",
46
     SRTP_DOUBLE_AEAD_AES_256_GCM_AEAD_AES_256_GCM,
47
     },
48
    {
49
     "SRTP_ARIA_128_CTR_HMAC_SHA1_80",
50
     SRTP_ARIA_128_CTR_HMAC_SHA1_80,
51
     },
52
    {
53
     "SRTP_ARIA_128_CTR_HMAC_SHA1_32",
54
     SRTP_ARIA_128_CTR_HMAC_SHA1_32,
55
     },
56
    {
57
     "SRTP_ARIA_256_CTR_HMAC_SHA1_80",
58
     SRTP_ARIA_256_CTR_HMAC_SHA1_80,
59
     },
60
    {
61
     "SRTP_ARIA_256_CTR_HMAC_SHA1_32",
62
     SRTP_ARIA_256_CTR_HMAC_SHA1_32,
63
     },
64
    {
65
     "SRTP_AEAD_ARIA_128_GCM",
66
     SRTP_AEAD_ARIA_128_GCM,
67
     },
68
    {
69
     "SRTP_AEAD_ARIA_256_GCM",
70
     SRTP_AEAD_ARIA_256_GCM,
71
     },
72
    {0}
73
};
74
75
static int find_profile_by_name(char *profile_name,
76
                                SRTP_PROTECTION_PROFILE **pptr, size_t len)
77
0
{
78
0
    SRTP_PROTECTION_PROFILE *p;
79
80
0
    p = srtp_known_profiles;
81
0
    while (p->name) {
82
0
        if ((len == strlen(p->name))
83
0
            && strncmp(p->name, profile_name, len) == 0) {
84
0
            *pptr = p;
85
0
            return 0;
86
0
        }
87
88
0
        p++;
89
0
    }
90
91
0
    return 1;
92
0
}
93
94
static int ssl_ctx_make_profiles(const char *profiles_string,
95
                                 STACK_OF(SRTP_PROTECTION_PROFILE) **out)
96
0
{
97
0
    STACK_OF(SRTP_PROTECTION_PROFILE) *profiles;
98
99
0
    char *col;
100
0
    char *ptr = (char *)profiles_string;
101
0
    SRTP_PROTECTION_PROFILE *p;
102
103
0
    if ((profiles = sk_SRTP_PROTECTION_PROFILE_new_null()) == NULL) {
104
0
        ERR_raise(ERR_LIB_SSL, SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES);
105
0
        return 1;
106
0
    }
107
108
0
    do {
109
0
        col = strchr(ptr, ':');
110
111
0
        if (!find_profile_by_name(ptr, &p, col ? (size_t)(col - ptr)
112
0
                                               : strlen(ptr))) {
113
0
            if (sk_SRTP_PROTECTION_PROFILE_find(profiles, p) >= 0) {
114
0
                ERR_raise(ERR_LIB_SSL, SSL_R_BAD_SRTP_PROTECTION_PROFILE_LIST);
115
0
                goto err;
116
0
            }
117
118
0
            if (!sk_SRTP_PROTECTION_PROFILE_push(profiles, p)) {
119
0
                ERR_raise(ERR_LIB_SSL, SSL_R_SRTP_COULD_NOT_ALLOCATE_PROFILES);
120
0
                goto err;
121
0
            }
122
0
        } else {
123
0
            ERR_raise(ERR_LIB_SSL, SSL_R_SRTP_UNKNOWN_PROTECTION_PROFILE);
124
0
            goto err;
125
0
        }
126
127
0
        if (col)
128
0
            ptr = col + 1;
129
0
    } while (col);
130
131
0
    sk_SRTP_PROTECTION_PROFILE_free(*out);
132
133
0
    *out = profiles;
134
135
0
    return 0;
136
0
 err:
137
0
    sk_SRTP_PROTECTION_PROFILE_free(profiles);
138
0
    return 1;
139
0
}
140
141
int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles)
142
0
{
143
0
    if (IS_QUIC_METHOD(ctx->method))
144
0
        return 1;
145
146
0
    return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles);
147
0
}
148
149
int SSL_set_tlsext_use_srtp(SSL *s, const char *profiles)
150
0
{
151
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
152
153
0
    if (sc == NULL)
154
0
        return 1;
155
156
0
    return ssl_ctx_make_profiles(profiles, &sc->srtp_profiles);
157
0
}
158
159
STACK_OF(SRTP_PROTECTION_PROFILE) *SSL_get_srtp_profiles(SSL *s)
160
40.8k
{
161
40.8k
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
162
163
40.8k
    if (sc != NULL) {
164
40.8k
        if (sc->srtp_profiles != NULL) {
165
0
            return sc->srtp_profiles;
166
40.8k
        } else if ((s->ctx != NULL) && (s->ctx->srtp_profiles != NULL)) {
167
0
            return s->ctx->srtp_profiles;
168
0
        }
169
40.8k
    }
170
171
40.8k
    return NULL;
172
40.8k
}
173
174
SRTP_PROTECTION_PROFILE *SSL_get_selected_srtp_profile(SSL *s)
175
0
{
176
0
    SSL_CONNECTION *sc = SSL_CONNECTION_FROM_SSL_ONLY(s);
177
178
0
    if (sc == NULL)
179
0
        return 0;
180
181
0
    return sc->srtp_profile;
182
0
}
183
#endif