blob: e41849652ff6e549dc21c4db0f7f987ac07af3ab [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 Freyther6a97b8d2010-06-15 18:45:26 +080034
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +010035#define DIR_BSC 1
36#define DIR_MSC 2
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +080037
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +020038#define NAT_IPAC_PROTO_MGCP 0xfc
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +080039
Holger Hans Peter Freytheraa698242010-06-15 18:46:19 +080040struct bsc_nat;
41
Holger Hans Peter Freyther0b8f69d2010-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 Freyther9f8f3d02010-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 Freythered07a3f2010-06-15 18:47:10 +080085 struct write_queue write_queue;
Holger Hans Peter Freyther9a85ef32010-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 Freytheraa698242010-06-15 18:46:19 +080092
93 /* a back pointer */
94 struct bsc_nat *nat;
Holger Hans Peter Freyther9f8f3d02010-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 Freyther16a6f702010-03-29 17:18:42 +0200109 struct sccp_source_reference remote_ref;
Holger Hans Peter Freyther465313e2010-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 Freyther9f8f3d02010-02-07 13:08:09 +0100114};
115
Holger Hans Peter Freyther9a85ef32010-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/**
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200130 * BSCs point of view of endpoints
131 */
132struct bsc_endpoint {
133 /* the pending transaction id */
134 char *transaction_id;
135 /* the bsc we are talking to */
136 struct bsc_connection *bsc;
137};
138
139/**
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800140 * the structure of the "nat" network
141 */
142struct bsc_nat {
143 /* active SCCP connections that need patching */
144 struct llist_head sccp_connections;
145
146 /* active BSC connections that need patching */
147 struct llist_head bsc_connections;
148
149 /* known BSC's */
150 struct llist_head bsc_configs;
151 int num_bsc;
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800152
153 /* MGCP config */
154 struct mgcp_config *mgcp_cfg;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200155 struct write_queue mgcp_queue;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200156 struct msgb *mgcp_msg;
157
158 struct bsc_endpoint *bsc_endpoints;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800159};
160
161/* create and init the structures */
162struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac);
163struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800164struct bsc_nat *bsc_nat_alloc(void);
165struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800166
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200167void sccp_connection_destroy(struct sccp_connections *);
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +0100168
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800169/**
170 * parse the given message into the above structure
171 */
172struct bsc_nat_parsed *bsc_nat_parse(struct msgb *msg);
173
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800174/**
175 * filter based on IP Access header in both directions
176 */
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100177int bsc_nat_filter_ipa(int direction, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800178int bsc_nat_vty_init(struct bsc_nat *nat);
Holger Hans Peter Freythera5784b52010-03-30 06:39:37 +0200179struct bsc_connection *bsc_nat_find_bsc(struct bsc_nat *nat, struct msgb *msg);
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800180
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800181/**
182 * SCCP patching and handling
183 */
184int 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 +0800185int update_sccp_src_ref(struct sccp_connections *sccp, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800186void 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 +0800187struct sccp_connections *patch_sccp_src_ref_to_bsc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
188struct sccp_connections *patch_sccp_src_ref_to_msc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800189
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800190/**
191 * MGCP/Audio handling
192 */
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200193int bsc_write_mgcp_msg(struct bsc_connection *bsc, struct msgb *msg);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200194int bsc_write_mgcp(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800195int bsc_mgcp_assign(struct sccp_connections *, struct msgb *msg);
196void bsc_mgcp_clear(struct sccp_connections *);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200197void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int);
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200198void bsc_mgcp_free_endpoints(struct bsc_nat *nat);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200199int bsc_mgcp_init(struct bsc_nat *nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800200
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200201struct bsc_connection *bsc_mgcp_find_con(struct bsc_nat *, int endpoint_number);
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200202struct msgb *bsc_mgcp_rewrite(struct msgb *msg, const char *ip, int port);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200203
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800204#endif