blob: ea51f7d07c6219a4c518b21b60451110a13de9d1 [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);
188 if (addr_len)
189 gsup_route_add(clnt, addr, addr_len);
190
Harald Welte173afdb2016-04-28 08:53:25 +0200191 return 0;
192}
193
Harald Weltee72cf552016-04-28 07:18:49 +0200194static int osmo_gsup_server_closed_cb(struct ipa_server_conn *conn)
195{
196 struct osmo_gsup_conn *clnt = (struct osmo_gsup_conn *)conn->data;
197
198 LOGP(DLGSUP, LOGL_INFO, "Lost GSUP client %s:%d\n",
199 conn->addr, conn->port);
200
Harald Weltee687be52016-05-03 18:49:27 +0200201 gsup_route_del_conn(clnt);
Harald Weltee72cf552016-04-28 07:18:49 +0200202 llist_del(&clnt->list);
Harald Weltea7617e92016-04-28 12:57:10 +0200203 talloc_free(clnt);
Harald Weltee72cf552016-04-28 07:18:49 +0200204
205 return 0;
206}
207
208/* a client has connected to the server socket and we have accept()ed it */
209static int osmo_gsup_server_accept_cb(struct ipa_server_link *link, int fd)
210{
211 struct osmo_gsup_conn *conn;
212 struct osmo_gsup_server *gsups =
213 (struct osmo_gsup_server *) link->data;
Harald Welte173afdb2016-04-28 08:53:25 +0200214 int rc;
Harald Weltee72cf552016-04-28 07:18:49 +0200215
Harald Weltea7617e92016-04-28 12:57:10 +0200216 conn = talloc_zero(gsups, struct osmo_gsup_conn);
Harald Weltee72cf552016-04-28 07:18:49 +0200217 OSMO_ASSERT(conn);
218
Harald Weltea7617e92016-04-28 12:57:10 +0200219 conn->conn = ipa_server_conn_create(gsups, link, fd,
Harald Weltee72cf552016-04-28 07:18:49 +0200220 osmo_gsup_server_read_cb,
221 osmo_gsup_server_closed_cb, conn);
Harald Welte173afdb2016-04-28 08:53:25 +0200222 conn->conn->ccm_cb = osmo_gsup_server_ccm_cb;
Harald Weltee72cf552016-04-28 07:18:49 +0200223 OSMO_ASSERT(conn->conn);
224
225 /* link data structure with server structure */
226 conn->server = gsups;
227 llist_add_tail(&conn->list, &gsups->clients);
228
229 LOGP(DLGSUP, LOGL_INFO, "New GSUP client %s:%d\n",
230 conn->conn->addr, conn->conn->port);
Harald Welte173afdb2016-04-28 08:53:25 +0200231
232 /* request the identity of the client */
233 rc = ipa_ccm_send_id_req(fd);
234 if (rc < 0)
235 goto failed;
Harald Weltee72cf552016-04-28 07:18:49 +0200236#if 0
237 rc = oap_init(&gsups->oap_config, &conn->oap_state);
238 if (rc != 0)
239 goto failed;
Harald Weltee72cf552016-04-28 07:18:49 +0200240#endif
241 return 0;
Harald Welte173afdb2016-04-28 08:53:25 +0200242failed:
243 ipa_server_conn_destroy(conn->conn);
244 return -1;
Harald Weltee72cf552016-04-28 07:18:49 +0200245}
246
247struct osmo_gsup_server *
248osmo_gsup_server_create(void *ctx, const char *ip_addr,
249 uint16_t tcp_port,
250 osmo_gsup_read_cb_t read_cb)
251{
252 struct osmo_gsup_server *gsups;
253 int rc;
254
255 gsups = talloc_zero(ctx, struct osmo_gsup_server);
256 OSMO_ASSERT(gsups);
257
258 INIT_LLIST_HEAD(&gsups->clients);
Harald Weltee687be52016-05-03 18:49:27 +0200259 INIT_LLIST_HEAD(&gsups->routes);
Harald Weltee72cf552016-04-28 07:18:49 +0200260
261 gsups->link = ipa_server_link_create(gsups,
262 /* no e1inp */ NULL,
263 ip_addr, tcp_port,
264 osmo_gsup_server_accept_cb,
265 gsups);
266 if (!gsups->link)
267 goto failed;
268
269 gsups->read_cb = read_cb;
270
271 rc = ipa_server_link_open(gsups->link);
272 if (rc < 0)
273 goto failed;
274
275 return gsups;
276
277failed:
278 osmo_gsup_server_destroy(gsups);
279 return NULL;
280}
281
282void osmo_gsup_server_destroy(struct osmo_gsup_server *gsups)
283{
284 if (gsups->link) {
285 ipa_server_link_close(gsups->link);
286 ipa_server_link_destroy(gsups->link);
287 gsups->link = NULL;
288 }
289 talloc_free(gsups);
290}