blob: e0809059a950df1ed17570c0a55bff8ecb1fab68 [file] [log] [blame]
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08001/* USSD Filter Code */
2
3/*
Holger Hans Peter Freythera18b1162011-04-01 17:32:21 +02004 * (C) 2010-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2010-2011 by On-Waves
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +08006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +080011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +080017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +080020 *
21 */
22
23#include <openbsc/bsc_nat.h>
24#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther4579bb12015-04-04 21:55:08 +020025#include <openbsc/bsc_msg_filter.h>
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020026#include <openbsc/ipaccess.h>
27#include <openbsc/socket.h>
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +080028
Harald Welted36ff762011-03-23 18:26:56 +010029#include <osmocom/gsm/protocol/gsm_08_08.h>
30#include <osmocom/gsm/gsm0480.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010031#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010032#include <osmocom/gsm/tlv.h>
Harald Welte4a88a492014-08-20 23:46:40 +020033#include <osmocom/gsm/ipa.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020034
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +020035#include <osmocom/sccp/sccp.h>
36
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020037#include <osmocom/abis/ipa.h>
38
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020039#include <sys/socket.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020040#include <string.h>
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020041#include <unistd.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020042
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +020043#define USSD_LAC_IE 0
44#define USSD_CI_IE 1
45
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020046static void ussd_auth_con(struct tlv_parsed *, struct bsc_nat_ussd_con *);
47
48static struct bsc_nat_ussd_con *bsc_nat_ussd_alloc(struct bsc_nat *nat)
49{
50 struct bsc_nat_ussd_con *con;
51
52 con = talloc_zero(nat, struct bsc_nat_ussd_con);
53 if (!con)
54 return NULL;
55
56 con->nat = nat;
57 return con;
58}
59
60static void bsc_nat_ussd_destroy(struct bsc_nat_ussd_con *con)
61{
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +020062 if (con->nat->ussd_con == con) {
Holger Hans Peter Freyther6fcc3a92013-08-26 14:04:43 +020063 bsc_ussd_close_connections(con->nat);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020064 con->nat->ussd_con = NULL;
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +020065 }
66
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020067 close(con->queue.bfd.fd);
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020068 osmo_fd_unregister(&con->queue.bfd);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020069 osmo_timer_del(&con->auth_timeout);
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +020070 osmo_wqueue_clear(&con->queue);
Jacob Erlbecke8278122014-03-31 13:42:11 +020071
72 msgb_free(con->pending_msg);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020073 talloc_free(con);
74}
75
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +020076static void ussd_pong(struct bsc_nat_ussd_con *conn)
77{
78 struct msgb *msg;
79
80 msg = msgb_alloc_headroom(4096, 128, "pong message");
81 if (!msg) {
82 LOGP(DNAT, LOGL_ERROR, "Failed to allocate pong msg\n");
83 return;
84 }
85
86 msgb_v_put(msg, IPAC_MSGT_PONG);
87 bsc_do_write(&conn->queue, msg, IPAC_PROTO_IPACCESS);
88}
89
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +020090static int forward_sccp(struct bsc_nat *nat, struct msgb *msg)
91{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +020092 struct nat_sccp_connection *con;
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +020093 struct bsc_nat_parsed *parsed;
94
95
96 parsed = bsc_nat_parse(msg);
97 if (!parsed) {
98 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from USSD.\n");
99 msgb_free(msg);
100 return -1;
101 }
102
103 if (!parsed->dest_local_ref) {
104 LOGP(DNAT, LOGL_ERROR, "No destination local reference.\n");
105 msgb_free(msg);
106 return -1;
107 }
108
109 con = bsc_nat_find_con_by_bsc(nat, parsed->dest_local_ref);
110 if (!con || !con->bsc) {
111 LOGP(DNAT, LOGL_ERROR, "No active connection found.\n");
112 msgb_free(msg);
113 return -1;
114 }
115
116 talloc_free(parsed);
117 bsc_write_msg(&con->bsc->write_queue, msg);
118 return 0;
119}
120
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200121static int ussd_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200122{
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200123 struct bsc_nat_ussd_con *conn = bfd->data;
Jacob Erlbecke8278122014-03-31 13:42:11 +0200124 struct msgb *msg = NULL;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200125 struct ipaccess_head *hh;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200126 int ret;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200127
Jacob Erlbecke8278122014-03-31 13:42:11 +0200128 ret = ipa_msg_recv_buffered(bfd->fd, &msg, &conn->pending_msg);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200129 if (ret <= 0) {
Jacob Erlbecke8278122014-03-31 13:42:11 +0200130 if (ret == -EAGAIN)
131 return 0;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200132 LOGP(DNAT, LOGL_ERROR, "USSD Connection was lost.\n");
133 bsc_nat_ussd_destroy(conn);
134 return -1;
135 }
136
137 LOGP(DNAT, LOGL_NOTICE, "MSG from USSD: %s proto: %d\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200138 osmo_hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200139 hh = (struct ipaccess_head *) msg->data;
140
141 if (hh->proto == IPAC_PROTO_IPACCESS) {
142 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
143 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200144 int ret;
Harald Welte4a88a492014-08-20 23:46:40 +0200145 ret = ipa_ccm_idtag_parse(&tvp,
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200146 (unsigned char *) msg->l2h + 2,
147 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200148 if (ret < 0) {
149 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
150 "message with malformed TLVs\n");
Holger Hans Peter Freyther27876a22013-08-13 14:48:44 +0200151 msgb_free(msg);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200152 return ret;
153 }
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200154 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
155 ussd_auth_con(&tvp, conn);
Jacob Erlbeck6cb2ccc2013-08-14 11:10:34 +0200156 } else if (msg->l2h[0] == IPAC_MSGT_PING) {
157 LOGP(DNAT, LOGL_DEBUG, "Got USSD ping request.\n");
158 ussd_pong(conn);
159 } else {
160 LOGP(DNAT, LOGL_NOTICE, "Got unknown IPACCESS message 0x%02x.\n", msg->l2h[0]);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200161 }
162
163 msgb_free(msg);
164 } else if (hh->proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200165 forward_sccp(conn->nat, msg);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200166 } else {
167 msgb_free(msg);
168 }
169
170 return 0;
171}
172
173static void ussd_auth_cb(void *_data)
174{
175 LOGP(DNAT, LOGL_ERROR, "USSD module didn't authenticate\n");
176 bsc_nat_ussd_destroy((struct bsc_nat_ussd_con *) _data);
177}
178
179static void ussd_auth_con(struct tlv_parsed *tvp, struct bsc_nat_ussd_con *conn)
180{
181 const char *token;
182 int len;
183 if (!conn->nat->ussd_token) {
184 LOGP(DNAT, LOGL_ERROR, "No USSD token set. Closing\n");
185 bsc_nat_ussd_destroy(conn);
186 return;
187 }
188
189 token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
190 len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freyther2bc90c22013-04-22 10:54:02 +0200191
192 /* last byte should be a NULL */
193 if (strlen(conn->nat->ussd_token) != len - 1)
194 goto disconnect;
195 /* compare everything including the null byte */
196 if (memcmp(conn->nat->ussd_token, token, len) != 0)
197 goto disconnect;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200198
199 /* it is authenticated now */
200 if (conn->nat->ussd_con && conn->nat->ussd_con != conn)
201 bsc_nat_ussd_destroy(conn->nat->ussd_con);
202
203 LOGP(DNAT, LOGL_ERROR, "USSD token specified. USSD provider is connected.\n");
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200204 osmo_timer_del(&conn->auth_timeout);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200205 conn->authorized = 1;
206 conn->nat->ussd_con = conn;
Holger Hans Peter Freyther2bc90c22013-04-22 10:54:02 +0200207 return;
208
209disconnect:
210 LOGP(DNAT, LOGL_ERROR, "Wrong USSD token by client: %d\n",
211 conn->queue.bfd.fd);
212 bsc_nat_ussd_destroy(conn);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200213}
214
215static void ussd_start_auth(struct bsc_nat_ussd_con *conn)
216{
217 struct msgb *msg;
218
219 conn->auth_timeout.data = conn;
220 conn->auth_timeout.cb = ussd_auth_cb;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200221 osmo_timer_schedule(&conn->auth_timeout, conn->nat->auth_timeout, 0);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200222
223 msg = msgb_alloc_headroom(4096, 128, "auth message");
224 if (!msg) {
225 LOGP(DNAT, LOGL_ERROR, "Failed to allocate auth msg\n");
226 return;
227 }
228
229 msgb_v_put(msg, IPAC_MSGT_ID_GET);
230 bsc_do_write(&conn->queue, msg, IPAC_PROTO_IPACCESS);
231}
232
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200233static int ussd_listen_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200234{
235 struct bsc_nat_ussd_con *conn;
236 struct bsc_nat *nat;
237 struct sockaddr_in sa;
238 socklen_t sa_len = sizeof(sa);
239 int fd;
240
241 if (!(what & BSC_FD_READ))
242 return 0;
243
244 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
245 if (fd < 0) {
246 perror("accept");
247 return fd;
248 }
249
250 nat = (struct bsc_nat *) bfd->data;
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200251 osmo_counter_inc(nat->stats.ussd.reconn);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200252
253 conn = bsc_nat_ussd_alloc(nat);
254 if (!conn) {
255 LOGP(DNAT, LOGL_ERROR, "Failed to allocate USSD con struct.\n");
256 close(fd);
257 return -1;
258 }
259
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200260 osmo_wqueue_init(&conn->queue, 10);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200261 conn->queue.bfd.data = conn;
262 conn->queue.bfd.fd = fd;
263 conn->queue.bfd.when = BSC_FD_READ;
264 conn->queue.read_cb = ussd_read_cb;
265 conn->queue.write_cb = bsc_write_cb;
266
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200267 if (osmo_fd_register(&conn->queue.bfd) < 0) {
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200268 LOGP(DNAT, LOGL_ERROR, "Failed to register USSD fd.\n");
269 bsc_nat_ussd_destroy(conn);
270 return -1;
271 }
272
273 LOGP(DNAT, LOGL_NOTICE, "USSD Connection on %d with IP: %s\n",
274 fd, inet_ntoa(sa.sin_addr));
275
276 /* do authentication */
277 ussd_start_auth(conn);
278 return 0;
279}
280
281int bsc_ussd_init(struct bsc_nat *nat)
282{
283 struct in_addr addr;
284
285 addr.s_addr = INADDR_ANY;
286 if (nat->ussd_local)
287 inet_aton(nat->ussd_local, &addr);
288
289 nat->ussd_listen.data = nat;
290 return make_sock(&nat->ussd_listen, IPPROTO_TCP,
Holger Hans Peter Freyther0d93fb42011-04-11 10:27:10 +0200291 ntohl(addr.s_addr), 5001, 0, ussd_listen_cb, nat);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200292}
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800293
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200294static int forward_ussd_simple(struct nat_sccp_connection *con, struct msgb *input)
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200295{
296 struct msgb *copy;
297 struct bsc_nat_ussd_con *ussd;
298
299 if (!con->bsc->nat->ussd_con)
300 return -1;
301
302 copy = msgb_alloc_headroom(4096, 128, "forward bts");
303 if (!copy) {
304 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
305 return -1;
306 }
307
308 /* copy the data into the copy */
309 copy->l2h = msgb_put(copy, msgb_l2len(input));
310 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
311
312 /* send it out */
313 ussd = con->bsc->nat->ussd_con;
314 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
315 return 0;
316}
317
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200318static int forward_ussd(struct nat_sccp_connection *con, const struct ussd_request *req,
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200319 struct msgb *input)
320{
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200321 struct msgb *msg, *copy;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200322 struct ipac_msgt_sccp_state *state;
323 struct bsc_nat_ussd_con *ussd;
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200324 uint16_t lac, ci;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200325
326 if (!con->bsc->nat->ussd_con)
327 return -1;
328
329 msg = msgb_alloc_headroom(4096, 128, "forward ussd");
330 if (!msg) {
331 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
332 return -1;
333 }
334
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200335 copy = msgb_alloc_headroom(4096, 128, "forward bts");
336 if (!copy) {
337 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
338 msgb_free(msg);
339 return -1;
340 }
341
342 copy->l2h = msgb_put(copy, msgb_l2len(input));
343 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
344
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200345 msg->l2h = msgb_put(msg, 1);
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100346 msg->l2h[0] = IPAC_MSGT_SCCP_OLD;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200347
348 /* fill out the data */
349 state = (struct ipac_msgt_sccp_state *) msgb_put(msg, sizeof(*state));
350 state->trans_id = req->transaction_id;
351 state->invoke_id = req->invoke_id;
352 memcpy(&state->src_ref, &con->remote_ref, sizeof(con->remote_ref));
353 memcpy(&state->dst_ref, &con->real_ref, sizeof(con->real_ref));
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200354 memcpy(state->imsi, con->filter_state.imsi, strlen(con->filter_state.imsi));
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200355
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200356 /* add additional tag/values */
357 lac = htons(con->lac);
358 ci = htons(con->ci);
Holger Hans Peter Freythera164d522013-07-03 16:18:37 +0200359 msgb_tv_fixed_put(msg, USSD_LAC_IE, sizeof(lac), (const uint8_t *) &lac);
360 msgb_tv_fixed_put(msg, USSD_CI_IE, sizeof(ci), (const uint8_t *) &ci);
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200361
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200362 ussd = con->bsc->nat->ussd_con;
363 bsc_do_write(&ussd->queue, msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200364 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200365
366 return 0;
367}
368
Holger Hans Peter Freyther6fcc3a92013-08-26 14:04:43 +0200369int bsc_ussd_check(struct nat_sccp_connection *con, struct bsc_nat_parsed *parsed,
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800370 struct msgb *msg)
371{
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200372 uint32_t len;
373 uint8_t msg_type;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200374 uint8_t proto;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200375 uint8_t ti;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200376 struct gsm48_hdr *hdr48;
Holger Hans Peter Freythera1e6bd62015-04-04 22:40:12 +0200377 struct bsc_msg_acc_lst *lst;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200378 struct ussd_request req;
379
380 /*
381 * various checks to avoid the decoding work. Right now we only want to
382 * decode if the connection was created for USSD, we do have a USSD access
383 * list, a query, a IMSI and such...
384 */
Holger Hans Peter Freytherc6529132015-04-05 21:03:49 +0200385 if (con->filter_state.con_type != FLT_CON_TYPE_SSA)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200386 return 0;
387
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200388 if (!con->filter_state.imsi)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200389 return 0;
390
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200391 /* We have not verified the IMSI yet */
392 if (!con->authorized)
393 return 0;
394
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200395 if (!con->bsc->nat->ussd_lst_name)
396 return 0;
397 if (!con->bsc->nat->ussd_query)
398 return 0;
399
400 if (parsed->bssap != BSSAP_MSG_DTAP)
401 return 0;
402
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200403 if (strlen(con->filter_state.imsi) >= GSM_IMSI_LENGTH)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200404 return 0;
405
406 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
407 if (!hdr48)
408 return 0;
409
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100410 proto = gsm48_hdr_pdisc(hdr48);
411 msg_type = gsm48_hdr_msg_type(hdr48);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +0100412 ti = gsm48_hdr_trans_id_no_ti(hdr48);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200413 if (proto != GSM48_PDISC_NC_SS)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200414 return 0;
415
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200416 if (msg_type == GSM0480_MTYPE_REGISTER) {
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200417
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200418 /* now check if it is a IMSI we care about */
Holger Hans Peter Freythera1e6bd62015-04-04 22:40:12 +0200419 lst = bsc_msg_acc_lst_find(&con->bsc->nat->access_lists,
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200420 con->bsc->nat->ussd_lst_name);
421 if (!lst)
422 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200423
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200424 if (bsc_msg_acc_lst_check_allow(lst, con->filter_state.imsi) != 0)
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200425 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200426
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200427 /* now decode the message and see if we really want to handle it */
428 memset(&req, 0, sizeof(req));
429 if (gsm0480_decode_ussd_request(hdr48, len, &req) != 1)
430 return 0;
431 if (req.text[0] == 0xff)
432 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200433
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200434 if (regexec(&con->bsc->nat->ussd_query_re,
435 req.text, 0, NULL, 0) == REG_NOMATCH)
436 return 0;
437
438 /* found a USSD query for our subscriber */
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200439 LOGP(DNAT, LOGL_NOTICE, "Found USSD query for %s\n",
440 con->filter_state.imsi);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200441 con->ussd_ti[ti] = 1;
442 if (forward_ussd(con, &req, msg) != 0)
443 return 0;
444 return 1;
445 } else if (msg_type == GSM0480_MTYPE_FACILITY && con->ussd_ti[ti]) {
446 LOGP(DNAT, LOGL_NOTICE, "Forwarding message part of TI: %d %s\n",
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200447 ti, con->filter_state.imsi);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200448 if (forward_ussd_simple(con, msg) != 0)
449 return 0;
450 return 1;
451 }
452
453 return 0;
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800454}