blob: f7753fb49f93253e7b829d483d06545253be3649 [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 Freytherc16c2dc2010-10-13 20:22:36 +020025#include <openbsc/ipaccess.h>
26#include <openbsc/socket.h>
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +080027
Harald Welted36ff762011-03-23 18:26:56 +010028#include <osmocom/gsm/protocol/gsm_08_08.h>
29#include <osmocom/gsm/gsm0480.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010030#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010031#include <osmocom/gsm/tlv.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020032
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +020033#include <osmocom/sccp/sccp.h>
34
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020035#include <osmocom/abis/ipa.h>
36
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020037#include <sys/socket.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020038#include <string.h>
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020039#include <unistd.h>
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +020040
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +020041#define USSD_LAC_IE 0
42#define USSD_CI_IE 1
43
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020044static void ussd_auth_con(struct tlv_parsed *, struct bsc_nat_ussd_con *);
45
46static struct bsc_nat_ussd_con *bsc_nat_ussd_alloc(struct bsc_nat *nat)
47{
48 struct bsc_nat_ussd_con *con;
49
50 con = talloc_zero(nat, struct bsc_nat_ussd_con);
51 if (!con)
52 return NULL;
53
54 con->nat = nat;
55 return con;
56}
57
58static void bsc_nat_ussd_destroy(struct bsc_nat_ussd_con *con)
59{
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +020060 if (con->nat->ussd_con == con) {
61 bsc_close_ussd_connections(con->nat);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020062 con->nat->ussd_con = NULL;
Holger Hans Peter Freyther54f53522010-10-27 11:01:55 +020063 }
64
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020065 close(con->queue.bfd.fd);
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020066 osmo_fd_unregister(&con->queue.bfd);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020067 osmo_timer_del(&con->auth_timeout);
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +020068 osmo_wqueue_clear(&con->queue);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +020069 talloc_free(con);
70}
71
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +020072static int forward_sccp(struct bsc_nat *nat, struct msgb *msg)
73{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +020074 struct nat_sccp_connection *con;
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +020075 struct bsc_nat_parsed *parsed;
76
77
78 parsed = bsc_nat_parse(msg);
79 if (!parsed) {
80 LOGP(DNAT, LOGL_ERROR, "Can not parse msg from USSD.\n");
81 msgb_free(msg);
82 return -1;
83 }
84
85 if (!parsed->dest_local_ref) {
86 LOGP(DNAT, LOGL_ERROR, "No destination local reference.\n");
87 msgb_free(msg);
88 return -1;
89 }
90
91 con = bsc_nat_find_con_by_bsc(nat, parsed->dest_local_ref);
92 if (!con || !con->bsc) {
93 LOGP(DNAT, LOGL_ERROR, "No active connection found.\n");
94 msgb_free(msg);
95 return -1;
96 }
97
98 talloc_free(parsed);
99 bsc_write_msg(&con->bsc->write_queue, msg);
100 return 0;
101}
102
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200103static int ussd_read_cb(struct osmo_fd *bfd)
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200104{
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200105 struct bsc_nat_ussd_con *conn = bfd->data;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200106 struct msgb *msg;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200107 struct ipaccess_head *hh;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200108 int ret;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200109
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200110 ret = ipa_msg_recv(bfd->fd, &msg);
111 if (ret <= 0) {
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200112 LOGP(DNAT, LOGL_ERROR, "USSD Connection was lost.\n");
113 bsc_nat_ussd_destroy(conn);
114 return -1;
115 }
116
117 LOGP(DNAT, LOGL_NOTICE, "MSG from USSD: %s proto: %d\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200118 osmo_hexdump(msg->data, msg->len), msg->l2h[0]);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200119 hh = (struct ipaccess_head *) msg->data;
120
121 if (hh->proto == IPAC_PROTO_IPACCESS) {
122 if (msg->l2h[0] == IPAC_MSGT_ID_RESP) {
123 struct tlv_parsed tvp;
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200124 int ret;
125 ret = ipaccess_idtag_parse(&tvp,
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200126 (unsigned char *) msg->l2h + 2,
127 msgb_l2len(msg) - 2);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200128 if (ret < 0) {
129 LOGP(DNAT, LOGL_ERROR, "ignoring IPA response "
130 "message with malformed TLVs\n");
Holger Hans Peter Freyther27876a22013-08-13 14:48:44 +0200131 msgb_free(msg);
Pablo Neira Ayusoca05d432011-04-11 16:32:50 +0200132 return ret;
133 }
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200134 if (TLVP_PRESENT(&tvp, IPAC_IDTAG_UNITNAME))
135 ussd_auth_con(&tvp, conn);
136 }
137
138 msgb_free(msg);
139 } else if (hh->proto == IPAC_PROTO_SCCP) {
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200140 forward_sccp(conn->nat, msg);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200141 } else {
142 msgb_free(msg);
143 }
144
145 return 0;
146}
147
148static void ussd_auth_cb(void *_data)
149{
150 LOGP(DNAT, LOGL_ERROR, "USSD module didn't authenticate\n");
151 bsc_nat_ussd_destroy((struct bsc_nat_ussd_con *) _data);
152}
153
154static void ussd_auth_con(struct tlv_parsed *tvp, struct bsc_nat_ussd_con *conn)
155{
156 const char *token;
157 int len;
158 if (!conn->nat->ussd_token) {
159 LOGP(DNAT, LOGL_ERROR, "No USSD token set. Closing\n");
160 bsc_nat_ussd_destroy(conn);
161 return;
162 }
163
164 token = (const char *) TLVP_VAL(tvp, IPAC_IDTAG_UNITNAME);
165 len = TLVP_LEN(tvp, IPAC_IDTAG_UNITNAME);
Holger Hans Peter Freyther2bc90c22013-04-22 10:54:02 +0200166
167 /* last byte should be a NULL */
168 if (strlen(conn->nat->ussd_token) != len - 1)
169 goto disconnect;
170 /* compare everything including the null byte */
171 if (memcmp(conn->nat->ussd_token, token, len) != 0)
172 goto disconnect;
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200173
174 /* it is authenticated now */
175 if (conn->nat->ussd_con && conn->nat->ussd_con != conn)
176 bsc_nat_ussd_destroy(conn->nat->ussd_con);
177
178 LOGP(DNAT, LOGL_ERROR, "USSD token specified. USSD provider is connected.\n");
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200179 osmo_timer_del(&conn->auth_timeout);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200180 conn->authorized = 1;
181 conn->nat->ussd_con = conn;
Holger Hans Peter Freyther2bc90c22013-04-22 10:54:02 +0200182 return;
183
184disconnect:
185 LOGP(DNAT, LOGL_ERROR, "Wrong USSD token by client: %d\n",
186 conn->queue.bfd.fd);
187 bsc_nat_ussd_destroy(conn);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200188}
189
190static void ussd_start_auth(struct bsc_nat_ussd_con *conn)
191{
192 struct msgb *msg;
193
194 conn->auth_timeout.data = conn;
195 conn->auth_timeout.cb = ussd_auth_cb;
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200196 osmo_timer_schedule(&conn->auth_timeout, conn->nat->auth_timeout, 0);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200197
198 msg = msgb_alloc_headroom(4096, 128, "auth message");
199 if (!msg) {
200 LOGP(DNAT, LOGL_ERROR, "Failed to allocate auth msg\n");
201 return;
202 }
203
204 msgb_v_put(msg, IPAC_MSGT_ID_GET);
205 bsc_do_write(&conn->queue, msg, IPAC_PROTO_IPACCESS);
206}
207
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200208static int ussd_listen_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200209{
210 struct bsc_nat_ussd_con *conn;
211 struct bsc_nat *nat;
212 struct sockaddr_in sa;
213 socklen_t sa_len = sizeof(sa);
214 int fd;
215
216 if (!(what & BSC_FD_READ))
217 return 0;
218
219 fd = accept(bfd->fd, (struct sockaddr *) &sa, &sa_len);
220 if (fd < 0) {
221 perror("accept");
222 return fd;
223 }
224
225 nat = (struct bsc_nat *) bfd->data;
Pablo Neira Ayusodfb342c2011-05-06 12:13:10 +0200226 osmo_counter_inc(nat->stats.ussd.reconn);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200227
228 conn = bsc_nat_ussd_alloc(nat);
229 if (!conn) {
230 LOGP(DNAT, LOGL_ERROR, "Failed to allocate USSD con struct.\n");
231 close(fd);
232 return -1;
233 }
234
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200235 osmo_wqueue_init(&conn->queue, 10);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200236 conn->queue.bfd.data = conn;
237 conn->queue.bfd.fd = fd;
238 conn->queue.bfd.when = BSC_FD_READ;
239 conn->queue.read_cb = ussd_read_cb;
240 conn->queue.write_cb = bsc_write_cb;
241
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200242 if (osmo_fd_register(&conn->queue.bfd) < 0) {
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200243 LOGP(DNAT, LOGL_ERROR, "Failed to register USSD fd.\n");
244 bsc_nat_ussd_destroy(conn);
245 return -1;
246 }
247
248 LOGP(DNAT, LOGL_NOTICE, "USSD Connection on %d with IP: %s\n",
249 fd, inet_ntoa(sa.sin_addr));
250
251 /* do authentication */
252 ussd_start_auth(conn);
253 return 0;
254}
255
256int bsc_ussd_init(struct bsc_nat *nat)
257{
258 struct in_addr addr;
259
260 addr.s_addr = INADDR_ANY;
261 if (nat->ussd_local)
262 inet_aton(nat->ussd_local, &addr);
263
264 nat->ussd_listen.data = nat;
265 return make_sock(&nat->ussd_listen, IPPROTO_TCP,
Holger Hans Peter Freyther0d93fb42011-04-11 10:27:10 +0200266 ntohl(addr.s_addr), 5001, 0, ussd_listen_cb, nat);
Holger Hans Peter Freytherc16c2dc2010-10-13 20:22:36 +0200267}
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800268
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200269static int forward_ussd_simple(struct nat_sccp_connection *con, struct msgb *input)
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200270{
271 struct msgb *copy;
272 struct bsc_nat_ussd_con *ussd;
273
274 if (!con->bsc->nat->ussd_con)
275 return -1;
276
277 copy = msgb_alloc_headroom(4096, 128, "forward bts");
278 if (!copy) {
279 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
280 return -1;
281 }
282
283 /* copy the data into the copy */
284 copy->l2h = msgb_put(copy, msgb_l2len(input));
285 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
286
287 /* send it out */
288 ussd = con->bsc->nat->ussd_con;
289 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
290 return 0;
291}
292
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200293static int forward_ussd(struct nat_sccp_connection *con, const struct ussd_request *req,
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200294 struct msgb *input)
295{
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200296 struct msgb *msg, *copy;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200297 struct ipac_msgt_sccp_state *state;
298 struct bsc_nat_ussd_con *ussd;
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200299 uint16_t lac, ci;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200300
301 if (!con->bsc->nat->ussd_con)
302 return -1;
303
304 msg = msgb_alloc_headroom(4096, 128, "forward ussd");
305 if (!msg) {
306 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
307 return -1;
308 }
309
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200310 copy = msgb_alloc_headroom(4096, 128, "forward bts");
311 if (!copy) {
312 LOGP(DNAT, LOGL_ERROR, "Allocation failed, not forwarding.\n");
313 msgb_free(msg);
314 return -1;
315 }
316
317 copy->l2h = msgb_put(copy, msgb_l2len(input));
318 memcpy(copy->l2h, input->l2h, msgb_l2len(input));
319
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200320 msg->l2h = msgb_put(msg, 1);
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100321 msg->l2h[0] = IPAC_MSGT_SCCP_OLD;
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200322
323 /* fill out the data */
324 state = (struct ipac_msgt_sccp_state *) msgb_put(msg, sizeof(*state));
325 state->trans_id = req->transaction_id;
326 state->invoke_id = req->invoke_id;
327 memcpy(&state->src_ref, &con->remote_ref, sizeof(con->remote_ref));
328 memcpy(&state->dst_ref, &con->real_ref, sizeof(con->real_ref));
329 memcpy(state->imsi, con->imsi, strlen(con->imsi));
330
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200331 /* add additional tag/values */
332 lac = htons(con->lac);
333 ci = htons(con->ci);
Holger Hans Peter Freythera164d522013-07-03 16:18:37 +0200334 msgb_tv_fixed_put(msg, USSD_LAC_IE, sizeof(lac), (const uint8_t *) &lac);
335 msgb_tv_fixed_put(msg, USSD_CI_IE, sizeof(ci), (const uint8_t *) &ci);
Holger Hans Peter Freyther7a0010b2013-04-29 20:40:44 +0200336
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200337 ussd = con->bsc->nat->ussd_con;
338 bsc_do_write(&ussd->queue, msg, IPAC_PROTO_IPACCESS);
Holger Hans Peter Freyther90bbccf2010-10-16 17:34:37 +0200339 bsc_do_write(&ussd->queue, copy, IPAC_PROTO_SCCP);
Holger Hans Peter Freyther4c401e72010-10-15 10:09:31 +0200340
341 return 0;
342}
343
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200344int bsc_check_ussd(struct nat_sccp_connection *con, struct bsc_nat_parsed *parsed,
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800345 struct msgb *msg)
346{
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200347 uint32_t len;
348 uint8_t msg_type;
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200349 uint8_t proto;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200350 uint8_t ti;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200351 struct gsm48_hdr *hdr48;
352 struct bsc_nat_acc_lst *lst;
353 struct ussd_request req;
354
355 /*
356 * various checks to avoid the decoding work. Right now we only want to
357 * decode if the connection was created for USSD, we do have a USSD access
358 * list, a query, a IMSI and such...
359 */
360 if (con->con_type != NAT_CON_TYPE_SSA)
361 return 0;
362
363 if (!con->imsi)
364 return 0;
365
Holger Hans Peter Freytheref38e852011-04-06 11:27:52 +0200366 /* We have not verified the IMSI yet */
367 if (!con->authorized)
368 return 0;
369
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200370 if (!con->bsc->nat->ussd_lst_name)
371 return 0;
372 if (!con->bsc->nat->ussd_query)
373 return 0;
374
375 if (parsed->bssap != BSSAP_MSG_DTAP)
376 return 0;
377
378 if (strlen(con->imsi) > GSM_IMSI_LENGTH)
379 return 0;
380
381 hdr48 = bsc_unpack_dtap(parsed, msg, &len);
382 if (!hdr48)
383 return 0;
384
Holger Hans Peter Freyther5cde92c2011-04-13 18:56:13 +0200385 proto = hdr48->proto_discr & 0x0f;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200386 msg_type = hdr48->msg_type & 0xbf;
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200387 ti = (hdr48->proto_discr & 0x70) >> 4;
388 if (proto != GSM48_PDISC_NC_SS)
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200389 return 0;
390
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200391 if (msg_type == GSM0480_MTYPE_REGISTER) {
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200392
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200393 /* now check if it is a IMSI we care about */
394 lst = bsc_nat_acc_lst_find(con->bsc->nat,
395 con->bsc->nat->ussd_lst_name);
396 if (!lst)
397 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200398
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200399 if (bsc_nat_lst_check_allow(lst, con->imsi) != 0)
400 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200401
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200402 /* now decode the message and see if we really want to handle it */
403 memset(&req, 0, sizeof(req));
404 if (gsm0480_decode_ussd_request(hdr48, len, &req) != 1)
405 return 0;
406 if (req.text[0] == 0xff)
407 return 0;
Holger Hans Peter Freyther3229f442010-10-11 10:07:37 +0200408
Holger Hans Peter Freyther123bc322011-04-16 14:06:18 +0200409 if (regexec(&con->bsc->nat->ussd_query_re,
410 req.text, 0, NULL, 0) == REG_NOMATCH)
411 return 0;
412
413 /* found a USSD query for our subscriber */
414 LOGP(DNAT, LOGL_NOTICE, "Found USSD query for %s\n", con->imsi);
415 con->ussd_ti[ti] = 1;
416 if (forward_ussd(con, &req, msg) != 0)
417 return 0;
418 return 1;
419 } else if (msg_type == GSM0480_MTYPE_FACILITY && con->ussd_ti[ti]) {
420 LOGP(DNAT, LOGL_NOTICE, "Forwarding message part of TI: %d %s\n",
421 ti, con->imsi);
422 if (forward_ussd_simple(con, msg) != 0)
423 return 0;
424 return 1;
425 }
426
427 return 0;
Holger Hans Peter Freyther17870cf2010-09-29 19:32:55 +0800428}