blob: cab54663bfc4117d0829964f2e6db90b4640398f [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
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * 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
Harald Welteb68899d2009-01-06 21:47:18 +00008 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010013 * GNU Affero General Public License for more details.
Harald Welteb68899d2009-01-06 21:47:18 +000014 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * 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/>.
Harald Welteb68899d2009-01-06 21:47:18 +000017 *
18 */
19
20#ifndef PAGING_H
21#define PAGING_H
22
Harald Welte12247c62009-05-21 07:23:02 +000023#include <stdlib.h>
Harald Welteb68899d2009-01-06 21:47:18 +000024#include <string.h>
25
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010026#include <osmocom/core/linuxlist.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010027#include <osmocom/core/timer.h>
Harald Welteb68899d2009-01-06 21:47:18 +000028
Neels Hofmeyrc0164792017-09-04 15:15:32 +020029#include <osmocom/bsc/gsm_data.h>
30#include <osmocom/bsc/bsc_subscriber.h>
Neels Hofmeyr766f5902020-09-18 02:49:15 +020031#include <osmocom/bsc/bsc_msc_data.h>
Neels Hofmeyra5c71bf2017-01-25 16:15:43 +010032
Harald Weltef4b66fb2017-12-11 15:21:48 +010033struct bsc_msc_data;
34
Neels Hofmeyr766f5902020-09-18 02:49:15 +020035#define LOG_PAGING(PARAMS, SUBSYS, LEVEL, fmt, args...) \
Neels Hofmeyr4c5fd382020-09-18 04:02:13 +020036 LOGP(SUBSYS, LEVEL, "(msc%d) Paging: %s: " fmt, \
Neels Hofmeyr766f5902020-09-18 02:49:15 +020037 (PARAMS)->msc ? (PARAMS)->msc->nr : -1, \
Neels Hofmeyr4c5fd382020-09-18 04:02:13 +020038 bsc_subscr_name((PARAMS)->bsub), \
Neels Hofmeyr766f5902020-09-18 02:49:15 +020039 ##args)
40
41#define LOG_PAGING_BTS(PARAMS, BTS, SUBSYS, LEVEL, fmt, args...) \
42 LOG_PAGING(PARAMS, SUBSYS, LEVEL, "(bts%u) " fmt, (BTS) ? (BTS)->nr : 255, ##args)
43
44struct bsc_paging_params {
45 struct bsc_msc_data *msc;
Neels Hofmeyr4c5fd382020-09-18 04:02:13 +020046 struct bsc_subscr *bsub;
Neels Hofmeyr766f5902020-09-18 02:49:15 +020047 uint32_t tmsi;
48 struct osmo_mobile_identity imsi;
49 uint8_t chan_needed;
50 struct gsm0808_cell_id_list2 cil;
51};
52
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010053/**
54 * A pending paging request
55 */
56struct gsm_paging_request {
57 /* list_head for list of all paging requests */
58 struct llist_head entry;
59 /* the subscriber which we're paging. Later gsm_paging_request
Neels Hofmeyr6d804b12017-02-18 22:20:46 +010060 * should probably become a part of the bsc_subsrc struct? */
61 struct bsc_subscr *bsub;
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010062 /* back-pointer to the BTS on which we are paging */
63 struct gsm_bts *bts;
64 /* what kind of channel type do we ask the MS to establish */
65 int chan_type;
66
67 /* Timer 3113: how long do we try to page? */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020068 struct osmo_timer_list T3113;
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010069
Holger Hans Peter Freytherd3baf412010-12-23 18:19:17 +010070 /* How often did we ask the BTS to page? */
71 int attempts;
72
Harald Weltef4b66fb2017-12-11 15:21:48 +010073 /* MSC that has issued this paging */
74 struct bsc_msc_data *msc;
Holger Hans Peter Freyther85334f12010-11-09 17:00:42 +010075};
76
Harald Welteb68899d2009-01-06 21:47:18 +000077/* schedule paging request */
Neels Hofmeyr4c5fd382020-09-18 04:02:13 +020078int paging_request_bts(const struct bsc_paging_params *params, struct gsm_bts *bts);
Harald Welteb68899d2009-01-06 21:47:18 +000079
Neels Hofmeyr65a13b42020-09-12 01:01:58 +000080struct bsc_msc_data *paging_request_stop(struct gsm_bts *bts, struct bsc_subscr *bsub);
Harald Welte763da002009-02-06 12:52:14 +000081
Holger Freyther392209c2009-02-10 00:06:19 +000082/* update paging load */
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020083void paging_update_buffer_space(struct gsm_bts *bts, uint16_t);
Holger Freyther392209c2009-02-10 00:06:19 +000084
Holger Hans Peter Freyther66e14cd2011-04-26 15:52:34 +020085/* pending paging requests */
86unsigned int paging_pending_requests_nr(struct gsm_bts *bts);
87
Harald Welted382bf62017-12-11 15:33:35 +010088void paging_flush_bts(struct gsm_bts *bts, struct bsc_msc_data *msc);
89void paging_flush_network(struct gsm_network *net, struct bsc_msc_data *msc);
90
Neels Hofmeyr86ce1052020-09-18 02:49:32 +020091int bsc_paging_start(struct bsc_paging_params *params);
Harald Welteb68899d2009-01-06 21:47:18 +000092#endif