blob: 0a0032211e825529cb274b7f24ce7403ece7b3c1 [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 Freyther7bdc6372010-02-20 21:21:02 +01004 * (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2009-2010 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
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 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 General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +010024#ifndef OPENBSC_MGCP_H
25#define OPENBSC_MGCP_H
26
Harald Weltedfe6c7d2010-02-20 16:24:02 +010027#include <osmocore/msgb.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 Freyther77f7afe2010-02-03 09:54:43 +010066
Holger Hans Peter Freyther77f7afe2010-02-03 09:54:43 +010067#define MGCP_ENDP_CRCX 1
68#define MGCP_ENDP_DLCX 2
69#define MGCP_ENDP_MDCX 3
70
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +010071/*
72 * what to do with the msg?
73 * - continue as usual?
74 * - reject and send a failure code?
75 * - defer? do not send anything
76 */
77#define MGCP_POLICY_CONT 4
78#define MGCP_POLICY_REJECT 5
79#define MGCP_POLICY_DEFER 6
80
Holger Hans Peter Freyther869e38e2010-08-06 17:54:27 +080081typedef int (*mgcp_realloc)(struct mgcp_config *cfg, int endpoint);
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +080082typedef int (*mgcp_change)(struct mgcp_config *cfg, int endpoint, int state);
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +010083typedef int (*mgcp_policy)(struct mgcp_config *cfg, int endpoint, int state, const char *transactio_id);
Holger Hans Peter Freyther9bdcc9c2010-03-31 06:39:35 +020084typedef int (*mgcp_reset)(struct mgcp_config *cfg);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010085
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +080086#define PORT_ALLOC_STATIC 0
87#define PORT_ALLOC_DYNAMIC 1
88
89/**
90 * This holds information on how to allocate ports
91 */
92struct mgcp_port_range {
93 int mode;
94
95 /* pre-allocated from a base? */
96 int base_port;
Holger Hans Peter Freyther1be9f2f2010-08-05 07:20:09 +080097
98 /* dynamically allocated */
99 int range_start;
100 int range_end;
101 int last_port;
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +0800102};
103
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100104struct mgcp_config {
105 int source_port;
106 char *local_ip;
107 char *source_addr;
108 unsigned int number_endpoints;
109 char *bts_ip;
Holger Hans Peter Freytherb79994c2010-03-31 11:46:41 +0200110 char *call_agent_addr;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100111
112 struct in_addr bts_in;
113 char *audio_name;
114 int audio_payload;
115 int audio_loop;
Holger Hans Peter Freyther15e73892010-08-05 07:10:56 +0800116
117 struct mgcp_port_range bts_ports;
118 struct mgcp_port_range net_ports;
Holger Hans Peter Freytherd0c32292010-07-27 20:34:45 +0800119 int endp_dscp;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100120
Holger Hans Peter Freyther408cc4a2010-04-07 10:51:27 +0200121 /* spec handling */
122 int force_realloc;
123
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100124 mgcp_change change_cb;
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100125 mgcp_policy policy_cb;
Holger Hans Peter Freyther9bdcc9c2010-03-31 06:39:35 +0200126 mgcp_reset reset_cb;
Holger Hans Peter Freyther869e38e2010-08-06 17:54:27 +0800127 mgcp_realloc realloc_cb;
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100128 void *data;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100129
130 struct mgcp_endpoint *endpoints;
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800131 uint32_t last_call_id;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100132};
133
134/* config management */
135struct mgcp_config *mgcp_config_alloc(void);
136int mgcp_parse_config(const char *config_file, struct mgcp_config *cfg);
137int mgcp_vty_init(void);
138int mgcp_endpoints_allocate(struct mgcp_config *cfg);
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100139void mgcp_free_endp(struct mgcp_endpoint *endp);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100140
141/*
142 * format helper functions
143 */
144struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg);
Holger Hans Peter Freyther6414a0c2010-02-21 10:50:46 +0100145struct msgb *mgcp_create_response_with_data(int code, const char *msg, const char *trans, const char *data);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100146
Holger Hans Peter Freyther616d2222010-03-31 09:27:04 +0200147/* adc helper */
148static inline int mgcp_timeslot_to_endpoint(int multiplex, int timeslot)
149{
Holger Hans Peter Freythere3946f42010-09-20 01:07:23 +0800150 if (timeslot == 0) {
151 LOGP(DMGCP, LOGL_ERROR, "Timeslot should not be 0\n");
152 timeslot = 255;
153 }
154
Holger Hans Peter Freythercb8c35c2010-08-10 20:24:24 +0800155 return timeslot + (32 * multiplex);
Holger Hans Peter Freyther616d2222010-03-31 09:27:04 +0200156}
157
Holger Hans Peter Freyther82049d82010-08-28 17:59:15 +0800158static inline void mgcp_endpoint_to_timeslot(int endpoint, int *multiplex, int *timeslot)
159{
160 *multiplex = endpoint / 32;
161 *timeslot = endpoint % 32;
Holger Hans Peter Freyther82049d82010-08-28 17:59:15 +0800162}
163
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100164
165#endif