blob: ec639a9304b8267cca7db82a6e6fa566fe18c743 [file] [log] [blame]
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +02001/* The concept of a subscriber for the MSC, roughly HLR/VLR functionality */
Harald Welte59b04682009-06-10 05:40:52 +08002
3/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte0e3e88e2011-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
Harald Welte59b04682009-06-10 05:40:52 +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 Welte0e3e88e2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte59b04682009-06-10 05:40:52 +080017 *
Harald Welte0e3e88e2011-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/>.
Harald Welte59b04682009-06-10 05:40:52 +080020 *
21 */
22
23#include <unistd.h>
24#include <stdlib.h>
25#include <stdio.h>
26#include <string.h>
Holger Freyther8bdf7622009-04-18 13:48:55 +020027#include <assert.h>
Harald Welte59b04682009-06-10 05:40:52 +080028
Sylvain Munaut34619752010-12-01 21:07:29 +010029#include <osmocore/talloc.h>
30
Harald Welte59b04682009-06-10 05:40:52 +080031#include <openbsc/gsm_subscriber.h>
Sylvain Munaut65c51b62010-12-01 22:38:03 +010032#include <openbsc/gsm_04_08.h>
Harald Welte59b04682009-06-10 05:40:52 +080033#include <openbsc/debug.h>
Sylvain Munaut34619752010-12-01 21:07:29 +010034#include <openbsc/paging.h>
Harald Welteb7799832009-07-29 23:14:15 +020035#include <openbsc/signal.h>
Harald Welte59b04682009-06-10 05:40:52 +080036#include <openbsc/db.h>
37
Sylvain Munaut34619752010-12-01 21:07:29 +010038void *tall_sub_req_ctx;
39
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +020040extern struct llist_head *subscr_bsc_active_subscriber(void);
Harald Welte59b04682009-06-10 05:40:52 +080041
Sylvain Munaut65c51b62010-12-01 22:38:03 +010042int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
43 gsm_cbfn *cb, void *cb_data);
44
Sylvain Munaut34619752010-12-01 21:07:29 +010045
46/*
47 * Struct for pending channel requests. This is managed in the
48 * llist_head requests of each subscriber. The reference counting
49 * should work in such a way that a subscriber with a pending request
50 * remains in memory.
51 */
52struct subscr_request {
53 struct llist_head entry;
54
55 /* back reference */
56 struct gsm_subscriber *subscr;
57
58 /* the requested channel type */
59 int channel_type;
60
61 /* the callback data */
62 gsm_cbfn *cbfn;
63 void *param;
64};
65
66/*
67 * We got the channel assigned and can now hand this channel
68 * over to one of our callbacks.
69 */
Sylvain Munaut65c51b62010-12-01 22:38:03 +010070static int subscr_paging_dispatch(unsigned int hooknum, unsigned int event,
71 struct msgb *msg, void *data, void *param)
Sylvain Munaut34619752010-12-01 21:07:29 +010072{
73 struct subscr_request *request;
Sylvain Munaut7a8f8812010-12-01 23:04:03 +010074 struct gsm_subscriber_connection *conn = data;
Sylvain Munaut65c51b62010-12-01 22:38:03 +010075 struct gsm_subscriber *subscr = param;
Sylvain Munaut7a8f8812010-12-01 23:04:03 +010076 struct paging_signal_data sig_data;
Sylvain Munaut34619752010-12-01 21:07:29 +010077
78 /* There is no request anymore... */
79 if (llist_empty(&subscr->requests))
80 return -1;
81
Sylvain Munaut7a8f8812010-12-01 23:04:03 +010082 /* Dispatch signal */
83 sig_data.subscr = subscr;
84 sig_data.bts = conn ? conn->bts : NULL;
85 sig_data.conn = conn;
Holger Hans Peter Freytherab2a9332010-12-23 18:19:17 +010086 sig_data.paging_result = event;
Sylvain Munaut7a8f8812010-12-01 23:04:03 +010087 dispatch_signal(
88 SS_PAGING,
89 event == GSM_PAGING_SUCCEEDED ?
90 S_PAGING_SUCCEEDED : S_PAGING_EXPIRED,
91 &sig_data
92 );
93
Sylvain Munaut34619752010-12-01 21:07:29 +010094 /*
95 * FIXME: What to do with paging requests coming during
96 * this callback? We must be sure to not start paging when
97 * we have an active connection to a subscriber and to make
98 * the subscr_put_channel work as required...
99 */
100 request = (struct subscr_request *)subscr->requests.next;
101 llist_del(&request->entry);
102 subscr->in_callback = 1;
103 request->cbfn(hooknum, event, msg, data, request->param);
104 subscr->in_callback = 0;
105
Holger Hans Peter Freythera32e9c12010-12-28 17:47:43 +0100106 if (event != GSM_PAGING_SUCCEEDED) {
107 /*
108 * This is a workaround for a bigger issue. We have
109 * issued paging that might involve multiple BTSes
110 * and one of them have failed now. We will stop the
111 * other paging requests as well as the next timeout
112 * would work on the next paging request and the queue
113 * will do bad things. This should be fixed by counting
114 * the outstanding results.
115 */
116 paging_request_stop(NULL, subscr, NULL, NULL);
Holger Hans Peter Freytherbffd4852010-12-28 17:27:05 +0100117 subscr_put_channel(subscr);
Holger Hans Peter Freythera32e9c12010-12-28 17:47:43 +0100118 }
Holger Hans Peter Freytherbffd4852010-12-28 17:27:05 +0100119
Sylvain Munaut34619752010-12-01 21:07:29 +0100120 subscr_put(subscr);
121 talloc_free(request);
122 return 0;
123}
124
Sylvain Munaut65c51b62010-12-01 22:38:03 +0100125static int subscr_paging_sec_cb(unsigned int hooknum, unsigned int event,
126 struct msgb *msg, void *data, void *param)
127{
128 int rc;
129
130 switch (event) {
131 case GSM_SECURITY_AUTH_FAILED:
132 /* Dispatch as paging failure */
133 rc = subscr_paging_dispatch(
134 GSM_HOOK_RR_PAGING, GSM_PAGING_EXPIRED,
135 msg, data, param);
136 break;
137
138 case GSM_SECURITY_NOAVAIL:
139 case GSM_SECURITY_SUCCEEDED:
140 /* Dispatch as paging failure */
141 rc = subscr_paging_dispatch(
142 GSM_HOOK_RR_PAGING, GSM_PAGING_SUCCEEDED,
143 msg, data, param);
144 break;
145
146 default:
147 rc = -EINVAL;
148 }
149
150 return rc;
151}
152
153static int subscr_paging_cb(unsigned int hooknum, unsigned int event,
154 struct msgb *msg, void *data, void *param)
155{
156 struct gsm_subscriber_connection *conn = data;
157 struct gsm48_hdr *gh;
158 struct gsm48_pag_resp *pr;
159
160 /* Other cases mean problem, dispatch direclty */
161 if (event != GSM_PAGING_SUCCEEDED)
162 return subscr_paging_dispatch(hooknum, event, msg, data, param);
163
164 /* Get paging response */
165 gh = msgb_l3(msg);
166 pr = (struct gsm48_pag_resp *)gh->data;
167
168 /* We _really_ have a channel, secure it now ! */
169 return gsm48_secure_channel(conn, pr->key_seq, subscr_paging_sec_cb, param);
170}
171
172
Sylvain Munaut34619752010-12-01 21:07:29 +0100173static void subscr_send_paging_request(struct gsm_subscriber *subscr)
174{
175 struct subscr_request *request;
176 int rc;
177
178 assert(!llist_empty(&subscr->requests));
179
180 request = (struct subscr_request *)subscr->requests.next;
181 rc = paging_request(subscr->net, subscr, request->channel_type,
182 subscr_paging_cb, subscr);
183
184 /* paging failed, quit now */
185 if (rc <= 0) {
Holger Hans Peter Freytherab2a9332010-12-23 18:19:17 +0100186 subscr_paging_cb(GSM_HOOK_RR_PAGING, GSM_PAGING_BUSY,
Sylvain Munaut34619752010-12-01 21:07:29 +0100187 NULL, NULL, subscr);
188 }
189}
190
191void subscr_get_channel(struct gsm_subscriber *subscr,
192 int type, gsm_cbfn *cbfn, void *param)
193{
194 struct subscr_request *request;
195
196 request = talloc(tall_sub_req_ctx, struct subscr_request);
197 if (!request) {
198 if (cbfn)
199 cbfn(GSM_HOOK_RR_PAGING, GSM_PAGING_OOM,
200 NULL, NULL, param);
201 return;
202 }
203
204 memset(request, 0, sizeof(*request));
205 request->subscr = subscr_get(subscr);
206 request->channel_type = type;
207 request->cbfn = cbfn;
208 request->param = param;
209
210 /*
211 * FIXME: We might be able to assign more than one
212 * channel, e.g. voice and SMS submit at the same
213 * time.
214 */
215 if (!subscr->in_callback && llist_empty(&subscr->requests)) {
216 /* add to the list, send a request */
217 llist_add_tail(&request->entry, &subscr->requests);
218 subscr_send_paging_request(subscr);
219 } else {
220 /* this will be picked up later, from subscr_put_channel */
221 llist_add_tail(&request->entry, &subscr->requests);
222 }
223}
224
Holger Hans Peter Freyther000571f2010-12-27 22:43:28 +0100225void subscr_put_channel(struct gsm_subscriber *subscr)
Sylvain Munaut34619752010-12-01 21:07:29 +0100226{
227 /*
228 * FIXME: Continue with other requests now... by checking
229 * the gsm_subscriber inside the gsm_lchan. Drop the ref count
230 * of the lchan after having asked the next requestee to handle
231 * the channel.
232 */
233 /*
234 * FIXME: is the lchan is of a different type we could still
235 * issue an immediate assignment for another channel and then
236 * close this one.
237 */
238 /*
239 * Currently we will drop the last ref of the lchan which
240 * will result in a channel release on RSL and we will start
241 * the paging. This should work most of the time as the MS
242 * will listen to the paging requests before we timeout
243 */
244
Holger Hans Peter Freyther000571f2010-12-27 22:43:28 +0100245 if (subscr && !llist_empty(&subscr->requests))
246 subscr_send_paging_request(subscr);
Sylvain Munaut34619752010-12-01 21:07:29 +0100247}
248
249
Harald Welte75350412009-07-23 18:46:00 +0200250struct gsm_subscriber *subscr_get_by_tmsi(struct gsm_network *net,
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200251 u_int32_t tmsi)
Harald Welte59b04682009-06-10 05:40:52 +0800252{
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200253 char tmsi_string[14];
Harald Welte59b04682009-06-10 05:40:52 +0800254 struct gsm_subscriber *subscr;
255
256 /* we might have a record in memory already */
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +0200257 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200258 if (tmsi == subscr->tmsi)
Harald Welte59b04682009-06-10 05:40:52 +0800259 return subscr_get(subscr);
260 }
261
Holger Hans Peter Freythercd8bacf2009-08-19 12:53:57 +0200262 sprintf(tmsi_string, "%u", tmsi);
263 return db_get_subscriber(net, GSM_SUBSCRIBER_TMSI, tmsi_string);
Harald Welte59b04682009-06-10 05:40:52 +0800264}
265
Harald Welte75350412009-07-23 18:46:00 +0200266struct gsm_subscriber *subscr_get_by_imsi(struct gsm_network *net,
267 const char *imsi)
Harald Welte59b04682009-06-10 05:40:52 +0800268{
269 struct gsm_subscriber *subscr;
270
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +0200271 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte59b04682009-06-10 05:40:52 +0800272 if (strcmp(subscr->imsi, imsi) == 0)
273 return subscr_get(subscr);
274 }
275
Harald Welte75350412009-07-23 18:46:00 +0200276 return db_get_subscriber(net, GSM_SUBSCRIBER_IMSI, imsi);
Harald Welte59b04682009-06-10 05:40:52 +0800277}
278
Harald Welte75350412009-07-23 18:46:00 +0200279struct gsm_subscriber *subscr_get_by_extension(struct gsm_network *net,
280 const char *ext)
Harald Welte59b04682009-06-10 05:40:52 +0800281{
282 struct gsm_subscriber *subscr;
283
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +0200284 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte59b04682009-06-10 05:40:52 +0800285 if (strcmp(subscr->extension, ext) == 0)
286 return subscr_get(subscr);
287 }
288
Harald Welte75350412009-07-23 18:46:00 +0200289 return db_get_subscriber(net, GSM_SUBSCRIBER_EXTENSION, ext);
Harald Welte59b04682009-06-10 05:40:52 +0800290}
291
Harald Welte68b7df22009-08-08 16:03:15 +0200292struct gsm_subscriber *subscr_get_by_id(struct gsm_network *net,
293 unsigned long long id)
294{
295 struct gsm_subscriber *subscr;
296 char buf[32];
297 sprintf(buf, "%llu", id);
298
Holger Hans Peter Freyther9a23af62009-06-12 07:08:13 +0200299 llist_for_each_entry(subscr, subscr_bsc_active_subscriber(), entry) {
Harald Welte68b7df22009-08-08 16:03:15 +0200300 if (subscr->id == id)
301 return subscr_get(subscr);
302 }
303
304 return db_get_subscriber(net, GSM_SUBSCRIBER_ID, buf);
305}
306
307
Harald Welte59b04682009-06-10 05:40:52 +0800308int subscr_update(struct gsm_subscriber *s, struct gsm_bts *bts, int reason)
309{
Holger Hans Peter Freyther52a63752010-12-25 19:40:14 +0100310 int rc;
311
Harald Welte59b04682009-06-10 05:40:52 +0800312 /* FIXME: Migrate pending requests from one BSC to another */
313 switch (reason) {
314 case GSM_SUBSCRIBER_UPDATE_ATTACHED:
Harald Weltec2189a62009-07-23 18:56:43 +0200315 s->net = bts->network;
Harald Welte59b04682009-06-10 05:40:52 +0800316 /* Indicate "attached to LAC" */
317 s->lac = bts->location_area_code;
Harald Weltef00c2ac2009-12-24 13:48:14 +0100318 LOGP(DMM, LOGL_INFO, "Subscriber %s ATTACHED LAC=%u\n",
Harald Welte0747c6a2009-12-24 14:50:24 +0100319 subscr_name(s), s->lac);
Holger Hans Peter Freyther52a63752010-12-25 19:40:14 +0100320 rc = db_sync_subscriber(s);
321 db_subscriber_update(s);
Harald Welteb7799832009-07-29 23:14:15 +0200322 dispatch_signal(SS_SUBSCR, S_SUBSCR_ATTACHED, s);
Harald Welte59b04682009-06-10 05:40:52 +0800323 break;
324 case GSM_SUBSCRIBER_UPDATE_DETACHED:
325 /* Only detach if we are currently in this area */
326 if (bts->location_area_code == s->lac)
Holger Hans Peter Freyther6c6ab862009-10-01 04:07:15 +0200327 s->lac = GSM_LAC_RESERVED_DETACHED;
Harald Welte0747c6a2009-12-24 14:50:24 +0100328 LOGP(DMM, LOGL_INFO, "Subscriber %s DETACHED\n", subscr_name(s));
Holger Hans Peter Freyther52a63752010-12-25 19:40:14 +0100329 rc = db_sync_subscriber(s);
330 db_subscriber_update(s);
Harald Welteb7799832009-07-29 23:14:15 +0200331 dispatch_signal(SS_SUBSCR, S_SUBSCR_DETACHED, s);
Harald Welte59b04682009-06-10 05:40:52 +0800332 break;
333 default:
334 fprintf(stderr, "subscr_update with unknown reason: %d\n",
335 reason);
Holger Hans Peter Freyther52a63752010-12-25 19:40:14 +0100336 rc = db_sync_subscriber(s);
337 db_subscriber_update(s);
Harald Welte59b04682009-06-10 05:40:52 +0800338 break;
339 };
Holger Hans Peter Freyther52a63752010-12-25 19:40:14 +0100340
341 return rc;
Harald Welte59b04682009-06-10 05:40:52 +0800342}
343
Holger Hans Peter Freyther0c29e5f2010-12-22 18:12:11 +0100344void subscr_update_from_db(struct gsm_subscriber *sub)
345{
346 db_subscriber_update(sub);
347}
Holger Hans Peter Freyther5b72b302010-12-28 22:12:30 +0100348
349int subscr_pending_requests(struct gsm_subscriber *sub)
350{
351 struct subscr_request *req;
352 int pending = 0;
353
354 llist_for_each_entry(req, &sub->requests, entry)
355 pending += 1;
356
357 return pending;
358}
Holger Hans Peter Freytherce69aec2010-12-28 22:21:55 +0100359
360int subscr_pending_clear(struct gsm_subscriber *sub)
361{
362 int deleted = 0;
363 struct subscr_request *req, *tmp;
364
365 llist_for_each_entry_safe(req, tmp, &sub->requests, entry) {
366 subscr_put(req->subscr);
367 llist_del(&req->entry);
368 talloc_free(req);
369 deleted += 1;
370 }
371
372 return deleted;
373}