blob: ca6143e2fbcba91db486ba3890dbdbdaaab73c98 [file] [log] [blame]
Harald Welte3dcdd202019-03-09 13:06:46 +01001/* (C) 2018-2019 by Harald Welte <laforge@gnumonks.org>
2 *
3 * All Rights Reserved
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 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 General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
Harald Welte2ff0ab92018-08-17 22:10:49 +020022
23#include <errno.h>
24#include <string.h>
Harald Weltece638d82019-03-17 09:36:04 +010025#include <signal.h>
Harald Welte2ff0ab92018-08-17 22:10:49 +020026
Harald Welte228af8a2019-03-08 22:20:21 +010027#define _GNU_SOURCE
28#include <getopt.h>
29
Harald Welte2ff0ab92018-08-17 22:10:49 +020030#include <talloc.h>
31
32#include <osmocom/core/msgb.h>
33#include <osmocom/core/fsm.h>
34#include <osmocom/core/utils.h>
35#include <osmocom/core/logging.h>
36#include <osmocom/core/application.h>
37
38#include <osmocom/abis/ipa.h>
39#include <osmocom/gsm/protocol/ipaccess.h>
40
41#include "rspro_util.h"
Harald Welte24173fb2018-08-24 20:37:28 +020042#include "client.h"
Harald Welte61d98e92019-03-03 15:43:07 +010043#include "debug.h"
Harald Welte2ff0ab92018-08-17 22:10:49 +020044
Harald Welte24173fb2018-08-24 20:37:28 +020045static int bankd_handle_msg(struct bankd_client *bc, struct msgb *msg)
Harald Welte2ff0ab92018-08-17 22:10:49 +020046{
Harald Welte24173fb2018-08-24 20:37:28 +020047 RsproPDU_t *pdu = rspro_dec_msg(msg);
48 if (!pdu) {
Harald Welte8d8d4f12019-03-27 22:50:39 +010049 LOGPFSML(bc->bankd_fi, LOGL_ERROR, "Error decoding PDU\n");
Harald Welte24173fb2018-08-24 20:37:28 +020050 return -1;
Harald Welte2ff0ab92018-08-17 22:10:49 +020051 }
Harald Welte24173fb2018-08-24 20:37:28 +020052
Harald Welteb49ac9c2019-03-09 20:36:07 +010053 LOGPFSM(bc->bankd_fi, "Rx RSPRO %s\n", rspro_msgt_name(pdu));
54
Harald Welte24173fb2018-08-24 20:37:28 +020055 switch (pdu->msg.present) {
56 case RsproPDUchoice_PR_connectClientRes:
Harald Weltee56f2b92019-03-02 17:02:13 +010057 /* Store 'identity' of bankd to in peer_comp_id */
58 rspro_comp_id_retrieve(&bc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
Harald Welte417b9612018-09-24 14:53:41 +020059 osmo_fsm_inst_dispatch(bc->bankd_fi, BDC_E_CLIENT_CONN_RES, pdu);
Harald Welte24173fb2018-08-24 20:37:28 +020060 break;
61 default:
Harald Welte8d8d4f12019-03-27 22:50:39 +010062 LOGPFSML(bc->bankd_fi, LOGL_ERROR, "Unknown/Unsuppoerted RSPRO PDU %s: %s\n",
63 rspro_msgt_name(pdu), msgb_hexdump(msg));
Harald Welte24173fb2018-08-24 20:37:28 +020064 return -1;
65 }
66
67 return 0;
Harald Welte2ff0ab92018-08-17 22:10:49 +020068}
69
Harald Welte24173fb2018-08-24 20:37:28 +020070int bankd_read_cb(struct ipa_client_conn *conn, struct msgb *msg)
Harald Welte2ff0ab92018-08-17 22:10:49 +020071{
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 bankd_client *bc = conn->data;
Harald Welte24173fb2018-08-24 20:37:28 +020075 int rc;
Harald Welte2ff0ab92018-08-17 22:10:49 +020076
77 if (msgb_length(msg) < sizeof(*hh))
78 goto invalid;
79 msg->l2h = &hh->data[0];
Harald Welte1a171042019-03-08 19:18:52 +010080 switch (hh->proto) {
Harald Welte03b24112019-03-08 19:43:02 +010081 case IPAC_PROTO_IPACCESS:
82 rc = ipaccess_bts_handle_ccm(conn, &bc->srv_conn.ipa_dev, msg);
83 if (rc < 0)
84 break;
85 switch (hh->data[0]) {
86 case IPAC_MSGT_PONG:
87 ipa_keepalive_fsm_pong_received(bc->srv_conn.keepalive_fi);
88 rc = 0;
89 break;
90 default:
91 break;
92 }
93 break;
Harald Welte1a171042019-03-08 19:18:52 +010094 case IPAC_PROTO_OSMO:
95 if (!he || msgb_l2len(msg) < sizeof(*he))
96 goto invalid;
97 msg->l2h = &he->data[0];
98 switch (he->proto) {
99 case IPAC_PROTO_EXT_RSPRO:
Harald Welte8d8d4f12019-03-27 22:50:39 +0100100 LOGPFSML(bc->bankd_fi, LOGL_DEBUG, "Received RSPRO %s\n", msgb_hexdump(msg));
Harald Welte1a171042019-03-08 19:18:52 +0100101 rc = bankd_handle_msg(bc, msg);
102 break;
103 default:
104 goto invalid;
105 }
106 break;
107 default:
Harald Welte2ff0ab92018-08-17 22:10:49 +0200108 goto invalid;
Harald Welte1a171042019-03-08 19:18:52 +0100109 }
Harald Welte24173fb2018-08-24 20:37:28 +0200110
Harald Welte573a5b92019-09-12 20:27:58 +0200111 msgb_free(msg);
Harald Welte24173fb2018-08-24 20:37:28 +0200112 return rc;
Harald Welte2ff0ab92018-08-17 22:10:49 +0200113
114invalid:
115 msgb_free(msg);
116 return -1;
117}
118
Harald Welte24173fb2018-08-24 20:37:28 +0200119static struct bankd_client *g_client;
Harald Welte2ff0ab92018-08-17 22:10:49 +0200120static void *g_tall_ctx;
121void __thread *talloc_asn1_ctx;
Harald Welte43ab79f2018-10-03 23:34:21 +0200122int asn_debug;
Harald Welte2ff0ab92018-08-17 22:10:49 +0200123
Harald Weltee56f2b92019-03-02 17:02:13 +0100124/* handle incoming messages from server */
125static int srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
126{
127 RsproPDU_t *resp;
128
129 switch (pdu->msg.present) {
130 case RsproPDUchoice_PR_connectClientRes:
131 /* Store 'identity' of server in srvc->peer_comp_id */
132 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
133 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
134 break;
Harald Welted571a3e2019-03-11 22:09:50 +0100135 case RsproPDUchoice_PR_configClientIdReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100136 /* store/set the clientID as instructed by the server */
Harald Welteec628e92019-03-08 22:18:31 +0100137 if (!g_client->srv_conn.clslot)
138 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
Harald Welted571a3e2019-03-11 22:09:50 +0100139 *g_client->srv_conn.clslot = pdu->msg.choice.configClientIdReq.clientSlot;
140 /* send response to server */
141 resp = rspro_gen_ConfigClientIdRes(ResultCode_ok);
142 server_conn_send_rspro(srvc, resp);
143 break;
144 case RsproPDUchoice_PR_configClientBankReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100145 /* store/set the bankd ip/port as instructed by the server */
146 osmo_talloc_replace_string(g_client, &g_client->bankd_host,
Harald Welted571a3e2019-03-11 22:09:50 +0100147 rspro_IpAddr2str(&pdu->msg.choice.configClientBankReq.bankd.ip));
Harald Welte7a950882019-03-17 09:35:16 +0100148 g_client->bankd_port = pdu->msg.choice.configClientBankReq.bankd.port;
Harald Welte9cf013a2019-03-11 22:19:19 +0100149 rspro2bank_slot(&g_client->bankd_slot, &pdu->msg.choice.configClientBankReq.bankSlot);
Harald Weltee56f2b92019-03-02 17:02:13 +0100150 /* instruct bankd FSM to connect */
151 osmo_fsm_inst_dispatch(g_client->bankd_fi, BDC_E_ESTABLISH, NULL);
152 /* send response to server */
Harald Welted571a3e2019-03-11 22:09:50 +0100153 resp = rspro_gen_ConfigClientBankRes(ResultCode_ok);
Harald Weltea844bb02019-03-09 13:38:50 +0100154 server_conn_send_rspro(srvc, resp);
Harald Weltee56f2b92019-03-02 17:02:13 +0100155 break;
156 default:
Harald Welte8d8d4f12019-03-27 22:50:39 +0100157 LOGPFSML(srvc->fi, LOGL_ERROR, "Unknown/Unsupported RSPRO PDU type: %s\n",
158 rspro_msgt_name(pdu));
Harald Weltee56f2b92019-03-02 17:02:13 +0100159 return -1;
160 }
161
162 return 0;
163}
164
Harald Weltece638d82019-03-17 09:36:04 +0100165static void handle_sig_usr1(int signal)
166{
167 OSMO_ASSERT(signal == SIGUSR1);
Harald Welteb54a51e2019-03-31 15:57:59 +0200168 talloc_report_full(g_tall_ctx, stderr);
Harald Weltece638d82019-03-17 09:36:04 +0100169}
170
Harald Welte228af8a2019-03-08 22:20:21 +0100171static void printf_help()
172{
173 printf(
174 " -h --help Print this help message\n"
175 " -i --server-ip A.B.C.D remsim-server IP address\n"
176 " -p --server-port 13245 remsim-server TCP port\n"
177 " -i --client-id <0-65535> RSPRO ClientId of this client\n"
Harald Welte72cde102019-03-30 10:43:06 +0100178 " -n --client-slot <0-65535> RSPRO SlotNr of this client\n"
Harald Welte228af8a2019-03-08 22:20:21 +0100179 );
180}
181
182static void handle_options(int argc, char **argv)
183{
184 while (1) {
185 int option_index = 0, c;
186 static const struct option long_options[] = {
187 { "help", 0, 0, 'h' },
188 { "server-ip", 1, 0, 'i' },
189 { "server-port", 1, 0, 'p' },
190 { "client-id", 1, 0, 'c' },
Harald Welte72cde102019-03-30 10:43:06 +0100191 { "client-slot", 1, 0, 'n' },
Harald Welte228af8a2019-03-08 22:20:21 +0100192 { 0, 0, 0, 0 }
193 };
194
Harald Welte72cde102019-03-30 10:43:06 +0100195 c = getopt_long(argc, argv, "hi:p:c:n:",
Harald Welte228af8a2019-03-08 22:20:21 +0100196 long_options, &option_index);
197 if (c == -1)
198 break;
199
200 switch (c) {
201 case 'h':
202 printf_help();
203 exit(0);
204 break;
205 case 'i':
206 g_client->srv_conn.server_host = optarg;
207 break;
208 case 'p':
209 g_client->srv_conn.server_port = atoi(optarg);
210 break;
211 case 'c':
212 if (!g_client->srv_conn.clslot)
213 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
214 g_client->srv_conn.clslot->clientId = atoi(optarg);
215 break;
216 case 's':
217 if (!g_client->srv_conn.clslot)
218 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
219 g_client->srv_conn.clslot->slotNr = atoi(optarg);
220 break;
221 default:
222 break;
223 }
224 }
225}
226
Harald Welte2ff0ab92018-08-17 22:10:49 +0200227int main(int argc, char **argv)
228{
Harald Weltee56f2b92019-03-02 17:02:13 +0100229 struct rspro_server_conn *srvc;
230 int rc;
231
Harald Welte2ff0ab92018-08-17 22:10:49 +0200232 g_tall_ctx = talloc_named_const(NULL, 0, "global");
Harald Welteb54a51e2019-03-31 15:57:59 +0200233 talloc_asn1_ctx = talloc_named_const(g_tall_ctx, 0, "asn1");
Harald Weltef7442b52019-07-18 18:54:05 +0200234 msgb_talloc_ctx_init(g_tall_ctx, 0);
Harald Welte2ff0ab92018-08-17 22:10:49 +0200235
Harald Weltec7995e72019-03-08 20:45:03 +0100236 osmo_init_logging2(g_tall_ctx, &log_info);
237
Harald Welte24173fb2018-08-24 20:37:28 +0200238 g_client = talloc_zero(g_tall_ctx, struct bankd_client);
Harald Weltee56f2b92019-03-02 17:02:13 +0100239
240 srvc = &g_client->srv_conn;
241 srvc->server_host = "localhost";
242 srvc->server_port = 9998;
243 srvc->handle_rx = srvc_handle_rx;
244 srvc->own_comp_id.type = ComponentType_remsimClient;
245 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "fixme-name");
246 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-client");
247 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
Harald Welte228af8a2019-03-08 22:20:21 +0100248
249 handle_options(argc, argv);
250
Harald Weltece638d82019-03-17 09:36:04 +0100251 signal(SIGUSR1, handle_sig_usr1);
252
Harald Weltee56f2b92019-03-02 17:02:13 +0100253 rc = server_conn_fsm_alloc(g_client, srvc);
254 if (rc < 0) {
255 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
256 exit(1);
257 }
Harald Welted2192e22019-11-07 18:10:57 +0100258 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_ESTABLISH, NULL);
Harald Welte2ff0ab92018-08-17 22:10:49 +0200259
Harald Welte43ab79f2018-10-03 23:34:21 +0200260 asn_debug = 0;
Harald Welte2ff0ab92018-08-17 22:10:49 +0200261
Harald Welte24173fb2018-08-24 20:37:28 +0200262 if (bankd_conn_fsm_alloc(g_client) < 0) {
Harald Welte2ff0ab92018-08-17 22:10:49 +0200263 fprintf(stderr, "Unable to connect: %s\n", strerror(errno));
264 exit(1);
265 }
Harald Welte2ff0ab92018-08-17 22:10:49 +0200266
267 while (1) {
268 osmo_select_main(0);
269 }
270}