blob: 7a416ddd1d6fddb78ee86b5daf35c5eeb47ba917 [file] [log] [blame]
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +02001/* A Media Gateway Control Protocol Media Gateway: RFC 3435 */
2
3/*
Holger Hans Peter Freyther8d0be252012-11-29 12:54:22 +01004 * (C) 2009-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2009-2012 by On-Waves
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +02006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * 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
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +020011 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +020017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * 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/>.
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +020020 *
21 */
22
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +010023#ifndef OPENBSC_MGCP_H
24#define OPENBSC_MGCP_H
25
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010026#include <osmocom/core/msgb.h>
27#include <osmocom/core/write_queue.h>
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +010028
Holger Hans Peter Freythere3946f42010-09-20 01:07:23 +080029#include "debug.h"
30
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010031#include <arpa/inet.h>
32
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010033#define RTP_PORT_DEFAULT 4000
Holger Hans Peter Freyther314584a2010-08-05 04:10:21 +080034#define RTP_PORT_NET_DEFAULT 16000
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +020035
36/**
37 * Calculate the RTP audio port for the given multiplex
38 * and the direction. This allows a semi static endpoint
39 * to port calculation removing the need for the BSC
40 * and the MediaGateway to communicate.
41 *
42 * Port usage explained:
43 * base + (multiplex * 2) + 0 == local port to wait for network packets
44 * base + (multiplex * 2) + 1 == local port for rtcp
45 *
46 * The above port will receive packets from the BTS that need
47 * to be patched and forwarded to the network.
48 * The above port will receive packets from the network that
49 * need to be patched and forwarded to the BTS.
50 *
51 * We assume to have a static BTS IP address so we can differentiate
52 * network and BTS.
53 *
54 */
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010055static inline int rtp_calculate_port(int multiplex, int base)
Holger Hans Peter Freytherf67945f2009-10-09 07:08:11 +020056{
57 return base + (multiplex * 2);
58}
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010059
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +010060
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010061/*
62 * Handling of MGCP Endpoints and the MGCP Config
63 */
64struct mgcp_endpoint;
65struct mgcp_config;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +010066struct mgcp_trunk_config;
Holger Hans Peter Freyther77f7afe2010-02-03 09:54:43 +010067
Holger Hans Peter Freyther77f7afe2010-02-03 09:54:43 +010068#define MGCP_ENDP_CRCX 1
69#define MGCP_ENDP_DLCX 2
70#define MGCP_ENDP_MDCX 3
71
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +010072/*
73 * what to do with the msg?
74 * - continue as usual?
75 * - reject and send a failure code?
76 * - defer? do not send anything
77 */
78#define MGCP_POLICY_CONT 4
79#define MGCP_POLICY_REJECT 5
80#define MGCP_POLICY_DEFER 6
81
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +010082typedef int (*mgcp_realloc)(struct mgcp_trunk_config *cfg, int endpoint);
83typedef int (*mgcp_change)(struct mgcp_trunk_config *cfg, int endpoint, int state);
84typedef int (*mgcp_policy)(struct mgcp_trunk_config *cfg, int endpoint, int state, const char *transactio_id);
Holger Hans Peter Freyther74db7742011-06-10 00:04:55 +020085typedef int (*mgcp_reset)(struct mgcp_trunk_config *cfg);
Holger Hans Peter Freytherce553612012-12-07 15:04:07 +010086typedef int (*mgcp_rqnt)(struct mgcp_endpoint *endp, char tone);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010087
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +080088#define PORT_ALLOC_STATIC 0
89#define PORT_ALLOC_DYNAMIC 1
90
91/**
92 * This holds information on how to allocate ports
93 */
94struct mgcp_port_range {
95 int mode;
96
97 /* pre-allocated from a base? */
98 int base_port;
Holger Hans Peter Freyther1be9f2f2010-08-05 07:20:09 +080099
100 /* dynamically allocated */
101 int range_start;
102 int range_end;
103 int last_port;
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +0800104};
105
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100106struct mgcp_trunk_config {
Holger Hans Peter Freyther0e939fe2011-02-28 12:11:02 +0100107 struct llist_head entry;
108
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100109 struct mgcp_config *cfg;
110
111 int trunk_nr;
112 int trunk_type;
113
Holger Hans Peter Freyther5ea1bc72012-09-03 00:07:39 +0200114 char *audio_fmtp_extra;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100115 char *audio_name;
116 int audio_payload;
117 int audio_loop;
118
Holger Hans Peter Freythera8090d52012-05-11 13:00:45 +0200119 int omit_rtcp;
120
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100121 /* spec handling */
122 int force_realloc;
123
124 unsigned int number_endpoints;
125 struct mgcp_endpoint *endpoints;
126};
127
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100128struct mgcp_config {
129 int source_port;
130 char *local_ip;
131 char *source_addr;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100132 char *bts_ip;
Holger Hans Peter Freytherb79994c2010-03-31 11:46:41 +0200133 char *call_agent_addr;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100134
135 struct in_addr bts_in;
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +0800136
Holger Hans Peter Freytherb98ba722010-09-19 04:21:39 +0800137 /* transcoder handling */
138 char *transcoder_ip;
139 struct in_addr transcoder_in;
140 int transcoder_remote_base;
141
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200142 struct osmo_wqueue gw_fd;
Holger Hans Peter Freyther6f680102010-09-18 20:40:22 +0800143
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +0800144 struct mgcp_port_range bts_ports;
145 struct mgcp_port_range net_ports;
Holger Hans Peter Freyther54aaa0f2010-09-17 23:35:53 +0800146 struct mgcp_port_range transcoder_ports;
Holger Hans Peter Freytherd0c32292010-07-27 20:34:45 +0800147 int endp_dscp;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100148
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100149 mgcp_change change_cb;
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100150 mgcp_policy policy_cb;
Holger Hans Peter Freyther9bdcc9c2010-03-31 06:39:35 +0200151 mgcp_reset reset_cb;
Holger Hans Peter Freyther869e38e2010-08-06 17:54:27 +0800152 mgcp_realloc realloc_cb;
Holger Hans Peter Freyther8d0be252012-11-29 12:54:22 +0100153 mgcp_rqnt rqnt_cb;
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100154 void *data;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100155
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800156 uint32_t last_call_id;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100157
158 /* trunk handling */
159 struct mgcp_trunk_config trunk;
Holger Hans Peter Freyther0e939fe2011-02-28 12:11:02 +0100160 struct llist_head trunks;
Holger Hans Peter Freyther44016fe2011-02-28 14:46:01 +0100161
162 /* only used for start with a static configuration */
163 int last_net_port;
164 int last_bts_port;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100165};
166
167/* config management */
168struct mgcp_config *mgcp_config_alloc(void);
169int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg);
170int mgcp_vty_init(void);
Holger Hans Peter Freyther1f0c5b42011-02-28 14:37:03 +0100171int mgcp_endpoints_allocate(struct mgcp_trunk_config *cfg);
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100172void mgcp_free_endp(struct mgcp_endpoint *endp);
Holger Hans Peter Freytherf2eedff2010-09-19 04:36:07 +0800173int mgcp_reset_transcoder(struct mgcp_config *cfg);
Holger Hans Peter Freyther0bf15a82012-09-14 17:18:12 +0200174void mgcp_format_stats(struct mgcp_endpoint *endp, char *stats, size_t size);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100175
176/*
177 * format helper functions
178 */
179struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100180
Holger Hans Peter Freyther616d2222010-03-31 09:27:04 +0200181/* adc helper */
182static inline int mgcp_timeslot_to_endpoint(int multiplex, int timeslot)
183{
Holger Hans Peter Freythere3946f42010-09-20 01:07:23 +0800184 if (timeslot == 0) {
185 LOGP(DMGCP, LOGL_ERROR, "Timeslot should not be 0\n");
186 timeslot = 255;
187 }
188
Holger Hans Peter Freythercb8c35c2010-08-10 20:24:24 +0800189 return timeslot + (32 * multiplex);
Holger Hans Peter Freyther616d2222010-03-31 09:27:04 +0200190}
191
Holger Hans Peter Freyther82049d82010-08-28 17:59:15 +0800192static inline void mgcp_endpoint_to_timeslot(int endpoint, int *multiplex, int *timeslot)
193{
194 *multiplex = endpoint / 32;
195 *timeslot = endpoint % 32;
Holger Hans Peter Freyther82049d82010-08-28 17:59:15 +0800196}
197
Harald Welte94b499c2012-01-27 00:46:49 +0100198int mgcp_send_reset_ep(struct mgcp_endpoint *endp, int endpoint);
199int mgcp_send_reset_all(struct mgcp_config *cfg);
200
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100201
202#endif