blob: fce38ce816372fbc4c8933994b994e5807f75a75 [file] [log] [blame]
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +02001/* (C) 2009-2011 by Holger Hans Peter Freyther <zecke@selfish.org>
2 * (C) 2009-2011 by On-Waves
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +01003 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +01008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +010014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +010017 *
18 */
19
20#include <openbsc/osmo_bsc.h>
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +010021#include <openbsc/osmo_msc_data.h>
22#include <openbsc/gsm_04_80.h>
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +010023#include <openbsc/gsm_subscriber.h>
Holger Hans Peter Freytherd65305f2010-11-05 11:31:08 +010024#include <openbsc/debug.h>
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +010025#include <openbsc/paging.h>
26
27#include <stdlib.h>
Holger Hans Peter Freytherd65305f2010-11-05 11:31:08 +010028
29static void handle_lu_request(struct gsm_subscriber_connection *conn,
30 struct msgb *msg)
31{
32 struct gsm48_hdr *gh;
33 struct gsm48_loc_upd_req *lu;
34 struct gsm48_loc_area_id lai;
35 struct gsm_network *net;
36
37 if (msgb_l3len(msg) < sizeof(*gh) + sizeof(*lu)) {
38 LOGP(DMSC, LOGL_ERROR, "LU too small to look at: %u\n", msgb_l3len(msg));
39 return;
40 }
41
42 net = conn->bts->network;
43
44 gh = msgb_l3(msg);
45 lu = (struct gsm48_loc_upd_req *) gh->data;
46
47 gsm48_generate_lai(&lai, net->country_code, net->network_code,
48 conn->bts->location_area_code);
49
50 if (memcmp(&lai, &lu->lai, sizeof(lai)) != 0) {
51 LOGP(DMSC, LOGL_DEBUG, "Marking con for welcome USSD.\n");
52 conn->sccp_con->new_subscriber = 1;
53 }
54}
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +010055
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +010056/* we will need to stop the paging request */
57static int handle_page_resp(struct gsm_subscriber_connection *conn, struct msgb *msg)
58{
59 uint8_t mi_type;
60 char mi_string[GSM48_MI_SIZE];
61 struct gsm48_hdr *gh;
62 struct gsm48_pag_resp *resp;
63 struct gsm_subscriber *subscr;
64
65 if (msgb_l3len(msg) < sizeof(*gh) + sizeof(*resp)) {
66 LOGP(DMSC, LOGL_ERROR, "PagingResponse too small: %u\n", msgb_l3len(msg));
67 return -1;
68 }
69
70 gh = msgb_l3(msg);
71 resp = (struct gsm48_pag_resp *) &gh->data[0];
72
73 gsm48_paging_extract_mi(resp, msgb_l3len(msg) - sizeof(*gh),
74 mi_string, &mi_type);
75 DEBUGP(DRR, "PAGING RESPONSE: mi_type=0x%02x MI(%s)\n",
76 mi_type, mi_string);
77
78 switch (mi_type) {
79 case GSM_MI_TYPE_TMSI:
80 subscr = subscr_active_by_tmsi(conn->bts->network,
81 tmsi_from_string(mi_string));
82 break;
83 case GSM_MI_TYPE_IMSI:
84 subscr = subscr_active_by_imsi(conn->bts->network, mi_string);
85 break;
Holger Hans Peter Freyther3fbd2442011-01-16 18:18:56 +010086 default:
87 subscr = NULL;
88 break;
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +010089 }
90
91 if (!subscr) {
92 LOGP(DMSC, LOGL_ERROR, "Non active subscriber got paged.\n");
93 return -1;
94 }
95
Harald Weltef604bba2010-12-15 15:33:08 +010096 paging_request_stop(conn->bts, subscr, conn, msg);
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +010097 subscr_put(subscr);
98 return 0;
99}
100
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +0100101/**
102 * This is used to scan a message for extra functionality of the BSC. This
103 * includes scanning for location updating requests/acceptd and then send
104 * a welcome USSD message to the subscriber.
105 */
106int bsc_scan_bts_msg(struct gsm_subscriber_connection *conn, struct msgb *msg)
107{
Holger Hans Peter Freytherd65305f2010-11-05 11:31:08 +0100108 struct gsm48_hdr *gh = msgb_l3(msg);
109 uint8_t pdisc = gh->proto_discr & 0x0f;
110 uint8_t mtype = gh->msg_type & 0xbf;
111
112 if (pdisc == GSM48_PDISC_MM) {
113 if (mtype == GSM48_MT_MM_LOC_UPD_REQUEST)
114 handle_lu_request(conn, msg);
Holger Hans Peter Freyther16e958d2010-11-15 13:34:03 +0100115 } else if (pdisc == GSM48_PDISC_RR) {
116 if (mtype == GSM48_MT_RR_PAG_RESP)
117 handle_page_resp(conn, msg);
Holger Hans Peter Freytherd65305f2010-11-05 11:31:08 +0100118 }
119
Holger Hans Peter Freyther5bb874d2010-11-05 11:21:18 +0100120 return 0;
121}
Holger Hans Peter Freythera54732d2010-11-05 18:11:19 +0100122
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +0100123static void send_welcome_ussd(struct gsm_subscriber_connection *conn)
124{
125 struct gsm_network *net;
126 net = conn->bts->network;
127
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200128 if (!net->bsc_data->msc.ussd_welcome_txt)
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +0100129 return;
130
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200131 gsm0480_send_ussdNotify(conn, 1, net->bsc_data->msc.ussd_welcome_txt);
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +0100132 gsm0480_send_releaseComplete(conn);
133}
134
Holger Hans Peter Freythera54732d2010-11-05 18:11:19 +0100135/**
136 * Messages coming back from the MSC.
137 */
138int bsc_scan_msc_msg(struct gsm_subscriber_connection *conn, struct msgb *msg)
139{
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +0100140 struct gsm_network *net;
141 struct gsm48_loc_area_id *lai;
142 struct gsm48_hdr *gh;
143 uint8_t mtype;
144
145 if (msgb_l3len(msg) < sizeof(*gh)) {
146 LOGP(DMSC, LOGL_ERROR, "GSM48 header does not fit.\n");
147 return -1;
148 }
149
150 gh = (struct gsm48_hdr *) msgb_l3(msg);
151 mtype = gh->msg_type & 0xbf;
152 net = conn->bts->network;
153
154 if (mtype == GSM48_MT_MM_LOC_UPD_ACCEPT) {
Holger Hans Peter Freyther8ec49522011-08-15 15:53:00 +0200155 if (net->bsc_data->msc.core_ncc != -1 ||
156 net->bsc_data->msc.core_mcc != -1) {
Holger Hans Peter Freyther52d42ab2010-11-05 18:41:04 +0100157 if (msgb_l3len(msg) >= sizeof(*gh) + sizeof(*lai)) {
158 lai = (struct gsm48_loc_area_id *) &gh->data[0];
159 gsm48_generate_lai(lai, net->country_code,
160 net->network_code,
161 conn->bts->location_area_code);
162 }
163 }
164
165 if (conn->sccp_con->new_subscriber)
166 send_welcome_ussd(conn);
167 }
168
Holger Hans Peter Freythera54732d2010-11-05 18:11:19 +0100169 return 0;
170}