blob: ac6c96a885f4781f3069f953e229ab04240e9be0 [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>
Neels Hofmeyra1756f32016-05-20 21:59:55 +020043#include <openbsc/iu.h>
44#include <openbsc/osmo_msc.h>
45#include <openbsc/msc_ifaces.h>
Harald Welte52b1f982008-12-23 20:25:15 +000046
Harald Welte7b423ed2016-06-19 18:06:02 +020047int subscr_paging_dispatch(unsigned int hooknum, unsigned int event,
48 struct msgb *msg, void *data, void *param)
Sylvain Munaut1e245502010-12-01 21:07:29 +010049{
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020050 struct subscr_request *request, *tmp;
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +010051 struct gsm_subscriber_connection *conn = data;
Harald Welte7b423ed2016-06-19 18:06:02 +020052 struct vlr_subscr *vsub = param;
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +010053 struct paging_signal_data sig_data;
Sylvain Munaut1e245502010-12-01 21:07:29 +010054
Neels Hofmeyra1756f32016-05-20 21:59:55 +020055 OSMO_ASSERT(vsub);
56 OSMO_ASSERT(hooknum == GSM_HOOK_RR_PAGING);
57 OSMO_ASSERT(!(conn && (conn->vsub != vsub)));
58 OSMO_ASSERT(!((event == GSM_PAGING_SUCCEEDED) && !conn));
Sylvain Munaut1e245502010-12-01 21:07:29 +010059
Neels Hofmeyra1756f32016-05-20 21:59:55 +020060 LOGP(DPAG, LOGL_DEBUG, "Paging %s for %s (event=%d)\n",
61 event == GSM_PAGING_SUCCEEDED ? "success" : "failure",
62 vlr_subscr_name(vsub), event);
63
64 if (!vsub->cs.is_paging) {
65 LOGP(DPAG, LOGL_ERROR,
66 "Paging Response received for subscriber"
67 " that is not paging.\n");
68 return -EINVAL;
69 }
70
71 if (event == GSM_PAGING_SUCCEEDED)
72 msc_stop_paging(vsub);
Holger Hans Peter Freyther778c7d12015-08-03 11:18:23 +020073
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020074 /* Inform parts of the system we don't know */
Neels Hofmeyra1756f32016-05-20 21:59:55 +020075 sig_data.vsub = vsub;
76 sig_data.conn = conn;
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +010077 sig_data.paging_result = event;
Neels Hofmeyra1756f32016-05-20 21:59:55 +020078 osmo_signal_dispatch(SS_PAGING,
79 event == GSM_PAGING_SUCCEEDED ?
80 S_PAGING_SUCCEEDED : S_PAGING_EXPIRED,
81 &sig_data);
Sylvain Munaut8a31a3f2010-12-01 23:04:03 +010082
Harald Welte7b423ed2016-06-19 18:06:02 +020083 llist_for_each_entry_safe(request, tmp, &vsub->cs.requests, entry) {
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020084 llist_del(&request->entry);
Neels Hofmeyra1756f32016-05-20 21:59:55 +020085 if (request->cbfn) {
86 LOGP(DPAG, LOGL_DEBUG, "Calling paging cbfn.\n");
87 request->cbfn(hooknum, event, msg, data, request->param);
88 } else
89 LOGP(DPAG, LOGL_DEBUG, "Paging without action.\n");
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020090 talloc_free(request);
Holger Hans Peter Freytherffccb772010-12-28 17:47:43 +010091 }
Holger Hans Peter Freytherf72b3d52010-12-28 17:27:05 +010092
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +020093 /* balanced with the moment we start paging */
Harald Welte7b423ed2016-06-19 18:06:02 +020094 vsub->cs.is_paging = false;
95 vlr_subscr_put(vsub);
Sylvain Munaut1e245502010-12-01 21:07:29 +010096 return 0;
97}
98
Neels Hofmeyra1756f32016-05-20 21:59:55 +020099int msc_paging_request(struct vlr_subscr *vsub)
100{
101 /* The subscriber was last seen in subscr->lac. Find out which
102 * BSCs/RNCs are responsible and send them a paging request via open
103 * SCCP connections (if any). */
104 /* TODO Implementing only RNC paging, since this is code on the iu branch.
105 * Need to add BSC paging at some point. */
106 switch (vsub->cs.attached_via_ran) {
107 case RAN_GERAN_A:
108 return a_page(vsub->imsi, vsub->tmsi, vsub->lac);
109 case RAN_UTRAN_IU:
110 return iu_page_cs(vsub->imsi,
111 vsub->tmsi == GSM_RESERVED_TMSI?
112 NULL : &vsub->tmsi,
113 vsub->lac);
114 default:
115 break;
116 }
117
118 LOGP(DPAG, LOGL_ERROR, "%s: Cannot page, subscriber not attached\n",
119 vlr_subscr_name(vsub));
120 return -EINVAL;
121}
122
123/*! \brief Start a paging request for vsub, call cbfn(param) when done.
124 * \param vsub subscriber to page.
125 * \param cbfn function to call when the conn is established.
126 * \param param caller defined param to pass to cbfn().
127 * \param label human readable label of the request kind used for logging.
128 */
129struct subscr_request *subscr_request_conn(struct vlr_subscr *vsub,
130 gsm_cbfn *cbfn, void *param,
131 const char *label)
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;
135
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200136 /* Start paging.. we know it is async so we can do it before */
Harald Welte7b423ed2016-06-19 18:06:02 +0200137 if (!vsub->cs.is_paging) {
Neels Hofmeyra1756f32016-05-20 21:59:55 +0200138 LOGP(DMM, LOGL_DEBUG, "Subscriber %s not paged yet, start paging.\n",
Harald Welte7b423ed2016-06-19 18:06:02 +0200139 vlr_subscr_name(vsub));
Neels Hofmeyra1756f32016-05-20 21:59:55 +0200140 rc = msc_paging_request(vsub);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200141 if (rc <= 0) {
142 LOGP(DMM, LOGL_ERROR, "Subscriber %s paging failed: %d\n",
Harald Welte7b423ed2016-06-19 18:06:02 +0200143 vlr_subscr_name(vsub), rc);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200144 return NULL;
145 }
146 /* reduced on the first paging callback */
Harald Welte7b423ed2016-06-19 18:06:02 +0200147 vlr_subscr_get(vsub);
148 vsub->cs.is_paging = true;
Neels Hofmeyra1756f32016-05-20 21:59:55 +0200149 } else {
150 LOGP(DMM, LOGL_DEBUG, "Subscriber %s already paged.\n",
151 vlr_subscr_name(vsub));
Sylvain Munaut1e245502010-12-01 21:07:29 +0100152 }
153
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200154 /* TODO: Stop paging in case of memory allocation failure */
Harald Welte7b423ed2016-06-19 18:06:02 +0200155 request = talloc_zero(vsub, struct subscr_request);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200156 if (!request)
157 return NULL;
158
Sylvain Munaut1e245502010-12-01 21:07:29 +0100159 request->cbfn = cbfn;
160 request->param = param;
Harald Welte7b423ed2016-06-19 18:06:02 +0200161 llist_add_tail(&request->entry, &vsub->cs.requests);
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200162 return request;
Sylvain Munaut1e245502010-12-01 21:07:29 +0100163}
164
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200165void subscr_remove_request(struct subscr_request *request)
Sylvain Munaut1e245502010-12-01 21:07:29 +0100166{
Holger Hans Peter Freytherd6d7aff2015-04-06 12:03:45 +0200167 llist_del(&request->entry);
168 talloc_free(request);
Sylvain Munaut1e245502010-12-01 21:07:29 +0100169}
170
Harald Welte7b423ed2016-06-19 18:06:02 +0200171struct gsm_subscriber_connection *connection_for_subscr(struct vlr_subscr *vsub)
Holger Hans Peter Freyther7634ec12013-10-04 08:35:11 +0200172{
Harald Welte7b423ed2016-06-19 18:06:02 +0200173 struct gsm_network *net = vsub->vlr->user_ctx;
Neels Hofmeyr1a606442016-05-10 13:56:43 +0200174 struct gsm_subscriber_connection *conn;
175
176 llist_for_each_entry(conn, &net->subscr_conns, entry) {
Harald Welte7b423ed2016-06-19 18:06:02 +0200177 if (conn->vsub == vsub)
Neels Hofmeyr1a606442016-05-10 13:56:43 +0200178 return conn;
179 }
180
181 return NULL;
182}