blob: 744b612fbdb19a69311852615888fa26ef644267 [file] [log] [blame]
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +02001/* poll_controller.h
2 *
3 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
4 * Copyright (C) 2013 by Holger Hans Peter Freyther
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * 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
11 * (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
16 * GNU General Public License for more details.
17 *
18 * 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/>.
20 *
21 */
22
23#include <poll_controller.h>
Holger Hans Peter Freyther34bd8bd2013-10-19 21:10:38 +020024#include <bts.h>
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020025#include <tbf.h>
Max1187a772018-01-26 13:31:42 +010026#include <cxx_linuxlist.h>
27#include <sba.h>
28
29extern "C" {
30#include <osmocom/core/linuxlist.h>
31#include <osmocom/gsm/gsm_utils.h>
32}
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020033
34PollController::PollController(BTS& bts)
35 : m_bts(bts)
36{}
37
Max9dabfa22017-05-16 16:10:45 +020038static inline bool elapsed_fn_check(unsigned max_delay, int frame_number, uint32_t from)
39{
40 uint32_t elapsed = (frame_number + GSM_MAX_FN - from) % GSM_MAX_FN;
41
42 if (elapsed > max_delay && elapsed < 2715400)
43 return true;
44
45 return false;
46}
47
Jacob Erlbeckac49d092015-08-27 13:18:24 +020048void PollController::expireTimedout(int frame_number, unsigned max_delay)
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020049{
Daniel Willmann93d17112014-08-07 13:05:43 +020050 struct gprs_rlcmac_dl_tbf *dl_tbf;
51 struct gprs_rlcmac_ul_tbf *ul_tbf;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020052 struct gprs_rlcmac_sba *sba, *sba2;
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010053 LListHead<gprs_rlcmac_tbf> *pos;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020054
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010055 llist_for_each(pos, &m_bts.ul_tbfs()) {
56 ul_tbf = as_ul_tbf(pos->entry());
Maxcac6b662018-01-24 11:00:17 +010057 if (ul_tbf->poll_scheduled()) {
Max9dabfa22017-05-16 16:10:45 +020058 if (elapsed_fn_check(max_delay, frame_number, ul_tbf->poll_fn))
Daniel Willmann93d17112014-08-07 13:05:43 +020059 ul_tbf->poll_timeout();
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020060 }
61 }
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010062 llist_for_each(pos, &m_bts.dl_tbfs()) {
63 dl_tbf = as_dl_tbf(pos->entry());
Maxcac6b662018-01-24 11:00:17 +010064 if (dl_tbf->poll_scheduled()) {
Max9dabfa22017-05-16 16:10:45 +020065 if (elapsed_fn_check(max_delay, frame_number, dl_tbf->poll_fn))
Daniel Willmann93d17112014-08-07 13:05:43 +020066 dl_tbf->poll_timeout();
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020067 }
68 }
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020069 llist_for_each_entry_safe(sba, sba2, &m_bts.sba()->m_sbas, list) {
Max9dabfa22017-05-16 16:10:45 +020070 if (elapsed_fn_check(max_delay, frame_number, sba->fn)) {
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020071 /* sba will be freed here */
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020072 m_bts.sba()->timeout(sba);
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020073 }
74 }
75
76}