blob: e9b2e0e5d560e1f076618d75aa4352799fb64871 [file] [log] [blame]
Holger Hans Peter Freyther857e5e62009-06-12 07:08:13 +02001/* The concept of a subscriber for the MSC, roughly HLR/VLR functionality */
Harald Welte52b1f982008-12-23 20:25:15 +00002
3/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +02004 * (C) 2009,2013 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte8470bf22008-12-25 23:28:35 +00005 *
Harald Welte52b1f982008-12-23 20:25:15 +00006 * 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
Harald Welte52b1f982008-12-23 20:25:15 +000011 * (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.
Harald Welte52b1f982008-12-23 20:25:15 +000017 *
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/>.
Harald Welte52b1f982008-12-23 20:25:15 +000020 *
21 */
22
Harald Welte75a983f2008-12-27 21:34:06 +000023#include <unistd.h>
24#include <stdlib.h>
25#include <stdio.h>
26#include <string.h>
Holger Freyther85a7b362009-04-18 13:48:55 +020027#include <assert.h>
Jan Luebbebfbdeec2012-12-27 00:27:16 +010028#include <time.h>
Maxe6052c42016-06-30 10:25:49 +020029#include <stdbool.h>
Harald Welte52b1f982008-12-23 20:25:15 +000030
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010031#include <osmocom/core/talloc.h>
Sylvain Munaut1e245502010-12-01 21:07:29 +010032
Holger Hans Peter Freyther763b42a2010-12-29 11:07:22 +010033#include <osmocom/vty/vty.h>
34
Harald Welte8470bf22008-12-25 23:28:35 +000035#include <openbsc/gsm_subscriber.h>
Sylvain Munaut5a86e062010-12-01 22:38:03 +010036#include <openbsc/gsm_04_08.h>
Holger Freyther3e0ef7c2009-06-02 02:54:48 +000037#include <openbsc/debug.h>
Sylvain Munaut1e245502010-12-01 21:07:29 +010038#include <openbsc/paging.h>
Harald Welteea5cf302009-07-29 23:14:15 +020039#include <openbsc/signal.h>
Harald Welte75a983f2008-12-27 21:34:06 +000040#include <openbsc/db.h>
Holger Hans Peter Freythere7bd8632013-06-30 15:30:47 +020041#include <openbsc/chan_alloc.h>
Harald Welte7b423ed2016-06-19 18:06:02 +020042#include <openbsc/vlr.h>
Harald Welte52b1f982008-12-23 20:25:15 +000043
Sylvain Munaut1e245502010-12-01 21:07:29 +010044void *tall_sub_req_ctx;
45
Sylvain Munaut5a86e062010-12-01 22:38:03 +010046int gsm48_secure_channel(struct gsm_subscriber_connection *conn, int key_seq,
47 gsm_cbfn *cb, void *cb_data);
48
Sylvain Munaut1e245502010-12-01 21:07:29 +010049
50/*
51 * Struct for pending channel requests. This is managed in the
52 * llist_head requests of each subscriber. The reference counting
53 * should work in such a way that a subscriber with a pending request
54 * remains in memory.
55 */
56struct subscr_request {
57 struct llist_head entry;
58
Sylvain Munaut1e245502010-12-01 21:07:29 +010059 /* the callback data */
60 gsm_cbfn *cbfn;
61 void *param;
62};
63
Harald Welte7b423ed2016-06-19 18:06:02 +020064static struct bsc_subscr *vlr_subscr_to_bsc_sub(struct llist_head *bsc_subscribers,
65 struct vlr_subscr *vsub)
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +020066{
Harald Welte7b423ed2016-06-19 18:06:02 +020067 struct bsc_subscr *sub;
68 /* TODO MSC split -- creating a BSC subscriber directly from MSC data
69 * structures in RAM. At some point the MSC will send a message to the
70 * BSC instead. */
71 sub = bsc_subscr_find_or_create_by_imsi(bsc_subscribers, vsub->imsi);
72 sub->tmsi = vsub->tmsi;
73 sub->lac = vsub->lac;
74 return sub;
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +020075}
76
Sylvain Munaut1e245502010-12-01 21:07:29 +010077/*
78 * We got the channel assigned and can now hand this channel
79 * over to one of our callbacks.
80 */
Harald Welte7b423ed2016-06-19 18:06:02 +020081int subscr_paging_dispatch(unsigned int hooknum, unsigned int event,
82 struct msgb *msg, void *data, void *param)
Sylvain Munaut1e245502010-12-01 21:07:29 +010083{
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020084 struct subscr_request *request, *tmp;
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +010085 struct gsm_subscriber_connection *conn = data;
Harald Welte7b423ed2016-06-19 18:06:02 +020086 struct vlr_subscr *vsub = param;
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +010087 struct paging_signal_data sig_data;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010088 struct bsc_subscr *bsub;
89 struct gsm_network *net;
Sylvain Munaut1e245502010-12-01 21:07:29 +010090
Harald Welte7b423ed2016-06-19 18:06:02 +020091 OSMO_ASSERT(vsub && vsub->cs.is_paging);
92 net = vsub->vlr->user_ctx;
Sylvain Munaut1e245502010-12-01 21:07:29 +010093
Holger Hans Peter Freyther778c7d12015-08-03 11:18:23 +020094 /*
95 * Stop paging on all other BTS. E.g. if this is
96 * the first timeout on a BTS then the others will
97 * timeout soon as well. Let's just stop everything
98 * and forget we wanted to page.
99 */
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100100
Harald Welte7b423ed2016-06-19 18:06:02 +0200101 bsub = vlr_subscr_to_bsc_sub(conn->network->bsc_subscribers, vsub);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100102 paging_request_stop(&net->bts_list, NULL, bsub, NULL, NULL);
103 bsc_subscr_put(bsub);
Holger Hans Peter Freyther778c7d12015-08-03 11:18:23 +0200104
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200105 /* Inform parts of the system we don't know */
Harald Welte7b423ed2016-06-19 18:06:02 +0200106 sig_data.vsub = vsub;
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +0100107 sig_data.bts = conn ? conn->bts : NULL;
108 sig_data.conn = conn;
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +0100109 sig_data.paging_result = event;
Pablo Neira Ayusobbc5b992011-05-06 12:12:31 +0200110 osmo_signal_dispatch(
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +0100111 SS_PAGING,
112 event == GSM_PAGING_SUCCEEDED ?
113 S_PAGING_SUCCEEDED : S_PAGING_EXPIRED,
114 &sig_data
115 );
116
Harald Welte7b423ed2016-06-19 18:06:02 +0200117 llist_for_each_entry_safe(request, tmp, &vsub->cs.requests, entry) {
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200118 llist_del(&request->entry);
119 request->cbfn(hooknum, event, msg, data, request->param);
120 talloc_free(request);
Holger Hans Peter Freytherffccb772010-12-28 17:47:43 +0100121 }
Holger Hans Peter Freytherf72b3d52010-12-28 17:27:05 +0100122
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200123 /* balanced with the moment we start paging */
Harald Welte7b423ed2016-06-19 18:06:02 +0200124 vsub->cs.is_paging = false;
125 vlr_subscr_put(vsub);
Sylvain Munaut1e245502010-12-01 21:07:29 +0100126 return 0;
127}
128
Harald Welte7b423ed2016-06-19 18:06:02 +0200129struct subscr_request *subscr_request_channel(struct vlr_subscr *vsub,
130 int channel_type,
131 gsm_cbfn *cbfn, void *param)
Sylvain Munaut1e245502010-12-01 21:07:29 +0100132{
Sylvain Munaut1e245502010-12-01 21:07:29 +0100133 int rc;
Sylvain Munaut1e245502010-12-01 21:07:29 +0100134 struct subscr_request *request;
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100135 struct bsc_subscr *bsub;
Harald Welte7b423ed2016-06-19 18:06:02 +0200136 struct gsm_network *net = vsub->vlr->user_ctx;
Sylvain Munaut1e245502010-12-01 21:07:29 +0100137
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200138 /* Start paging.. we know it is async so we can do it before */
Harald Welte7b423ed2016-06-19 18:06:02 +0200139 if (!vsub->cs.is_paging) {
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200140 LOGP(DMM, LOGL_DEBUG, "Subscriber %s not paged yet.\n",
Harald Welte7b423ed2016-06-19 18:06:02 +0200141 vlr_subscr_name(vsub));
142 bsub = vlr_subscr_to_bsc_sub(net->bsc_subscribers, vsub);
143 rc = paging_request(net, bsub, channel_type, NULL, NULL);
Neels Hofmeyr6d804b12017-02-18 22:20:46 +0100144 bsc_subscr_put(bsub);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200145 if (rc <= 0) {
146 LOGP(DMM, LOGL_ERROR, "Subscriber %s paging failed: %d\n",
Harald Welte7b423ed2016-06-19 18:06:02 +0200147 vlr_subscr_name(vsub), rc);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200148 return NULL;
149 }
150 /* reduced on the first paging callback */
Harald Welte7b423ed2016-06-19 18:06:02 +0200151 vlr_subscr_get(vsub);
152 vsub->cs.is_paging = true;
Sylvain Munaut1e245502010-12-01 21:07:29 +0100153 }
154
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200155 /* TODO: Stop paging in case of memory allocation failure */
Harald Welte7b423ed2016-06-19 18:06:02 +0200156 request = talloc_zero(vsub, struct subscr_request);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200157 if (!request)
158 return NULL;
159
Sylvain Munaut1e245502010-12-01 21:07:29 +0100160 request->cbfn = cbfn;
161 request->param = param;
Harald Welte7b423ed2016-06-19 18:06:02 +0200162 llist_add_tail(&request->entry, &vsub->cs.requests);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200163 return request;
Sylvain Munaut1e245502010-12-01 21:07:29 +0100164}
165
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200166void subscr_remove_request(struct subscr_request *request)
Sylvain Munaut1e245502010-12-01 21:07:29 +0100167{
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200168 llist_del(&request->entry);
169 talloc_free(request);
Sylvain Munaut1e245502010-12-01 21:07:29 +0100170}
171
Harald Welte7b423ed2016-06-19 18:06:02 +0200172struct gsm_subscriber_connection *connection_for_subscr(struct vlr_subscr *vsub)
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +0200173{
Harald Welte7b423ed2016-06-19 18:06:02 +0200174 struct gsm_network *net = vsub->vlr->user_ctx;
Neels Hofmeyr1a606442016-05-10 13:56:43 +0200175 struct gsm_subscriber_connection *conn;
176
177 llist_for_each_entry(conn, &net->subscr_conns, entry) {
Harald Welte7b423ed2016-06-19 18:06:02 +0200178 if (conn->vsub == vsub)
Neels Hofmeyr1a606442016-05-10 13:56:43 +0200179 return conn;
180 }
181
182 return NULL;
183}