blob: 6de32ebc90196b33d1b8196d13ea27b9b6aeef69 [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;
Holger Hans Peter Freyther5cc94fb2010-04-05 22:56:49 +0200137 /* pending delete */
138 int pending_delete;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200139};
140
141/**
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800142 * the structure of the "nat" network
143 */
144struct bsc_nat {
145 /* active SCCP connections that need patching */
146 struct llist_head sccp_connections;
147
148 /* active BSC connections that need patching */
149 struct llist_head bsc_connections;
150
151 /* known BSC's */
152 struct llist_head bsc_configs;
153 int num_bsc;
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800154
155 /* MGCP config */
156 struct mgcp_config *mgcp_cfg;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200157 struct write_queue mgcp_queue;
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200158 u_int8_t mgcp_msg[4096];
159 int mgcp_length;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200160
161 struct bsc_endpoint *bsc_endpoints;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800162};
163
164/* create and init the structures */
165struct bsc_config *bsc_config_alloc(struct bsc_nat *nat, const char *token, unsigned int lac);
166struct bsc_config *bsc_config_num(struct bsc_nat *nat, int num);
Holger Hans Peter Freytherdcf8a7d2010-06-15 18:48:01 +0800167struct bsc_nat *bsc_nat_alloc(void);
168struct bsc_connection *bsc_connection_alloc(struct bsc_nat *nat);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800169
Holger Hans Peter Freyther23fe7be2010-03-30 10:45:48 +0200170void sccp_connection_destroy(struct sccp_connections *);
Holger Hans Peter Freyther9f8f3d02010-02-07 13:08:09 +0100171
Holger Hans Peter Freyther0b8f69d2010-06-15 18:45:38 +0800172/**
173 * parse the given message into the above structure
174 */
175struct bsc_nat_parsed *bsc_nat_parse(struct msgb *msg);
176
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800177/**
178 * filter based on IP Access header in both directions
179 */
Holger Hans Peter Freyther1d6fb182010-01-30 11:53:30 +0100180int bsc_nat_filter_ipa(int direction, struct msgb *msg, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800181int bsc_nat_vty_init(struct bsc_nat *nat);
Holger Hans Peter Freythera5784b52010-03-30 06:39:37 +0200182struct bsc_connection *bsc_nat_find_bsc(struct bsc_nat *nat, struct msgb *msg);
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800183
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800184/**
185 * SCCP patching and handling
186 */
187int 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 +0800188int update_sccp_src_ref(struct sccp_connections *sccp, struct bsc_nat_parsed *parsed);
Holger Hans Peter Freyther0ab6bab2010-06-15 18:47:49 +0800189void 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 +0800190struct sccp_connections *patch_sccp_src_ref_to_bsc(struct msgb *, struct bsc_nat_parsed *, struct bsc_nat *);
191struct 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 +0800192
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800193/**
194 * MGCP/Audio handling
195 */
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200196int bsc_write_mgcp_msg(struct bsc_connection *bsc, struct msgb *msg);
Holger Hans Peter Freytherd131b792010-03-31 07:30:58 +0200197int bsc_write_mgcp(struct bsc_connection *bsc, const u_int8_t *data, unsigned int length);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800198int bsc_mgcp_assign(struct sccp_connections *, struct msgb *msg);
199void bsc_mgcp_clear(struct sccp_connections *);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200200void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int);
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200201void bsc_mgcp_free_endpoints(struct bsc_nat *nat);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200202int bsc_mgcp_init(struct bsc_nat *nat);
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800203
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200204struct bsc_connection *bsc_mgcp_find_con(struct bsc_nat *, int endpoint_number);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200205struct msgb *bsc_mgcp_rewrite(char *input, int length, const char *ip, int port);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200206void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg);
207
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +0200208void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200209int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60]);
210int bsc_mgcp_extract_ci(const char *resp);
Holger Hans Peter Freytherf05506e2010-04-05 09:10:30 +0200211int bsc_mgcp_extract_port(const char *resp);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200212
Holger Hans Peter Freyther6a97b8d2010-06-15 18:45:26 +0800213#endif