blob: 5c5a71775427016514bacdb6f4acf4521d298e7a [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>
26
27PollController::PollController(BTS& bts)
28 : m_bts(bts)
29{}
30
Max9dabfa22017-05-16 16:10:45 +020031static inline bool elapsed_fn_check(unsigned max_delay, int frame_number, uint32_t from)
32{
33 uint32_t elapsed = (frame_number + GSM_MAX_FN - from) % GSM_MAX_FN;
34
35 if (elapsed > max_delay && elapsed < 2715400)
36 return true;
37
38 return false;
39}
40
Jacob Erlbeckac49d092015-08-27 13:18:24 +020041void PollController::expireTimedout(int frame_number, unsigned max_delay)
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020042{
Daniel Willmann93d17112014-08-07 13:05:43 +020043 struct gprs_rlcmac_dl_tbf *dl_tbf;
44 struct gprs_rlcmac_ul_tbf *ul_tbf;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020045 struct gprs_rlcmac_sba *sba, *sba2;
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010046 LListHead<gprs_rlcmac_tbf> *pos;
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020047
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010048 llist_for_each(pos, &m_bts.ul_tbfs()) {
49 ul_tbf = as_ul_tbf(pos->entry());
Maxcac6b662018-01-24 11:00:17 +010050 if (ul_tbf->poll_scheduled()) {
Max9dabfa22017-05-16 16:10:45 +020051 if (elapsed_fn_check(max_delay, frame_number, ul_tbf->poll_fn))
Daniel Willmann93d17112014-08-07 13:05:43 +020052 ul_tbf->poll_timeout();
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020053 }
54 }
Jacob Erlbecked2dbf62015-12-28 19:15:40 +010055 llist_for_each(pos, &m_bts.dl_tbfs()) {
56 dl_tbf = as_dl_tbf(pos->entry());
Maxcac6b662018-01-24 11:00:17 +010057 if (dl_tbf->poll_scheduled()) {
Max9dabfa22017-05-16 16:10:45 +020058 if (elapsed_fn_check(max_delay, frame_number, dl_tbf->poll_fn))
Daniel Willmann93d17112014-08-07 13:05:43 +020059 dl_tbf->poll_timeout();
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020060 }
61 }
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020062 llist_for_each_entry_safe(sba, sba2, &m_bts.sba()->m_sbas, list) {
Max9dabfa22017-05-16 16:10:45 +020063 if (elapsed_fn_check(max_delay, frame_number, sba->fn)) {
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020064 /* sba will be freed here */
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +020065 m_bts.sba()->timeout(sba);
Holger Hans Peter Freytherb78adcd2013-10-17 20:12:37 +020066 }
67 }
68
69}