blob: 42a91d82d6945016cc2c6fef60094fbbc629a588 [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>
26#include <osmocom/core/write_queue.h>
27#include <osmocom/core/timer.h>
28#include <osmocom/core/logging.h>
29
Neels Hofmeyr67793542017-09-08 04:25:16 +020030#include <osmocom/mgcp/mgcp_common.h>
31
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020032#include <arpa/inet.h>
33#include <sys/types.h>
34#include <sys/socket.h>
35#include <netinet/in.h>
36
Philipp Maier87bd9be2017-08-22 16:35:41 +020037#define RTP_PORT_DEFAULT_RANGE_START 16002
38#define RTP_PORT_DEFAULT_RANGE_END RTP_PORT_DEFAULT_RANGE_START + 64
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020039
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020040/*
41 * Handling of MGCP Endpoints and the MGCP Config
42 */
43struct mgcp_endpoint;
44struct mgcp_config;
45struct mgcp_trunk_config;
46struct mgcp_rtp_end;
47
48#define MGCP_ENDP_CRCX 1
49#define MGCP_ENDP_DLCX 2
50#define MGCP_ENDP_MDCX 3
51
52/*
53 * what to do with the msg?
54 * - continue as usual?
55 * - reject and send a failure code?
56 * - defer? do not send anything
57 */
58#define MGCP_POLICY_CONT 4
59#define MGCP_POLICY_REJECT 5
60#define MGCP_POLICY_DEFER 6
61
62typedef int (*mgcp_realloc)(struct mgcp_trunk_config *cfg, int endpoint);
63typedef int (*mgcp_change)(struct mgcp_trunk_config *cfg, int endpoint, int state);
64typedef int (*mgcp_policy)(struct mgcp_trunk_config *cfg, int endpoint, int state, const char *transactio_id);
65typedef int (*mgcp_reset)(struct mgcp_trunk_config *cfg);
66typedef int (*mgcp_rqnt)(struct mgcp_endpoint *endp, char tone);
67
68/**
69 * Return:
70 * < 0 in case no audio was processed
71 * >= 0 in case audio was processed. The remaining payload
72 * length will be returned.
73 */
74typedef int (*mgcp_processing)(struct mgcp_endpoint *endp,
75 struct mgcp_rtp_end *dst_end,
76 char *data, int *len, int buf_size);
77typedef int (*mgcp_processing_setup)(struct mgcp_endpoint *endp,
78 struct mgcp_rtp_end *dst_end,
79 struct mgcp_rtp_end *src_end);
80
Philipp Maier87bd9be2017-08-22 16:35:41 +020081struct mgcp_conn_rtp;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020082typedef void (*mgcp_get_format)(struct mgcp_endpoint *endp,
83 int *payload_type,
84 const char**subtype_name,
Philipp Maier87bd9be2017-08-22 16:35:41 +020085 const char**fmtp_extra,
86 struct mgcp_conn_rtp *conn);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020087
88/**
89 * This holds information on how to allocate ports
90 */
91struct mgcp_port_range {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020092 /* addr or NULL to fall-back to default */
93 char *bind_addr;
94
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020095 /* dynamically allocated */
96 int range_start;
97 int range_end;
98 int last_port;
Philipp Maier1cb1e382017-11-02 17:16:04 +010099
100 /* set to true to enable automatic probing
101 * of the local bind IP-Address, bind_addr
102 * (or its fall back) is used when automatic
103 * probing fails */
104 bool bind_addr_probe;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200105};
106
Philipp Maiere726d4f2017-11-01 10:41:34 +0100107/* There are up to three modes in which the keep-alive dummy packet can be
108 * sent. The beviour is controlled viw the keepalive_interval member of the
109 * trunk config. If that member is set to 0 (MGCP_KEEPALIVE_NEVER) no dummy-
110 * packet is sent at all and the timer that sends regular dummy packets
111 * is no longer scheduled. If the keepalive_interval is set to -1, only
112 * one dummy packet is sent when an CRCX or an MDCX is performed. No timer
113 * is scheduled. For all vales greater 0, the a timer is scheduled and the
114 * value is used as interval. See also mgcp_keepalive_timer_cb(),
115 * handle_modify_con(), and handle_create_con() */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200116#define MGCP_KEEPALIVE_ONCE (-1)
Philipp Maiere726d4f2017-11-01 10:41:34 +0100117#define MGCP_KEEPALIVE_NEVER 0
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200118
119struct mgcp_trunk_config {
120 struct llist_head entry;
121
122 struct mgcp_config *cfg;
123
124 int trunk_nr;
125 int trunk_type;
126
127 char *audio_fmtp_extra;
128 char *audio_name;
129 int audio_payload;
130 int audio_send_ptime;
131 int audio_send_name;
132 int audio_loop;
133
134 int no_audio_transcoding;
135
136 int omit_rtcp;
137 int keepalive_interval;
138
139 /* RTP patching */
140 int force_constant_ssrc; /* 0: don't, 1: once */
141 int force_aligned_timing;
142
143 /* spec handling */
144 int force_realloc;
145
146 /* timer */
147 struct osmo_timer_list keepalive_timer;
148
Philipp Maier87bd9be2017-08-22 16:35:41 +0200149 /* When set, incoming RTP packets are not filtered
150 * when ports and ip-address do not match (debug) */
151 int rtp_accept_all;
152
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200153 unsigned int number_endpoints;
154 struct mgcp_endpoint *endpoints;
155};
156
157enum mgcp_role {
158 MGCP_BSC = 0,
159 MGCP_BSC_NAT,
160};
161
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200162struct mgcp_config {
163 int source_port;
164 char *local_ip;
165 char *source_addr;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200166 char *call_agent_addr;
167
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200168 /* RTP processing */
169 mgcp_processing rtp_processing_cb;
170 mgcp_processing_setup setup_rtp_processing_cb;
171
172 mgcp_get_format get_net_downlink_format_cb;
173
174 struct osmo_wqueue gw_fd;
175
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200176 struct mgcp_port_range net_ports;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200177 int endp_dscp;
178
Philipp Maier87bd9be2017-08-22 16:35:41 +0200179 int force_ptime;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200180
181 mgcp_change change_cb;
182 mgcp_policy policy_cb;
183 mgcp_reset reset_cb;
184 mgcp_realloc realloc_cb;
185 mgcp_rqnt rqnt_cb;
186 void *data;
187
188 uint32_t last_call_id;
189
190 /* trunk handling */
191 struct mgcp_trunk_config trunk;
192 struct llist_head trunks;
193
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200194 enum mgcp_role role;
195
196 /* osmux translator: 0 means disabled, 1 means enabled */
197 int osmux;
198 /* addr to bind the server to */
199 char *osmux_addr;
200 /* The BSC-NAT may ask for enabling osmux on demand. This tells us if
201 * the osmux socket is already initialized.
202 */
203 int osmux_init;
204 /* osmux batch factor: from 1 to 4 maximum */
205 int osmux_batch;
206 /* osmux batch size (in bytes) */
207 int osmux_batch_size;
208 /* osmux port */
209 uint16_t osmux_port;
210 /* Pad circuit with dummy messages until we see the first voice
211 * message.
212 */
213 uint16_t osmux_dummy;
214};
215
216/* config management */
217struct mgcp_config *mgcp_config_alloc(void);
218int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg,
219 enum mgcp_role role);
220int mgcp_vty_init(void);
221int mgcp_endpoints_allocate(struct mgcp_trunk_config *cfg);
222void mgcp_release_endp(struct mgcp_endpoint *endp);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200223void mgcp_trunk_set_keepalive(struct mgcp_trunk_config *tcfg, int interval);
224
225/*
226 * format helper functions
227 */
228struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg);
229
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200230
231int mgcp_send_reset_ep(struct mgcp_endpoint *endp, int endpoint);
232int mgcp_send_reset_all(struct mgcp_config *cfg);
233
234
235int mgcp_create_bind(const char *source_addr, struct osmo_fd *fd, int port);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200236int mgcp_udp_send(int fd, struct in_addr *addr, int port, char *buf, int len);