blob: 228b0b3c5a823f8beed7039382e4c1274822899e [file] [log] [blame]
Neels Hofmeyrf83ec562017-09-07 19:18:40 +02001/* A Media Gateway Control Protocol Media Gateway: RFC 3435 */
2
3/*
4 * (C) 2009-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2009-2012 by On-Waves
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
Philipp Maier87bd9be2017-08-22 16:35:41 +020023#pragma once
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020024
25#include <osmocom/core/msgb.h>
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +020026#include <osmocom/core/socket.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020027#include <osmocom/core/write_queue.h>
28#include <osmocom/core/timer.h>
29#include <osmocom/core/logging.h>
30
Neels Hofmeyr67793542017-09-08 04:25:16 +020031#include <osmocom/mgcp/mgcp_common.h>
32
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020033#include <arpa/inet.h>
34#include <sys/types.h>
35#include <sys/socket.h>
36#include <netinet/in.h>
Eric55fdfc22021-08-13 00:14:18 +020037#include <pthread.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020038
Philipp Maierc66ab2c2020-06-02 20:55:34 +020039#include "mgcp_ratectr.h"
40
Philipp Maier87bd9be2017-08-22 16:35:41 +020041#define RTP_PORT_DEFAULT_RANGE_START 16002
42#define RTP_PORT_DEFAULT_RANGE_END RTP_PORT_DEFAULT_RANGE_START + 64
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020043
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020044/*
45 * Handling of MGCP Endpoints and the MGCP Config
46 */
47struct mgcp_endpoint;
48struct mgcp_config;
Philipp Maier14b27a82020-06-02 20:15:30 +020049struct mgcp_trunk;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020050struct mgcp_rtp_end;
51
52#define MGCP_ENDP_CRCX 1
53#define MGCP_ENDP_DLCX 2
54#define MGCP_ENDP_MDCX 3
55
56/*
57 * what to do with the msg?
58 * - continue as usual?
59 * - reject and send a failure code?
60 * - defer? do not send anything
61 */
62#define MGCP_POLICY_CONT 4
63#define MGCP_POLICY_REJECT 5
64#define MGCP_POLICY_DEFER 6
65
Philipp Maier14b27a82020-06-02 20:15:30 +020066typedef int (*mgcp_reset)(struct mgcp_trunk *cfg);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020067typedef int (*mgcp_rqnt)(struct mgcp_endpoint *endp, char tone);
68
69/**
70 * Return:
71 * < 0 in case no audio was processed
72 * >= 0 in case audio was processed. The remaining payload
73 * length will be returned.
74 */
75typedef int (*mgcp_processing)(struct mgcp_endpoint *endp,
76 struct mgcp_rtp_end *dst_end,
77 char *data, int *len, int buf_size);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020078
Philipp Maier87bd9be2017-08-22 16:35:41 +020079struct mgcp_conn_rtp;
Philipp Maieracc10352018-07-19 18:07:57 +020080
81typedef int (*mgcp_processing_setup)(struct mgcp_endpoint *endp,
82 struct mgcp_conn_rtp *conn_dst,
83 struct mgcp_conn_rtp *conn_src);
84
Philipp Maier58128252019-03-06 11:28:18 +010085struct mgcp_rtp_codec;
86
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020087typedef void (*mgcp_get_format)(struct mgcp_endpoint *endp,
Philipp Maier58128252019-03-06 11:28:18 +010088 const struct mgcp_rtp_codec **codec,
89 const char **fmtp_extra,
Philipp Maier87bd9be2017-08-22 16:35:41 +020090 struct mgcp_conn_rtp *conn);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020091
92/**
93 * This holds information on how to allocate ports
94 */
95struct mgcp_port_range {
Eric55fdfc22021-08-13 00:14:18 +020096 pthread_mutex_t lock;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020097 /* addr or NULL to fall-back to default */
Pau Espin Pedrol8a2a1b22020-09-02 20:46:24 +020098 char *bind_addr_v4;
99 char *bind_addr_v6;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200100
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200101 /* dynamically allocated */
102 int range_start;
103 int range_end;
104 int last_port;
Philipp Maier1cb1e382017-11-02 17:16:04 +0100105
106 /* set to true to enable automatic probing
107 * of the local bind IP-Address, bind_addr
108 * (or its fall back) is used when automatic
109 * probing fails */
110 bool bind_addr_probe;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200111};
112
Philipp Maiere726d4f2017-11-01 10:41:34 +0100113/* There are up to three modes in which the keep-alive dummy packet can be
Harald Welte1d1b98f2017-12-25 10:03:40 +0100114 * sent. The behaviour is controlled via the keepalive_interval member of the
Philipp Maiere726d4f2017-11-01 10:41:34 +0100115 * trunk config. If that member is set to 0 (MGCP_KEEPALIVE_NEVER) no dummy-
116 * packet is sent at all and the timer that sends regular dummy packets
117 * is no longer scheduled. If the keepalive_interval is set to -1, only
118 * one dummy packet is sent when an CRCX or an MDCX is performed. No timer
Harald Welte1d1b98f2017-12-25 10:03:40 +0100119 * is scheduled. For all vales greater 0, the timer is scheduled and the
Philipp Maiere726d4f2017-11-01 10:41:34 +0100120 * value is used as interval. See also mgcp_keepalive_timer_cb(),
121 * handle_modify_con(), and handle_create_con() */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200122#define MGCP_KEEPALIVE_ONCE (-1)
Philipp Maiere726d4f2017-11-01 10:41:34 +0100123#define MGCP_KEEPALIVE_NEVER 0
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200124
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200125enum mgcp_role {
126 MGCP_BSC = 0,
127 MGCP_BSC_NAT,
128};
129
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200130struct mgcp_config {
131 int source_port;
132 char *local_ip;
133 char *source_addr;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200134 char *call_agent_addr;
135
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200136 /* RTP processing */
137 mgcp_processing rtp_processing_cb;
138 mgcp_processing_setup setup_rtp_processing_cb;
139
140 mgcp_get_format get_net_downlink_format_cb;
141
142 struct osmo_wqueue gw_fd;
143
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200144 struct mgcp_port_range net_ports;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200145 int endp_dscp;
Harald Welte55a92292021-04-28 19:06:34 +0200146 int endp_priority;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200147
Philipp Maier87bd9be2017-08-22 16:35:41 +0200148 int force_ptime;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200149
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200150 mgcp_reset reset_cb;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200151 mgcp_rqnt rqnt_cb;
152 void *data;
153
154 uint32_t last_call_id;
155
Philipp Maierd19de2e2020-06-03 13:55:33 +0200156 /* list holding the trunks */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200157 struct llist_head trunks;
158
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200159 enum mgcp_role role;
160
161 /* osmux translator: 0 means disabled, 1 means enabled */
162 int osmux;
163 /* addr to bind the server to */
164 char *osmux_addr;
165 /* The BSC-NAT may ask for enabling osmux on demand. This tells us if
166 * the osmux socket is already initialized.
167 */
168 int osmux_init;
169 /* osmux batch factor: from 1 to 4 maximum */
170 int osmux_batch;
171 /* osmux batch size (in bytes) */
172 int osmux_batch_size;
173 /* osmux port */
174 uint16_t osmux_port;
175 /* Pad circuit with dummy messages until we see the first voice
176 * message.
177 */
178 uint16_t osmux_dummy;
Philipp Maier12943ea2018-01-17 15:40:25 +0100179 /* domain name of the media gateway */
180 char domain[255+1];
Oliver Smithe36b7752019-01-22 16:31:36 +0100181
182 /* time after which inactive connections (CIs) get closed */
183 int conn_timeout;
Harald Welte9852e222020-03-08 10:22:14 +0100184
185 /* osmocom CTRL interface */
186 struct ctrl_handle *ctrl;
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200187
188 /* global rate counters to measure the MGWs overall performance and
189 * health */
190 struct mgcp_ratectr_global ratectr;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200191};
192
193/* config management */
194struct mgcp_config *mgcp_config_alloc(void);
195int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg,
196 enum mgcp_role role);
197int mgcp_vty_init(void);
Philipp Maier14b27a82020-06-02 20:15:30 +0200198void mgcp_trunk_set_keepalive(struct mgcp_trunk *trunk, int interval);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200199
200/*
201 * format helper functions
202 */
203struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg);
204
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200205
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200206int mgcp_send_reset_ep(struct mgcp_endpoint *endp);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200207int mgcp_send_reset_all(struct mgcp_config *cfg);
208
209
Harald Welte55a92292021-04-28 19:06:34 +0200210int mgcp_create_bind(const char *source_addr, struct osmo_fd *fd, int port, uint8_t dscp,
211 uint8_t prio);
Philipp Maier776846a2021-05-20 14:15:46 +0200212int mgcp_udp_send(int fd, struct osmo_sockaddr *addr, int port, const char *buf, int len);