blob: a5d3b1c79d5d6760dfb452cb17a09083326f74e4 [file] [log] [blame]
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +08001/*
2 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Holger Hans Peter Freyther98e49d42010-06-15 18:46:56 +08003 * (C) 2010 by On-Waves
Holger Hans Peter Freyther57adba52010-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 Freyther3660e4d2010-06-15 18:50:26 +080025#include "mgcp.h"
26
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080027#include <sys/types.h>
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +080028#include <sccp/sccp_types.h>
Holger Hans Peter Freyther2ef30aa2010-02-07 13:08:09 +010029
Holger Hans Peter Freyther3b960892010-06-15 19:06:18 +080030#include <osmocore/select.h>
31#include <osmocore/msgb.h>
32#include <osmocore/timer.h>
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +080033#include <osmocore/write_queue.h>
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +080034
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +010035#define DIR_BSC 1
36#define DIR_MSC 2
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +080037
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +020038#define NAT_IPAC_PROTO_MGCP 0xfc
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +080039
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +080040struct bsc_nat;
41
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +080042/*
43 * For the NAT we will need to analyze and later patch
44 * the received message. This would require us to parse
45 * the IPA and SCCP header twice. Instead of doing this
46 * we will have one analyze structure and have the patching
47 * and filter operate on the same structure.
48 */
49struct bsc_nat_parsed {
50 /* ip access prototype */
51 int ipa_proto;
52
53 /* source local reference */
54 struct sccp_source_reference *src_local_ref;
55
56 /* destination local reference */
57 struct sccp_source_reference *dest_local_ref;
58
59 /* called ssn number */
60 int called_ssn;
61
62 /* calling ssn number */
63 int calling_ssn;
64
65 /* sccp message type */
66 int sccp_type;
67
68 /* bssap type, e.g. 0 for BSS Management */
69 int bssap;
70
71 /* the gsm0808 message type */
72 int gsm_type;
73};
74
Holger Hans Peter Freyther2ef30aa2010-02-07 13:08:09 +010075/*
76 * Per BSC data structure
77 */
78struct bsc_connection {
79 struct llist_head list_entry;
80
81 /* do we know anything about this BSC? */
82 int authenticated;
83
84 /* the fd we use to communicate */
Holger Hans Peter Freyther84010542010-06-15 18:47:10 +080085 struct write_queue write_queue;
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +080086
87 /* the LAC assigned to this connection */
88 unsigned int lac;
89
90 /* a timeout node */
91 struct timer_list id_timeout;
Holger Hans Peter Freytherde557662010-06-15 18:46:19 +080092
93 /* a back pointer */
94 struct bsc_nat *nat;
Holger Hans Peter Freyther2ef30aa2010-02-07 13:08:09 +010095};
96
97/*
98 * Per SCCP source local reference patch table. It needs to
99 * be updated on new SCCP connections, connection confirm and reject,
100 * and on the loss of the BSC connection.
101 */
102struct sccp_connections {
103 struct llist_head list_entry;
104
105 struct bsc_connection *bsc;
106
107 struct sccp_source_reference real_ref;
108 struct sccp_source_reference patched_ref;
Holger Hans Peter Freythera25e3ec2010-03-29 17:18:42 +0200109 struct sccp_source_reference remote_ref;
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800110
111 /* GSM audio handling. That is 32 * multiplex + ts */
112 int msc_timeslot;
113 int bsc_timeslot;
Holger Hans Peter Freyther2ef30aa2010-02-07 13:08:09 +0100114};
115
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800116/**
117 * One BSC entry in the config
118 */
119struct bsc_config {
120 struct llist_head entry;
121
122 char *token;
123 unsigned int lac;
124 int nr;
125
126 struct bsc_nat *nat;
127};
128
129/**
130 * the structure of the "nat" network
131 */
132struct bsc_nat {
133 /* active SCCP connections that need patching */
134 struct llist_head sccp_connections;
135
136 /* active BSC connections that need patching */
137 struct llist_head bsc_connections;
138
139 /* known BSC's */
140 struct llist_head bsc_configs;
141 int num_bsc;
Holger Hans Peter Freyther3660e4d2010-06-15 18:50:26 +0800142
143 /* MGCP config */
144 struct mgcp_config *mgcp_cfg;
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800145};
146
147/* create and init the structures */
148struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac);
149struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num);
Holger Hans Peter Freyther090a4d82010-06-15 18:48:01 +0800150struct bsc_nat *bsc_nat_alloc(void);
151struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat);
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800152
Holger Hans Peter Freyther8be49b32010-03-30 10:45:48 +0200153void sccp_connection_destroy(struct sccp_connections *);
Holger Hans Peter Freyther2ef30aa2010-02-07 13:08:09 +0100154
Holger Hans Peter Freytherf75a6802010-06-15 18:45:38 +0800155/**
156 * parse the given message into the above structure
157 */
158struct bsc_nat_parsed *bsc_nat_parse(struct msgb *msg);
159
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800160/**
161 * filter based on IP Access header in both directions
162 */
Holger Hans Peter Freytherbbf6b652010-01-30 11:53:30 +0100163int bsc_nat_filter_ipa(int direction, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther5e547882010-06-15 18:46:11 +0800164int bsc_nat_vty_init(struct bsc_nat *nat);
Holger Hans Peter Freyther15d7b4f2010-03-30 06:39:37 +0200165struct bsc_connection *bsc_nat_find_bsc(struct bsc_nat *nat, struct msgb *msg);
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800166
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800167/**
168 * SCCP patching and handling
169 */
170int create_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800171int update_sccp_src_ref(struct sccp_connections *sccp, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800172void remove_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther75ee8412010-06-15 18:48:55 +0800173struct sccp_connections *patch_sccp_src_ref_to_bsc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
174struct sccp_connections *patch_sccp_src_ref_to_msc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
Holger Hans Peter Freyther2f1f55d2010-06-15 18:47:49 +0800175
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800176/**
177 * MGCP/Audio handling
178 */
Holger Hans Peter Freyther8c61cdb2010-03-31 07:30:58 +0200179int bsc_write_mgcp(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length);
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800180int bsc_mgcp_assign(struct sccp_connections *, struct msgb *msg);
181void bsc_mgcp_clear(struct sccp_connections *);
Holger Hans Peter Freyther1f278392010-03-31 09:16:56 +0200182void bsc_mgcp_free_endpoints(struct bsc_nat *nat);
Holger Hans Peter Freytherdccb9152010-06-15 18:49:53 +0800183
Holger Hans Peter Freyther57adba52010-06-15 18:45:26 +0800184#endif