blob: 99ae7b26a2b6777e8f0f0e61492bb7bdbd9b7e87 [file] [log] [blame]
Neels Hofmeyr63881a32022-01-13 18:34:52 +01001/* Filter/overlay codec selections for a voice call, across MS, RAN and CN limitations */
2/*
Vadim Yanitskiy999a5932023-05-18 17:22:26 +07003 * (C) 2019-2023 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
Neels Hofmeyr63881a32022-01-13 18:34:52 +01004 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * SPDX-License-Identifier: AGPL-3.0+
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
19 *
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
24#include <osmocom/gsm/protocol/gsm_08_08.h>
25
26#include <osmocom/msc/codec_filter.h>
27#include <osmocom/msc/codec_mapping.h>
28#include <osmocom/msc/debug.h>
29
30/* Add all known payload types encountered in GSM networks */
31static void sdp_add_all_geran_codecs(struct sdp_audio_codecs *ac)
32{
33 /* In order of preference. TODO: make configurable */
34 static const enum gsm48_bcap_speech_ver mobile_codecs[] = {
35 GSM48_BCAP_SV_AMR_F /*!< 4 GSM FR V3 (FR AMR) */,
36 GSM48_BCAP_SV_AMR_H /*!< 5 GSM HR V3 (HR_AMR) */,
37 GSM48_BCAP_SV_EFR /*!< 2 GSM FR V2 (GSM EFR) */,
38 GSM48_BCAP_SV_FR /*!< 0 GSM FR V1 (GSM FR) */,
39 GSM48_BCAP_SV_HR /*!< 1 GSM HR V1 (GSM HR) */,
40 };
41 int i;
42 for (i = 0; i < ARRAY_SIZE(mobile_codecs); i++)
43 sdp_audio_codecs_add_speech_ver(ac, mobile_codecs[i]);
44}
45
46/* Add all known AMR payload types encountered in UTRAN networks */
47static void sdp_add_all_utran_codecs(struct sdp_audio_codecs *ac)
48{
49 /* In order of preference. TODO: make configurable */
50 static const enum gsm48_bcap_speech_ver utran_codecs[] = {
51 GSM48_BCAP_SV_AMR_F /*!< 4 GSM FR V3 (FR AMR) */,
52 GSM48_BCAP_SV_AMR_H /*!< 5 GSM HR V3 (HR_AMR) */,
53 GSM48_BCAP_SV_AMR_OH /*!< 11 GSM HR V6 (OHR AMR) */,
54 GSM48_BCAP_SV_AMR_FW /*!< 8 GSM FR V5 (FR AMR-WB) */,
55 GSM48_BCAP_SV_AMR_OFW /*!< 6 GSM FR V4 (OFR AMR-WB) */,
56 GSM48_BCAP_SV_AMR_OHW /*!< 7 GSM HR V4 (OHR AMR-WB) */,
57 };
58 int i;
59 for (i = 0; i < ARRAY_SIZE(utran_codecs); i++)
60 sdp_audio_codecs_add_speech_ver(ac, utran_codecs[i]);
61}
62
Neels Hofmeyr63881a32022-01-13 18:34:52 +010063void codec_filter_set_ran(struct codec_filter *codec_filter, enum osmo_rat_type ran_type)
64{
65 codec_filter->ran = (struct sdp_audio_codecs){};
66
67 switch (ran_type) {
68 default:
69 case OSMO_RAT_GERAN_A:
70 sdp_add_all_geran_codecs(&codec_filter->ran);
71 break;
72
73 case OSMO_RAT_UTRAN_IU:
74 sdp_add_all_utran_codecs(&codec_filter->ran);
75 break;
76 }
77}
78
Neels Hofmeyr63881a32022-01-13 18:34:52 +010079void codec_filter_set_bss(struct codec_filter *codec_filter,
80 const struct gsm0808_speech_codec_list *codec_list_bss_supported)
81{
82 codec_filter->bss = (struct sdp_audio_codecs){};
83 if (codec_list_bss_supported)
84 sdp_audio_codecs_from_speech_codec_list(&codec_filter->bss, codec_list_bss_supported);
85}
86
87int codec_filter_set_remote(struct codec_filter *codec_filter, const char *remote_sdp)
88{
89 return sdp_msg_from_sdp_str(&codec_filter->remote, remote_sdp);
90}
91
92void codec_filter_set_local_rtp(struct codec_filter *codec_filter, const struct osmo_sockaddr_str *rtp)
93{
94 if (!rtp)
95 codec_filter->result.rtp = (struct osmo_sockaddr_str){0};
96 else
97 codec_filter->result.rtp = *rtp;
98}
99
100/* Render intersections of all known audio codec constraints to reach a resulting choice of favorite audio codec, plus
101 * possible set of alternative audio codecs, in codec_filter->result. (The result.rtp address remains unchanged.) */
102int codec_filter_run(struct codec_filter *codec_filter)
103{
104 struct sdp_audio_codecs *r = &codec_filter->result.audio_codecs;
105 struct sdp_audio_codec *a = &codec_filter->assignment;
106 *r = codec_filter->ran;
107 if (codec_filter->ms.count)
108 sdp_audio_codecs_intersection(r, &codec_filter->ms, false);
109 if (codec_filter->bss.count)
110 sdp_audio_codecs_intersection(r, &codec_filter->bss, false);
111 if (codec_filter->remote.audio_codecs.count)
112 sdp_audio_codecs_intersection(r, &codec_filter->remote.audio_codecs, true);
113
114#if 0
115 /* Future: If osmo-msc were able to trigger a re-assignment after the remote side has picked a codec mismatching
116 * the initial Assignment, then this code here would make sense: keep the other codecs as available to choose
117 * from, but put the currently assigned codec in the first position. So far we only offer the single assigned
118 * codec, because we have no way to deal with the remote side picking a different codec.
119 * Another approach would be to postpone assignment until we know the codecs from the remote side. */
120 if (sdp_audio_codec_is_set(a)) {
121 /* Assignment has completed, the chosen codec should be the first of the resulting SDP.
122 * Make sure this is actually listed in the result SDP and move to first place. */
123 struct sdp_audio_codec *select = sdp_audio_codecs_by_descr(r, a);
124
125 if (!select) {
126 /* Not present. Add. */
127 if (sdp_audio_codec_by_payload_type(r, a->payload_type, false)) {
128 /* Oh crunch, that payload type number is already in use.
129 * Find an unused one. */
130 for (a->payload_type = 96; a->payload_type <= 127; a->payload_type++) {
131 if (!sdp_audio_codec_by_payload_type(r, a->payload_type, false))
132 break;
133 }
134
135 if (a->payload_type > 127)
136 return -ENOSPC;
137 }
138 select = sdp_audio_codecs_add_copy(r, a);
139 }
140
141 sdp_audio_codecs_select(r, select);
142 }
143#else
144 /* Currently, osmo-msc does not trigger re-assignment if the remote side has picked a codec that is different
145 * from the already assigned codec.
146 * So, if locally, Assignment has already chosen a codec, this is the single definitive result to be used
147 * towards the CN. */
148 if (sdp_audio_codec_is_set(a)) {
149 /* Assignment has completed, the chosen codec should be the the only possible one. */
150 *r = (struct sdp_audio_codecs){};
151 sdp_audio_codecs_add_copy(r, a);
152 }
153#endif
154 return 0;
155}
156
157int codec_filter_to_str_buf(char *buf, size_t buflen, const struct codec_filter *codec_filter)
158{
159 struct osmo_strbuf sb = { .buf = buf, .len = buflen };
160 OSMO_STRBUF_APPEND(sb, sdp_msg_to_str_buf, &codec_filter->result);
161 OSMO_STRBUF_PRINTF(sb, " (from:");
162
163 if (sdp_audio_codec_is_set(&codec_filter->assignment)) {
164 OSMO_STRBUF_PRINTF(sb, " assigned=");
165 OSMO_STRBUF_APPEND(sb, sdp_audio_codec_to_str_buf, &codec_filter->assignment);
166 }
167
168 if (codec_filter->remote.audio_codecs.count
169 || osmo_sockaddr_str_is_nonzero(&codec_filter->remote.rtp)) {
170 OSMO_STRBUF_PRINTF(sb, " remote=");
171 OSMO_STRBUF_APPEND(sb, sdp_msg_to_str_buf, &codec_filter->remote);
172 }
173
174 if (codec_filter->ms.count) {
175 OSMO_STRBUF_PRINTF(sb, " MS={");
176 OSMO_STRBUF_APPEND(sb, sdp_audio_codecs_to_str_buf, &codec_filter->ms);
177 OSMO_STRBUF_PRINTF(sb, "}");
178 }
179
180 if (codec_filter->bss.count) {
181 OSMO_STRBUF_PRINTF(sb, " bss={");
182 OSMO_STRBUF_APPEND(sb, sdp_audio_codecs_to_str_buf, &codec_filter->bss);
183 OSMO_STRBUF_PRINTF(sb, "}");
184 }
185
186 OSMO_STRBUF_PRINTF(sb, " RAN={");
187 OSMO_STRBUF_APPEND(sb, sdp_audio_codecs_to_str_buf, &codec_filter->ran);
188 OSMO_STRBUF_PRINTF(sb, "}");
189
190 OSMO_STRBUF_PRINTF(sb, ")");
191
192 return sb.chars_needed;
193}
194
195char *codec_filter_to_str_c(void *ctx, const struct codec_filter *codec_filter)
196{
197 OSMO_NAME_C_IMPL(ctx, 128, "codec_filter_to_str_c-ERROR", codec_filter_to_str_buf, codec_filter)
198}
199
200const char *codec_filter_to_str(const struct codec_filter *codec_filter)
201{
202 return codec_filter_to_str_c(OTC_SELECT, codec_filter);
203}