blob: 7f2b0e5b51fca1ae6f95fc092333c811e8be559d [file] [log] [blame]
Harald Welteb68899d2009-01-06 21:47:18 +00001/* 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 General Public License as published by
7 * the Free Software Foundation; either version 2 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 General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21/*
22 * Relevant specs:
23 * 12.21:
24 * - 9.4.12 for CCCH Local Threshold
25 *
26 * 05.58:
27 * - 8.5.2 CCCH Load indication
28 * - 9.3.15 Paging Load
29 *
30 * Approach:
31 * - Send paging command to subscriber
32 * - On Channel Request we will remember the reason
33 * - After the ACK we will request the identity
34 * - Then we will send assign the gsm_subscriber and
35 * - and call a callback
36 */
37
Harald Welte2f1311b2009-01-06 23:50:39 +000038#include <stdio.h>
39#include <stdlib.h>
40
Harald Welteb68899d2009-01-06 21:47:18 +000041#include <openbsc/paging.h>
42#include <openbsc/debug.h>
Harald Welte2f1311b2009-01-06 23:50:39 +000043#include <openbsc/abis_rsl.h>
44#include <openbsc/gsm_04_08.h>
Harald Welteb68899d2009-01-06 21:47:18 +000045
Holger Freytherd4ec5282009-02-03 23:18:46 +000046#define PAGING_TIMEOUT 1, 75000
Holger Freytherdf892da2009-02-03 21:05:49 +000047#define MAX_PAGING_REQUEST 750
Harald Welte38c2f132009-01-06 23:10:57 +000048
Harald Welteb68899d2009-01-06 21:47:18 +000049static LLIST_HEAD(managed_bts);
50
Holger Freyther3aa8d6c2009-02-04 02:14:45 +000051static unsigned int calculate_group(struct gsm_bts *bts, struct gsm_subscriber *subscr)
52{
53 int ccch_conf;
54 int bs_cc_chans;
55 int blocks;
56 unsigned int group;
57
58 ccch_conf = bts->chan_desc.ccch_conf;
59 bs_cc_chans = rsl_ccch_conf_to_bs_cc_chans(ccch_conf);
60 /* code word + 2, as 2 channels equals 0x0 */
Holger Freyther152a1472009-02-04 13:38:26 +000061 blocks = rsl_number_of_paging_subchannels(bts);
Holger Freyther3aa8d6c2009-02-04 02:14:45 +000062 group = get_paging_group(str_to_imsi(subscr->imsi),
63 bs_cc_chans, blocks);
64 return group;
65}
66
Harald Welte38c2f132009-01-06 23:10:57 +000067/*
68 * Kill one paging request update the internal list...
69 */
Holger Freyther3d949242009-02-06 18:08:18 +000070static void page_remove_request(struct paging_bts *paging_bts,
71 struct paging_request *to_be_deleted)
72{
73 /* Update the last_request if that is necessary */
74 if (to_be_deleted == paging_bts->last_request) {
75 paging_bts->last_request =
76 (struct paging_request *)paging_bts->last_request->entry.next;
77 if (&to_be_deleted->entry == &paging_bts->pending_requests)
78 paging_bts->last_request = NULL;
79 }
80
Harald Welte38c2f132009-01-06 23:10:57 +000081 llist_del(&to_be_deleted->entry);
82 free(to_be_deleted);
83}
84
85
86static void page_handle_pending_requests(void *data) {
Harald Welte2f1311b2009-01-06 23:50:39 +000087 u_int8_t mi[128];
88 unsigned long int tmsi;
89 unsigned int mi_len;
Holger Freyther3aa8d6c2009-02-04 02:14:45 +000090 unsigned int pag_group;
Harald Welte38c2f132009-01-06 23:10:57 +000091 struct paging_bts *paging_bts = (struct paging_bts *)data;
Holger Freytherd4ec5282009-02-03 23:18:46 +000092 struct paging_request *request = NULL;
Harald Welte38c2f132009-01-06 23:10:57 +000093
94 if (!paging_bts->last_request)
95 paging_bts->last_request =
96 (struct paging_request *)paging_bts->pending_requests.next;
97 if (&paging_bts->last_request->entry == &paging_bts->pending_requests) {
98 paging_bts->last_request = NULL;
99 return;
100 }
101
Harald Welte2f1311b2009-01-06 23:50:39 +0000102 /* handle the paging request now */
Holger Freytherd4ec5282009-02-03 23:18:46 +0000103 request = paging_bts->last_request;
Harald Welte38c2f132009-01-06 23:10:57 +0000104 DEBUGP(DPAG, "Going to send paging commands: '%s'\n",
Holger Freytherd4ec5282009-02-03 23:18:46 +0000105 request->subscr->imsi);
106 ++request->requests;
Holger Freyther3aa8d6c2009-02-04 02:14:45 +0000107
108 pag_group = calculate_group(paging_bts->bts, request->subscr);
Holger Freytherd4ec5282009-02-03 23:18:46 +0000109 tmsi = strtoul(request->subscr->tmsi, NULL, 10);
Harald Welte2f1311b2009-01-06 23:50:39 +0000110 mi_len = generate_mid_from_tmsi(mi, tmsi);
Holger Freyther3aa8d6c2009-02-04 02:14:45 +0000111 rsl_paging_cmd(paging_bts->bts, pag_group, mi_len, mi,
Holger Freytherd4ec5282009-02-03 23:18:46 +0000112 request->chan_type);
Harald Welte2f1311b2009-01-06 23:50:39 +0000113
Holger Freytherd4ec5282009-02-03 23:18:46 +0000114 if (request->requests > MAX_PAGING_REQUEST) {
Holger Freyther3d949242009-02-06 18:08:18 +0000115 page_remove_request(paging_bts, request);
Holger Freytherbf834812009-01-27 23:46:19 +0000116 } else {
117 /* move to the next item */
118 paging_bts->last_request =
119 (struct paging_request *)paging_bts->last_request->entry.next;
120 if (&paging_bts->last_request->entry == &paging_bts->pending_requests)
121 paging_bts->last_request = NULL;
122 }
Harald Welte2f1311b2009-01-06 23:50:39 +0000123
Harald Welte38c2f132009-01-06 23:10:57 +0000124 schedule_timer(&paging_bts->page_timer, PAGING_TIMEOUT);
125}
126
Harald Welteb68899d2009-01-06 21:47:18 +0000127static int page_pending_request(struct paging_bts *bts,
128 struct gsm_subscriber *subscr) {
129 struct paging_request *req;
130
131 llist_for_each_entry(req, &bts->pending_requests, entry) {
132 if (subscr == req->subscr)
133 return 1;
134 }
135
136 return 0;
137}
138
139struct paging_bts* page_allocate(struct gsm_bts *bts) {
140 struct paging_bts *page;
141
142 page = (struct paging_bts *)malloc(sizeof(*page));
143 memset(page, 0, sizeof(*page));
Harald Welte38c2f132009-01-06 23:10:57 +0000144 page->bts = bts;
145 INIT_LLIST_HEAD(&page->pending_requests);
146 page->page_timer.cb = page_handle_pending_requests;
147 page->page_timer.data = page;
148
Harald Welteb68899d2009-01-06 21:47:18 +0000149 llist_add_tail(&page->bts_list, &managed_bts);
150
151 return page;
152}
153
Harald Welte38c2f132009-01-06 23:10:57 +0000154void page_request(struct gsm_bts *bts, struct gsm_subscriber *subscr, int type) {
Harald Welteb68899d2009-01-06 21:47:18 +0000155 struct paging_bts *bts_entry;
156 struct paging_request *req;
157
158 req = (struct paging_request *)malloc(sizeof(*req));
Holger Freyther1525de02009-01-27 23:38:27 +0000159 memset(req, 0, sizeof(*req));
Harald Welteb68899d2009-01-06 21:47:18 +0000160 req->subscr = subscr_get(subscr);
161 req->bts = bts;
Harald Welte38c2f132009-01-06 23:10:57 +0000162 req->chan_type = type;
Harald Welteb68899d2009-01-06 21:47:18 +0000163
164 llist_for_each_entry(bts_entry, &managed_bts, bts_list) {
Holger Freyther1525de02009-01-27 23:38:27 +0000165 if (bts == bts_entry->bts) {
166 if (!page_pending_request(bts_entry, subscr)) {
167 llist_add_tail(&req->entry, &bts_entry->pending_requests);
168 if (!timer_pending(&bts_entry->page_timer))
169 schedule_timer(&bts_entry->page_timer, PAGING_TIMEOUT);
170 } else {
171 DEBUGP(DPAG, "Paging request already pending\n");
172 }
173
Harald Welteb68899d2009-01-06 21:47:18 +0000174 return;
175 }
176 }
177
Harald Welted08de2f2009-01-11 04:38:55 +0000178 DEBUGP(DPAG, "Paging request for not managed BTS\n");
Harald Welteb68899d2009-01-06 21:47:18 +0000179 free(req);
180 return;
181}
Harald Welte763da002009-02-06 12:52:14 +0000182
183/* we consciously ignore the type of the request here */
184void page_request_stop(struct gsm_bts *bts, struct gsm_subscriber *subscr)
185{
186 struct paging_bts *bts_entry;
187 struct paging_request *req, *req2;
188
189 llist_for_each_entry(bts_entry, &managed_bts, bts_list) {
190 if (bts == bts_entry->bts)
191 break;
192 }
193 if (!bts_entry)
194 return;
195
196 llist_for_each_entry_safe(req, req2, &bts_entry->pending_requests,
197 entry) {
Holger Freyther3d949242009-02-06 18:08:18 +0000198 if (req->subscr == subscr) {
199 page_remove_request(bts_entry, req);
200 break;
201 }
Harald Welte763da002009-02-06 12:52:14 +0000202 }
203}