blob: adf3af744e5ff3dfc345355ecb25cf049656e0c5 [file] [log] [blame]
Harald Weltee687be52016-05-03 18:49:27 +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
20
21#include <errno.h>
22
23#include <osmocom/core/linuxlist.h>
24#include <osmocom/core/talloc.h>
25
Neels Hofmeyr2f758032019-11-20 00:37:07 +010026#include <osmocom/hlr/logging.h>
27#include <osmocom/hlr/gsup_server.h>
28#include <osmocom/hlr/gsup_router.h>
Harald Weltee687be52016-05-03 18:49:27 +020029
Oliver Smithf7d32512019-04-08 15:00:43 +020030/*! Find a route for the given address.
31 * \param[in] gs gsup server
32 * \param[in] addr IPA name of the client (SGSN, MSC/VLR). Although this is passed like a blob, together with the
33 * length, it must be nul-terminated! This is for legacy reasons, see the discussion here:
34 * https://gerrit.osmocom.org/#/c/osmo-hlr/+/13048/
35 * \param[in] addrlen length of addr, *including the nul-byte* (strlen(addr) + 1).
36 */
Harald Weltee687be52016-05-03 18:49:27 +020037struct osmo_gsup_conn *gsup_route_find(struct osmo_gsup_server *gs,
38 const uint8_t *addr, size_t addrlen)
39{
40 struct gsup_route *gr;
41
42 llist_for_each_entry(gr, &gs->routes, list) {
43 if (talloc_total_size(gr->addr) == addrlen &&
44 !memcmp(gr->addr, addr, addrlen))
45 return gr->conn;
46 }
47 return NULL;
48}
49
Oliver Smith95abc2b2019-04-04 12:00:24 +020050/*! Find a GSUP connection's route (to read the IPA address from the route).
51 * \param[in] conn GSUP connection
52 * \return GSUP route
53 */
54struct gsup_route *gsup_route_find_by_conn(const struct osmo_gsup_conn *conn)
55{
56 struct gsup_route *gr;
57
58 llist_for_each_entry(gr, &conn->server->routes, list) {
59 if (gr->conn == conn)
60 return gr;
61 }
62
63 return NULL;
64}
65
Harald Weltee687be52016-05-03 18:49:27 +020066/* add a new route for the given address to the given conn */
67int gsup_route_add(struct osmo_gsup_conn *conn, const uint8_t *addr, size_t addrlen)
68{
69 struct gsup_route *gr;
70
71 /* Check if we already have a route for this address */
72 if (gsup_route_find(conn->server, addr, addrlen))
73 return -EEXIST;
74
75 /* allocate new route and populate it */
76 gr = talloc_zero(conn->server, struct gsup_route);
77 if (!gr)
78 return -ENOMEM;
79
Max44a21802019-02-14 11:28:21 +010080 LOGP(DMAIN, LOGL_INFO, "Adding GSUP route for %s via %s:%u\n", addr, conn->conn->addr, conn->conn->port);
Harald Welte21c14fc2018-07-23 17:54:41 +020081
Harald Weltee687be52016-05-03 18:49:27 +020082 gr->addr = talloc_memdup(gr, addr, addrlen);
83 gr->conn = conn;
84 llist_add_tail(&gr->list, &conn->server->routes);
85
86 return 0;
87}
88
89/* delete all routes for the given connection */
90int gsup_route_del_conn(struct osmo_gsup_conn *conn)
91{
92 struct gsup_route *gr, *gr2;
93 unsigned int num_deleted = 0;
94
95 llist_for_each_entry_safe(gr, gr2, &conn->server->routes, list) {
96 if (gr->conn == conn) {
Harald Welte21c14fc2018-07-23 17:54:41 +020097 LOGP(DMAIN, LOGL_INFO, "Removing GSUP route for %s (GSUP disconnect)\n",
98 gr->addr);
Harald Weltee687be52016-05-03 18:49:27 +020099 llist_del(&gr->list);
100 talloc_free(gr);
101 num_deleted++;
102 }
103 }
104
105 return num_deleted;
106}