blob: 90c263d24d3567647bb641e3590d5b99eb92f26b [file] [log] [blame]
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +08001/*
2 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freytherdf6143a2010-06-15 18:46:56 +08003 * (C) 2010 by On-Waves
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +08004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#ifndef BSC_NAT_H
23#define BSC_NAT_H
24
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +080025#include "mgcp.h"
26
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080027#include <sys/types.h>
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080028#include <sccp/sccp_types.h>
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +010029
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080030#include <osmocore/select.h>
31#include <osmocore/msgb.h>
32#include <osmocore/timer.h>
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +080033#include <osmocore/write_queue.h>
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +020034#include <osmocore/statistics.h>
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +080035
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +020036#include <regex.h>
37
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +010038#define DIR_BSC 1
39#define DIR_MSC 2
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080040
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +020041#define NAT_IPAC_PROTO_MGCP 0xfc
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +080042
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +080043struct bsc_nat;
44
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080045/*
46 * For the NAT we will need to analyze and later patch
47 * the received message. This would require us to parse
48 * the IPA and SCCP header twice. Instead of doing this
49 * we will have one analyze structure and have the patching
50 * and filter operate on the same structure.
51 */
52struct bsc_nat_parsed {
53 /* ip access prototype */
54 int ipa_proto;
55
56 /* source local reference */
57 struct sccp_source_reference *src_local_ref;
58
59 /* destination local reference */
60 struct sccp_source_reference *dest_local_ref;
61
62 /* called ssn number */
63 int called_ssn;
64
65 /* calling ssn number */
66 int calling_ssn;
67
68 /* sccp message type */
69 int sccp_type;
70
71 /* bssap type, e.g. 0 for BSS Management */
72 int bssap;
73
74 /* the gsm0808 message type */
75 int gsm_type;
76};
77
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +010078/*
79 * Per BSC data structure
80 */
81struct bsc_connection {
82 struct llist_head list_entry;
83
84 /* do we know anything about this BSC? */
85 int authenticated;
86
87 /* the fd we use to communicate */
Holger Hans Peter Freythered07a3f2010-06-15 18:47:10 +080088 struct write_queue write_queue;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080089
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +020090 /* the BSS associated */
91 struct bsc_config *cfg;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080092
93 /* a timeout node */
94 struct timer_list id_timeout;
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +080095
96 /* a back pointer */
97 struct bsc_nat *nat;
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +010098};
99
100/*
101 * Per SCCP source local reference patch table. It needs to
102 * be updated on new SCCP connections, connection confirm and reject,
103 * and on the loss of the BSC connection.
104 */
105struct sccp_connections {
106 struct llist_head list_entry;
107
108 struct bsc_connection *bsc;
109
110 struct sccp_source_reference real_ref;
111 struct sccp_source_reference patched_ref;
Holger Hans Peter Freyther16a6f702010-03-29 17:18:42 +0200112 struct sccp_source_reference remote_ref;
Holger Hans Peter Freyther4c683d12010-04-23 14:13:27 +0800113 int has_remote_ref;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800114
115 /* GSM audio handling. That is 32 * multiplex + ts */
Holger Hans Peter Freyther959bbcf2010-04-22 20:12:13 +0800116 int crcx;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800117 int msc_timeslot;
118 int bsc_timeslot;
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +0100119};
120
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800121/**
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200122 * Stats per BSC
123 */
124struct bsc_config_stats {
125 struct {
126 struct counter *conn;
127 struct counter *calls;
128 } sccp;
129
130 struct {
131 struct counter *reconn;
132 } net;
133};
134
135/**
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800136 * One BSC entry in the config
137 */
138struct bsc_config {
139 struct llist_head entry;
140
141 char *token;
142 unsigned int lac;
143 int nr;
144
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200145 /* imsi white and blacklist */
146 char *imsi_allow;
147 regex_t imsi_allow_re;
148 char *imsi_deny;
149 regex_t imsi_deny_re;
150
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800151 int forbid_paging;
152
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200153 /* backpointer */
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800154 struct bsc_nat *nat;
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200155
156 struct bsc_config_stats stats;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800157};
158
159/**
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200160 * BSCs point of view of endpoints
161 */
162struct bsc_endpoint {
163 /* the pending transaction id */
164 char *transaction_id;
165 /* the bsc we are talking to */
166 struct bsc_connection *bsc;
167};
168
169/**
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200170 * Statistic for the nat.
171 */
172struct bsc_nat_statistics {
173 struct {
174 struct counter *conn;
175 struct counter *calls;
176 } sccp;
177
178 struct {
179 struct counter *reconn;
180 struct counter *auth_fail;
181 } bsc;
182
183 struct {
184 struct counter *reconn;
185 } msc;
186};
187
188/**
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800189 * the structure of the "nat" network
190 */
191struct bsc_nat {
192 /* active SCCP connections that need patching */
193 struct llist_head sccp_connections;
194
195 /* active BSC connections that need patching */
196 struct llist_head bsc_connections;
197
198 /* known BSC's */
199 struct llist_head bsc_configs;
200 int num_bsc;
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800201
202 /* MGCP config */
203 struct mgcp_config *mgcp_cfg;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200204 struct write_queue mgcp_queue;
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200205 u_int8_t mgcp_msg[4096];
206 int mgcp_length;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200207
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200208 /* msc things */
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800209 char *msc_ip;
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200210 int msc_port;
Holger Hans Peter Freytherb7527612010-04-07 11:20:36 +0200211 int first_contact;
212
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200213 struct bsc_endpoint *bsc_endpoints;
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200214
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200215 /* filter */
216 char *imsi_allow;
217 regex_t imsi_allow_re;
218 char *imsi_deny;
219 regex_t imsi_deny_re;
220
Holger Hans Peter Freytherd4702862010-04-12 12:17:09 +0200221 /* statistics */
222 struct bsc_nat_statistics stats;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800223};
224
225/* create and init the structures */
226struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac);
227struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800228struct bsc_nat *bsc_nat_alloc(void);
229struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800230void bsc_nat_set_msc_ip(struct bsc_nat *bsc, const char *ip);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800231
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200232void sccp_connection_destroy(struct sccp_connections *);
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +0100233
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800234/**
235 * parse the given message into the above structure
236 */
237struct bsc_nat_parsed *bsc_nat_parse(struct msgb *msg);
238
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800239/**
240 * filter based on IP Access header in both directions
241 */
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100242int bsc_nat_filter_ipa(int direction, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800243int bsc_nat_vty_init(struct bsc_nat *nat);
Holger Hans Peter Freyther979a3092010-04-17 08:07:19 +0200244struct bsc_connection *bsc_nat_find_bsc(struct bsc_nat *nat, struct msgb *msg, int *_lac);
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800245
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800246/**
247 * SCCP patching and handling
248 */
249int create_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800250int update_sccp_src_ref(struct sccp_connections *sccp, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800251void remove_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther49c7fb52010-06-15 18:48:55 +0800252struct sccp_connections *patch_sccp_src_ref_to_bsc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
Holger Hans Peter Freytherb5513ca2010-04-21 18:56:12 +0800253struct sccp_connections *patch_sccp_src_ref_to_msc(struct msgb *, struct bsc_nat_parsed *, struct bsc_connection *);
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800254
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800255/**
256 * MGCP/Audio handling
257 */
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200258int bsc_write_mgcp(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800259int bsc_mgcp_assign(struct sccp_connections *, struct msgb *msg);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800260void bsc_mgcp_init(struct sccp_connections *);
261void bsc_mgcp_dlcx(struct sccp_connections *);
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200262void bsc_mgcp_free_endpoints(struct bsc_nat *nat);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800263int bsc_mgcp_nat_init(struct bsc_nat *nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800264
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800265struct sccp_connections *bsc_mgcp_find_con(struct bsc_nat *, int endpoint_number);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200266struct msgb *bsc_mgcp_rewrite(char *input, int length, const char *ip, int port);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200267void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg);
268
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200269void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200270int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60]);
271int bsc_mgcp_extract_ci(const char *resp);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200272
Holger Hans Peter Freyther2896df72010-04-08 10:24:57 +0200273
274int bsc_write(struct bsc_connection *bsc, struct msgb *msg, int id);
275
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800276#endif