blob: de6b421ef1b6f72643c85e8ff945066c421fb5e4 [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001/* SCCP patching and handling routines */
2/*
3 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
4 * (C) 2010 by On-Waves
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22#include <openbsc/debug.h>
23#include <openbsc/bsc_nat.h>
24#include <openbsc/bsc_nat_sccp.h>
25
26#include <osmocom/sccp/sccp.h>
27
Jonathan Santos5a45b152011-08-17 15:33:57 -040028#include <osmocom/core/talloc.h>
Jonathan Santos03fd8d02011-05-25 13:54:02 -040029
30#include <string.h>
31#include <time.h>
32
33static int equal(struct sccp_source_reference *ref1, struct sccp_source_reference *ref2)
34{
35 return memcmp(ref1, ref2, sizeof(*ref1)) == 0;
36}
37
38/*
39 * SCCP patching below
40 */
41
42/* check if we are using this ref for patched already */
43static int sccp_ref_is_free(struct sccp_source_reference *ref, struct bsc_nat *nat)
44{
45 struct sccp_connections *conn;
46
47 llist_for_each_entry(conn, &nat->sccp_connections, list_entry) {
48 if (memcmp(ref, &conn->patched_ref, sizeof(*ref)) == 0)
49 return -1;
50 }
51
52 return 0;
53}
54
55/* copied from sccp.c */
56static int assign_src_local_reference(struct sccp_source_reference *ref, struct bsc_nat *nat)
57{
58 static uint32_t last_ref = 0x50000;
59 int wrapped = 0;
60
61 do {
62 struct sccp_source_reference reference;
63 reference.octet1 = (last_ref >> 0) & 0xff;
64 reference.octet2 = (last_ref >> 8) & 0xff;
65 reference.octet3 = (last_ref >> 16) & 0xff;
66
67 ++last_ref;
68 /* do not use the reversed word and wrap around */
69 if ((last_ref & 0x00FFFFFF) == 0x00FFFFFF) {
70 LOGP(DNAT, LOGL_NOTICE, "Wrapped searching for a free code\n");
71 last_ref = 0;
72 ++wrapped;
73 }
74
75 if (sccp_ref_is_free(&reference, nat) == 0) {
76 *ref = reference;
77 return 0;
78 }
79 } while (wrapped != 2);
80
81 LOGP(DNAT, LOGL_ERROR, "Finding a free reference failed\n");
82 return -1;
83}
84
85struct sccp_connections *create_sccp_src_ref(struct bsc_connection *bsc,
86 struct bsc_nat_parsed *parsed)
87{
88 struct sccp_connections *conn;
89
90 /* Some commercial BSCs like to reassign there SRC ref */
91 llist_for_each_entry(conn, &bsc->nat->sccp_connections, list_entry) {
92 if (conn->bsc != bsc)
93 continue;
94 if (memcmp(&conn->real_ref, parsed->src_local_ref, sizeof(conn->real_ref)) != 0)
95 continue;
96
97 /* the BSC has reassigned the SRC ref and we failed to keep track */
98 memset(&conn->remote_ref, 0, sizeof(conn->remote_ref));
99 if (assign_src_local_reference(&conn->patched_ref, bsc->nat) != 0) {
100 LOGP(DNAT, LOGL_ERROR, "BSC %d reused src ref: %d and we failed to generate a new id.\n",
101 bsc->cfg->nr, sccp_src_ref_to_int(parsed->src_local_ref));
102 bsc_mgcp_dlcx(conn);
103 llist_del(&conn->list_entry);
104 talloc_free(conn);
105 return NULL;
106 } else {
107 clock_gettime(CLOCK_MONOTONIC, &conn->creation_time);
108 bsc_mgcp_dlcx(conn);
109 return conn;
110 }
111 }
112
113
114 conn = talloc_zero(bsc->nat, struct sccp_connections);
115 if (!conn) {
116 LOGP(DNAT, LOGL_ERROR, "Memory allocation failure.\n");
117 return NULL;
118 }
119
120 conn->bsc = bsc;
121 clock_gettime(CLOCK_MONOTONIC, &conn->creation_time);
122 conn->real_ref = *parsed->src_local_ref;
123 if (assign_src_local_reference(&conn->patched_ref, bsc->nat) != 0) {
124 LOGP(DNAT, LOGL_ERROR, "Failed to assign a ref.\n");
125 talloc_free(conn);
126 return NULL;
127 }
128
129 bsc_mgcp_init(conn);
130 llist_add_tail(&conn->list_entry, &bsc->nat->sccp_connections);
131 rate_ctr_inc(&bsc->cfg->stats.ctrg->ctr[BCFG_CTR_SCCP_CONN]);
Jonathan Santos5a45b152011-08-17 15:33:57 -0400132 osmo_counter_inc(bsc->cfg->nat->stats.sccp.conn);
Jonathan Santos03fd8d02011-05-25 13:54:02 -0400133
134 LOGP(DNAT, LOGL_DEBUG, "Created 0x%x <-> 0x%x mapping for con %p\n",
135 sccp_src_ref_to_int(&conn->real_ref),
136 sccp_src_ref_to_int(&conn->patched_ref), bsc);
137
138 return conn;
139}
140
141int update_sccp_src_ref(struct sccp_connections *sccp, struct bsc_nat_parsed *parsed)
142{
143 if (!parsed->dest_local_ref || !parsed->src_local_ref) {
144 LOGP(DNAT, LOGL_ERROR, "CC MSG should contain both local and dest address.\n");
145 return -1;
146 }
147
148 sccp->remote_ref = *parsed->src_local_ref;
149 sccp->has_remote_ref = 1;
150 LOGP(DNAT, LOGL_DEBUG, "Updating 0x%x to remote 0x%x on %p\n",
151 sccp_src_ref_to_int(&sccp->patched_ref),
152 sccp_src_ref_to_int(&sccp->remote_ref), sccp->bsc);
153
154 return 0;
155}
156
157void remove_sccp_src_ref(struct bsc_connection *bsc, struct msgb *msg, struct bsc_nat_parsed *parsed)
158{
159 struct sccp_connections *conn;
160
161 llist_for_each_entry(conn, &bsc->nat->sccp_connections, list_entry) {
162 if (memcmp(parsed->src_local_ref,
163 &conn->patched_ref, sizeof(conn->patched_ref)) == 0) {
164
165 sccp_connection_destroy(conn);
166 return;
167 }
168 }
169
170 LOGP(DNAT, LOGL_ERROR, "Can not remove connection: 0x%x\n",
171 sccp_src_ref_to_int(parsed->src_local_ref));
172}
173
174/*
175 * We have a message from the MSC to the BSC. The MSC is using
176 * an address that was assigned by the MUX, we need to update the
177 * dest reference to the real network.
178 */
179struct sccp_connections *patch_sccp_src_ref_to_bsc(struct msgb *msg,
180 struct bsc_nat_parsed *parsed,
181 struct bsc_nat *nat)
182{
183 struct sccp_connections *conn;
184
185 if (!parsed->dest_local_ref) {
186 LOGP(DNAT, LOGL_ERROR, "MSG should contain dest_local_ref.\n");
187 return NULL;
188 }
189
190
191 llist_for_each_entry(conn, &nat->sccp_connections, list_entry) {
192 if (!equal(parsed->dest_local_ref, &conn->patched_ref))
193 continue;
194
195 /* Change the dest address to the real one */
196 *parsed->dest_local_ref = conn->real_ref;
197 return conn;
198 }
199
200 return NULL;
201}
202
203/*
204 * These are message to the MSC. We will need to find the BSC
205 * Connection by either the SRC or the DST local reference.
206 *
207 * In case of a CR we need to work by the SRC local reference
208 * in all other cases we need to work by the destination local
209 * reference..
210 */
211struct sccp_connections *patch_sccp_src_ref_to_msc(struct msgb *msg,
212 struct bsc_nat_parsed *parsed,
213 struct bsc_connection *bsc)
214{
215 struct sccp_connections *conn;
216
217 llist_for_each_entry(conn, &bsc->nat->sccp_connections, list_entry) {
218 if (conn->bsc != bsc)
219 continue;
220
221 if (parsed->src_local_ref) {
222 if (equal(parsed->src_local_ref, &conn->real_ref)) {
223 *parsed->src_local_ref = conn->patched_ref;
224 return conn;
225 }
226 } else if (parsed->dest_local_ref) {
227 if (equal(parsed->dest_local_ref, &conn->remote_ref))
228 return conn;
229 } else {
230 LOGP(DNAT, LOGL_ERROR, "Header has neither loc/dst ref.\n");
231 return NULL;
232 }
233 }
234
235 return NULL;
236}
237
238struct sccp_connections *bsc_nat_find_con_by_bsc(struct bsc_nat *nat,
239 struct sccp_source_reference *ref)
240{
241 struct sccp_connections *conn;
242
243 llist_for_each_entry(conn, &nat->sccp_connections, list_entry) {
244 if (memcmp(ref, &conn->real_ref, sizeof(*ref)) == 0)
245 return conn;
246 }
247
248 return NULL;
249}