blob: 1cdb753718c7ede699619226574eb0466adde9fa [file] [log] [blame]
Jacob Erlbeck53670862015-05-12 17:54:33 +02001/* gprs_ms_storage.cpp
2 *
3 * Copyright (C) 2015 by Sysmocom s.f.m.c. GmbH
4 * Author: Jacob Erlbeck <jerlbeck@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21
22#include "gprs_ms_storage.h"
23
24#include "tbf.h"
25#include "gprs_debug.h"
26
27GprsMsStorage::GprsMsStorage()
28{
29}
30
31GprsMsStorage::~GprsMsStorage()
32{
33 LListHead<GprsMs> *pos, *tmp;
34
35 llist_for_each_safe(pos, tmp, &m_list) {
36 GprsMs *ms = pos->entry();
37 ms->set_callback(NULL);
38 ms_idle(ms);
39 }
40}
41
42void GprsMsStorage::ms_idle(class GprsMs *ms)
43{
44 llist_del(&ms->list());
45 if (ms->is_idle())
46 delete ms;
47}
48
49void GprsMsStorage::ms_active(class GprsMs *ms)
50{
51 /* Nothing to do */
52}
53
54GprsMs *GprsMsStorage::get_ms(uint32_t tlli, uint32_t old_tlli, const char *imsi) const
55{
56 GprsMs *ms = NULL;
57 LListHead<GprsMs> *pos;
58
59 llist_for_each(pos, &m_list) {
60 ms = pos->entry();
Jacob Erlbeck93990462015-05-15 15:50:43 +020061 if (ms->check_tlli(tlli))
Jacob Erlbeck53670862015-05-12 17:54:33 +020062 break;
Jacob Erlbeck93990462015-05-15 15:50:43 +020063 if (ms->check_tlli(old_tlli))
Jacob Erlbeck53670862015-05-12 17:54:33 +020064 break;
65 /* TODO: Check for IMSI */
66
67 /* not found */
68 ms = NULL;
69 }
70
71 return ms;
72}
73
Jacob Erlbeck0e50ce62015-05-21 16:58:22 +020074GprsMs *GprsMsStorage::create_ms(uint32_t tlli, enum gprs_rlcmac_tbf_direction dir)
Jacob Erlbeck53670862015-05-12 17:54:33 +020075{
Jacob Erlbeck0e50ce62015-05-21 16:58:22 +020076 GprsMs *ms = get_ms(tlli);
Jacob Erlbeck53670862015-05-12 17:54:33 +020077
78 if (ms)
79 return ms;
80
Jacob Erlbeck0e50ce62015-05-21 16:58:22 +020081 ms = new GprsMs(0);
82
83 if (dir == GPRS_RLCMAC_UL_TBF)
84 ms->set_tlli(tlli);
85 else
86 ms->confirm_tlli(tlli);
87
Jacob Erlbeck53670862015-05-12 17:54:33 +020088 ms->set_callback(this);
89 llist_add(&ms->list(), &m_list);
90
91 return ms;
92}