blob: b382c8648f0b063159aa7acea3d16cbe3c77fd16 [file] [log] [blame]
Harald Welte936f6722016-05-03 18:51:18 +02001/* (C) 2016 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * 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
8 * (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
13 * GNU Affero General Public License for more details.
14 *
15 * 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/>.
17 *
18 */
19
Harald Weltee72cf552016-04-28 07:18:49 +020020#include <errno.h>
21
22#include <osmocom/core/msgb.h>
23#include <osmocom/core/logging.h>
24#include <osmocom/core/linuxlist.h>
25#include <osmocom/abis/ipa.h>
26#include <osmocom/abis/ipaccess.h>
27
28#include "gsup_server.h"
Neels Hofmeyr6eed3222016-12-11 01:21:49 +010029#include "gsup_router.h"
Harald Weltee72cf552016-04-28 07:18:49 +020030
31static void osmo_gsup_server_send(struct osmo_gsup_conn *conn,
32 int proto_ext, struct msgb *msg_tx)
33{
34 ipa_prepend_header_ext(msg_tx, proto_ext);
35 ipa_msg_push_header(msg_tx, IPAC_PROTO_OSMO);
36 ipa_server_conn_send(conn->conn, msg_tx);
37}
38
39int osmo_gsup_conn_send(struct osmo_gsup_conn *conn, struct msgb *msg)
40{
41 if (!conn) {
42 msgb_free(msg);
43 return -ENOTCONN;
44 }
45
46 osmo_gsup_server_send(conn, IPAC_PROTO_EXT_GSUP, msg);
47
48 return 0;
49}
50
51static int osmo_gsup_conn_oap_handle(struct osmo_gsup_conn *conn,
52 struct msgb *msg_rx)
53{
Neels Hofmeyrec1b9592016-12-11 01:22:23 +010054#if 0
Harald Weltee72cf552016-04-28 07:18:49 +020055 int rc;
56 struct msgb *msg_tx;
Harald Weltee72cf552016-04-28 07:18:49 +020057 rc = oap_handle(&conn->oap_state, msg_rx, &msg_tx);
58 msgb_free(msg_rx);
59 if (rc < 0)
60 return rc;
61
62 if (msg_tx)
63 osmo_gsup_conn_send(conn, IPAC_PROTO_EXT_OAP, msg_tx);
64#endif
65 return 0;
66}
67
Harald Weltee72cf552016-04-28 07:18:49 +020068/* Data from a given client has arrived over the socket */
69static int osmo_gsup_server_read_cb(struct ipa_server_conn *conn,
70 struct msgb *msg)
71{
72 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
73 struct ipaccess_head_ext *he = (struct ipaccess_head_ext *) msgb_l2(msg);
74 struct osmo_gsup_conn *clnt = (struct osmo_gsup_conn *)conn->data;
75 int rc;
Harald Weltee72cf552016-04-28 07:18:49 +020076
77 msg->l2h = &hh->data[0];
78
Harald Welte173afdb2016-04-28 08:53:25 +020079 if (hh->proto == IPAC_PROTO_IPACCESS) {
80 rc = ipa_server_conn_ccm(conn, msg);
81 if (rc < 0) {
82 /* conn is already invalid here! */
Harald Welte173afdb2016-04-28 08:53:25 +020083 return -1;
Harald Weltee72cf552016-04-28 07:18:49 +020084 }
Harald Welte5341b5d2016-04-28 12:48:39 +020085 msgb_free(msg);
Harald Weltee72cf552016-04-28 07:18:49 +020086 return 0;
87 }
Harald Weltee72cf552016-04-28 07:18:49 +020088
Harald Weltef2d96da2016-04-28 11:13:15 +020089 if (hh->proto != IPAC_PROTO_OSMO) {
90 LOGP(DLGSUP, LOGL_NOTICE, "Unsupported IPA stream ID 0x%02x\n",
91 hh->proto);
Harald Weltee72cf552016-04-28 07:18:49 +020092 goto invalid;
Harald Weltef2d96da2016-04-28 11:13:15 +020093 }
Harald Weltee72cf552016-04-28 07:18:49 +020094
Harald Weltef2d96da2016-04-28 11:13:15 +020095 if (!he || msgb_l2len(msg) < sizeof(*he)) {
96 LOGP(DLGSUP, LOGL_NOTICE, "short IPA message\n");
Harald Weltee72cf552016-04-28 07:18:49 +020097 goto invalid;
Harald Weltef2d96da2016-04-28 11:13:15 +020098 }
Harald Weltee72cf552016-04-28 07:18:49 +020099
100 msg->l2h = &he->data[0];
101
102 if (he->proto == IPAC_PROTO_EXT_GSUP) {
103 OSMO_ASSERT(clnt->server->read_cb != NULL);
104 clnt->server->read_cb(clnt, msg);
105 /* expecting read_cb() to free msg */
106 } else if (he->proto == IPAC_PROTO_EXT_OAP) {
107 return osmo_gsup_conn_oap_handle(clnt, msg);
108 /* osmo_gsup_client_oap_handle frees msg */
Harald Weltef2d96da2016-04-28 11:13:15 +0200109 } else {
110 LOGP(DLGSUP, LOGL_NOTICE, "Unsupported IPA Osmo Proto 0x%02x\n",
111 hh->proto);
Harald Weltee72cf552016-04-28 07:18:49 +0200112 goto invalid;
Harald Weltef2d96da2016-04-28 11:13:15 +0200113 }
Harald Weltee72cf552016-04-28 07:18:49 +0200114
115 return 0;
116
117invalid:
118 LOGP(DLGSUP, LOGL_NOTICE,
Harald Weltef2d96da2016-04-28 11:13:15 +0200119 "GSUP received an invalid IPA message from %s:%d: %s\n",
120 conn->addr, conn->port, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Harald Weltee72cf552016-04-28 07:18:49 +0200121 msgb_free(msg);
122 return -1;
123
124}
125
Harald Weltee687be52016-05-03 18:49:27 +0200126static void osmo_tlvp_dump(const struct tlv_parsed *tlvp,
127 int subsys, int level)
128{
129 unsigned int i;
130
131 for (i = 0; i < ARRAY_SIZE(tlvp->lv); i++) {
132 if (!TLVP_PRESENT(tlvp, i))
133 continue;
134
135 LOGP(subsys, level, "%u: %s\n", i,
136 TLVP_VAL(tlvp, i));
137 LOGP(subsys, level, "%u: %s\n", i,
138 osmo_hexdump(TLVP_VAL(tlvp, i),
139 TLVP_LEN(tlvp, i)));
140 }
141}
142
143/* FIXME: should this be parrt of ipas_server handling, not GSUP? */
144static void tlvp_copy(void *ctx, struct tlv_parsed *out, const struct tlv_parsed *in)
145{
146 unsigned int i;
147
148 for (i = 0; i < ARRAY_SIZE(out->lv); i++) {
149 if (!TLVP_PRESENT(in, i)) {
150 if (TLVP_PRESENT(out, i)) {
151 talloc_free((void *) out->lv[i].val);
152 out->lv[i].val = NULL;
153 out->lv[i].len = 0;
154 }
155 continue;
156 }
157 out->lv[i].val = talloc_memdup(ctx, in->lv[i].val, in->lv[i].len);
158 out->lv[i].len = in->lv[i].len;
159 }
160}
161
162int osmo_gsup_conn_ccm_get(const struct osmo_gsup_conn *clnt, uint8_t **addr,
163 uint8_t tag)
164{
165 if (!TLVP_PRESENT(&clnt->ccm, tag))
166 return -ENODEV;
167 *addr = (uint8_t *) TLVP_VAL(&clnt->ccm, tag);
168
169 return TLVP_LEN(&clnt->ccm, tag);
170}
171
Harald Welte173afdb2016-04-28 08:53:25 +0200172static int osmo_gsup_server_ccm_cb(struct ipa_server_conn *conn,
173 struct msgb *msg, struct tlv_parsed *tlvp,
174 struct ipaccess_unit *unit)
175{
Harald Weltee687be52016-05-03 18:49:27 +0200176 struct osmo_gsup_conn *clnt = (struct osmo_gsup_conn *)conn->data;
Neels Hofmeyrec1b9592016-12-11 01:22:23 +0100177 uint8_t *addr = NULL;
Harald Weltee687be52016-05-03 18:49:27 +0200178 size_t addr_len;
179
Harald Welte173afdb2016-04-28 08:53:25 +0200180 LOGP(DLGSUP, LOGL_INFO, "CCM Callback\n");
Harald Weltee687be52016-05-03 18:49:27 +0200181
182 /* FIXME: should this be parrt of ipas_server handling, not
183 * GSUP? */
184 tlvp_copy(clnt, &clnt->ccm, tlvp);
185 osmo_tlvp_dump(tlvp, DLGSUP, LOGL_INFO);
186
187 addr_len = osmo_gsup_conn_ccm_get(clnt, &addr, IPAC_IDTAG_SERNR);
Neels Hofmeyr5ecdc562017-02-24 06:38:04 +0100188 if (addr_len <= 0) {
189 LOGP(DLGSUP, LOGL_ERROR, "GSUP client %s:%u has no %s IE and"
190 " cannot be routed\n",
191 conn->addr, conn->port,
192 ipa_ccm_idtag_name(IPAC_IDTAG_SERNR));
193 return -EINVAL;
194 }
Harald Weltee687be52016-05-03 18:49:27 +0200195
Neels Hofmeyr5ecdc562017-02-24 06:38:04 +0100196 gsup_route_add(clnt, addr, addr_len);
Harald Welte173afdb2016-04-28 08:53:25 +0200197 return 0;
198}
199
Harald Weltee72cf552016-04-28 07:18:49 +0200200static int osmo_gsup_server_closed_cb(struct ipa_server_conn *conn)
201{
202 struct osmo_gsup_conn *clnt = (struct osmo_gsup_conn *)conn->data;
203
204 LOGP(DLGSUP, LOGL_INFO, "Lost GSUP client %s:%d\n",
205 conn->addr, conn->port);
206
Harald Weltee687be52016-05-03 18:49:27 +0200207 gsup_route_del_conn(clnt);
Harald Weltee72cf552016-04-28 07:18:49 +0200208 llist_del(&clnt->list);
Harald Weltea7617e92016-04-28 12:57:10 +0200209 talloc_free(clnt);
Harald Weltee72cf552016-04-28 07:18:49 +0200210
211 return 0;
212}
213
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100214/* Add conn to the clients list in a way that conn->auc_3g_ind takes the lowest
215 * unused integer and the list of clients remains sorted by auc_3g_ind.
216 * Keep this function non-static to allow linking in a unit test. */
217void osmo_gsup_server_add_conn(struct llist_head *clients,
218 struct osmo_gsup_conn *conn)
219{
220 struct osmo_gsup_conn *c;
221 struct osmo_gsup_conn *prev_conn;
222
223 c = llist_first_entry_or_null(clients, struct osmo_gsup_conn, list);
224
225 /* Is the first index, 0, unused? */
226 if (!c || c->auc_3g_ind > 0) {
227 conn->auc_3g_ind = 0;
228 llist_add(&conn->list, clients);
229 return;
230 }
231
232 /* Look for a gap later on */
233 prev_conn = NULL;
234 llist_for_each_entry(c, clients, list) {
235 /* skip first item, we know it has auc_3g_ind == 0. */
236 if (!prev_conn) {
237 prev_conn = c;
238 continue;
239 }
240 if (c->auc_3g_ind > prev_conn->auc_3g_ind + 1)
241 break;
242 prev_conn = c;
243 }
244
245 OSMO_ASSERT(prev_conn);
246
247 conn->auc_3g_ind = prev_conn->auc_3g_ind + 1;
248 llist_add(&conn->list, &prev_conn->list);
249}
250
Harald Weltee72cf552016-04-28 07:18:49 +0200251/* a client has connected to the server socket and we have accept()ed it */
252static int osmo_gsup_server_accept_cb(struct ipa_server_link *link, int fd)
253{
254 struct osmo_gsup_conn *conn;
255 struct osmo_gsup_server *gsups =
256 (struct osmo_gsup_server *) link->data;
Harald Welte173afdb2016-04-28 08:53:25 +0200257 int rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200258
Harald Weltea7617e92016-04-28 12:57:10 +0200259 conn = talloc_zero(gsups, struct osmo_gsup_conn);
Harald Weltee72cf552016-04-28 07:18:49 +0200260 OSMO_ASSERT(conn);
261
Harald Weltea7617e92016-04-28 12:57:10 +0200262 conn->conn = ipa_server_conn_create(gsups, link, fd,
Harald Weltee72cf552016-04-28 07:18:49 +0200263 osmo_gsup_server_read_cb,
264 osmo_gsup_server_closed_cb, conn);
265 OSMO_ASSERT(conn->conn);
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100266 conn->conn->ccm_cb = osmo_gsup_server_ccm_cb;
Harald Weltee72cf552016-04-28 07:18:49 +0200267
268 /* link data structure with server structure */
269 conn->server = gsups;
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100270 osmo_gsup_server_add_conn(&gsups->clients, conn);
Harald Weltee72cf552016-04-28 07:18:49 +0200271
Neels Hofmeyrcab2fcd2017-03-15 00:07:43 +0100272 LOGP(DLGSUP, LOGL_INFO, "New GSUP client %s:%d (IND=%u)\n",
273 conn->conn->addr, conn->conn->port, conn->auc_3g_ind);
Harald Welte173afdb2016-04-28 08:53:25 +0200274
275 /* request the identity of the client */
276 rc = ipa_ccm_send_id_req(fd);
277 if (rc < 0)
278 goto failed;
Harald Weltee72cf552016-04-28 07:18:49 +0200279#if 0
280 rc = oap_init(&gsups->oap_config, &conn->oap_state);
281 if (rc != 0)
282 goto failed;
Harald Weltee72cf552016-04-28 07:18:49 +0200283#endif
284 return 0;
Harald Welte173afdb2016-04-28 08:53:25 +0200285failed:
286 ipa_server_conn_destroy(conn->conn);
287 return -1;
Harald Weltee72cf552016-04-28 07:18:49 +0200288}
289
290struct osmo_gsup_server *
Max9cacb6f2017-02-20 17:22:56 +0100291osmo_gsup_server_create(void *ctx, const char *ip_addr, uint16_t tcp_port,
292 osmo_gsup_read_cb_t read_cb,
293 struct llist_head *lu_op_lst)
Harald Weltee72cf552016-04-28 07:18:49 +0200294{
295 struct osmo_gsup_server *gsups;
296 int rc;
297
298 gsups = talloc_zero(ctx, struct osmo_gsup_server);
299 OSMO_ASSERT(gsups);
300
301 INIT_LLIST_HEAD(&gsups->clients);
Harald Weltee687be52016-05-03 18:49:27 +0200302 INIT_LLIST_HEAD(&gsups->routes);
Harald Weltee72cf552016-04-28 07:18:49 +0200303
304 gsups->link = ipa_server_link_create(gsups,
305 /* no e1inp */ NULL,
306 ip_addr, tcp_port,
307 osmo_gsup_server_accept_cb,
308 gsups);
309 if (!gsups->link)
310 goto failed;
311
312 gsups->read_cb = read_cb;
313
314 rc = ipa_server_link_open(gsups->link);
315 if (rc < 0)
316 goto failed;
317
Max9cacb6f2017-02-20 17:22:56 +0100318 gsups->luop = lu_op_lst;
319
Harald Weltee72cf552016-04-28 07:18:49 +0200320 return gsups;
321
322failed:
323 osmo_gsup_server_destroy(gsups);
324 return NULL;
325}
326
327void osmo_gsup_server_destroy(struct osmo_gsup_server *gsups)
328{
329 if (gsups->link) {
330 ipa_server_link_close(gsups->link);
331 ipa_server_link_destroy(gsups->link);
332 gsups->link = NULL;
333 }
334 talloc_free(gsups);
335}