blob: 8fc48ba4e1061b8682cfbaded14dd4c7325ef391 [file] [log] [blame]
Harald Welte90256ba2015-12-23 20:16:36 +01001/* Mapper between RUA ContextID (24 bit, per HNB) and the SUA/SCCP
2 * Connection ID (32bit, per signalling link) */
3
4/* (C) 2015 by Harald Welte <laforge@gnumonks.org>
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
22/* an expired mapping is destroyed after 1..2 * EXPIRY_TIMER_SECS */
23#define EXPIRY_TIMER_SECS 23
24
25#include <osmocom/core/timer.h>
26
27#include "hnbgw.h"
28#include "context_map.h"
29
30/* is a given SCCP USER SAP Connection ID in use for a given CN link? */
31static int cn_id_in_use(struct hnbgw_cnlink *cn, uint32_t id)
32{
33 struct hnbgw_context_map *map;
34
35 llist_for_each_entry(map, &cn->map_list, cn_list) {
36 if (map->scu_conn_id == id)
37 return 1;
38 }
39 return 0;
40}
41
42/* try to allocate a new SCCP User SAP Connection ID */
43static int alloc_cn_conn_id(struct hnbgw_cnlink *cn, uint32_t *id_out)
44{
45 uint32_t i;
46 uint32_t id;
47
48 for (i = 0; i < 0xffffffff; i++) {
49 id = cn->next_conn_id++;
50 if (!cn_id_in_use(cn, id)) {
51 *id_out = id;
52 return 1;
53 }
54 }
55 return -1;
56}
57
58/* Map from a HNB + ContextID to the SCCP-side Connection ID */
59struct hnbgw_context_map *
60context_map_alloc_by_hnb(struct hnb_context *hnb, uint32_t rua_ctx_id,
61 struct hnbgw_cnlink *cn_if_new)
62{
63 struct hnbgw_context_map *map;
64 uint32_t new_scu_conn_id;
65
66 llist_for_each_entry(map, &hnb->map_list, hnb_list) {
67 if (map->state != MAP_S_ACTIVE)
68 continue;
69 if (map->rua_ctx_id == rua_ctx_id) {
70 return map;
71 }
72 }
73
74 /* FIXME: allocated CN side ID! */
75 if (alloc_cn_conn_id(cn_if_new, &new_scu_conn_id) < 0)
76 return NULL;
77
78 /* alloate a new map entry */
79 map = talloc_zero(hnb, struct hnbgw_context_map);
80 map->state = MAP_S_NULL;
81 map->cn_link = cn_if_new;
82 map->hnb_ctx = hnb;
83 map->rua_ctx_id = rua_ctx_id;
84
85 /* put it into both lists */
86 llist_add_tail(&map->hnb_list, &hnb->map_list);
87 llist_add_tail(&map->cn_list, &cn_if_new->map_list);
88 map->state = MAP_S_ACTIVE;
89
90 return map;
91}
92
93/* Map from a CN + Connection ID to HNB + Context ID */
94struct hnbgw_context_map *
95context_map_by_cn(struct hnbgw_cnlink *cn, uint32_t scu_conn_id)
96{
97 struct hnbgw_context_map *map;
98
99 /* FIXME: allocated HNB side ID! */
100
101 llist_for_each_entry(map, &cn->map_list, cn_list) {
102 if (map->state != MAP_S_ACTIVE)
103 continue;
104 if (map->scu_conn_id == scu_conn_id) {
105 return map;
106 }
107 }
108 /* we don't allocate new mappings in the CN->HNB
109 * direction, as the RUA=SCCP=SUA connections are always
110 * established from HNB towards CN. */
111 return NULL;
112}
113
114void context_map_deactivate(struct hnbgw_context_map *map)
115{
116 /* set the state to reserved. We still show up in the list and
117 * avoid re-allocation of the context-id until we are cleaned up
118 * by the context_map garbage collector timer */
119
120 if (map->state != MAP_S_RESERVED2)
121 map->state = MAP_S_RESERVED1;
122}
123
124static struct osmo_timer_list context_map_tmr;
125
126static void context_map_tmr_cb(void *data)
127{
128 struct hnb_gw *gw = data;
129 struct hnbgw_cnlink *cn;
130
131 /* iterate over list of core network (links) */
132 llist_for_each_entry(cn, &gw->cn_list, list) {
133 struct hnbgw_context_map *map;
134
135 llist_for_each_entry(map, &cn->map_list, cn_list) {
136 switch (map->state) {
137 case MAP_S_RESERVED1:
138 /* first time we see this reserved
139 * entry: mark it for stage 2 */
140 map->state = MAP_S_RESERVED2;
141 break;
142 case MAP_S_RESERVED2:
143 /* first time we see this reserved
144 * entry: remove it */
145 map->state = MAP_S_NULL;
146 llist_del(&map->cn_list);
147 llist_del(&map->hnb_list);
148 talloc_free(map);
149 break;
150 default:
151 break;
152 }
153 }
154 }
155 /* re-schedule this timer */
156 osmo_timer_schedule(&context_map_tmr, EXPIRY_TIMER_SECS, 0);
157}
158
159int context_map_init(struct hnb_gw *gw)
160{
161 context_map_tmr.cb = context_map_tmr_cb;
162 context_map_tmr.data = gw;
163 osmo_timer_schedule(&context_map_tmr, EXPIRY_TIMER_SECS, 0);
164}