blob: ce34ac29c09405514926dac8faff8efc59266db3 [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 Welte5bae20b2019-04-01 09:36:42 +020031#include <getopt.h>
Harald Welte77911b02018-08-14 23:47:30 +020032
33#include <pthread.h>
34
Harald Welted6dfb8c2018-08-16 14:46:53 +020035#include <sys/socket.h>
36#include <netdb.h>
37
Harald Welte12534e72018-08-15 23:37:29 +020038#include <osmocom/core/socket.h>
Harald Welte77911b02018-08-14 23:47:30 +020039#include <osmocom/core/linuxlist.h>
Harald Weltef94b9ee2018-09-25 15:04:21 +020040#include <osmocom/core/logging.h>
41#include <osmocom/core/application.h>
Harald Welte77911b02018-08-14 23:47:30 +020042
43#include <osmocom/gsm/ipa.h>
44#include <osmocom/gsm/protocol/ipaccess.h>
45
Kévin Redonff5db6e2018-10-11 17:16:18 +020046#include <asn_application.h>
Harald Welte77911b02018-08-14 23:47:30 +020047#include <osmocom/rspro/RsproPDU.h>
48
49#include "bankd.h"
Harald Welte3cded632019-03-09 12:59:41 +010050#include "rspro_client_fsm.h"
Harald Welte61d98e92019-03-03 15:43:07 +010051#include "debug.h"
Harald Welte796a7492018-09-23 19:31:28 +020052#include "rspro_util.h"
Harald Welte77911b02018-08-14 23:47:30 +020053
Harald Welte00a96732019-03-11 17:18:02 +010054/* signal indicates to worker thread that its map has been deleted */
55#define SIGMAPDEL SIGRTMIN+1
Harald Welte0fd77a52019-12-05 22:05:39 +010056#define SIGMAPADD SIGRTMIN+2
Harald Welte25075972019-03-11 17:33:17 +010057
58static void handle_sig_usr1(int sig);
Harald Welte00a96732019-03-11 17:18:02 +010059static void handle_sig_mapdel(int sig);
Harald Welte0fd77a52019-12-05 22:05:39 +010060static void handle_sig_mapadd(int sig);
Harald Welte00a96732019-03-11 17:18:02 +010061
Harald Welte77911b02018-08-14 23:47:30 +020062__thread void *talloc_asn1_ctx;
Harald Weltef4b16f12019-03-09 20:58:17 +010063struct bankd *g_bankd;
Harald Welte25075972019-03-11 17:33:17 +010064static void *g_tall_ctx;
Harald Welte77911b02018-08-14 23:47:30 +020065
66static void *worker_main(void *arg);
67
68/***********************************************************************
69* bankd core / main thread
70***********************************************************************/
71
Harald Welte43ab79f2018-10-03 23:34:21 +020072int asn_debug;
73
Harald Welte77911b02018-08-14 23:47:30 +020074static void bankd_init(struct bankd *bankd)
75{
Harald Welte25075972019-03-11 17:33:17 +010076 g_tall_ctx = talloc_named_const(NULL, 0, "global");
Harald Weltef94b9ee2018-09-25 15:04:21 +020077 osmo_init_logging2(g_tall_ctx, &log_info);
78
Harald Welte43ab79f2018-10-03 23:34:21 +020079 asn_debug = 0;
80
Harald Welte77911b02018-08-14 23:47:30 +020081 /* intialize members of 'bankd' */
Harald Weltecbd18962019-03-03 19:02:38 +010082 bankd->slotmaps = slotmap_init(bankd);
Harald Welte77911b02018-08-14 23:47:30 +020083 INIT_LLIST_HEAD(&bankd->workers);
84 pthread_mutex_init(&bankd->workers_mutex, NULL);
Harald Welte45c948c2018-09-23 19:26:52 +020085
Harald Weltea0f39502019-03-09 20:59:34 +010086 /* set some defaults, overridden by commandline/config */
Harald Welte2513d812019-04-01 21:03:02 +020087 bankd->srvc.bankd.bank_id = 1;
88 bankd->srvc.bankd.num_slots = 8;
Harald Weltea0f39502019-03-09 20:59:34 +010089
Harald Weltef1dd1622018-09-24 14:54:23 +020090 bankd->comp_id.type = ComponentType_remsimBankd;
91 OSMO_STRLCPY_ARRAY(bankd->comp_id.name, "fixme-name");
92 OSMO_STRLCPY_ARRAY(bankd->comp_id.software, "remsim-bankd");
93 OSMO_STRLCPY_ARRAY(bankd->comp_id.sw_version, PACKAGE_VERSION);
94 /* FIXME: other members of app_comp_id */
95
Harald Welte45c948c2018-09-23 19:26:52 +020096 INIT_LLIST_HEAD(&bankd->pcsc_slot_names);
Harald Welte77911b02018-08-14 23:47:30 +020097}
98
99/* create + start a new bankd_worker thread */
Harald Welte8d858292018-08-15 23:36:46 +0200100static struct bankd_worker *bankd_create_worker(struct bankd *bankd, unsigned int i)
Harald Welte77911b02018-08-14 23:47:30 +0200101{
102 struct bankd_worker *worker;
103 int rc;
104
105 worker = talloc_zero(bankd, struct bankd_worker);
106 if (!worker)
107 return NULL;
108
109 worker->bankd = bankd;
Harald Welte8d858292018-08-15 23:36:46 +0200110 worker->num = i;
Harald Welte297d72e2019-03-28 18:42:35 +0100111 worker->ops = &pcsc_driver_ops;
Harald Welte77911b02018-08-14 23:47:30 +0200112
113 /* in the initial state, the worker has no client.fd, bank_slot or pcsc handle yet */
114
115 rc = pthread_create(&worker->thread, NULL, worker_main, worker);
116 if (rc != 0) {
117 talloc_free(worker);
118 return NULL;
119 }
120
121 pthread_mutex_lock(&bankd->workers_mutex);
122 llist_add_tail(&worker->list, &bankd->workers);
123 pthread_mutex_unlock(&bankd->workers_mutex);
124
125 return worker;
126}
127
128static bool terminate = false;
129
Harald Weltea4967832019-12-05 22:04:57 +0100130/* deliver given signal 'sig' to the firts worker matching bs and cs (if given) */
131static void send_signal_to_worker(const struct bank_slot *bs, const struct client_slot *cs, int sig)
132{
133 struct bankd_worker *worker;
134 pthread_mutex_lock(&g_bankd->workers_mutex);
135 llist_for_each_entry(worker, &g_bankd->workers, list) {
136 if (bs && (bs->bank_id != worker->slot.bank_id || bs->slot_nr != worker->slot.slot_nr))
137 continue;
138 if (cs && (cs->client_id != worker->client.clslot.client_id ||
139 cs->slot_nr != worker->client.clslot.slot_nr))
140 continue;
141
142 pthread_kill(worker->thread, sig);
143 break;
144 }
145 pthread_mutex_unlock(&g_bankd->workers_mutex);
146}
147
Harald Weltec650a4d2019-12-04 15:02:27 +0100148/* Remove a mapping */
149static void bankd_srvc_remove_mapping(struct slot_mapping *map)
150{
151 struct bank_slot bs = map->bank;
152
153 slotmap_del(g_bankd->slotmaps, map);
154
155 /* kill/reset the respective worker, if any! */
Harald Weltea4967832019-12-05 22:04:57 +0100156 send_signal_to_worker(&bs, NULL, SIGMAPDEL);
Harald Weltec650a4d2019-12-04 15:02:27 +0100157}
158
Harald Welte707c85a2019-03-09 12:56:35 +0100159/* handle incoming messages from server */
160static int bankd_srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
161{
Harald Welte454f5e22019-03-09 21:38:34 +0100162 const CreateMappingReq_t *creq = NULL;
163 const RemoveMappingReq_t *rreq = NULL;
Harald Weltef34fb792019-12-04 19:51:32 +0100164 struct bankd_worker *worker;
Harald Welte454f5e22019-03-09 21:38:34 +0100165 struct slot_mapping *map;
166 struct bank_slot bs;
167 struct client_slot cs;
168 RsproPDU_t *resp;
169
170 LOGPFSM(srvc->fi, "Rx RSPRO %s\n", rspro_msgt_name(pdu));
Harald Welte707c85a2019-03-09 12:56:35 +0100171
172 switch (pdu->msg.present) {
173 case RsproPDUchoice_PR_connectBankRes:
174 /* Store 'identity' of server in srvc->peer_comp_id */
175 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectBankRes.identity);
176 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
177 break;
Harald Welte454f5e22019-03-09 21:38:34 +0100178 case RsproPDUchoice_PR_createMappingReq:
179 creq = &pdu->msg.choice.createMappingReq;
Harald Welte2513d812019-04-01 21:03:02 +0200180 if (creq->bank.bankId != g_bankd->srvc.bankd.bank_id) {
Harald Welte94ba99b2019-03-27 22:42:11 +0100181 LOGPFSML(srvc->fi, LOGL_ERROR, "createMapping specifies invalid Bank ID %lu "
Harald Welte2513d812019-04-01 21:03:02 +0200182 "(we are %u)\n", creq->bank.bankId, g_bankd->srvc.bankd.bank_id);
Harald Welte454f5e22019-03-09 21:38:34 +0100183 resp = rspro_gen_CreateMappingRes(ResultCode_illegalBankId);
Harald Welte2513d812019-04-01 21:03:02 +0200184 } else if (creq->bank.slotNr >= g_bankd->srvc.bankd.num_slots) {
Harald Welte94ba99b2019-03-27 22:42:11 +0100185 LOGPFSML(srvc->fi, LOGL_ERROR, "createMapping specifies invalid Slot Nr %lu "
Harald Welte2513d812019-04-01 21:03:02 +0200186 "(we have %u)\n", creq->bank.slotNr, g_bankd->srvc.bankd.num_slots);
Harald Welte454f5e22019-03-09 21:38:34 +0100187 resp = rspro_gen_CreateMappingRes(ResultCode_illegalSlotId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100188 } else {
Harald Welte454f5e22019-03-09 21:38:34 +0100189 rspro2bank_slot(&bs, &creq->bank);
190 rspro2client_slot(&cs, &creq->client);
Harald Weltee6fa46a2019-12-04 15:06:33 +0100191 /* check if map exists */
192 map = slotmap_by_bank(g_bankd->slotmaps, &bs);
193 if (map) {
194 if (client_slot_equals(&map->client, &cs)) {
195 LOGPFSML(srvc->fi, LOGL_ERROR, "ignoring identical slotmap\n");
196 resp = rspro_gen_CreateMappingRes(ResultCode_ok);
197 goto send_resp;
198 } else {
199 LOGPFSM(srvc->fi, "implicitly removing slotmap\n");
200 bankd_srvc_remove_mapping(map);
201 }
202 }
Harald Welte454f5e22019-03-09 21:38:34 +0100203 /* Add a new mapping */
204 map = slotmap_add(g_bankd->slotmaps, &bs, &cs);
Harald Welte94ba99b2019-03-27 22:42:11 +0100205 if (!map) {
206 LOGPFSML(srvc->fi, LOGL_ERROR, "could not create slotmap\n");
Harald Welte454f5e22019-03-09 21:38:34 +0100207 resp = rspro_gen_CreateMappingRes(ResultCode_illegalSlotId);
Harald Welte0fd77a52019-12-05 22:05:39 +0100208 } else {
209 send_signal_to_worker(NULL, &cs, SIGMAPADD);
Harald Welte454f5e22019-03-09 21:38:34 +0100210 resp = rspro_gen_CreateMappingRes(ResultCode_ok);
Harald Welte0fd77a52019-12-05 22:05:39 +0100211 }
Harald Welte454f5e22019-03-09 21:38:34 +0100212 }
Harald Weltee6fa46a2019-12-04 15:06:33 +0100213send_resp:
Harald Welte454f5e22019-03-09 21:38:34 +0100214 server_conn_send_rspro(srvc, resp);
215 break;
216 case RsproPDUchoice_PR_removeMappingReq:
217 rreq = &pdu->msg.choice.removeMappingReq;
Harald Welte2513d812019-04-01 21:03:02 +0200218 if (rreq->bank.bankId != g_bankd->srvc.bankd.bank_id) {
Harald Welte94ba99b2019-03-27 22:42:11 +0100219 LOGPFSML(srvc->fi, LOGL_ERROR, "removeMapping specifies invalid Bank ID %lu "
Harald Welte550b2952019-12-04 21:22:54 +0100220 "(we are %u)\n", rreq->bank.bankId, g_bankd->srvc.bankd.bank_id);
Harald Welte454f5e22019-03-09 21:38:34 +0100221 resp = rspro_gen_RemoveMappingRes(ResultCode_illegalBankId);
Harald Welte2513d812019-04-01 21:03:02 +0200222 } else if (rreq->bank.slotNr >= g_bankd->srvc.bankd.num_slots) {
Harald Welte94ba99b2019-03-27 22:42:11 +0100223 LOGPFSML(srvc->fi, LOGL_ERROR, "removeMapping specifies invalid Slot Nr %lu "
Harald Welte550b2952019-12-04 21:22:54 +0100224 "(we have %u)\n", rreq->bank.slotNr, g_bankd->srvc.bankd.num_slots);
Harald Welte454f5e22019-03-09 21:38:34 +0100225 resp = rspro_gen_RemoveMappingRes(ResultCode_illegalSlotId);
Harald Welte94ba99b2019-03-27 22:42:11 +0100226 } else {
Harald Welte454f5e22019-03-09 21:38:34 +0100227 rspro2bank_slot(&bs, &rreq->bank);
228 /* Remove a mapping */
229 map = slotmap_by_bank(g_bankd->slotmaps, &bs);
Harald Welte94ba99b2019-03-27 22:42:11 +0100230 if (!map) {
231 LOGPFSML(srvc->fi, LOGL_ERROR, "could not find to-be-deleted slotmap\n");
Harald Welte454f5e22019-03-09 21:38:34 +0100232 resp = rspro_gen_RemoveMappingRes(ResultCode_unknownSlotmap);
Harald Welte94ba99b2019-03-27 22:42:11 +0100233 } else {
Harald Welted9fb9392019-12-04 19:05:01 +0100234 rspro2client_slot(&cs, &rreq->client);
235 if (!client_slot_equals(&map->client, &cs)) {
236 LOGPFSM(srvc->fi, "ClientId in removeMappingReq != map\n");
237 resp = rspro_gen_RemoveMappingRes(ResultCode_unknownSlotmap);
238 } else {
239 LOGPFSM(srvc->fi, "removing slotmap\n");
240 bankd_srvc_remove_mapping(map);
241 resp = rspro_gen_RemoveMappingRes(ResultCode_ok);
242 }
Harald Welte454f5e22019-03-09 21:38:34 +0100243 }
244 }
Harald Welte942f1ff2019-03-09 21:49:08 +0100245 server_conn_send_rspro(srvc, resp);
Harald Welte454f5e22019-03-09 21:38:34 +0100246 break;
Harald Weltef34fb792019-12-04 19:51:32 +0100247 case RsproPDUchoice_PR_resetStateReq:
248 /* delete all slotmaps */
249 slotmap_del_all(g_bankd->slotmaps);
250 /* notify all workers about maps having disappeared */
251 pthread_mutex_lock(&g_bankd->workers_mutex);
252 llist_for_each_entry(worker, &g_bankd->workers, list) {
253 pthread_kill(worker->thread, SIGMAPDEL);
254 }
255 pthread_mutex_unlock(&g_bankd->workers_mutex);
256 /* send response to server */
257 resp = rspro_gen_ResetStateRes(ResultCode_ok);
258 server_conn_send_rspro(srvc, resp);
259 break;
Harald Welte707c85a2019-03-09 12:56:35 +0100260 default:
Harald Welteeb971b52019-03-27 22:41:45 +0100261 LOGPFSML(srvc->fi, LOGL_ERROR, "Unknown/Unsupported RSPRO PDU type: %u\n",
262 pdu->msg.present);
Harald Welte707c85a2019-03-09 12:56:35 +0100263 return -1;
264 }
265
266 return 0;
267}
268
Harald Welte5bae20b2019-04-01 09:36:42 +0200269static void printf_help()
270{
271 printf(
272" -h --help Print this help message\n"
Harald Weltecd7fcd72019-12-03 21:29:07 +0100273" -V --version Print the version of the program\n"
Harald Welte80a01102020-05-25 14:55:12 +0200274" -d --debug option Enable debug logging (e.g. DMAIN:DST2)\n"
Harald Welte5bae20b2019-04-01 09:36:42 +0200275" -i --server-host A.B.C.D remsim-server IP address (default: 127.0.0.1)\n"
276" -p --server-port <1-65535> remsim-server TCP port (default: 9998)\n"
277" -b --bank-id <1-65535> Bank Identifier of this SIM bank (default: 1)\n"
Joachim Steiger9c963dc2019-05-25 00:49:32 +0200278" -n --num-slots <1-65535> Number of Slots in this SIM bank (default: 8)\n"
Harald Welte5bae20b2019-04-01 09:36:42 +0200279" -I --bind-ip A.B.C.D Local IP address to bind for incoming client\n"
280" connections (default: INADDR_ANY)\n"
281" -P --bind-port <1-65535> Local TCP port to bind for incoming client\n"
282" connectionss (default: 9999)\n"
283 );
284}
285
286static int g_bind_port = 9999;
287static char *g_bind_ip = NULL;
Harald Welte00a96732019-03-11 17:18:02 +0100288
Harald Welte707c85a2019-03-09 12:56:35 +0100289void handle_options(int argc, char **argv)
290{
Harald Welte5bae20b2019-04-01 09:36:42 +0200291 while (1) {
292 int option_index = 0, c;
293 static const struct option long_options[] = {
294 { "help", 0, 0, 'h' },
Harald Weltecd7fcd72019-12-03 21:29:07 +0100295 { "version", 0, 0, 'V' },
Harald Welte80a01102020-05-25 14:55:12 +0200296 { "debug", 1, 0, 'd' },
Harald Welte5bae20b2019-04-01 09:36:42 +0200297 { "server-host", 1, 0, 'i' },
298 { "server-port", 1, 0, 'p' },
299 { "bank-id", 1, 0, 'b' },
Harald Welte2513d812019-04-01 21:03:02 +0200300 { "num-slots", 1, 0, 'n' },
Harald Welte5bae20b2019-04-01 09:36:42 +0200301 { "component-name", 1, 0, 'N' },
302 { "bind-ip", 1, 0, 'I' },
303 { "bind-port", 1, 0, 'P' },
304 { 0, 0, 0, 0 }
305 };
306
Harald Welte80a01102020-05-25 14:55:12 +0200307 c = getopt_long(argc, argv, "hVd:i:o:b:n:N:I:P:", long_options, &option_index);
Harald Welte5bae20b2019-04-01 09:36:42 +0200308 if (c == -1)
309 break;
310
311 switch (c) {
312 case 'h':
313 printf_help();
314 exit(0);
315 break;
Harald Weltecd7fcd72019-12-03 21:29:07 +0100316 case 'V':
317 printf("osmo-remsim-bankd version %s\n", VERSION);
318 exit(0);
319 break;
Harald Welte80a01102020-05-25 14:55:12 +0200320 case 'd':
321 log_parse_category_mask(osmo_stderr_target, optarg);
322 break;
Harald Welte5bae20b2019-04-01 09:36:42 +0200323 case 'i':
324 g_bankd->srvc.server_host = optarg;
325 break;
326 case 'p':
327 g_bankd->srvc.server_port = atoi(optarg);
328 break;
329 case 'b':
Harald Welte2513d812019-04-01 21:03:02 +0200330 g_bankd->srvc.bankd.bank_id = atoi(optarg);
331 break;
332 case 'n':
333 g_bankd->srvc.bankd.num_slots = atoi(optarg);
Harald Welte5bae20b2019-04-01 09:36:42 +0200334 break;
335 case 'N':
336 OSMO_STRLCPY_ARRAY(g_bankd->srvc.own_comp_id.name, optarg);
337 break;
338 case 'I':
339 g_bind_ip = optarg;
340 break;
341 case 'P':
342 g_bind_port = atoi(optarg);
343 break;
344 }
345 }
Harald Welte707c85a2019-03-09 12:56:35 +0100346}
347
Harald Welte77911b02018-08-14 23:47:30 +0200348int main(int argc, char **argv)
349{
Harald Weltef4b16f12019-03-09 20:58:17 +0100350 struct rspro_server_conn *srvc;
Harald Welte77911b02018-08-14 23:47:30 +0200351 int i, rc;
352
Harald Weltef4b16f12019-03-09 20:58:17 +0100353 g_bankd = talloc_zero(NULL, struct bankd);
354 OSMO_ASSERT(g_bankd);
Harald Welte77911b02018-08-14 23:47:30 +0200355
Harald Weltef4b16f12019-03-09 20:58:17 +0100356 bankd_init(g_bankd);
357
358 srvc = &g_bankd->srvc;
Harald Welte707c85a2019-03-09 12:56:35 +0100359 srvc->server_host = "localhost";
360 srvc->server_port = 9998;
361 srvc->handle_rx = bankd_srvc_handle_rx;
362 srvc->own_comp_id.type = ComponentType_remsimBankd;
363 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "fixme-name");
364 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-bankd");
365 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
366
367 handle_options(argc, argv);
368
Harald Welte25075972019-03-11 17:33:17 +0100369 g_bankd->main = pthread_self();
Harald Welte00a96732019-03-11 17:18:02 +0100370 signal(SIGMAPDEL, handle_sig_mapdel);
Harald Welte0fd77a52019-12-05 22:05:39 +0100371 signal(SIGMAPADD, handle_sig_mapadd);
Harald Welte25075972019-03-11 17:33:17 +0100372 signal(SIGUSR1, handle_sig_usr1);
Harald Welte00a96732019-03-11 17:18:02 +0100373
Harald Weltee89fecd2019-04-04 09:23:13 +0200374 /* Np lock or mutex required for the pcsc_slot_names list, as this is only
375 * read once during bankd initialization, when the worker threads haven't
376 * started yet */
377 OSMO_ASSERT(bankd_pcsc_read_slotnames(g_bankd, "bankd_pcsc_slots.csv") == 0);
378
Harald Welte707c85a2019-03-09 12:56:35 +0100379 /* Connection towards remsim-server */
Harald Weltef4b16f12019-03-09 20:58:17 +0100380 rc = server_conn_fsm_alloc(g_bankd, srvc);
Harald Welte707c85a2019-03-09 12:56:35 +0100381 if (rc < 0) {
382 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
383 exit(1);
384 }
Harald Welted2192e22019-11-07 18:10:57 +0100385 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_ESTABLISH, NULL);
Harald Welte707c85a2019-03-09 12:56:35 +0100386
387 /* create listening socket for inbound client connections */
Harald Welte5bae20b2019-04-01 09:36:42 +0200388 rc = osmo_sock_init(AF_INET, SOCK_STREAM, IPPROTO_TCP, g_bind_ip, g_bind_port, OSMO_SOCK_F_BIND);
Harald Welte12534e72018-08-15 23:37:29 +0200389 if (rc < 0)
390 exit(1);
Harald Weltef4b16f12019-03-09 20:58:17 +0100391 g_bankd->accept_fd = rc;
Harald Welte12534e72018-08-15 23:37:29 +0200392
Harald Weltea0f39502019-03-09 20:59:34 +0100393 /* create worker threads: One per reader/slot! */
Harald Welte2513d812019-04-01 21:03:02 +0200394 for (i = 0; i < g_bankd->srvc.bankd.num_slots; i++) {
Harald Welte77911b02018-08-14 23:47:30 +0200395 struct bankd_worker *w;
Harald Weltef4b16f12019-03-09 20:58:17 +0100396 w = bankd_create_worker(g_bankd, i);
Harald Welte77911b02018-08-14 23:47:30 +0200397 if (!w)
398 exit(21);
399 }
400
401 while (1) {
402 if (terminate)
403 break;
Harald Welte707c85a2019-03-09 12:56:35 +0100404 osmo_select_main(0);
Harald Welte77911b02018-08-14 23:47:30 +0200405 }
406
Harald Weltef4b16f12019-03-09 20:58:17 +0100407 talloc_free(g_bankd);
Harald Welte77911b02018-08-14 23:47:30 +0200408 exit(0);
409}
410
411
412
413/***********************************************************************
414 * bankd worker thread
415 ***********************************************************************/
416
Harald Welte00a96732019-03-11 17:18:02 +0100417static __thread struct bankd_worker *g_worker;
418
Harald Welte8d858292018-08-15 23:36:46 +0200419struct value_string worker_state_names[] = {
420 { BW_ST_INIT, "INIT" },
421 { BW_ST_ACCEPTING, "ACCEPTING" },
422 { BW_ST_CONN_WAIT_ID, "CONN_WAIT_ID" },
423 { BW_ST_CONN_CLIENT, "CONN_CLIENT" },
Harald Welteaf614732018-08-17 22:10:05 +0200424 { BW_ST_CONN_CLIENT_WAIT_MAP, "CONN_CLIENT_WAIT_MAP" },
Harald Welte8d858292018-08-15 23:36:46 +0200425 { BW_ST_CONN_CLIENT_MAPPED, "CONN_CLIENT_MAPPED" },
426 { BW_ST_CONN_CLIENT_MAPPED_CARD,"CONN_CLIENT_MAPPED_CARD" },
Harald Welte00a96732019-03-11 17:18:02 +0100427 { BW_ST_CONN_CLIENT_UNMAPPED, "CONN_CLIENT_UNMAPPED" },
Harald Welte8d858292018-08-15 23:36:46 +0200428 { 0, NULL }
429};
430
Harald Welte1f699b42019-03-28 13:41:08 +0100431static int worker_send_rspro(struct bankd_worker *worker, RsproPDU_t *pdu);
432
Harald Welte8d858292018-08-15 23:36:46 +0200433static void worker_set_state(struct bankd_worker *worker, enum bankd_worker_state new_state)
434{
435 LOGW(worker, "Changing state to %s\n", get_value_string(worker_state_names, new_state));
436 worker->state = new_state;
Harald Welte150d6d62018-10-03 23:07:47 +0200437 worker->timeout = 0;
438}
439
440static void worker_set_state_timeout(struct bankd_worker *worker, enum bankd_worker_state new_state,
441 unsigned int timeout_secs)
442{
443 LOGW(worker, "Changing state to %s (timeout=%u)\n",
444 get_value_string(worker_state_names, new_state), timeout_secs);
445 worker->state = new_state;
446 worker->timeout = timeout_secs;
Harald Welte8d858292018-08-15 23:36:46 +0200447}
Harald Welte77911b02018-08-14 23:47:30 +0200448
Harald Welte00a96732019-03-11 17:18:02 +0100449/* signal handler for receiving SIGMAPDEL from main thread */
450static void handle_sig_mapdel(int sig)
451{
452 LOGW(g_worker, "SIGMAPDEL received: Main thread informs us our map is gone\n");
453 OSMO_ASSERT(sig == SIGMAPDEL);
Harald Weltea8d945e2019-12-04 22:24:18 +0100454 if (g_worker->state >= BW_ST_CONN_CLIENT_MAPPED) {
455 g_worker->slot.bank_id = 0xffff;
456 g_worker->slot.slot_nr = 0xffff;
457 worker_set_state(g_worker, BW_ST_CONN_CLIENT_UNMAPPED);
458 }
Harald Welte00a96732019-03-11 17:18:02 +0100459}
460
Harald Welte0fd77a52019-12-05 22:05:39 +0100461/* signal handler for receiving SIGMAPADD from main thread */
462static void handle_sig_mapadd(int sig)
463{
464 LOGW(g_worker, "SIGMAPADD received\n");
465 /* do nothing */
466}
467
Harald Welte25075972019-03-11 17:33:17 +0100468static void handle_sig_usr1(int sig)
469{
470 OSMO_ASSERT(sig == SIGUSR1);
471
472 if (pthread_equal(g_bankd->main, pthread_self())) {
473 struct bankd_worker *worker;
474 /* main thread */
475 fprintf(stderr, "=== Talloc Report of main thread:\n");
Harald Welteb54a51e2019-03-31 15:57:59 +0200476 talloc_report_full(g_tall_ctx, stderr);
Harald Welte25075972019-03-11 17:33:17 +0100477
478 /* iterate over worker threads and ask them to dump their talloc state */
479 pthread_mutex_lock(&g_bankd->workers_mutex);
480 llist_for_each_entry(worker, &g_bankd->workers, list) {
481 pthread_kill(worker->thread, SIGUSR1);
482 }
483 pthread_mutex_unlock(&g_bankd->workers_mutex);
484 } else {
485 /* worker thread */
486 fprintf(stderr, "=== Talloc Report of %s\n", g_worker->name);
Harald Welteb54a51e2019-03-31 15:57:59 +0200487 talloc_report_full(g_worker->tall_ctx, stderr);
Harald Welte25075972019-03-11 17:33:17 +0100488 }
489}
490
Harald Welte77911b02018-08-14 23:47:30 +0200491static void worker_cleanup(void *arg)
492{
493 struct bankd_worker *worker = (struct bankd_worker *) arg;
494 struct bankd *bankd = worker->bankd;
495
496 /* FIXME: should we still do this? in the thread ?!? */
497 pthread_mutex_lock(&bankd->workers_mutex);
498 llist_del(&worker->list);
499 talloc_free(worker); /* FIXME: is this safe? */
500 pthread_mutex_unlock(&bankd->workers_mutex);
501}
502
Harald Welteaf614732018-08-17 22:10:05 +0200503static int worker_open_card(struct bankd_worker *worker)
Harald Welte77911b02018-08-14 23:47:30 +0200504{
Harald Welte297d72e2019-03-28 18:42:35 +0100505 int rc;
Harald Welte77911b02018-08-14 23:47:30 +0200506
Harald Welte150d6d62018-10-03 23:07:47 +0200507 OSMO_ASSERT(worker->state == BW_ST_CONN_CLIENT_MAPPED);
508
Harald Welte694df832018-10-03 22:47:52 +0200509 if (!worker->reader.name) {
510 /* resolve PC/SC reader name from slot_id -> name map */
511 worker->reader.name = bankd_pcsc_get_slot_name(worker->bankd, &worker->slot);
512 if (!worker->reader.name) {
513 LOGW(worker, "No PC/SC reader name configured for %u/%u, fix your config\n",
514 worker->slot.bank_id, worker->slot.slot_nr);
Harald Welte297d72e2019-03-28 18:42:35 +0100515 return -1;
Harald Welte694df832018-10-03 22:47:52 +0200516 }
517 }
Harald Welte45c948c2018-09-23 19:26:52 +0200518 OSMO_ASSERT(worker->reader.name);
519
Harald Welte297d72e2019-03-28 18:42:35 +0100520 rc = worker->ops->open_card(worker);
521 if (rc < 0)
522 return rc;
Harald Welte1f699b42019-03-28 13:41:08 +0100523
Harald Welte57593f02018-09-23 19:30:31 +0200524 worker_set_state(worker, BW_ST_CONN_CLIENT_MAPPED_CARD);
Harald Welte150d6d62018-10-03 23:07:47 +0200525 /* FIXME: notify client about this state change */
Harald Welte57593f02018-09-23 19:30:31 +0200526
Harald Welteaf614732018-08-17 22:10:05 +0200527 return 0;
Harald Welte77911b02018-08-14 23:47:30 +0200528}
Harald Welte77911b02018-08-14 23:47:30 +0200529
530
Harald Welte00a96732019-03-11 17:18:02 +0100531static int blocking_ipa_read(struct bankd_worker *worker, uint8_t *buf, unsigned int buf_size)
Harald Welte77911b02018-08-14 23:47:30 +0200532{
533 struct ipaccess_head *hh;
534 uint16_t len;
535 int needed, rc;
536
537 if (buf_size < sizeof(*hh))
538 return -1;
539
540 hh = (struct ipaccess_head *) buf;
541
Harald Welte00a96732019-03-11 17:18:02 +0100542 /* we use 'recv' and not 'read' below, as 'recv' will always fail with -EINTR
543 * in case of a signal being received */
544
545restart_hdr:
546 /* 1) blocking recv from the socket (IPA header) */
547 rc = recv(worker->client.fd, buf, sizeof(*hh), 0);
548 if (rc == -1 && errno == EINTR) {
549 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
550 return -23;
551 goto restart_hdr;
552 } else if (rc < 0)
553 return rc;
554 else if (rc < sizeof(*hh))
Harald Welte77911b02018-08-14 23:47:30 +0200555 return -2;
556
557 len = ntohs(hh->len);
558 needed = len; //- sizeof(*hh);
559
Harald Welte00a96732019-03-11 17:18:02 +0100560restart_body:
561 /* 2) blocking recv from the socket (payload) */
562 rc = recv(worker->client.fd, buf+sizeof(*hh), needed, 0);
563 if (rc == -1 && errno == EINTR) {
564 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
565 return -23;
566 goto restart_body;
567 } else if (rc < 0)
568 return rc;
569 else if (rc < needed)
Harald Welte77911b02018-08-14 23:47:30 +0200570 return -3;
571
572 return len;
573}
574
Harald Welte796a7492018-09-23 19:31:28 +0200575static int worker_send_rspro(struct bankd_worker *worker, RsproPDU_t *pdu)
576{
577 struct msgb *msg = rspro_enc_msg(pdu);
578 int rc;
579
580 if (!msg) {
Harald Welte2eee4502019-03-30 08:50:35 +0100581 ASN_STRUCT_FREE(asn_DEF_RsproPDU, pdu);
Harald Welte796a7492018-09-23 19:31:28 +0200582 LOGW(worker, "error encoding RSPRO\n");
583 return -1;
584 }
585
Harald Weltefd471192018-09-24 14:51:14 +0200586 msg->l2h = msg->data;
Harald Welte796a7492018-09-23 19:31:28 +0200587 /* prepend the header */
588 ipa_prepend_header_ext(msg, IPAC_PROTO_EXT_RSPRO);
Harald Weltefd471192018-09-24 14:51:14 +0200589 ipa_prepend_header(msg, IPAC_PROTO_OSMO);
Harald Welte796a7492018-09-23 19:31:28 +0200590
591 /* actually send it through the socket */
592 rc = write(worker->client.fd, msgb_data(msg), msgb_length(msg));
593 if (rc == msgb_length(msg))
594 rc = 0;
595 else {
596 LOGW(worker, "error during write: %d != %d\n", rc, msgb_length(msg));
597 rc = -1;
598 }
599
600 msgb_free(msg);
601
602 return rc;
603}
604
Harald Welte150d6d62018-10-03 23:07:47 +0200605/* attempt to obtain slot-map */
606static int worker_try_slotmap(struct bankd_worker *worker)
607{
Harald Weltecbd18962019-03-03 19:02:38 +0100608 struct slot_mapping *slmap;
Harald Welte150d6d62018-10-03 23:07:47 +0200609
Harald Weltecbd18962019-03-03 19:02:38 +0100610 slmap = slotmap_by_client(worker->bankd->slotmaps, &worker->client.clslot);
Harald Welte150d6d62018-10-03 23:07:47 +0200611 if (!slmap) {
612 LOGW(worker, "No slotmap (yet) for client C(%u:%u)\n",
613 worker->client.clslot.client_id, worker->client.clslot.slot_nr);
614 /* check in 10s if the map has been installed meanwhile by main thread */
615 worker_set_state_timeout(worker, BW_ST_CONN_CLIENT_WAIT_MAP, 10);
616 return -1;
617 } else {
618 LOGW(worker, "slotmap found: C(%u:%u) -> B(%u:%u)\n",
619 slmap->client.client_id, slmap->client.slot_nr,
620 slmap->bank.bank_id, slmap->bank.slot_nr);
621 worker->slot = slmap->bank;
622 worker_set_state_timeout(worker, BW_ST_CONN_CLIENT_MAPPED, 10);
623 return worker_open_card(worker);
624 }
625}
626
Harald Welte1f699b42019-03-28 13:41:08 +0100627/* inform the remote end (client) about the (new) ATR */
628static int worker_send_atr(struct bankd_worker *worker)
629{
630 RsproPDU_t *set_atr;
631 set_atr = rspro_gen_SetAtrReq(worker->client.clslot.client_id,
632 worker->client.clslot.slot_nr,
633 worker->card.atr, worker->card.atr_len);
634 if (!set_atr)
635 return -1;
636 return worker_send_rspro(worker, set_atr);
637}
Harald Welte150d6d62018-10-03 23:07:47 +0200638
Harald Weltecce2aad2018-08-16 14:44:37 +0200639static int worker_handle_connectClientReq(struct bankd_worker *worker, const RsproPDU_t *pdu)
640{
Harald Welteaf614732018-08-17 22:10:05 +0200641 const struct ComponentIdentity *cid = &pdu->msg.choice.connectClientReq.identity;
Harald Welte458e01b2019-03-10 11:14:43 +0100642 RsproPDU_t *resp = NULL;
Harald Welte3e689872018-09-24 14:52:56 +0200643 e_ResultCode res;
Harald Welte458e01b2019-03-10 11:14:43 +0100644 int rc;
Harald Welteaf614732018-08-17 22:10:05 +0200645
Harald Weltecce2aad2018-08-16 14:44:37 +0200646 OSMO_ASSERT(pdu->msg.present == RsproPDUchoice_PR_connectClientReq);
647
Harald Weltecce2aad2018-08-16 14:44:37 +0200648 LOGW(worker, "connectClientReq(T=%lu, N='%s', SW='%s', VER='%s')\n",
649 cid->type, cid->name.buf, cid->software.buf, cid->swVersion.buf);
650 /* FIXME: store somewhere? */
651
652 if (worker->state != BW_ST_CONN_WAIT_ID) {
653 LOGW(worker, "Unexpected connectClientReq\n");
Harald Welte458e01b2019-03-10 11:14:43 +0100654 rc = -102;
655 goto respond_and_err;
Harald Weltecce2aad2018-08-16 14:44:37 +0200656 }
657
Harald Welte371d0262018-08-16 15:23:58 +0200658 if (!pdu->msg.choice.connectClientReq.clientSlot) {
Harald Weltecce2aad2018-08-16 14:44:37 +0200659 LOGW(worker, "missing clientID, aborting\n");
Harald Welte458e01b2019-03-10 11:14:43 +0100660 res = ResultCode_illegalClientId;
661 rc = -103;
662 goto respond_and_err;
Harald Weltecce2aad2018-08-16 14:44:37 +0200663 }
Harald Welte371d0262018-08-16 15:23:58 +0200664 worker->client.clslot.client_id = pdu->msg.choice.connectClientReq.clientSlot->clientId;
665 worker->client.clslot.slot_nr = pdu->msg.choice.connectClientReq.clientSlot->slotNr;
Harald Weltecce2aad2018-08-16 14:44:37 +0200666 worker_set_state(worker, BW_ST_CONN_CLIENT);
667
Harald Welte150d6d62018-10-03 23:07:47 +0200668 if (worker_try_slotmap(worker) >= 0)
669 res = ResultCode_ok;
670 else
Harald Welte3e689872018-09-24 14:52:56 +0200671 res = ResultCode_cardNotPresent;
Harald Weltecce2aad2018-08-16 14:44:37 +0200672
Harald Welte3e689872018-09-24 14:52:56 +0200673 resp = rspro_gen_ConnectClientRes(&worker->bankd->comp_id, res);
Harald Welte1f699b42019-03-28 13:41:08 +0100674 rc = worker_send_rspro(worker, resp);
675 if (rc < 0)
676 return rc;
677
678 if (res == ResultCode_ok)
679 rc = worker_send_atr(worker);
680
681 return rc;
Harald Welte458e01b2019-03-10 11:14:43 +0100682
683respond_and_err:
684 if (res) {
685 resp = rspro_gen_ConnectClientRes(&worker->bankd->comp_id, res);
686 worker_send_rspro(worker, resp);
687 }
688 return rc;
Harald Weltecce2aad2018-08-16 14:44:37 +0200689}
690
Harald Welte796a7492018-09-23 19:31:28 +0200691static int worker_handle_tpduModemToCard(struct bankd_worker *worker, const RsproPDU_t *pdu)
692{
693 const struct TpduModemToCard *mdm2sim = &pdu->msg.choice.tpduModemToCard;
Harald Welte796a7492018-09-23 19:31:28 +0200694 uint8_t rx_buf[1024];
695 DWORD rx_buf_len = sizeof(rx_buf);
696 RsproPDU_t *pdu_resp;
Harald Weltee1d32892019-03-27 20:47:42 +0100697 struct client_slot clslot;
698 struct bank_slot bslot;
Harald Welte297d72e2019-03-28 18:42:35 +0100699 int rc;
Harald Welte796a7492018-09-23 19:31:28 +0200700
701 LOGW(worker, "tpduModemToCard(%s)\n", osmo_hexdump_nospc(mdm2sim->data.buf, mdm2sim->data.size));
702
703 if (worker->state != BW_ST_CONN_CLIENT_MAPPED_CARD) {
704 LOGW(worker, "Unexpected tpduModemToCaard\n");
705 return -104;
706 }
707
Harald Weltee1d32892019-03-27 20:47:42 +0100708 /* Validate that toBankSlot / fromClientSlot match our expectations */
709 rspro2client_slot(&clslot, &mdm2sim->fromClientSlot);
710 rspro2bank_slot(&bslot, &mdm2sim->toBankSlot);
711 if (!bank_slot_equals(&worker->slot, &bslot)) {
712 LOGW(worker, "Unexpected BankSlot %u:%u in tpduModemToCard\n",
713 bslot.bank_id, bslot.slot_nr);
714 return -105;
715 }
716 if (!client_slot_equals(&worker->client.clslot, &clslot)) {
717 LOGW(worker, "Unexpected ClientSlot %u:%u in tpduModemToCard\n",
718 clslot.client_id, clslot.slot_nr);
719 return -106;
720 }
Harald Welte796a7492018-09-23 19:31:28 +0200721
Harald Welte297d72e2019-03-28 18:42:35 +0100722 rc = worker->ops->transceive(worker, mdm2sim->data.buf, mdm2sim->data.size,
723 rx_buf, &rx_buf_len);
724 if (rc < 0)
725 return rc;
Harald Welte796a7492018-09-23 19:31:28 +0200726
727 /* encode response PDU and send it */
728 pdu_resp = rspro_gen_TpduCard2Modem(&mdm2sim->toBankSlot, &mdm2sim->fromClientSlot,
729 rx_buf, rx_buf_len);
730 worker_send_rspro(worker, pdu_resp);
731
732 return 0;
Harald Welte796a7492018-09-23 19:31:28 +0200733}
734
Harald Weltebbd18bd2019-12-16 13:11:50 +0100735static int worker_handle_clientSlotStatusInd(struct bankd_worker *worker, const RsproPDU_t *pdu)
736{
737 const struct ClientSlotStatusInd *cssi = &pdu->msg.choice.clientSlotStatusInd;
738 const struct SlotPhysStatus *sps = &cssi->slotPhysStatus;
739 int rc = 0;
740
741 LOGW(worker, "clientSlotStatusInd(RST=%s, VCC=%s, CLK=%s)\n",
742 sps->resetActive ? "ACTIVE" : "INACTIVE",
743 sps->vccPresent ? *sps->vccPresent ? "PRESENT" : "ABSENT" : "NULL",
744 sps->clkActive ? *sps->clkActive ? "ACTIVE" : "INACTIVE" : "NULL");
745
746 /* perform cold or warm reset */
747 if (sps->vccPresent && *sps->vccPresent == 0)
748 rc = worker->ops->reset_card(worker, true);
749 else if (sps->resetActive)
750 rc = worker->ops->reset_card(worker, false);
751
752 return rc;
753}
754
Harald Welte77911b02018-08-14 23:47:30 +0200755/* handle one incoming RSPRO message from a client inside a worker thread */
756static int worker_handle_rspro(struct bankd_worker *worker, const RsproPDU_t *pdu)
757{
Harald Weltecce2aad2018-08-16 14:44:37 +0200758 int rc = -100;
759
Harald Welte736e8312019-03-31 13:08:16 +0200760 LOGW(worker, "Rx RSPRO %s\n", rspro_msgt_name(pdu));
761
Harald Welte77911b02018-08-14 23:47:30 +0200762 switch (pdu->msg.present) {
763 case RsproPDUchoice_PR_connectClientReq:
Harald Weltecce2aad2018-08-16 14:44:37 +0200764 rc = worker_handle_connectClientReq(worker, pdu);
Harald Welte77911b02018-08-14 23:47:30 +0200765 break;
766 case RsproPDUchoice_PR_tpduModemToCard:
Harald Welte796a7492018-09-23 19:31:28 +0200767 rc = worker_handle_tpduModemToCard(worker, pdu);
Harald Welte77911b02018-08-14 23:47:30 +0200768 break;
769 case RsproPDUchoice_PR_clientSlotStatusInd:
Harald Weltebbd18bd2019-12-16 13:11:50 +0100770 rc = worker_handle_clientSlotStatusInd(worker, pdu);
Harald Welte24a3e322019-03-31 13:08:30 +0200771 rc = 0;
772 break;
773 case RsproPDUchoice_PR_setAtrRes:
774 rc = 0;
Harald Welte77911b02018-08-14 23:47:30 +0200775 break;
776 default:
Harald Weltecce2aad2018-08-16 14:44:37 +0200777 rc = -101;
778 break;
Harald Welte77911b02018-08-14 23:47:30 +0200779 }
780
Harald Weltecce2aad2018-08-16 14:44:37 +0200781 return rc;
Harald Welte77911b02018-08-14 23:47:30 +0200782}
783
Harald Welte694df832018-10-03 22:47:52 +0200784static int wait_for_fd_or_timeout(int fd, unsigned int timeout_secs)
785{
786 struct timeval tout = { timeout_secs, 0 };
787 fd_set readset;
788
789 FD_ZERO(&readset);
790 FD_SET(fd, &readset);
791 return select(fd + 1, &readset, NULL, NULL, timeout_secs ? &tout : NULL);
792}
793
Harald Welte77911b02018-08-14 23:47:30 +0200794/* body of the main transceive loop */
795static int worker_transceive_loop(struct bankd_worker *worker)
796{
797 struct ipaccess_head *hh;
798 struct ipaccess_head_ext *hh_ext;
799 uint8_t buf[65536]; /* maximum length expressed in 16bit length field */
800 asn_dec_rval_t rval;
801 int data_len, rc;
Harald Welte9ebbacc2018-09-24 17:43:39 +0200802 RsproPDU_t *pdu = NULL;
Harald Welte77911b02018-08-14 23:47:30 +0200803
Harald Welte00a96732019-03-11 17:18:02 +0100804restart_wait:
Harald Welte694df832018-10-03 22:47:52 +0200805 rc = wait_for_fd_or_timeout(worker->client.fd, worker->timeout);
Harald Welte00a96732019-03-11 17:18:02 +0100806 if (rc == -1 && errno == EINTR) {
807 if (worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
808 return -23;
Harald Welte0fd77a52019-12-05 22:05:39 +0100809 else
810 worker_try_slotmap(worker);
Harald Welte00a96732019-03-11 17:18:02 +0100811 goto restart_wait;
812 } else if (rc < 0)
813 return rc;
814 else if (rc == 0) {
Harald Welte694df832018-10-03 22:47:52 +0200815 /* TIMEOUT case */
Harald Welte150d6d62018-10-03 23:07:47 +0200816 switch (worker->state) {
817 case BW_ST_CONN_CLIENT_WAIT_MAP:
818 /* re-check if mapping exists meanwhile? */
Harald Welte1f699b42019-03-28 13:41:08 +0100819 rc = worker_try_slotmap(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200820 break;
821 case BW_ST_CONN_CLIENT_MAPPED:
822 /* re-check if reader/card can be opened meanwhile? */
Harald Welte1f699b42019-03-28 13:41:08 +0100823 rc = worker_open_card(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200824 break;
825 default:
826 OSMO_ASSERT(0);
827 }
Harald Welte1f699b42019-03-28 13:41:08 +0100828 if (rc == 0)
829 worker_send_atr(worker);
Harald Welte150d6d62018-10-03 23:07:47 +0200830 /* return early, so we do another select rather than the blocking read below */
Harald Welte694df832018-10-03 22:47:52 +0200831 return 0;
832 };
833
Harald Welte77911b02018-08-14 23:47:30 +0200834 /* 1) blocking read of entire IPA message from the socket */
Harald Welte00a96732019-03-11 17:18:02 +0100835 rc = blocking_ipa_read(worker, buf, sizeof(buf));
Harald Welte77911b02018-08-14 23:47:30 +0200836 if (rc < 0)
837 return rc;
838 data_len = rc;
839
840 hh = (struct ipaccess_head *) buf;
Harald Welte5a3613a2018-10-11 12:56:21 +0200841 if (hh->proto != IPAC_PROTO_OSMO && hh->proto != IPAC_PROTO_IPACCESS) {
Harald Weltee1176cf2018-09-24 14:54:58 +0200842 LOGW(worker, "Received unsupported IPA protocol != OSMO: 0x%02x\n", hh->proto);
Harald Welte77911b02018-08-14 23:47:30 +0200843 return -4;
Harald Weltee1176cf2018-09-24 14:54:58 +0200844 }
Harald Welte77911b02018-08-14 23:47:30 +0200845
Harald Welte5a3613a2018-10-11 12:56:21 +0200846 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte19f881a2019-03-11 18:39:13 +0100847 switch (hh->data[0]) {
848 case IPAC_MSGT_PING:
849 return ipa_ccm_send_pong(worker->client.fd);
Harald Welte667d6942019-12-01 22:34:21 +0100850 case IPAC_MSGT_ID_ACK:
851 return ipa_ccm_send_id_ack(g_worker->client.fd);
Harald Welte19f881a2019-03-11 18:39:13 +0100852 default:
853 LOGW(worker, "IPA CCM 0x%02x not implemented yet\n", hh->data[0]);
854 break;
855 }
Harald Welte5a3613a2018-10-11 12:56:21 +0200856 return 0;
857 }
858
Harald Welte77911b02018-08-14 23:47:30 +0200859 hh_ext = (struct ipaccess_head_ext *) buf + sizeof(*hh);
Harald Weltee1176cf2018-09-24 14:54:58 +0200860 if (data_len < sizeof(*hh_ext)) {
861 LOGW(worker, "Received short message\n");
Harald Welte77911b02018-08-14 23:47:30 +0200862 return -5;
Harald Weltee1176cf2018-09-24 14:54:58 +0200863 }
Harald Welte77911b02018-08-14 23:47:30 +0200864 data_len -= sizeof(*hh_ext);
Harald Weltee1176cf2018-09-24 14:54:58 +0200865 if (hh_ext->proto != IPAC_PROTO_EXT_RSPRO) {
866 LOGW(worker, "Received unsupported IPA EXT protocol != RSPRO: 0x%02x\n", hh_ext->proto);
Harald Welte77911b02018-08-14 23:47:30 +0200867 return -6;
Harald Weltee1176cf2018-09-24 14:54:58 +0200868 }
Harald Welte77911b02018-08-14 23:47:30 +0200869
870 /* 2) ASN1 BER decode of the message */
871 rval = ber_decode(NULL, &asn_DEF_RsproPDU, (void **) &pdu, hh_ext->data, data_len);
Harald Weltee1176cf2018-09-24 14:54:58 +0200872 if (rval.code != RC_OK) {
873 LOGW(worker, "Error during BER decode of RSPRO\n");
Harald Welte77911b02018-08-14 23:47:30 +0200874 return -7;
Harald Weltee1176cf2018-09-24 14:54:58 +0200875 }
Harald Welte77911b02018-08-14 23:47:30 +0200876
877 /* 3) handling of the message, possibly resulting in PCSC commands */
878 rc = worker_handle_rspro(worker, pdu);
879 ASN_STRUCT_FREE(asn_DEF_RsproPDU, pdu);
Harald Weltee1176cf2018-09-24 14:54:58 +0200880 if (rc < 0) {
881 LOGW(worker, "Error handling RSPRO\n");
Harald Welte77911b02018-08-14 23:47:30 +0200882 return rc;
Harald Weltee1176cf2018-09-24 14:54:58 +0200883 }
Harald Welte77911b02018-08-14 23:47:30 +0200884
885 /* everything OK if we reach here */
886 return 0;
887}
888
Harald Welted6dfb8c2018-08-16 14:46:53 +0200889/* obtain an ascii representation of the client IP/port */
890static int worker_client_addrstr(char *out, unsigned int outlen, const struct bankd_worker *worker)
891{
892 char hostbuf[32], portbuf[32];
893 int rc;
894
895 rc = getnameinfo((const struct sockaddr *)&worker->client.peer_addr,
896 worker->client.peer_addr_len, hostbuf, sizeof(hostbuf),
897 portbuf, sizeof(portbuf), NI_NUMERICHOST | NI_NUMERICSERV);
898 if (rc != 0) {
899 out[0] = '\0';
900 return -1;
901 }
902 snprintf(out, outlen, "%s:%s", hostbuf, portbuf);
903 return 0;
904}
905
Harald Welte77911b02018-08-14 23:47:30 +0200906/* worker thread main function */
907static void *worker_main(void *arg)
908{
Harald Welte77911b02018-08-14 23:47:30 +0200909 void *top_ctx;
910 int rc;
Harald Welte31c9eca2018-10-03 21:03:34 +0200911
Harald Welte00a96732019-03-11 17:18:02 +0100912 g_worker = (struct bankd_worker *) arg;
913
Harald Welte00a96732019-03-11 17:18:02 +0100914 worker_set_state(g_worker, BW_ST_INIT);
Harald Welte8d858292018-08-15 23:36:46 +0200915
Harald Welte77911b02018-08-14 23:47:30 +0200916 /* not permitted in multithreaded environment */
917 talloc_disable_null_tracking();
Harald Welte25075972019-03-11 17:33:17 +0100918 g_worker->tall_ctx = talloc_named_const(NULL, 0, "top");
919 talloc_asn1_ctx = talloc_named_const(g_worker->tall_ctx, 0, "asn1");
Harald Welte77911b02018-08-14 23:47:30 +0200920
Harald Welte286a2be2019-03-11 17:36:58 +0100921 /* set the thread name */
922 g_worker->name = talloc_asprintf(g_worker->tall_ctx, "bankd-worker(%u)", g_worker->num);
923 pthread_setname_np(pthread_self(), g_worker->name);
924
Harald Welte77911b02018-08-14 23:47:30 +0200925 /* push cleanup helper */
Harald Welte00a96732019-03-11 17:18:02 +0100926 pthread_cleanup_push(&worker_cleanup, g_worker);
Harald Welte77911b02018-08-14 23:47:30 +0200927
Harald Welte602b6f72019-12-04 21:51:02 +0100928 g_worker->slot.bank_id = 0xffff;
929 g_worker->slot.slot_nr = 0xffff;
930
Harald Welte77911b02018-08-14 23:47:30 +0200931 /* we continuously perform the same loop here, recycling the worker thread
932 * once the client connection is gone or we have some trouble with the card/reader */
933 while (1) {
Harald Welted6dfb8c2018-08-16 14:46:53 +0200934 char buf[128];
935
Harald Welte00a96732019-03-11 17:18:02 +0100936 g_worker->client.peer_addr_len = sizeof(g_worker->client.peer_addr);
Harald Welte77911b02018-08-14 23:47:30 +0200937
Harald Welte00a96732019-03-11 17:18:02 +0100938 worker_set_state(g_worker, BW_ST_ACCEPTING);
Harald Welte77911b02018-08-14 23:47:30 +0200939 /* first wait for an incoming TCP connection */
Harald Welte00a96732019-03-11 17:18:02 +0100940 rc = accept(g_worker->bankd->accept_fd, (struct sockaddr *) &g_worker->client.peer_addr,
941 &g_worker->client.peer_addr_len);
Harald Welte77911b02018-08-14 23:47:30 +0200942 if (rc < 0) {
943 continue;
944 }
Harald Welte00a96732019-03-11 17:18:02 +0100945 g_worker->client.fd = rc;
946 worker_client_addrstr(buf, sizeof(buf), g_worker);
947 LOGW(g_worker, "Accepted connection from %s\n", buf);
948 worker_set_state(g_worker, BW_ST_CONN_WAIT_ID);
Harald Welte77911b02018-08-14 23:47:30 +0200949
950 /* run the main worker transceive loop body until there was some error */
951 while (1) {
Harald Welte00a96732019-03-11 17:18:02 +0100952 rc = worker_transceive_loop(g_worker);
Harald Welte77911b02018-08-14 23:47:30 +0200953 if (rc < 0)
954 break;
Harald Welte653d6a02019-03-11 18:38:44 +0100955 if (g_worker->state == BW_ST_CONN_CLIENT_UNMAPPED)
956 break;
Harald Welte77911b02018-08-14 23:47:30 +0200957 }
958
Harald Welte00a96732019-03-11 17:18:02 +0100959 LOGW(g_worker, "Error %d occurred: Cleaning up state\n", rc);
Harald Welted6dfb8c2018-08-16 14:46:53 +0200960
Harald Welte77911b02018-08-14 23:47:30 +0200961 /* clean-up: reset to sane state */
Harald Welte1f699b42019-03-28 13:41:08 +0100962 memset(&g_worker->card, 0, sizeof(g_worker->card));
Harald Welte297d72e2019-03-28 18:42:35 +0100963 g_worker->ops->cleanup(g_worker);
Harald Welte00a96732019-03-11 17:18:02 +0100964 if (g_worker->reader.name)
965 g_worker->reader.name = NULL;
966 if (g_worker->client.fd >= 0)
967 close(g_worker->client.fd);
968 memset(&g_worker->client.peer_addr, 0, sizeof(g_worker->client.peer_addr));
969 g_worker->client.fd = -1;
970 g_worker->client.clslot.client_id = g_worker->client.clslot.slot_nr = 0;
Harald Welte77911b02018-08-14 23:47:30 +0200971 }
972
973 pthread_cleanup_pop(1);
974 talloc_free(top_ctx);
975 pthread_exit(NULL);
976}