blob: cb7871868b7f7646e4b931daede3d26fd27aca46 [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 */
22
Harald Welte31c9eca2018-10-03 21:03:34 +020023#define _GNU_SOURCE
24
Harald Welte77911b02018-08-14 23:47:30 +020025#include <stdio.h>
26#include <stdlib.h>
27#include <stdint.h>
Harald Welte00a96732019-03-11 17:18:02 +010028#include <signal.h>
Harald Welte77911b02018-08-14 23:47:30 +020029#include <unistd.h>
Harald Welte707c85a2019-03-09 12:56:35 +010030#include <errno.h>
Harald Welte77911b02018-08-14 23:47:30 +020031
32#include <pthread.h>
33
Harald Welted6dfb8c2018-08-16 14:46:53 +020034#include <sys/socket.h>
35#include <netdb.h>
36
Harald Welte12534e72018-08-15 23:37:29 +020037#include <osmocom/core/socket.h>
Harald Welte77911b02018-08-14 23:47:30 +020038#include <osmocom/core/linuxlist.h>
Harald Weltef94b9ee2018-09-25 15:04:21 +020039#include <osmocom/core/logging.h>
40#include <osmocom/core/application.h>
Harald Welte77911b02018-08-14 23:47:30 +020041
42#include <osmocom/gsm/ipa.h>
43#include <osmocom/gsm/protocol/ipaccess.h>
44
Kévin Redonff5db6e2018-10-11 17:16:18 +020045#include <asn_application.h>
Harald Welte77911b02018-08-14 23:47:30 +020046#include <osmocom/rspro/RsproPDU.h>
47
48#include "bankd.h"
Harald Welte3cded632019-03-09 12:59:41 +010049#include "rspro_client_fsm.h"
Harald Welte61d98e92019-03-03 15:43:07 +010050#include "debug.h"
Harald Welte796a7492018-09-23 19:31:28 +020051#include "rspro_util.h"
Harald Welte77911b02018-08-14 23:47:30 +020052
Harald Welte00a96732019-03-11 17:18:02 +010053/* signal indicates to worker thread that its map has been deleted */
54#define SIGMAPDEL SIGRTMIN+1
Harald Welte25075972019-03-11 17:33:17 +010055
56static void handle_sig_usr1(int sig);
Harald Welte00a96732019-03-11 17:18:02 +010057static void handle_sig_mapdel(int sig);
58
Harald Welte77911b02018-08-14 23:47:30 +020059__thread void *talloc_asn1_ctx;
Harald Weltef4b16f12019-03-09 20:58:17 +010060struct bankd *g_bankd;
Harald Welte25075972019-03-11 17:33:17 +010061static void *g_tall_ctx;
Harald Welte77911b02018-08-14 23:47:30 +020062
63static void *worker_main(void *arg);
64
65/***********************************************************************
66* bankd core / main thread
67***********************************************************************/
68
Harald Welte43ab79f2018-10-03 23:34:21 +020069int asn_debug;
70
Harald Welte77911b02018-08-14 23:47:30 +020071static void bankd_init(struct bankd *bankd)
72{
Harald Welte25075972019-03-11 17:33:17 +010073 g_tall_ctx = talloc_named_const(NULL, 0, "global");
Harald Weltef94b9ee2018-09-25 15:04:21 +020074 osmo_init_logging2(g_tall_ctx, &log_info);
75
Harald Welte43ab79f2018-10-03 23:34:21 +020076 asn_debug = 0;
77
Harald Welte77911b02018-08-14 23:47:30 +020078 /* intialize members of 'bankd' */
Harald Weltecbd18962019-03-03 19:02:38 +010079 bankd->slotmaps = slotmap_init(bankd);
Harald Welte77911b02018-08-14 23:47:30 +020080 INIT_LLIST_HEAD(&bankd->workers);
81 pthread_mutex_init(&bankd->workers_mutex, NULL);
Harald Welte45c948c2018-09-23 19:26:52 +020082
Harald Weltea0f39502019-03-09 20:59:34 +010083 /* set some defaults, overridden by commandline/config */
84 bankd->cfg.bank_id = 1;
85 bankd->cfg.num_slots = 8;
86
Harald Weltef1dd1622018-09-24 14:54:23 +020087 bankd->comp_id.type = ComponentType_remsimBankd;
88 OSMO_STRLCPY_ARRAY(bankd->comp_id.name, "fixme-name");
89 OSMO_STRLCPY_ARRAY(bankd->comp_id.software, "remsim-bankd");
90 OSMO_STRLCPY_ARRAY(bankd->comp_id.sw_version, PACKAGE_VERSION);
91 /* FIXME: other members of app_comp_id */
92
Harald Welte45c948c2018-09-23 19:26:52 +020093 /* Np lock or mutex required for the pcsc_slot_names list, as this is only
94 * read once during bankd initialization, when the worker threads haven't
95 * started yet */
96 INIT_LLIST_HEAD(&bankd->pcsc_slot_names);
97 OSMO_ASSERT(bankd_pcsc_read_slotnames(bankd, "bankd_pcsc_slots.csv") == 0);
Harald Welte77911b02018-08-14 23:47:30 +020098}
99
100/* create + start a new bankd_worker thread */
Harald Welte8d858292018-08-15 23:36:46 +0200101static struct bankd_worker *bankd_create_worker(struct bankd *bankd, unsigned int i)
Harald Welte77911b02018-08-14 23:47:30 +0200102{
103 struct bankd_worker *worker;
104 int rc;
105
106 worker = talloc_zero(bankd, struct bankd_worker);
107 if (!worker)
108 return NULL;
109
110 worker->bankd = bankd;
Harald Welte8d858292018-08-15 23:36:46 +0200111 worker->num = i;
Harald Welte297d72e2019-03-28 18:42:35 +0100112 worker->ops = &pcsc_driver_ops;
Harald Welte77911b02018-08-14 23:47:30 +0200113
114 /* in the initial state, the worker has no client.fd, bank_slot or pcsc handle yet */
115
116 rc = pthread_create(&worker->thread, NULL, worker_main, worker);
117 if (rc != 0) {
118 talloc_free(worker);
119 return NULL;
120 }
121
122 pthread_mutex_lock(&bankd->workers_mutex);
123 llist_add_tail(&worker->list, &bankd->workers);
124 pthread_mutex_unlock(&bankd->workers_mutex);
125
126 return worker;
127}
128
129static bool terminate = false;
130
Harald Welte707c85a2019-03-09 12:56:35 +0100131/* handle incoming messages from server */
132static int bankd_srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
133{
Harald Welte454f5e22019-03-09 21:38:34 +0100134 const CreateMappingReq_t *creq = NULL;
135 const RemoveMappingReq_t *rreq = NULL;
136 struct slot_mapping *map;
137 struct bank_slot bs;
138 struct client_slot cs;
139 RsproPDU_t *resp;
140
141 LOGPFSM(srvc->fi, "Rx RSPRO %s\n", rspro_msgt_name(pdu));
Harald Welte707c85a2019-03-09 12:56:35 +0100142
143 switch (pdu->msg.present) {
144 case RsproPDUchoice_PR_connectBankRes:
145 /* Store 'identity' of server in srvc->peer_comp_id */
146 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectBankRes.identity);
147 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
148 break;
Harald Welte454f5e22019-03-09 21:38:34 +0100149 case RsproPDUchoice_PR_createMappingReq:
150 creq = &pdu->msg.choice.createMappingReq;
Harald Welte94ba99b2019-03-27 22:42:11 +0100151 if (creq->bank.bankId != g_bankd->cfg.bank_id) {
152 LOGPFSML(srvc->fi, LOGL_ERROR, "createMapping specifies invalid Bank ID %lu "
153 "(we are %u)\n", creq->bank.bankId, g_bankd->cfg.bank_id);
Harald Welte454f5e22019-03-09 21:38:34 +0100154 resp = rspro_gen_CreateMappingRes(ResultCode_illegalBankId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100155 } else if (creq->bank.slotNr >= g_bankd->cfg.num_slots) {
156 LOGPFSML(srvc->fi, LOGL_ERROR, "createMapping specifies invalid Slot Nr %lu "
157 "(we have %u)\n", creq->bank.slotNr, g_bankd->cfg.num_slots);
Harald Welte454f5e22019-03-09 21:38:34 +0100158 resp = rspro_gen_CreateMappingRes(ResultCode_illegalSlotId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100159 } else {
Harald Welte454f5e22019-03-09 21:38:34 +0100160 rspro2bank_slot(&bs, &creq->bank);
161 rspro2client_slot(&cs, &creq->client);
162 /* Add a new mapping */
163 map = slotmap_add(g_bankd->slotmaps, &bs, &cs);
Harald Welte94ba99b2019-03-27 22:42:11 +0100164 if (!map) {
165 LOGPFSML(srvc->fi, LOGL_ERROR, "could not create slotmap\n");
Harald Welte454f5e22019-03-09 21:38:34 +0100166 resp = rspro_gen_CreateMappingRes(ResultCode_illegalSlotId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100167 } else
Harald Welte454f5e22019-03-09 21:38:34 +0100168 resp = rspro_gen_CreateMappingRes(ResultCode_ok);
169 }
170 server_conn_send_rspro(srvc, resp);
171 break;
172 case RsproPDUchoice_PR_removeMappingReq:
173 rreq = &pdu->msg.choice.removeMappingReq;
Harald Welte94ba99b2019-03-27 22:42:11 +0100174 if (rreq->bank.bankId != g_bankd->cfg.bank_id) {
175 LOGPFSML(srvc->fi, LOGL_ERROR, "removeMapping specifies invalid Bank ID %lu "
176 "(we are %u)\n", creq->bank.bankId, g_bankd->cfg.bank_id);
Harald Welte454f5e22019-03-09 21:38:34 +0100177 resp = rspro_gen_RemoveMappingRes(ResultCode_illegalBankId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100178 } else if (rreq->bank.slotNr >= g_bankd->cfg.num_slots) {
179 LOGPFSML(srvc->fi, LOGL_ERROR, "removeMapping specifies invalid Slot Nr %lu "
180 "(we have %u)\n", creq->bank.slotNr, g_bankd->cfg.num_slots);
Harald Welte454f5e22019-03-09 21:38:34 +0100181 resp = rspro_gen_RemoveMappingRes(ResultCode_illegalSlotId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100182 } else {
Harald Welte454f5e22019-03-09 21:38:34 +0100183 rspro2bank_slot(&bs, &rreq->bank);
184 /* Remove a mapping */
185 map = slotmap_by_bank(g_bankd->slotmaps, &bs);
Harald Welte94ba99b2019-03-27 22:42:11 +0100186 if (!map) {
187 LOGPFSML(srvc->fi, LOGL_ERROR, "could not find to-be-deleted slotmap\n");
Harald Welte454f5e22019-03-09 21:38:34 +0100188 resp = rspro_gen_RemoveMappingRes(ResultCode_unknownSlotmap);
Harald Welte94ba99b2019-03-27 22:42:11 +0100189 } else {
190 LOGPFSM(srvc->fi, "removing slotmap\n");
Harald Welte454f5e22019-03-09 21:38:34 +0100191 slotmap_del(g_bankd->slotmaps, map);
192 resp = rspro_gen_RemoveMappingRes(ResultCode_ok);
Harald Welte00a96732019-03-11 17:18:02 +0100193
194 /* kill/reset the respective worker, if any! */
195 struct bankd_worker *worker;
196 pthread_mutex_lock(&g_bankd->workers_mutex);
197 llist_for_each_entry(worker, &g_bankd->workers, list) {
198 if (bs.bank_id == worker->slot.bank_id &&
199 bs.slot_nr == worker->slot.slot_nr) {
200 pthread_kill(worker->thread, SIGMAPDEL);
201 break;
202 }
203 }
204 pthread_mutex_unlock(&g_bankd->workers_mutex);
Harald Welte454f5e22019-03-09 21:38:34 +0100205 }
206 }
Harald Welte942f1ff2019-03-09 21:49:08 +0100207 server_conn_send_rspro(srvc, resp);
Harald Welte454f5e22019-03-09 21:38:34 +0100208 break;
Harald Welte707c85a2019-03-09 12:56:35 +0100209 default:
Harald Welteeb971b52019-03-27 22:41:45 +0100210 LOGPFSML(srvc->fi, LOGL_ERROR, "Unknown/Unsupported RSPRO PDU type: %u\n",
211 pdu->msg.present);
Harald Welte707c85a2019-03-09 12:56:35 +0100212 return -1;
213 }
214
215 return 0;
216}
217
Harald Welte00a96732019-03-11 17:18:02 +0100218
Harald Welte707c85a2019-03-09 12:56:35 +0100219void handle_options(int argc, char **argv)
220{
221}
222
Harald Welte77911b02018-08-14 23:47:30 +0200223int main(int argc, char **argv)
224{
Harald Weltef4b16f12019-03-09 20:58:17 +0100225 struct rspro_server_conn *srvc;
Harald Welte77911b02018-08-14 23:47:30 +0200226 int i, rc;
227
Harald Weltef4b16f12019-03-09 20:58:17 +0100228 g_bankd = talloc_zero(NULL, struct bankd);
229 OSMO_ASSERT(g_bankd);
Harald Welte77911b02018-08-14 23:47:30 +0200230
Harald Weltef4b16f12019-03-09 20:58:17 +0100231 bankd_init(g_bankd);
232
233 srvc = &g_bankd->srvc;
Harald Welte707c85a2019-03-09 12:56:35 +0100234 srvc->server_host = "localhost";
235 srvc->server_port = 9998;
236 srvc->handle_rx = bankd_srvc_handle_rx;
237 srvc->own_comp_id.type = ComponentType_remsimBankd;
238 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "fixme-name");
239 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-bankd");
240 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
241
242 handle_options(argc, argv);
243
Harald Welte25075972019-03-11 17:33:17 +0100244 g_bankd->main = pthread_self();
Harald Welte00a96732019-03-11 17:18:02 +0100245 signal(SIGMAPDEL, handle_sig_mapdel);
Harald Welte25075972019-03-11 17:33:17 +0100246 signal(SIGUSR1, handle_sig_usr1);
Harald Welte00a96732019-03-11 17:18:02 +0100247
Harald Welte707c85a2019-03-09 12:56:35 +0100248 /* Connection towards remsim-server */
Harald Weltef4b16f12019-03-09 20:58:17 +0100249 rc = server_conn_fsm_alloc(g_bankd, srvc);
Harald Welte707c85a2019-03-09 12:56:35 +0100250 if (rc < 0) {
251 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
252 exit(1);
253 }
254
255 /* create listening socket for inbound client connections */
Harald Welte12534e72018-08-15 23:37:29 +0200256 rc = osmo_sock_init(AF_INET, SOCK_STREAM, IPPROTO_TCP, NULL, 9999, OSMO_SOCK_F_BIND);
257 if (rc < 0)
258 exit(1);
Harald Weltef4b16f12019-03-09 20:58:17 +0100259 g_bankd->accept_fd = rc;
Harald Welte12534e72018-08-15 23:37:29 +0200260
Harald Weltea0f39502019-03-09 20:59:34 +0100261 /* create worker threads: One per reader/slot! */
262 for (i = 0; i < g_bankd->cfg.num_slots; i++) {
Harald Welte77911b02018-08-14 23:47:30 +0200263 struct bankd_worker *w;
Harald Weltef4b16f12019-03-09 20:58:17 +0100264 w = bankd_create_worker(g_bankd, i);
Harald Welte77911b02018-08-14 23:47:30 +0200265 if (!w)
266 exit(21);
267 }
268
269 while (1) {
270 if (terminate)
271 break;
Harald Welte707c85a2019-03-09 12:56:35 +0100272 osmo_select_main(0);
Harald Welte77911b02018-08-14 23:47:30 +0200273 }
274
Harald Weltef4b16f12019-03-09 20:58:17 +0100275 talloc_free(g_bankd);
Harald Welte77911b02018-08-14 23:47:30 +0200276 exit(0);
277}
278
279
280
281/***********************************************************************
282 * bankd worker thread
283 ***********************************************************************/
284
Harald Welte00a96732019-03-11 17:18:02 +0100285static __thread struct bankd_worker *g_worker;
286
Harald Welte8d858292018-08-15 23:36:46 +0200287struct value_string worker_state_names[] = {
288 { BW_ST_INIT, "INIT" },
289 { BW_ST_ACCEPTING, "ACCEPTING" },
290 { BW_ST_CONN_WAIT_ID, "CONN_WAIT_ID" },
291 { BW_ST_CONN_CLIENT, "CONN_CLIENT" },
Harald Welteaf614732018-08-17 22:10:05 +0200292 { BW_ST_CONN_CLIENT_WAIT_MAP, "CONN_CLIENT_WAIT_MAP" },
Harald Welte8d858292018-08-15 23:36:46 +0200293 { BW_ST_CONN_CLIENT_MAPPED, "CONN_CLIENT_MAPPED" },
294 { BW_ST_CONN_CLIENT_MAPPED_CARD,"CONN_CLIENT_MAPPED_CARD" },
Harald Welte00a96732019-03-11 17:18:02 +0100295 { BW_ST_CONN_CLIENT_UNMAPPED, "CONN_CLIENT_UNMAPPED" },
Harald Welte8d858292018-08-15 23:36:46 +0200296 { 0, NULL }
297};
298
Harald Welte1f699b42019-03-28 13:41:08 +0100299static int worker_send_rspro(struct bankd_worker *worker, RsproPDU_t *pdu);
300
Harald Welte8d858292018-08-15 23:36:46 +0200301static void worker_set_state(struct bankd_worker *worker, enum bankd_worker_state new_state)
302{
303 LOGW(worker, "Changing state to %s\n", get_value_string(worker_state_names, new_state));
304 worker->state = new_state;
Harald Welte150d6d62018-10-03 23:07:47 +0200305 worker->timeout = 0;
306}
307
308static void worker_set_state_timeout(struct bankd_worker *worker, enum bankd_worker_state new_state,
309 unsigned int timeout_secs)
310{
311 LOGW(worker, "Changing state to %s (timeout=%u)\n",
312 get_value_string(worker_state_names, new_state), timeout_secs);
313 worker->state = new_state;
314 worker->timeout = timeout_secs;
Harald Welte8d858292018-08-15 23:36:46 +0200315}
Harald Welte77911b02018-08-14 23:47:30 +0200316
Harald Welte00a96732019-03-11 17:18:02 +0100317/* signal handler for receiving SIGMAPDEL from main thread */
318static void handle_sig_mapdel(int sig)
319{
320 LOGW(g_worker, "SIGMAPDEL received: Main thread informs us our map is gone\n");
321 OSMO_ASSERT(sig == SIGMAPDEL);
322 worker_set_state(g_worker, BW_ST_CONN_CLIENT_UNMAPPED);
323}
324
Harald Welte25075972019-03-11 17:33:17 +0100325static void handle_sig_usr1(int sig)
326{
327 OSMO_ASSERT(sig == SIGUSR1);
328
329 if (pthread_equal(g_bankd->main, pthread_self())) {
330 struct bankd_worker *worker;
331 /* main thread */
332 fprintf(stderr, "=== Talloc Report of main thread:\n");
333 talloc_report(g_tall_ctx, stderr);
334
335 /* iterate over worker threads and ask them to dump their talloc state */
336 pthread_mutex_lock(&g_bankd->workers_mutex);
337 llist_for_each_entry(worker, &g_bankd->workers, list) {
338 pthread_kill(worker->thread, SIGUSR1);
339 }
340 pthread_mutex_unlock(&g_bankd->workers_mutex);
341 } else {
342 /* worker thread */
343 fprintf(stderr, "=== Talloc Report of %s\n", g_worker->name);
344 talloc_report(g_worker->tall_ctx, stderr);
345 }
346}
347
Harald Welte77911b02018-08-14 23:47:30 +0200348static void worker_cleanup(void *arg)
349{
350 struct bankd_worker *worker = (struct bankd_worker *) arg;
351 struct bankd *bankd = worker->bankd;
352
353 /* FIXME: should we still do this? in the thread ?!? */
354 pthread_mutex_lock(&bankd->workers_mutex);
355 llist_del(&worker->list);
356 talloc_free(worker); /* FIXME: is this safe? */
357 pthread_mutex_unlock(&bankd->workers_mutex);
358}
359
Harald Welteaf614732018-08-17 22:10:05 +0200360static int worker_open_card(struct bankd_worker *worker)
Harald Welte77911b02018-08-14 23:47:30 +0200361{
Harald Welte297d72e2019-03-28 18:42:35 +0100362 int rc;
Harald Welte77911b02018-08-14 23:47:30 +0200363
Harald Welte150d6d62018-10-03 23:07:47 +0200364 OSMO_ASSERT(worker->state == BW_ST_CONN_CLIENT_MAPPED);
365
Harald Welte694df832018-10-03 22:47:52 +0200366 if (!worker->reader.name) {
367 /* resolve PC/SC reader name from slot_id -> name map */
368 worker->reader.name = bankd_pcsc_get_slot_name(worker->bankd, &worker->slot);
369 if (!worker->reader.name) {
370 LOGW(worker, "No PC/SC reader name configured for %u/%u, fix your config\n",
371 worker->slot.bank_id, worker->slot.slot_nr);
Harald Welte297d72e2019-03-28 18:42:35 +0100372 return -1;
Harald Welte694df832018-10-03 22:47:52 +0200373 }
374 }
Harald Welte45c948c2018-09-23 19:26:52 +0200375 OSMO_ASSERT(worker->reader.name);
376
Harald Welte297d72e2019-03-28 18:42:35 +0100377 rc = worker->ops->open_card(worker);
378 if (rc < 0)
379 return rc;
Harald Welte1f699b42019-03-28 13:41:08 +0100380
Harald Welte57593f02018-09-23 19:30:31 +0200381 worker_set_state(worker, BW_ST_CONN_CLIENT_MAPPED_CARD);
Harald Welte150d6d62018-10-03 23:07:47 +0200382 /* FIXME: notify client about this state change */
Harald Welte57593f02018-09-23 19:30:31 +0200383
Harald Welteaf614732018-08-17 22:10:05 +0200384 return 0;
Harald Welte77911b02018-08-14 23:47:30 +0200385}
Harald Welte77911b02018-08-14 23:47:30 +0200386
387
Harald Welte00a96732019-03-11 17:18:02 +0100388static int blocking_ipa_read(struct bankd_worker *worker, uint8_t *buf, unsigned int buf_size)
Harald Welte77911b02018-08-14 23:47:30 +0200389{
390 struct ipaccess_head *hh;
391 uint16_t len;
392 int needed, rc;
393
394 if (buf_size < sizeof(*hh))
395 return -1;
396
397 hh = (struct ipaccess_head *) buf;
398
Harald Welte00a96732019-03-11 17:18:02 +0100399 /* we use 'recv' and not 'read' below, as 'recv' will always fail with -EINTR
400 * in case of a signal being received */
401
402restart_hdr:
403 /* 1) blocking recv from the socket (IPA header) */
404 rc = recv(worker->client.fd, buf, sizeof(*hh), 0);
405 if (rc == -1 && errno == EINTR) {
406 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
407 return -23;
408 goto restart_hdr;
409 } else if (rc < 0)
410 return rc;
411 else if (rc < sizeof(*hh))
Harald Welte77911b02018-08-14 23:47:30 +0200412 return -2;
413
414 len = ntohs(hh->len);
415 needed = len; //- sizeof(*hh);
416
Harald Welte00a96732019-03-11 17:18:02 +0100417restart_body:
418 /* 2) blocking recv from the socket (payload) */
419 rc = recv(worker->client.fd, buf+sizeof(*hh), needed, 0);
420 if (rc == -1 && errno == EINTR) {
421 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
422 return -23;
423 goto restart_body;
424 } else if (rc < 0)
425 return rc;
426 else if (rc < needed)
Harald Welte77911b02018-08-14 23:47:30 +0200427 return -3;
428
429 return len;
430}
431
Harald Welte796a7492018-09-23 19:31:28 +0200432static int worker_send_rspro(struct bankd_worker *worker, RsproPDU_t *pdu)
433{
434 struct msgb *msg = rspro_enc_msg(pdu);
435 int rc;
436
437 if (!msg) {
438 LOGW(worker, "error encoding RSPRO\n");
439 return -1;
440 }
441
Harald Weltefd471192018-09-24 14:51:14 +0200442 msg->l2h = msg->data;
Harald Welte796a7492018-09-23 19:31:28 +0200443 /* prepend the header */
444 ipa_prepend_header_ext(msg, IPAC_PROTO_EXT_RSPRO);
Harald Weltefd471192018-09-24 14:51:14 +0200445 ipa_prepend_header(msg, IPAC_PROTO_OSMO);
Harald Welte796a7492018-09-23 19:31:28 +0200446
447 /* actually send it through the socket */
448 rc = write(worker->client.fd, msgb_data(msg), msgb_length(msg));
449 if (rc == msgb_length(msg))
450 rc = 0;
451 else {
452 LOGW(worker, "error during write: %d != %d\n", rc, msgb_length(msg));
453 rc = -1;
454 }
455
456 msgb_free(msg);
457
458 return rc;
459}
460
Harald Welte150d6d62018-10-03 23:07:47 +0200461/* attempt to obtain slot-map */
462static int worker_try_slotmap(struct bankd_worker *worker)
463{
Harald Weltecbd18962019-03-03 19:02:38 +0100464 struct slot_mapping *slmap;
Harald Welte150d6d62018-10-03 23:07:47 +0200465
Harald Weltecbd18962019-03-03 19:02:38 +0100466 slmap = slotmap_by_client(worker->bankd->slotmaps, &worker->client.clslot);
Harald Welte150d6d62018-10-03 23:07:47 +0200467 if (!slmap) {
468 LOGW(worker, "No slotmap (yet) for client C(%u:%u)\n",
469 worker->client.clslot.client_id, worker->client.clslot.slot_nr);
470 /* check in 10s if the map has been installed meanwhile by main thread */
471 worker_set_state_timeout(worker, BW_ST_CONN_CLIENT_WAIT_MAP, 10);
472 return -1;
473 } else {
474 LOGW(worker, "slotmap found: C(%u:%u) -> B(%u:%u)\n",
475 slmap->client.client_id, slmap->client.slot_nr,
476 slmap->bank.bank_id, slmap->bank.slot_nr);
477 worker->slot = slmap->bank;
478 worker_set_state_timeout(worker, BW_ST_CONN_CLIENT_MAPPED, 10);
479 return worker_open_card(worker);
480 }
481}
482
Harald Welte1f699b42019-03-28 13:41:08 +0100483/* inform the remote end (client) about the (new) ATR */
484static int worker_send_atr(struct bankd_worker *worker)
485{
486 RsproPDU_t *set_atr;
487 set_atr = rspro_gen_SetAtrReq(worker->client.clslot.client_id,
488 worker->client.clslot.slot_nr,
489 worker->card.atr, worker->card.atr_len);
490 if (!set_atr)
491 return -1;
492 return worker_send_rspro(worker, set_atr);
493}
Harald Welte150d6d62018-10-03 23:07:47 +0200494
Harald Weltecce2aad2018-08-16 14:44:37 +0200495static int worker_handle_connectClientReq(struct bankd_worker *worker, const RsproPDU_t *pdu)
496{
Harald Welteaf614732018-08-17 22:10:05 +0200497 const struct ComponentIdentity *cid = &pdu->msg.choice.connectClientReq.identity;
Harald Welte458e01b2019-03-10 11:14:43 +0100498 RsproPDU_t *resp = NULL;
Harald Welte3e689872018-09-24 14:52:56 +0200499 e_ResultCode res;
Harald Welte458e01b2019-03-10 11:14:43 +0100500 int rc;
Harald Welteaf614732018-08-17 22:10:05 +0200501
Harald Weltecce2aad2018-08-16 14:44:37 +0200502 OSMO_ASSERT(pdu->msg.present == RsproPDUchoice_PR_connectClientReq);
503
Harald Weltecce2aad2018-08-16 14:44:37 +0200504 LOGW(worker, "connectClientReq(T=%lu, N='%s', SW='%s', VER='%s')\n",
505 cid->type, cid->name.buf, cid->software.buf, cid->swVersion.buf);
506 /* FIXME: store somewhere? */
507
508 if (worker->state != BW_ST_CONN_WAIT_ID) {
509 LOGW(worker, "Unexpected connectClientReq\n");
Harald Welte458e01b2019-03-10 11:14:43 +0100510 rc = -102;
511 goto respond_and_err;
Harald Weltecce2aad2018-08-16 14:44:37 +0200512 }
513
Harald Welte371d0262018-08-16 15:23:58 +0200514 if (!pdu->msg.choice.connectClientReq.clientSlot) {
Harald Weltecce2aad2018-08-16 14:44:37 +0200515 LOGW(worker, "missing clientID, aborting\n");
Harald Welte458e01b2019-03-10 11:14:43 +0100516 res = ResultCode_illegalClientId;
517 rc = -103;
518 goto respond_and_err;
Harald Weltecce2aad2018-08-16 14:44:37 +0200519 }
Harald Welte371d0262018-08-16 15:23:58 +0200520 worker->client.clslot.client_id = pdu->msg.choice.connectClientReq.clientSlot->clientId;
521 worker->client.clslot.slot_nr = pdu->msg.choice.connectClientReq.clientSlot->slotNr;
Harald Weltecce2aad2018-08-16 14:44:37 +0200522 worker_set_state(worker, BW_ST_CONN_CLIENT);
523
Harald Welte150d6d62018-10-03 23:07:47 +0200524 if (worker_try_slotmap(worker) >= 0)
525 res = ResultCode_ok;
526 else
Harald Welte3e689872018-09-24 14:52:56 +0200527 res = ResultCode_cardNotPresent;
Harald Weltecce2aad2018-08-16 14:44:37 +0200528
Harald Welte3e689872018-09-24 14:52:56 +0200529 resp = rspro_gen_ConnectClientRes(&worker->bankd->comp_id, res);
Harald Welte1f699b42019-03-28 13:41:08 +0100530 rc = worker_send_rspro(worker, resp);
531 if (rc < 0)
532 return rc;
533
534 if (res == ResultCode_ok)
535 rc = worker_send_atr(worker);
536
537 return rc;
Harald Welte458e01b2019-03-10 11:14:43 +0100538
539respond_and_err:
540 if (res) {
541 resp = rspro_gen_ConnectClientRes(&worker->bankd->comp_id, res);
542 worker_send_rspro(worker, resp);
543 }
544 return rc;
Harald Weltecce2aad2018-08-16 14:44:37 +0200545}
546
Harald Welte796a7492018-09-23 19:31:28 +0200547static int worker_handle_tpduModemToCard(struct bankd_worker *worker, const RsproPDU_t *pdu)
548{
549 const struct TpduModemToCard *mdm2sim = &pdu->msg.choice.tpduModemToCard;
Harald Welte796a7492018-09-23 19:31:28 +0200550 uint8_t rx_buf[1024];
551 DWORD rx_buf_len = sizeof(rx_buf);
552 RsproPDU_t *pdu_resp;
Harald Weltee1d32892019-03-27 20:47:42 +0100553 struct client_slot clslot;
554 struct bank_slot bslot;
Harald Welte297d72e2019-03-28 18:42:35 +0100555 int rc;
Harald Welte796a7492018-09-23 19:31:28 +0200556
557 LOGW(worker, "tpduModemToCard(%s)\n", osmo_hexdump_nospc(mdm2sim->data.buf, mdm2sim->data.size));
558
559 if (worker->state != BW_ST_CONN_CLIENT_MAPPED_CARD) {
560 LOGW(worker, "Unexpected tpduModemToCaard\n");
561 return -104;
562 }
563
Harald Weltee1d32892019-03-27 20:47:42 +0100564 /* Validate that toBankSlot / fromClientSlot match our expectations */
565 rspro2client_slot(&clslot, &mdm2sim->fromClientSlot);
566 rspro2bank_slot(&bslot, &mdm2sim->toBankSlot);
567 if (!bank_slot_equals(&worker->slot, &bslot)) {
568 LOGW(worker, "Unexpected BankSlot %u:%u in tpduModemToCard\n",
569 bslot.bank_id, bslot.slot_nr);
570 return -105;
571 }
572 if (!client_slot_equals(&worker->client.clslot, &clslot)) {
573 LOGW(worker, "Unexpected ClientSlot %u:%u in tpduModemToCard\n",
574 clslot.client_id, clslot.slot_nr);
575 return -106;
576 }
Harald Welte796a7492018-09-23 19:31:28 +0200577
Harald Welte297d72e2019-03-28 18:42:35 +0100578 rc = worker->ops->transceive(worker, mdm2sim->data.buf, mdm2sim->data.size,
579 rx_buf, &rx_buf_len);
580 if (rc < 0)
581 return rc;
Harald Welte796a7492018-09-23 19:31:28 +0200582
583 /* encode response PDU and send it */
584 pdu_resp = rspro_gen_TpduCard2Modem(&mdm2sim->toBankSlot, &mdm2sim->fromClientSlot,
585 rx_buf, rx_buf_len);
586 worker_send_rspro(worker, pdu_resp);
587
588 return 0;
Harald Welte796a7492018-09-23 19:31:28 +0200589}
590
Harald Welte77911b02018-08-14 23:47:30 +0200591/* handle one incoming RSPRO message from a client inside a worker thread */
592static int worker_handle_rspro(struct bankd_worker *worker, const RsproPDU_t *pdu)
593{
Harald Weltecce2aad2018-08-16 14:44:37 +0200594 int rc = -100;
595
Harald Welte77911b02018-08-14 23:47:30 +0200596 switch (pdu->msg.present) {
597 case RsproPDUchoice_PR_connectClientReq:
Harald Weltecce2aad2018-08-16 14:44:37 +0200598 rc = worker_handle_connectClientReq(worker, pdu);
Harald Welte77911b02018-08-14 23:47:30 +0200599 break;
600 case RsproPDUchoice_PR_tpduModemToCard:
Harald Welte796a7492018-09-23 19:31:28 +0200601 rc = worker_handle_tpduModemToCard(worker, pdu);
Harald Welte77911b02018-08-14 23:47:30 +0200602 break;
603 case RsproPDUchoice_PR_clientSlotStatusInd:
604 /* FIXME */
605 break;
606 default:
Harald Weltecce2aad2018-08-16 14:44:37 +0200607 rc = -101;
608 break;
Harald Welte77911b02018-08-14 23:47:30 +0200609 }
610
Harald Weltecce2aad2018-08-16 14:44:37 +0200611 return rc;
Harald Welte77911b02018-08-14 23:47:30 +0200612}
613
Harald Welte694df832018-10-03 22:47:52 +0200614static int wait_for_fd_or_timeout(int fd, unsigned int timeout_secs)
615{
616 struct timeval tout = { timeout_secs, 0 };
617 fd_set readset;
618
619 FD_ZERO(&readset);
620 FD_SET(fd, &readset);
621 return select(fd + 1, &readset, NULL, NULL, timeout_secs ? &tout : NULL);
622}
623
Harald Welte77911b02018-08-14 23:47:30 +0200624/* body of the main transceive loop */
625static int worker_transceive_loop(struct bankd_worker *worker)
626{
627 struct ipaccess_head *hh;
628 struct ipaccess_head_ext *hh_ext;
629 uint8_t buf[65536]; /* maximum length expressed in 16bit length field */
630 asn_dec_rval_t rval;
631 int data_len, rc;
Harald Welte9ebbacc2018-09-24 17:43:39 +0200632 RsproPDU_t *pdu = NULL;
Harald Welte77911b02018-08-14 23:47:30 +0200633
Harald Welte00a96732019-03-11 17:18:02 +0100634restart_wait:
Harald Welte694df832018-10-03 22:47:52 +0200635 rc = wait_for_fd_or_timeout(worker->client.fd, worker->timeout);
Harald Welte00a96732019-03-11 17:18:02 +0100636 if (rc == -1 && errno == EINTR) {
637 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
638 return -23;
639 goto restart_wait;
640 } else if (rc < 0)
641 return rc;
642 else if (rc == 0) {
Harald Welte694df832018-10-03 22:47:52 +0200643 /* TIMEOUT case */
Harald Welte150d6d62018-10-03 23:07:47 +0200644 switch (worker->state) {
645 case BW_ST_CONN_CLIENT_WAIT_MAP:
646 /* re-check if mapping exists meanwhile? */
Harald Welte1f699b42019-03-28 13:41:08 +0100647 rc = worker_try_slotmap(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200648 break;
649 case BW_ST_CONN_CLIENT_MAPPED:
650 /* re-check if reader/card can be opened meanwhile? */
Harald Welte1f699b42019-03-28 13:41:08 +0100651 rc = worker_open_card(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200652 break;
653 default:
654 OSMO_ASSERT(0);
655 }
Harald Welte1f699b42019-03-28 13:41:08 +0100656 if (rc == 0)
657 worker_send_atr(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200658 /* return early, so we do another select rather than the blocking read below */
Harald Welte694df832018-10-03 22:47:52 +0200659 return 0;
660 };
661
Harald Welte77911b02018-08-14 23:47:30 +0200662 /* 1) blocking read of entire IPA message from the socket */
Harald Welte00a96732019-03-11 17:18:02 +0100663 rc = blocking_ipa_read(worker, buf, sizeof(buf));
Harald Welte77911b02018-08-14 23:47:30 +0200664 if (rc < 0)
665 return rc;
666 data_len = rc;
667
668 hh = (struct ipaccess_head *) buf;
Harald Welte5a3613a2018-10-11 12:56:21 +0200669 if (hh->proto != IPAC_PROTO_OSMO && hh->proto != IPAC_PROTO_IPACCESS) {
Harald Weltee1176cf2018-09-24 14:54:58 +0200670 LOGW(worker, "Received unsupported IPA protocol != OSMO: 0x%02x\n", hh->proto);
Harald Welte77911b02018-08-14 23:47:30 +0200671 return -4;
Harald Weltee1176cf2018-09-24 14:54:58 +0200672 }
Harald Welte77911b02018-08-14 23:47:30 +0200673
Harald Welte5a3613a2018-10-11 12:56:21 +0200674 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte19f881a2019-03-11 18:39:13 +0100675 switch (hh->data[0]) {
676 case IPAC_MSGT_PING:
677 return ipa_ccm_send_pong(worker->client.fd);
678 default:
679 LOGW(worker, "IPA CCM 0x%02x not implemented yet\n", hh->data[0]);
680 break;
681 }
Harald Welte5a3613a2018-10-11 12:56:21 +0200682 return 0;
683 }
684
Harald Welte77911b02018-08-14 23:47:30 +0200685 hh_ext = (struct ipaccess_head_ext *) buf + sizeof(*hh);
Harald Weltee1176cf2018-09-24 14:54:58 +0200686 if (data_len < sizeof(*hh_ext)) {
687 LOGW(worker, "Received short message\n");
Harald Welte77911b02018-08-14 23:47:30 +0200688 return -5;
Harald Weltee1176cf2018-09-24 14:54:58 +0200689 }
Harald Welte77911b02018-08-14 23:47:30 +0200690 data_len -= sizeof(*hh_ext);
Harald Weltee1176cf2018-09-24 14:54:58 +0200691 if (hh_ext->proto != IPAC_PROTO_EXT_RSPRO) {
692 LOGW(worker, "Received unsupported IPA EXT protocol != RSPRO: 0x%02x\n", hh_ext->proto);
Harald Welte77911b02018-08-14 23:47:30 +0200693 return -6;
Harald Weltee1176cf2018-09-24 14:54:58 +0200694 }
Harald Welte77911b02018-08-14 23:47:30 +0200695
696 /* 2) ASN1 BER decode of the message */
697 rval = ber_decode(NULL, &asn_DEF_RsproPDU, (void **) &pdu, hh_ext->data, data_len);
Harald Weltee1176cf2018-09-24 14:54:58 +0200698 if (rval.code != RC_OK) {
699 LOGW(worker, "Error during BER decode of RSPRO\n");
Harald Welte77911b02018-08-14 23:47:30 +0200700 return -7;
Harald Weltee1176cf2018-09-24 14:54:58 +0200701 }
Harald Welte77911b02018-08-14 23:47:30 +0200702
703 /* 3) handling of the message, possibly resulting in PCSC commands */
704 rc = worker_handle_rspro(worker, pdu);
705 ASN_STRUCT_FREE(asn_DEF_RsproPDU, pdu);
Harald Weltee1176cf2018-09-24 14:54:58 +0200706 if (rc < 0) {
707 LOGW(worker, "Error handling RSPRO\n");
Harald Welte77911b02018-08-14 23:47:30 +0200708 return rc;
Harald Weltee1176cf2018-09-24 14:54:58 +0200709 }
Harald Welte77911b02018-08-14 23:47:30 +0200710
711 /* everything OK if we reach here */
712 return 0;
713}
714
Harald Welted6dfb8c2018-08-16 14:46:53 +0200715/* obtain an ascii representation of the client IP/port */
716static int worker_client_addrstr(char *out, unsigned int outlen, const struct bankd_worker *worker)
717{
718 char hostbuf[32], portbuf[32];
719 int rc;
720
721 rc = getnameinfo((const struct sockaddr *)&worker->client.peer_addr,
722 worker->client.peer_addr_len, hostbuf, sizeof(hostbuf),
723 portbuf, sizeof(portbuf), NI_NUMERICHOST | NI_NUMERICSERV);
724 if (rc != 0) {
725 out[0] = '\0';
726 return -1;
727 }
728 snprintf(out, outlen, "%s:%s", hostbuf, portbuf);
729 return 0;
730}
731
Harald Welte77911b02018-08-14 23:47:30 +0200732/* worker thread main function */
733static void *worker_main(void *arg)
734{
Harald Welte77911b02018-08-14 23:47:30 +0200735 void *top_ctx;
736 int rc;
Harald Welte31c9eca2018-10-03 21:03:34 +0200737
Harald Welte00a96732019-03-11 17:18:02 +0100738 g_worker = (struct bankd_worker *) arg;
739
Harald Welte00a96732019-03-11 17:18:02 +0100740 worker_set_state(g_worker, BW_ST_INIT);
Harald Welte8d858292018-08-15 23:36:46 +0200741
Harald Welte77911b02018-08-14 23:47:30 +0200742 /* not permitted in multithreaded environment */
743 talloc_disable_null_tracking();
Harald Welte25075972019-03-11 17:33:17 +0100744 g_worker->tall_ctx = talloc_named_const(NULL, 0, "top");
745 talloc_asn1_ctx = talloc_named_const(g_worker->tall_ctx, 0, "asn1");
Harald Welte77911b02018-08-14 23:47:30 +0200746
Harald Welte286a2be2019-03-11 17:36:58 +0100747 /* set the thread name */
748 g_worker->name = talloc_asprintf(g_worker->tall_ctx, "bankd-worker(%u)", g_worker->num);
749 pthread_setname_np(pthread_self(), g_worker->name);
750
Harald Welte77911b02018-08-14 23:47:30 +0200751 /* push cleanup helper */
Harald Welte00a96732019-03-11 17:18:02 +0100752 pthread_cleanup_push(&worker_cleanup, g_worker);
Harald Welte77911b02018-08-14 23:47:30 +0200753
754 /* we continuously perform the same loop here, recycling the worker thread
755 * once the client connection is gone or we have some trouble with the card/reader */
756 while (1) {
Harald Welted6dfb8c2018-08-16 14:46:53 +0200757 char buf[128];
758
Harald Welte00a96732019-03-11 17:18:02 +0100759 g_worker->client.peer_addr_len = sizeof(g_worker->client.peer_addr);
Harald Welte77911b02018-08-14 23:47:30 +0200760
Harald Welte00a96732019-03-11 17:18:02 +0100761 worker_set_state(g_worker, BW_ST_ACCEPTING);
Harald Welte77911b02018-08-14 23:47:30 +0200762 /* first wait for an incoming TCP connection */
Harald Welte00a96732019-03-11 17:18:02 +0100763 rc = accept(g_worker->bankd->accept_fd, (struct sockaddr *) &g_worker->client.peer_addr,
764 &g_worker->client.peer_addr_len);
Harald Welte77911b02018-08-14 23:47:30 +0200765 if (rc < 0) {
766 continue;
767 }
Harald Welte00a96732019-03-11 17:18:02 +0100768 g_worker->client.fd = rc;
769 worker_client_addrstr(buf, sizeof(buf), g_worker);
770 LOGW(g_worker, "Accepted connection from %s\n", buf);
771 worker_set_state(g_worker, BW_ST_CONN_WAIT_ID);
Harald Welte77911b02018-08-14 23:47:30 +0200772
773 /* run the main worker transceive loop body until there was some error */
774 while (1) {
Harald Welte00a96732019-03-11 17:18:02 +0100775 rc = worker_transceive_loop(g_worker);
Harald Welte77911b02018-08-14 23:47:30 +0200776 if (rc < 0)
777 break;
Harald Welte653d6a02019-03-11 18:38:44 +0100778 if (g_worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
779 break;
Harald Welte77911b02018-08-14 23:47:30 +0200780 }
781
Harald Welte00a96732019-03-11 17:18:02 +0100782 LOGW(g_worker, "Error %d occurred: Cleaning up state\n", rc);
Harald Welted6dfb8c2018-08-16 14:46:53 +0200783
Harald Welte77911b02018-08-14 23:47:30 +0200784 /* clean-up: reset to sane state */
Harald Welte1f699b42019-03-28 13:41:08 +0100785 memset(&g_worker->card, 0, sizeof(g_worker->card));
Harald Welte297d72e2019-03-28 18:42:35 +0100786 g_worker->ops->cleanup(g_worker);
Harald Welte00a96732019-03-11 17:18:02 +0100787 if (g_worker->reader.name)
788 g_worker->reader.name = NULL;
789 if (g_worker->client.fd >= 0)
790 close(g_worker->client.fd);
791 memset(&g_worker->client.peer_addr, 0, sizeof(g_worker->client.peer_addr));
792 g_worker->client.fd = -1;
793 g_worker->client.clslot.client_id = g_worker->client.clslot.slot_nr = 0;
Harald Welte77911b02018-08-14 23:47:30 +0200794 }
795
796 pthread_cleanup_pop(1);
797 talloc_free(top_ctx);
798 pthread_exit(NULL);
799}