blob: 157695d267cba78cdc464507ec26470449e62b0b [file] [log] [blame]
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001/* Control Interface Implementation for the Gb-proxy */
2/*
3 * (C) 2018 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Daniel Willmann
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#include <osmocom/core/talloc.h>
24
25
26#include <osmocom/gprs/gprs_bssgp.h>
27#include <osmocom/gprs/gprs_ns.h>
28
29#include <osmocom/ctrl/control_if.h>
30#include <osmocom/ctrl/control_cmd.h>
31#include <osmocom/sgsn/gb_proxy.h>
32#include <osmocom/sgsn/debug.h>
33
34extern vector ctrl_node_vec;
35
Daniel Willmann2fca2192020-11-04 17:32:11 +010036struct nsvc_cb_data {
37 struct ctrl_cmd *cmd;
38 uint16_t nsei;
39 bool is_sgsn;
40};
Alexander Couzens951e1332020-09-22 13:21:46 +020041
Daniel Willmann2fca2192020-11-04 17:32:11 +010042static int ctrl_nsvc_state_cb(struct gprs_ns2_vc *nsvc, void *ctx) {
43 struct nsvc_cb_data *data = (struct nsvc_cb_data *)ctx;
44 struct ctrl_cmd *cmd = (struct ctrl_cmd *)data->cmd;
45
46 cmd->reply = talloc_asprintf_append(cmd->reply, "%u,%s,%s,%s\n",
47 data->nsei, gprs_ns2_ll_str(nsvc), gprs_ns2_nsvc_state_name(nsvc),
48 data->is_sgsn ? "SGSN" : "BSS" );
49
Alexander Couzens951e1332020-09-22 13:21:46 +020050 return 0;
51}
52
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020053static int get_nsvc_state(struct ctrl_cmd *cmd, void *data)
54{
55 struct gbproxy_config *cfg = data;
Alexander Couzens951e1332020-09-22 13:21:46 +020056 struct gprs_ns2_inst *nsi = cfg->nsi;
57 struct gprs_ns2_nse *nse;
Daniel Willmanne50550e2020-11-26 18:19:21 +010058 struct gbproxy_nse *nse_peer;
Harald Welted2fef952020-12-05 00:31:07 +010059 int i;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020060
61 cmd->reply = talloc_strdup(cmd, "");
62
Alexander Couzens951e1332020-09-22 13:21:46 +020063 /* NS-VCs for SGSN */
64 nse = gprs_ns2_nse_by_nsei(nsi, cfg->nsip_sgsn_nsei);
65 if (nse)
66 gprs_ns2_nse_foreach_nsvc(nse, &ctrl_nsvc_state_cb, cmd);
67 /* NS-VCs for SGSN2 */
68 nse = gprs_ns2_nse_by_nsei(nsi, cfg->nsip_sgsn2_nsei);
69 if (nse)
70 gprs_ns2_nse_foreach_nsvc(nse, &ctrl_nsvc_state_cb, cmd);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020071
Alexander Couzens951e1332020-09-22 13:21:46 +020072 /* NS-VCs for BSS peers */
Harald Welted2fef952020-12-05 00:31:07 +010073 hash_for_each(cfg->bss_nses, i, nse_peer, list) {
Daniel Willmanne50550e2020-11-26 18:19:21 +010074 nse = gprs_ns2_nse_by_nsei(nsi, nse_peer->nsei);
Alexander Couzens951e1332020-09-22 13:21:46 +020075 if (nse)
76 gprs_ns2_nse_foreach_nsvc(nse, &ctrl_nsvc_state_cb, cmd);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020077 }
Daniel Willmann2fca2192020-11-04 17:32:11 +010078
79 return CTRL_CMD_REPLY;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020080}
81
82CTRL_CMD_DEFINE_RO(nsvc_state, "nsvc-state");
83
84static int get_gbproxy_state(struct ctrl_cmd *cmd, void *data)
85{
86 struct gbproxy_config *cfg = data;
Daniel Willmanne50550e2020-11-26 18:19:21 +010087 struct gbproxy_nse *nse_peer;
Harald Welte8b4c7942020-12-05 10:14:49 +010088 int i, j;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020089
90 cmd->reply = talloc_strdup(cmd, "");
91
Harald Welted2fef952020-12-05 00:31:07 +010092 hash_for_each(cfg->bss_nses, i, nse_peer, list) {
Harald Welte560bdb32020-12-04 22:24:47 +010093 struct gbproxy_bvc *bvc;
Harald Welte8b4c7942020-12-05 10:14:49 +010094 hash_for_each(nse_peer->bvcs, j, bvc, list) {
Daniel Willmanne50550e2020-11-26 18:19:21 +010095 struct gprs_ra_id raid;
Harald Welte560bdb32020-12-04 22:24:47 +010096 gsm48_parse_ra(&raid, bvc->ra);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020097
Daniel Willmanne50550e2020-11-26 18:19:21 +010098 cmd->reply = talloc_asprintf_append(cmd->reply, "%u,%u,%u,%u,%u,%u,%s\n",
Harald Welte560bdb32020-12-04 22:24:47 +010099 nse_peer->nsei, bvc->bvci,
Daniel Willmanne50550e2020-11-26 18:19:21 +0100100 raid.mcc, raid.mnc,
101 raid.lac, raid.rac,
Harald Welte560bdb32020-12-04 22:24:47 +0100102 bvc->blocked ? "BLOCKED" : "UNBLOCKED");
Daniel Willmanne50550e2020-11-26 18:19:21 +0100103 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200104 }
105
106 return CTRL_CMD_REPLY;
107}
108
109CTRL_CMD_DEFINE_RO(gbproxy_state, "gbproxy-state");
110
111static int get_num_peers(struct ctrl_cmd *cmd, void *data)
112{
113 struct gbproxy_config *cfg = data;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100114 struct gbproxy_nse *nse_peer;
Harald Welte8b4c7942020-12-05 10:14:49 +0100115 struct gbproxy_bvc *bvc;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100116 uint32_t count = 0;
Harald Welte8b4c7942020-12-05 10:14:49 +0100117 int i, j;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100118
Harald Welte8b4c7942020-12-05 10:14:49 +0100119 hash_for_each(cfg->bss_nses, i, nse_peer, list) {
120 hash_for_each(nse_peer->bvcs, j, bvc, list)
121 count++;
122 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200123
124 cmd->reply = talloc_strdup(cmd, "");
Daniel Willmanne50550e2020-11-26 18:19:21 +0100125 cmd->reply = talloc_asprintf_append(cmd->reply, "%u", count);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200126
127 return CTRL_CMD_REPLY;
128}
129CTRL_CMD_DEFINE_RO(num_peers, "number-of-peers");
130
131int gb_ctrl_cmds_install(void)
132{
133 int rc = 0;
134 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_nsvc_state);
135 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_gbproxy_state);
136 rc |= ctrl_cmd_install(CTRL_NODE_ROOT, &cmd_num_peers);
137
138 return rc;
139}