blob: 0ba63270d03e4f641db32dd279d890337ea3c13e [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
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200219 osmo_timer_setup(&conn->auth_timeout, ussd_auth_cb, conn);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200220 osmo_timer_schedule(&conn->auth_timeout, conn->nat->auth_timeout, 0);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200221
222 msg = msgb_alloc_headroom(4096, 128, "auth message");
223 if (!msg) {
224 LOGP(DNAT, LOGL_ERROR, "Failed to allocate auth msg\n");
225 return;
226 }
227
228 msgb_v_put(msg, IPAC_MSGT_ID_GET);
229 bsc_do_write(&conn->queue, msg, IPAC_PROTO_IPACCESS);
230}
231
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200232static int ussd_listen_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200233{
234 struct bsc_nat_ussd_con *conn;
235 struct bsc_nat *nat;
236 struct sockaddr_in sa;
237 socklen_t sa_len = sizeof(sa);
238 int fd;
239
240 if (!(what & BSC_FD_READ))
241 return 0;
242
243 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
244 if (fd < 0) {
245 perror("accept");
246 return fd;
247 }
248
249 nat = (struct bsc_nat *) bfd->data;
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200250 osmo_counter_inc(nat->stats.ussd.reconn);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200251
252 conn = bsc_nat_ussd_alloc(nat);
253 if (!conn) {
254 LOGP(DNAT, LOGL_ERROR, "Failed to allocate USSD con struct.\n");
255 close(fd);
256 return -1;
257 }
258
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200259 osmo_wqueue_init(&conn->queue, 10);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200260 conn->queue.bfd.data = conn;
261 conn->queue.bfd.fd = fd;
262 conn->queue.bfd.when = BSC_FD_READ;
263 conn->queue.read_cb = ussd_read_cb;
264 conn->queue.write_cb = bsc_write_cb;
265
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200266 if (osmo_fd_register(&conn->queue.bfd) < 0) {
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200267 LOGP(DNAT, LOGL_ERROR, "Failed to register USSD fd.\n");
268 bsc_nat_ussd_destroy(conn);
269 return -1;
270 }
271
272 LOGP(DNAT, LOGL_NOTICE, "USSD Connection on %d with IP: %s\n",
273 fd, inet_ntoa(sa.sin_addr));
274
275 /* do authentication */
276 ussd_start_auth(conn);
277 return 0;
278}
279
280int bsc_ussd_init(struct bsc_nat *nat)
281{
282 struct in_addr addr;
283
284 addr.s_addr = INADDR_ANY;
285 if (nat->ussd_local)
286 inet_aton(nat->ussd_local, &addr);
287
288 nat->ussd_listen.data = nat;
289 return make_sock(&nat->ussd_listen, IPPROTO_TCP,
Holger Hans Peter Freyther0d93fb42011-04-11 10:27:10 +0200290 ntohl(addr.s_addr), 5001, 0, ussd_listen_cb, nat);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200291}
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800292
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200293static int forward_ussd_simple(struct nat_sccp_connection *con, struct msgb *input)
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200294{
295 struct msgb *copy;
296 struct bsc_nat_ussd_con *ussd;
297
298 if (!con->bsc->nat->ussd_con)
299 return -1;
300
301 copy = msgb_alloc_headroom(4096, 128, "forward bts");
302 if (!copy) {
303 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
304 return -1;
305 }
306
307 /* copy the data into the copy */
308 copy->l2h = msgb_put(copy, msgb_l2len(input));
309 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
310
311 /* send it out */
312 ussd = con->bsc->nat->ussd_con;
313 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
314 return 0;
315}
316
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200317static int forward_ussd(struct nat_sccp_connection *con, const struct ussd_request *req,
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200318 struct msgb *input)
319{
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200320 struct msgb *msg, *copy;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200321 struct ipac_msgt_sccp_state *state;
322 struct bsc_nat_ussd_con *ussd;
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200323 uint16_t lac, ci;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200324
325 if (!con->bsc->nat->ussd_con)
326 return -1;
327
328 msg = msgb_alloc_headroom(4096, 128, "forward ussd");
329 if (!msg) {
330 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
331 return -1;
332 }
333
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200334 copy = msgb_alloc_headroom(4096, 128, "forward bts");
335 if (!copy) {
336 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
337 msgb_free(msg);
338 return -1;
339 }
340
341 copy->l2h = msgb_put(copy, msgb_l2len(input));
342 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
343
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200344 msg->l2h = msgb_put(msg, 1);
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100345 msg->l2h[0] = IPAC_MSGT_SCCP_OLD;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200346
347 /* fill out the data */
348 state = (struct ipac_msgt_sccp_state *) msgb_put(msg, sizeof(*state));
349 state->trans_id = req->transaction_id;
350 state->invoke_id = req->invoke_id;
351 memcpy(&state->src_ref, &con->remote_ref, sizeof(con->remote_ref));
352 memcpy(&state->dst_ref, &con->real_ref, sizeof(con->real_ref));
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200353 memcpy(state->imsi, con->filter_state.imsi, strlen(con->filter_state.imsi));
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200354
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200355 /* add additional tag/values */
356 lac = htons(con->lac);
357 ci = htons(con->ci);
Holger Hans Peter Freythera164d522013-07-03 16:18:37 +0200358 msgb_tv_fixed_put(msg, USSD_LAC_IE, sizeof(lac), (const uint8_t *) &lac);
359 msgb_tv_fixed_put(msg, USSD_CI_IE, sizeof(ci), (const uint8_t *) &ci);
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200360
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200361 ussd = con->bsc->nat->ussd_con;
362 bsc_do_write(&ussd->queue, msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200363 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200364
365 return 0;
366}
367
Holger Hans Peter Freyther6fcc3a92013-08-26 14:04:43 +0200368int bsc_ussd_check(struct nat_sccp_connection *con, struct bsc_nat_parsed *parsed,
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800369 struct msgb *msg)
370{
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200371 uint32_t len;
372 uint8_t msg_type;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200373 uint8_t proto;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200374 uint8_t ti;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200375 struct gsm48_hdr *hdr48;
Holger Hans Peter Freythera1e6bd62015-04-04 22:40:12 +0200376 struct bsc_msg_acc_lst *lst;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200377 struct ussd_request req;
378
379 /*
380 * various checks to avoid the decoding work. Right now we only want to
381 * decode if the connection was created for USSD, we do have a USSD access
382 * list, a query, a IMSI and such...
383 */
Holger Hans Peter Freytherc6529132015-04-05 21:03:49 +0200384 if (con->filter_state.con_type != FLT_CON_TYPE_SSA)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200385 return 0;
386
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200387 if (!con->filter_state.imsi)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200388 return 0;
389
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200390 /* We have not verified the IMSI yet */
391 if (!con->authorized)
392 return 0;
393
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200394 if (!con->bsc->nat->ussd_lst_name)
395 return 0;
396 if (!con->bsc->nat->ussd_query)
397 return 0;
398
399 if (parsed->bssap != BSSAP_MSG_DTAP)
400 return 0;
401
Harald Welted3fa84d2016-04-20 17:50:17 +0200402 if (strlen(con->filter_state.imsi) > GSM23003_IMSI_MAX_DIGITS)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200403 return 0;
404
405 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
406 if (!hdr48)
407 return 0;
408
Neels Hofmeyr531734a2016-03-14 16:13:24 +0100409 proto = gsm48_hdr_pdisc(hdr48);
410 msg_type = gsm48_hdr_msg_type(hdr48);
Neels Hofmeyr961bd0b2016-03-14 16:13:25 +0100411 ti = gsm48_hdr_trans_id_no_ti(hdr48);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200412 if (proto != GSM48_PDISC_NC_SS)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200413 return 0;
414
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200415 if (msg_type == GSM0480_MTYPE_REGISTER) {
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200416
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200417 /* now check if it is a IMSI we care about */
Holger Hans Peter Freythera1e6bd62015-04-04 22:40:12 +0200418 lst = bsc_msg_acc_lst_find(&con->bsc->nat->access_lists,
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200419 con->bsc->nat->ussd_lst_name);
420 if (!lst)
421 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200422
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200423 if (bsc_msg_acc_lst_check_allow(lst, con->filter_state.imsi) != 0)
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200424 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200425
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200426 /* now decode the message and see if we really want to handle it */
427 memset(&req, 0, sizeof(req));
428 if (gsm0480_decode_ussd_request(hdr48, len, &req) != 1)
429 return 0;
430 if (req.text[0] == 0xff)
431 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200432
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200433 if (regexec(&con->bsc->nat->ussd_query_re,
434 req.text, 0, NULL, 0) == REG_NOMATCH)
435 return 0;
436
437 /* found a USSD query for our subscriber */
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200438 LOGP(DNAT, LOGL_NOTICE, "Found USSD query for %s\n",
439 con->filter_state.imsi);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200440 con->ussd_ti[ti] = 1;
441 if (forward_ussd(con, &req, msg) != 0)
442 return 0;
443 return 1;
444 } else if (msg_type == GSM0480_MTYPE_FACILITY && con->ussd_ti[ti]) {
445 LOGP(DNAT, LOGL_NOTICE, "Forwarding message part of TI: %d %s\n",
Holger Hans Peter Freytherc09f8a32015-04-05 19:13:27 +0200446 ti, con->filter_state.imsi);
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200447 if (forward_ussd_simple(con, msg) != 0)
448 return 0;
449 return 1;
450 }
451
452 return 0;
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800453}