blob: 65025457501ff648d5b2bcee3e1e19de8a194eb1 [file] [log] [blame]
Jonathan Santos03fd8d02011-05-25 13:54:02 -04001/* Paging helper and manager.... */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * 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
8 * (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
13 * GNU Affero General Public License for more details.
14 *
15 * 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/>.
17 *
18 */
19
20/*
21 * Relevant specs:
22 * 12.21:
23 * - 9.4.12 for CCCH Local Threshold
24 *
25 * 05.58:
26 * - 8.5.2 CCCH Load indication
27 * - 9.3.15 Paging Load
28 *
29 * Approach:
30 * - Send paging command to subscriber
31 * - On Channel Request we will remember the reason
32 * - After the ACK we will request the identity
33 * - Then we will send assign the gsm_subscriber and
34 * - and call a callback
35 */
36
37#include <stdio.h>
38#include <stdlib.h>
39#include <assert.h>
40
41#include <openbsc/paging.h>
42#include <osmocore/talloc.h>
43#include <openbsc/debug.h>
44#include <openbsc/signal.h>
45#include <openbsc/abis_rsl.h>
46#include <openbsc/gsm_data.h>
47#include <openbsc/chan_alloc.h>
48#include <openbsc/bsc_api.h>
49
50void *tall_paging_ctx;
51
52#define PAGING_TIMER 0, 500000
53
54static unsigned int calculate_group(struct gsm_bts *bts, struct gsm_subscriber *subscr)
55{
56 int ccch_conf;
57 int bs_cc_chans;
58 int blocks;
59 unsigned int group;
60
61 ccch_conf = bts->si_common.chan_desc.ccch_conf;
62 bs_cc_chans = rsl_ccch_conf_to_bs_cc_chans(ccch_conf);
63 /* code word + 2, as 2 channels equals 0x0 */
64 blocks = rsl_number_of_paging_subchannels(bts);
65 group = get_paging_group(str_to_imsi(subscr->imsi),
66 bs_cc_chans, blocks);
67 return group;
68}
69
70/*
71 * Kill one paging request update the internal list...
72 */
73static void paging_remove_request(struct gsm_bts_paging_state *paging_bts,
74 struct gsm_paging_request *to_be_deleted)
75{
76 bsc_del_timer(&to_be_deleted->T3113);
77 llist_del(&to_be_deleted->entry);
78 subscr_put(to_be_deleted->subscr);
79 talloc_free(to_be_deleted);
80}
81
82static void page_ms(struct gsm_paging_request *request)
83{
84 u_int8_t mi[128];
85 unsigned int mi_len;
86 unsigned int page_group;
87
88 LOGP(DPAG, LOGL_INFO, "Going to send paging commands: imsi: '%s' tmsi: '0x%x'\n",
89 request->subscr->imsi, request->subscr->tmsi);
90
91 if (request->subscr->tmsi == GSM_RESERVED_TMSI)
92 mi_len = gsm48_generate_mid_from_imsi(mi, request->subscr->imsi);
93 else
94 mi_len = gsm48_generate_mid_from_tmsi(mi, request->subscr->tmsi);
95
96 page_group = calculate_group(request->bts, request->subscr);
97 gsm0808_page(request->bts, page_group, mi_len, mi, request->chan_type);
98}
99
100static void paging_schedule_if_needed(struct gsm_bts_paging_state *paging_bts)
101{
102 if (llist_empty(&paging_bts->pending_requests))
103 return;
104
105 if (!bsc_timer_pending(&paging_bts->work_timer))
106 bsc_schedule_timer(&paging_bts->work_timer, PAGING_TIMER);
107}
108
109
110static void paging_handle_pending_requests(struct gsm_bts_paging_state *paging_bts);
111static void paging_give_credit(void *data)
112{
113 struct gsm_bts_paging_state *paging_bts = data;
114
115 LOGP(DPAG, LOGL_NOTICE, "No slots available on bts nr %d\n", paging_bts->bts->nr);
116 paging_bts->available_slots = 20;
117 paging_handle_pending_requests(paging_bts);
118}
119
120static int can_send_pag_req(struct gsm_bts *bts, int rsl_type)
121{
122 struct pchan_load pl;
123 int count;
124
125 memset(&pl, 0, sizeof(pl));
126 bts_chan_load(&pl, bts);
127
128 switch (rsl_type) {
129 case RSL_CHANNEED_TCH_F:
130 case RSL_CHANNEED_TCH_ForH:
131 goto count_tch;
132 break;
133 case RSL_CHANNEED_SDCCH:
134 goto count_sdcch;
135 break;
136 case RSL_CHANNEED_ANY:
137 default:
138 if (bts->network->pag_any_tch)
139 goto count_tch;
140 else
141 goto count_sdcch;
142 break;
143 }
144
145 return 0;
146
147 /* could available SDCCH */
148count_sdcch:
149 count = 0;
150 count += pl.pchan[GSM_PCHAN_SDCCH8_SACCH8C].total
151 - pl.pchan[GSM_PCHAN_SDCCH8_SACCH8C].used;
152 count += pl.pchan[GSM_PCHAN_CCCH_SDCCH4].total
153 - pl.pchan[GSM_PCHAN_CCCH_SDCCH4].used;
154 return bts->paging.free_chans_need > count;
155
156count_tch:
157 count = 0;
158 count += pl.pchan[GSM_PCHAN_TCH_F].total
159 - pl.pchan[GSM_PCHAN_TCH_F].used;
160 if (bts->network->neci)
161 count += pl.pchan[GSM_PCHAN_TCH_H].total
162 - pl.pchan[GSM_PCHAN_TCH_H].used;
163 return bts->paging.free_chans_need > count;
164}
165
166/*
167 * This is kicked by the periodic PAGING LOAD Indicator
168 * coming from abis_rsl.c
169 *
170 * We attempt to iterate once over the list of items but
171 * only upto available_slots.
172 */
173static void paging_handle_pending_requests(struct gsm_bts_paging_state *paging_bts)
174{
175 struct gsm_paging_request *request = NULL;
176
177 /*
178 * Determine if the pending_requests list is empty and
179 * return then.
180 */
181 if (llist_empty(&paging_bts->pending_requests)) {
182 /* since the list is empty, no need to reschedule the timer */
183 return;
184 }
185
186 /*
187 * In case the BTS does not provide us with load indication and we
188 * ran out of slots, call an autofill routine. It might be that the
189 * BTS did not like our paging messages and then we have counted down
190 * to zero and we do not get any messages.
191 */
192 if (paging_bts->available_slots == 0) {
193 paging_bts->credit_timer.cb = paging_give_credit;
194 paging_bts->credit_timer.data = paging_bts;
195 bsc_schedule_timer(&paging_bts->credit_timer, 5, 0);
196 return;
197 }
198
199 request = llist_entry(paging_bts->pending_requests.next,
200 struct gsm_paging_request, entry);
201
202 /* we need to determine the number of free channels */
203 if (paging_bts->free_chans_need != -1) {
204 if (can_send_pag_req(request->bts, request->chan_type) != 0)
205 goto skip_paging;
206 }
207
208 /* handle the paging request now */
209 page_ms(request);
210 paging_bts->available_slots--;
211 request->attempts++;
212
213 /* take the current and add it to the back */
214 llist_del(&request->entry);
215 llist_add_tail(&request->entry, &paging_bts->pending_requests);
216
217skip_paging:
218 bsc_schedule_timer(&paging_bts->work_timer, PAGING_TIMER);
219}
220
221static void paging_worker(void *data)
222{
223 struct gsm_bts_paging_state *paging_bts = data;
224
225 paging_handle_pending_requests(paging_bts);
226}
227
228void paging_init(struct gsm_bts *bts)
229{
230 bts->paging.bts = bts;
231 INIT_LLIST_HEAD(&bts->paging.pending_requests);
232 bts->paging.work_timer.cb = paging_worker;
233 bts->paging.work_timer.data = &bts->paging;
234
235 /* Large number, until we get a proper message */
236 bts->paging.available_slots = 20;
237}
238
239static int paging_pending_request(struct gsm_bts_paging_state *bts,
240 struct gsm_subscriber *subscr) {
241 struct gsm_paging_request *req;
242
243 llist_for_each_entry(req, &bts->pending_requests, entry) {
244 if (subscr == req->subscr)
245 return 1;
246 }
247
248 return 0;
249}
250
251static void paging_T3113_expired(void *data)
252{
253 struct gsm_paging_request *req = (struct gsm_paging_request *)data;
254 void *cbfn_param;
255 gsm_cbfn *cbfn;
256 int msg;
257
258 LOGP(DPAG, LOGL_INFO, "T3113 expired for request %p (%s)\n",
259 req, req->subscr->imsi);
260
261 /* must be destroyed before calling cbfn, to prevent double free */
262 counter_inc(req->bts->network->stats.paging.expired);
263 cbfn_param = req->cbfn_param;
264 cbfn = req->cbfn;
265
266 /* did we ever manage to page the subscriber */
267 msg = req->attempts > 0 ? GSM_PAGING_EXPIRED : GSM_PAGING_BUSY;
268
269 /* destroy it now. Do not access req afterwards */
270 paging_remove_request(&req->bts->paging, req);
271
272 if (cbfn)
273 cbfn(GSM_HOOK_RR_PAGING, msg, NULL, NULL,
274 cbfn_param);
275}
276
277static int _paging_request(struct gsm_bts *bts, struct gsm_subscriber *subscr,
278 int type, gsm_cbfn *cbfn, void *data)
279{
280 struct gsm_bts_paging_state *bts_entry = &bts->paging;
281 struct gsm_paging_request *req;
282
283 if (paging_pending_request(bts_entry, subscr)) {
284 LOGP(DPAG, LOGL_INFO, "Paging request already pending for %s\n", subscr->imsi);
285 return -EEXIST;
286 }
287
288 LOGP(DPAG, LOGL_DEBUG, "Start paging of subscriber %llu on bts %d.\n",
289 subscr->id, bts->nr);
290 req = talloc_zero(tall_paging_ctx, struct gsm_paging_request);
291 req->subscr = subscr_get(subscr);
292 req->bts = bts;
293 req->chan_type = type;
294 req->cbfn = cbfn;
295 req->cbfn_param = data;
296 req->T3113.cb = paging_T3113_expired;
297 req->T3113.data = req;
298 bsc_schedule_timer(&req->T3113, bts->network->T3113, 0);
299 llist_add_tail(&req->entry, &bts_entry->pending_requests);
300 paging_schedule_if_needed(bts_entry);
301
302 return 0;
303}
304
305int paging_request(struct gsm_network *network, struct gsm_subscriber *subscr,
306 int type, gsm_cbfn *cbfn, void *data)
307{
308 struct gsm_bts *bts = NULL;
309 int num_pages = 0;
310
311 counter_inc(network->stats.paging.attempted);
312
313 /* start paging subscriber on all BTS within Location Area */
314 do {
315 int rc;
316
317 bts = gsm_bts_by_lac(network, subscr->lac, bts);
318 if (!bts)
319 break;
320
321 /* skip all currently inactive TRX */
322 if (!trx_is_usable(bts->c0))
323 continue;
324
325 num_pages++;
326
327 /* Trigger paging, pass any error to caller */
328 rc = _paging_request(bts, subscr, type, cbfn, data);
329 if (rc < 0)
330 return rc;
331 } while (1);
332
333 if (num_pages == 0)
334 counter_inc(network->stats.paging.detached);
335
336 return num_pages;
337}
338
339
340/* we consciously ignore the type of the request here */
341static void _paging_request_stop(struct gsm_bts *bts, struct gsm_subscriber *subscr,
342 struct gsm_subscriber_connection *conn,
343 struct msgb *msg)
344{
345 struct gsm_bts_paging_state *bts_entry = &bts->paging;
346 struct gsm_paging_request *req, *req2;
347
348 llist_for_each_entry_safe(req, req2, &bts_entry->pending_requests,
349 entry) {
350 if (req->subscr == subscr) {
351 if (conn && req->cbfn) {
352 LOGP(DPAG, LOGL_DEBUG, "Stop paging on bts %d, calling cbfn.\n", bts->nr);
353 req->cbfn(GSM_HOOK_RR_PAGING, GSM_PAGING_SUCCEEDED,
354 msg, conn, req->cbfn_param);
355 } else
356 LOGP(DPAG, LOGL_DEBUG, "Stop paging on bts %d silently.\n", bts->nr);
357 paging_remove_request(&bts->paging, req);
358 break;
359 }
360 }
361}
362
363/* Stop paging on all other bts' */
364void paging_request_stop(struct gsm_bts *_bts, struct gsm_subscriber *subscr,
365 struct gsm_subscriber_connection *conn,
366 struct msgb *msg)
367{
368 struct gsm_bts *bts = NULL;
369
370 if (_bts)
371 _paging_request_stop(_bts, subscr, conn, msg);
372
373 do {
374 /*
375 * FIXME: Don't use the lac of the subscriber...
376 * as it might have magically changed the lac.. use the
377 * location area of the _bts as reconfiguration of the
378 * network is probably happening less often.
379 */
380 bts = gsm_bts_by_lac(subscr->net, subscr->lac, bts);
381 if (!bts)
382 break;
383
384 /* Stop paging */
385 if (bts != _bts)
386 _paging_request_stop(bts, subscr, NULL, NULL);
387 } while (1);
388}
389
390void paging_update_buffer_space(struct gsm_bts *bts, u_int16_t free_slots)
391{
392 bsc_del_timer(&bts->paging.credit_timer);
393 bts->paging.available_slots = free_slots;
394 paging_schedule_if_needed(&bts->paging);
395}