blob: a186b83d17f891c72a5c16f6e77b26b42f1d3bb8 [file] [log] [blame]
Harald Welte3dcdd202019-03-09 13:06:46 +01001/* (C) 2018-2019 by Harald Welte <laforge@gnumonks.org>
2 * (C) 2018 by sysmocom - s.f.m.c. GmbH, Author: Kevin Redon
3 *
4 * All Rights Reserved
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
22 */
23
Kévin Redone0b837c2018-10-10 00:39:25 +020024
25#include <errno.h>
26#include <string.h>
27
28#include <talloc.h>
29
30#include <osmocom/core/msgb.h>
31#include <osmocom/core/fsm.h>
32#include <osmocom/core/utils.h>
33#include <osmocom/core/logging.h>
34#include <osmocom/core/application.h>
35
36#include <osmocom/abis/ipa.h>
37#include <osmocom/gsm/protocol/ipaccess.h>
38
39#include "rspro_util.h"
40#include "client.h"
Harald Welte61d98e92019-03-03 15:43:07 +010041#include "debug.h"
Kévin Redone0b837c2018-10-10 00:39:25 +020042
43#include <unistd.h>
44#include <stdio.h>
Kévin Redon3428e412018-10-11 19:14:00 +020045#include <linux/limits.h>
46#include <sys/stat.h>
47#include <fcntl.h>
Kévin Redone0b837c2018-10-10 00:39:25 +020048#include <signal.h>
49#include <getopt.h>
50
51#include <libusb.h>
52
53#include "simtrace2/libusb_util.h"
54#include "simtrace2/simtrace_prot.h"
Kévin Redon3428e412018-10-11 19:14:00 +020055#include "simtrace2/simtrace_usb.h"
Kévin Redone0b837c2018-10-10 00:39:25 +020056#include "simtrace2/apdu_dispatch.h"
57#include "simtrace2/simtrace2-discovery.h"
58
59#include <osmocom/core/gsmtap.h>
60#include <osmocom/core/gsmtap_util.h>
61#include <osmocom/core/utils.h>
62#include <osmocom/core/socket.h>
63#include <osmocom/core/msgb.h>
64#include <osmocom/sim/class_tables.h>
65#include <osmocom/sim/sim.h>
66
67/* transport to a SIMtrace device */
68struct st_transport {
69 /* USB */
70 struct libusb_device_handle *usb_devh;
71 struct {
72 uint8_t in;
73 uint8_t out;
74 uint8_t irq_in;
75 } usb_ep;
Kévin Redone0b837c2018-10-10 00:39:25 +020076};
77
78/* a SIMtrace slot; communicates over a transport */
79struct st_slot {
80 /* transport through which the slot can be reached */
81 struct st_transport *transp;
82 /* number of the slot within the transport */
83 uint8_t slot_nr;
84};
85
86/* One istance of card emulation */
87struct cardem_inst {
88 /* slot on which this card emulation instance runs */
89 struct st_slot *slot;
90};
91
92/* global GSMTAP instance */
93static struct gsmtap_inst *g_gti;
94
95static struct bankd_client *g_client;
96static void *g_tall_ctx;
97void __thread *talloc_asn1_ctx;
98int asn_debug;
99
100static int gsmtap_send_sim(const uint8_t *apdu, unsigned int len)
101{
102 struct gsmtap_hdr *gh;
103 unsigned int gross_len = len + sizeof(*gh);
104 uint8_t *buf = malloc(gross_len);
105 int rc;
106
107 if (!buf)
108 return -ENOMEM;
109
110 memset(buf, 0, sizeof(*gh));
111 gh = (struct gsmtap_hdr *) buf;
112 gh->version = GSMTAP_VERSION;
113 gh->hdr_len = sizeof(*gh)/4;
114 gh->type = GSMTAP_TYPE_SIM;
115
116 memcpy(buf + sizeof(*gh), apdu, len);
117
118 rc = write(gsmtap_inst_fd(g_gti), buf, gross_len);
119 if (rc < 0) {
120 perror("write gsmtap");
121 free(buf);
122 return rc;
123 }
124
125 free(buf);
126 return 0;
127}
128
129/***********************************************************************
Harald Weltef14dc042019-03-28 20:29:36 +0100130 * SIMTRACE core protocol
Kévin Redone0b837c2018-10-10 00:39:25 +0200131 ***********************************************************************/
132
133/*! \brief allocate a message buffer for simtrace use */
134static struct msgb *st_msgb_alloc(void)
135{
136 return msgb_alloc_headroom(1024+32, 32, "SIMtrace");
137}
138
139#if 0
140static void apdu_out_cb(uint8_t *buf, unsigned int len, void *user_data)
141{
142 printf("APDU: %s\n", osmo_hexdump(buf, len));
143 gsmtap_send_sim(buf, len);
144}
145#endif
146
147/*! \brief Transmit a given command to the SIMtrace2 device */
148int st_transp_tx_msg(struct st_transport *transp, struct msgb *msg)
149{
150 int rc;
151
Kévin Redon21e31de2018-10-11 17:25:58 +0200152 printf("SIMtrace <- %s\n", msgb_hexdump(msg));
Kévin Redone0b837c2018-10-10 00:39:25 +0200153
Kévin Redon193a8c12018-10-11 17:24:39 +0200154 int xfer_len;
Kévin Redone0b837c2018-10-10 00:39:25 +0200155
Kévin Redon193a8c12018-10-11 17:24:39 +0200156 rc = libusb_bulk_transfer(transp->usb_devh, transp->usb_ep.out,
157 msgb_data(msg), msgb_length(msg),
158 &xfer_len, 100000);
Kévin Redone0b837c2018-10-10 00:39:25 +0200159
160 msgb_free(msg);
161 return rc;
162}
163
164static struct simtrace_msg_hdr *st_push_hdr(struct msgb *msg, uint8_t msg_class, uint8_t msg_type,
165 uint8_t slot_nr)
166{
167 struct simtrace_msg_hdr *sh;
168
169 sh = (struct simtrace_msg_hdr *) msgb_push(msg, sizeof(*sh));
170 memset(sh, 0, sizeof(*sh));
171 sh->msg_class = msg_class;
172 sh->msg_type = msg_type;
173 sh->slot_nr = slot_nr;
174 sh->msg_len = msgb_length(msg);
175
176 return sh;
177}
178
179/* transmit a given message to a specified slot. Expects all headers
180 * present before calling the function */
181int st_slot_tx_msg(struct st_slot *slot, struct msgb *msg,
182 uint8_t msg_class, uint8_t msg_type)
183{
184 st_push_hdr(msg, msg_class, msg_type, slot->slot_nr);
185
186 return st_transp_tx_msg(slot->transp, msg);
187}
188
189/***********************************************************************
190 * Card Emulation protocol
191 ***********************************************************************/
192
193
194/*! \brief Request the SIMtrace2 to generate a card-insert signal */
195static int cardem_request_card_insert(struct cardem_inst *ci, bool inserted)
196{
197 struct msgb *msg = st_msgb_alloc();
198 struct cardemu_usb_msg_cardinsert *cins;
199
200 cins = (struct cardemu_usb_msg_cardinsert *) msgb_put(msg, sizeof(*cins));
201 memset(cins, 0, sizeof(*cins));
202 if (inserted)
203 cins->card_insert = 1;
204
205 return st_slot_tx_msg(ci->slot, msg, SIMTRACE_MSGC_CARDEM, SIMTRACE_MSGT_DT_CEMU_CARDINSERT);
206}
207
208/*! \brief Request the SIMtrace2 to transmit a Procedure Byte, then Rx */
209static int cardem_request_pb_and_rx(struct cardem_inst *ci, uint8_t pb, uint8_t le)
210{
211 struct msgb *msg = st_msgb_alloc();
212 struct cardemu_usb_msg_tx_data *txd;
213 txd = (struct cardemu_usb_msg_tx_data *) msgb_put(msg, sizeof(*txd));
214
Kévin Redon21e31de2018-10-11 17:25:58 +0200215 printf("SIMtrace <= %s(%02x, %d)\n", __func__, pb, le);
Kévin Redone0b837c2018-10-10 00:39:25 +0200216
217 memset(txd, 0, sizeof(*txd));
218 txd->data_len = 1;
219 txd->flags = CEMU_DATA_F_PB_AND_RX;
220 /* one data byte */
221 msgb_put_u8(msg, pb);
222
223 return st_slot_tx_msg(ci->slot, msg, SIMTRACE_MSGC_CARDEM, SIMTRACE_MSGT_DT_CEMU_TX_DATA);
224}
225
226/*! \brief Request the SIMtrace2 to transmit a Procedure Byte, then Tx */
227static int cardem_request_pb_and_tx(struct cardem_inst *ci, uint8_t pb,
Kévin Redonf120b642018-10-15 19:53:02 +0200228 const uint8_t *data, uint16_t data_len_in)
Kévin Redone0b837c2018-10-10 00:39:25 +0200229{
230 struct msgb *msg = st_msgb_alloc();
231 struct cardemu_usb_msg_tx_data *txd;
232 uint8_t *cur;
233
234 txd = (struct cardemu_usb_msg_tx_data *) msgb_put(msg, sizeof(*txd));
235
Kévin Redon21e31de2018-10-11 17:25:58 +0200236 printf("SIMtrace <= %s(%02x, %s, %d)\n", __func__, pb,
Kévin Redone0b837c2018-10-10 00:39:25 +0200237 osmo_hexdump(data, data_len_in), data_len_in);
238
239 memset(txd, 0, sizeof(*txd));
240 txd->data_len = 1 + data_len_in;
241 txd->flags = CEMU_DATA_F_PB_AND_TX;
242 /* procedure byte */
243 msgb_put_u8(msg, pb);
244 /* data */
245 cur = msgb_put(msg, data_len_in);
246 memcpy(cur, data, data_len_in);
247
248 return st_slot_tx_msg(ci->slot, msg, SIMTRACE_MSGC_CARDEM, SIMTRACE_MSGT_DT_CEMU_TX_DATA);
249}
250
251/*! \brief Request the SIMtrace2 to send a Status Word */
252static int cardem_request_sw_tx(struct cardem_inst *ci, const uint8_t *sw)
253{
254 struct msgb *msg = st_msgb_alloc();
255 struct cardemu_usb_msg_tx_data *txd;
256 uint8_t *cur;
257
258 txd = (struct cardemu_usb_msg_tx_data *) msgb_put(msg, sizeof(*txd));
259
Kévin Redon21e31de2018-10-11 17:25:58 +0200260 printf("SIMtrace <= %s(%02x %02x)\n", __func__, sw[0], sw[1]);
Kévin Redone0b837c2018-10-10 00:39:25 +0200261
262 memset(txd, 0, sizeof(*txd));
263 txd->data_len = 2;
264 txd->flags = CEMU_DATA_F_PB_AND_TX | CEMU_DATA_F_FINAL;
265 cur = msgb_put(msg, 2);
266 cur[0] = sw[0];
267 cur[1] = sw[1];
268
269 return st_slot_tx_msg(ci->slot, msg, SIMTRACE_MSGC_CARDEM, SIMTRACE_MSGT_DT_CEMU_TX_DATA);
270}
271
Kévin Redon206c3d72018-11-12 22:51:37 +0100272// FIXME check if the ATR actually includes a checksum
Kévin Redone0b837c2018-10-10 00:39:25 +0200273static void atr_update_csum(uint8_t *atr, unsigned int atr_len)
274{
275 uint8_t csum = 0;
276 int i;
277
278 for (i = 1; i < atr_len - 1; i++)
279 csum = csum ^ atr[i];
280
281 atr[atr_len-1] = csum;
282}
283
284static int cardem_request_set_atr(struct cardem_inst *ci, const uint8_t *atr, unsigned int atr_len)
285{
286 struct msgb *msg = st_msgb_alloc();
287 struct cardemu_usb_msg_set_atr *satr;
288 uint8_t *cur;
289
290 satr = (struct cardemu_usb_msg_set_atr *) msgb_put(msg, sizeof(*satr));
291
Kévin Redon21e31de2018-10-11 17:25:58 +0200292 printf("SIMtrace <= %s(%s)\n", __func__, osmo_hexdump(atr, atr_len));
Kévin Redone0b837c2018-10-10 00:39:25 +0200293
294 memset(satr, 0, sizeof(*satr));
295 satr->atr_len = atr_len;
296 cur = msgb_put(msg, atr_len);
297 memcpy(cur, atr, atr_len);
298
299 return st_slot_tx_msg(ci->slot, msg, SIMTRACE_MSGC_CARDEM, SIMTRACE_MSGT_DT_CEMU_SET_ATR);
300}
301
302/***********************************************************************
303 * Modem Control protocol
304 ***********************************************************************/
305
306static int _modem_reset(struct st_slot *slot, uint8_t asserted, uint16_t pulse_ms)
307{
308 struct msgb *msg = st_msgb_alloc();
309 struct st_modem_reset *sr ;
310
311 sr = (struct st_modem_reset *) msgb_put(msg, sizeof(*sr));
312 sr->asserted = asserted;
313 sr->pulse_duration_msec = pulse_ms;
314
315 return st_slot_tx_msg(slot, msg, SIMTRACE_MSGC_MODEM, SIMTRACE_MSGT_DT_MODEM_RESET);
316}
317
318/*! \brief pulse the RESET line of the modem for \a duration_ms milli-seconds*/
319int st_modem_reset_pulse(struct st_slot *slot, uint16_t duration_ms)
320{
321 return _modem_reset(slot, 2, duration_ms);
322}
323
324/*! \brief assert the RESET line of the modem */
325int st_modem_reset_active(struct st_slot *slot)
326{
327 return _modem_reset(slot, 1, 0);
328}
329
330/*! \brief de-assert the RESET line of the modem */
331int st_modem_reset_inactive(struct st_slot *slot)
332{
333 return _modem_reset(slot, 0, 0);
334}
335
336static int _modem_sim_select(struct st_slot *slot, uint8_t remote_sim)
337{
338 struct msgb *msg = st_msgb_alloc();
339 struct st_modem_sim_select *ss;
340
341 ss = (struct st_modem_sim_select *) msgb_put(msg, sizeof(*ss));
342 ss->remote_sim = remote_sim;
343
344 return st_slot_tx_msg(slot, msg, SIMTRACE_MSGC_MODEM, SIMTRACE_MSGT_DT_MODEM_SIM_SELECT);
345}
346
347/*! \brief select local (physical) SIM for given slot */
348int st_modem_sim_select_local(struct st_slot *slot)
349{
350 return _modem_sim_select(slot, 0);
351}
352
353/*! \brief select remote (emulated/forwarded) SIM for given slot */
354int st_modem_sim_select_remote(struct st_slot *slot)
355{
356 return _modem_sim_select(slot, 1);
357}
358
359/*! \brief Request slot to send us status information about the modem */
360int st_modem_get_status(struct st_slot *slot)
361{
362 struct msgb *msg = st_msgb_alloc();
363
364 return st_slot_tx_msg(slot, msg, SIMTRACE_MSGC_MODEM, SIMTRACE_MSGT_BD_MODEM_STATUS);
365}
366
367
368/***********************************************************************
369 * Incoming Messages
370 ***********************************************************************/
371
372/*! \brief Process a STATUS message from the SIMtrace2 */
373static int process_do_status(struct cardem_inst *ci, uint8_t *buf, int len)
374{
375 struct cardemu_usb_msg_status *status;
376 status = (struct cardemu_usb_msg_status *) buf;
377
Kévin Redon21e31de2018-10-11 17:25:58 +0200378 printf("SIMtrace => STATUS: flags=0x%x, fi=%u, di=%u, wi=%u wtime=%u\n",
Kévin Redone0b837c2018-10-10 00:39:25 +0200379 status->flags, status->fi, status->di, status->wi,
380 status->waiting_time);
381
382 return 0;
383}
384
385/*! \brief Process a PTS indication message from the SIMtrace2 */
386static int process_do_pts(struct cardem_inst *ci, uint8_t *buf, int len)
387{
388 struct cardemu_usb_msg_pts_info *pts;
389 pts = (struct cardemu_usb_msg_pts_info *) buf;
390
Kévin Redon21e31de2018-10-11 17:25:58 +0200391 printf("SIMtrace => PTS req: %s\n", osmo_hexdump(pts->req, sizeof(pts->req)));
Kévin Redone0b837c2018-10-10 00:39:25 +0200392
393 return 0;
394}
395
396/*! \brief Process a ERROR indication message from the SIMtrace2 */
397static int process_do_error(struct cardem_inst *ci, uint8_t *buf, int len)
398{
399 struct cardemu_usb_msg_error *err;
400 err = (struct cardemu_usb_msg_error *) buf;
401
Kévin Redon21e31de2018-10-11 17:25:58 +0200402 printf("SIMtrace => ERROR: %u/%u/%u: %s\n",
Kévin Redone0b837c2018-10-10 00:39:25 +0200403 err->severity, err->subsystem, err->code,
404 err->msg_len ? (char *)err->msg : "");
405
406 return 0;
407}
408
Kévin Redonbc08db52018-10-11 08:41:00 +0200409static struct apdu_context ac; // this will hold the complete APDU (across calls)
410
Kévin Redone0b837c2018-10-10 00:39:25 +0200411/*! \brief Process a RX-DATA indication message from the SIMtrace2 */
412static int process_do_rx_da(struct cardem_inst *ci, uint8_t *buf, int len)
413{
Kévin Redonbc08db52018-10-11 08:41:00 +0200414 struct cardemu_usb_msg_rx_data *data = (struct cardemu_usb_msg_rx_data *) buf; // cast the data from the USB message
Kévin Redone0b837c2018-10-10 00:39:25 +0200415 int rc;
416
Kévin Redon21e31de2018-10-11 17:25:58 +0200417 printf("SIMtrace => DATA: flags=%x, %s: ", data->flags,
Kévin Redone0b837c2018-10-10 00:39:25 +0200418 osmo_hexdump(data->data, data->data_len));
419
420 rc = apdu_segment_in(&ac, data->data, data->data_len,
Kévin Redonbc08db52018-10-11 08:41:00 +0200421 data->flags & CEMU_DATA_F_TPDU_HDR); // parse the APDU data in the USB message
Kévin Redone0b837c2018-10-10 00:39:25 +0200422
Kévin Redonbc08db52018-10-11 08:41:00 +0200423 if (rc & APDU_ACT_TX_CAPDU_TO_CARD) { // there is no pending data coming from the modem
424 uint8_t* apdu_command = calloc(1, sizeof(ac.hdr) + ac.lc.tot); // to store the APDU command to send
425 memcpy(apdu_command, &ac.hdr, sizeof(ac.hdr)); // copy APDU command header
Kévin Redone0b837c2018-10-10 00:39:25 +0200426 if (ac.lc.tot) {
Kévin Redonbc08db52018-10-11 08:41:00 +0200427 memcpy(apdu_command + sizeof(ac.hdr), ac.dc, ac.lc.tot); // copy APDU command data
Kévin Redone0b837c2018-10-10 00:39:25 +0200428 }
Kévin Redonbc08db52018-10-11 08:41:00 +0200429 // send APDU to card
Harald Welte9cf013a2019-03-11 22:19:19 +0100430 BankSlot_t bslot;
431 bank_slot2rspro(&bslot, &g_client->bankd_slot);
432 RsproPDU_t *pdu = rspro_gen_TpduModem2Card(g_client->srv_conn.clslot, &bslot, apdu_command, sizeof(ac.hdr) + ac.lc.tot); // create RSPRO packet
Kévin Redonbc08db52018-10-11 08:41:00 +0200433 ipa_client_conn_send_rspro(g_client->bankd_conn, pdu); // send RSPRO packet
434 // the response will come separately
435 free(apdu_command);
436 } else if (ac.lc.tot > ac.lc.cur) { // there is pending data from the modem
437 cardem_request_pb_and_rx(ci, ac.hdr.ins, ac.lc.tot - ac.lc.cur); // send procedure byte to get remaining data
Kévin Redone0b837c2018-10-10 00:39:25 +0200438 }
439 return 0;
440}
441
442#if 0
443 case SIMTRACE_CMD_DO_ERROR
444 rc = process_do_error(ci, buf, len);
445 break;
446#endif
447
448/*! \brief Process an incoming message from the SIMtrace2 */
449static int process_usb_msg(struct cardem_inst *ci, uint8_t *buf, int len)
450{
451 struct simtrace_msg_hdr *sh = (struct simtrace_msg_hdr *)buf;
452 int rc;
453
Kévin Redon21e31de2018-10-11 17:25:58 +0200454 printf("SIMtrace -> %s\n", osmo_hexdump(buf, len));
Kévin Redone0b837c2018-10-10 00:39:25 +0200455
456 buf += sizeof(*sh);
457
458 switch (sh->msg_type) {
459 case SIMTRACE_MSGT_BD_CEMU_STATUS:
460 rc = process_do_status(ci, buf, len);
461 break;
462 case SIMTRACE_MSGT_DO_CEMU_PTS:
463 rc = process_do_pts(ci, buf, len);
464 break;
465 case SIMTRACE_MSGT_DO_CEMU_RX_DATA:
466 rc = process_do_rx_da(ci, buf, len);
467 break;
468 default:
469 printf("unknown simtrace msg type 0x%02x\n", sh->msg_type);
470 rc = -1;
471 break;
472 }
473
474 return rc;
475}
476
Kévin Redone0b837c2018-10-10 00:39:25 +0200477static void run_mainloop(struct cardem_inst *ci)
478{
479 struct st_transport *transp = ci->slot->transp;
480 unsigned int msg_count, byte_count = 0;
481 uint8_t buf[16*265];
482 int xfer_len;
483 int rc;
484
485 printf("Entering main loop\n");
486
487 while (1) {
488 /* read data from SIMtrace2 device (local or via USB) */
489 rc = libusb_bulk_transfer(transp->usb_devh, transp->usb_ep.in,
490 buf, sizeof(buf), &xfer_len, 100);
491 if (rc < 0 && rc != LIBUSB_ERROR_TIMEOUT &&
492 rc != LIBUSB_ERROR_INTERRUPTED &&
493 rc != LIBUSB_ERROR_IO) {
Kévin Redon6f074b72018-11-12 22:53:48 +0100494 fprintf(stderr, "BULK IN transfer error: %s\n", libusb_error_name(rc));
Kévin Redone0b837c2018-10-10 00:39:25 +0200495 return;
496 }
497 /* dispatch any incoming data */
498 if (xfer_len > 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200499 process_usb_msg(ci, buf, xfer_len);
500 msg_count++;
501 byte_count += xfer_len;
502 }
503 // handle remote SIM client fsm
504 // TODO register the USB fd for this select
505 osmo_select_main(true);
506 }
507}
508
509static struct st_transport _transp;
510
511static struct st_slot _slot = {
512 .transp = &_transp,
513 .slot_nr = 0,
514};
515
516struct cardem_inst _ci = {
517 .slot = &_slot,
518};
519
520struct cardem_inst *ci = &_ci;
521
522static void signal_handler(int signal)
523{
524 switch (signal) {
525 case SIGINT:
526 cardem_request_card_insert(ci, false);
527 exit(0);
528 break;
529 default:
530 break;
531 }
532}
533
534/** remsim_client **/
535
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200536static int bankd_handle_tpduCardToModem(struct bankd_client *bc, RsproPDU_t *pdu)
537{
538 OSMO_ASSERT(pdu);
539 OSMO_ASSERT(RsproPDUchoice_PR_tpduCardToModem == pdu->msg.present);
540
541 const struct TpduCardToModem *card2modem = &pdu->msg.choice.tpduCardToModem;
542 if (card2modem->data.size < 2) { // at least the two SW bytes are needed
543 return -1;
544 }
545
546 // save SW to our current APDU context
547 ac.sw[0] = card2modem->data.buf[card2modem->data.size - 2];
548 ac.sw[1] = card2modem->data.buf[card2modem->data.size - 1];
Kévin Redon21e31de2018-10-11 17:25:58 +0200549 printf("SIMtrace <= SW=0x%02x%02x, len_rx=%d\n", ac.sw[0], ac.sw[1], card2modem->data.size - 2);
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200550 if (card2modem->data.size > 2) { // send PB and data to modem
551 cardem_request_pb_and_tx(ci, ac.hdr.ins, card2modem->data.buf, card2modem->data.size - 2);
552 }
553 cardem_request_sw_tx(ci, ac.sw); // send SW to modem
554
555 return 0;
556}
557
Harald Weltefa365592019-03-28 20:28:57 +0100558static int bankd_handle_setAtrReq(struct bankd_client *bc, RsproPDU_t *pdu)
559{
560 RsproPDU_t *resp;
561 int rc;
562
563 OSMO_ASSERT(pdu);
564 OSMO_ASSERT(RsproPDUchoice_PR_setAtrReq == pdu->msg.present);
565
566 /* FIXME: is this permitted at any time by the SIMtrace2 cardemfirmware? */
567 rc = cardem_request_set_atr(ci, pdu->msg.choice.setAtrReq.atr.buf,
568 pdu->msg.choice.setAtrReq.atr.size);
569 if (rc == 0)
570 resp = rspro_gen_SetAtrRes(ResultCode_ok);
571 else
572 resp = rspro_gen_SetAtrRes(ResultCode_cardTransmissionError);
573 if (!resp)
574 return -ENOMEM;
575 bankd_conn_send_rspro(g_client, resp);
576
577 return 0;
578}
579
Kévin Redone0b837c2018-10-10 00:39:25 +0200580static int bankd_handle_msg(struct bankd_client *bc, struct msgb *msg)
581{
582 RsproPDU_t *pdu = rspro_dec_msg(msg);
583 if (!pdu) {
Harald Welte8d8d4f12019-03-27 22:50:39 +0100584 LOGPFSML(bc->bankd_fi, LOGL_ERROR, "Error decoding PDU\n");
Kévin Redone0b837c2018-10-10 00:39:25 +0200585 return -1;
586 }
587
588 switch (pdu->msg.present) {
589 case RsproPDUchoice_PR_connectClientRes:
Harald Weltee56f2b92019-03-02 17:02:13 +0100590 /* Store 'identity' of bankd to in peer_comp_id */
591 rspro_comp_id_retrieve(&bc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
Kévin Redone0b837c2018-10-10 00:39:25 +0200592 osmo_fsm_inst_dispatch(bc->bankd_fi, BDC_E_CLIENT_CONN_RES, pdu);
593 break;
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200594 case RsproPDUchoice_PR_tpduCardToModem: // APDU response from card received
595 bankd_handle_tpduCardToModem(bc, pdu);
596 break;
Harald Weltefa365592019-03-28 20:28:57 +0100597 case RsproPDUchoice_PR_setAtrReq:
598 bankd_handle_setAtrReq(bc, pdu);
599 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200600 default:
Harald Welte8d8d4f12019-03-27 22:50:39 +0100601 LOGPFSML(bc->bankd_fi, LOGL_ERROR, "Unknown/Unsuppoerted RSPRO PDU %s: %s\n",
602 rspro_msgt_name(pdu), msgb_hexdump(msg));
Kévin Redone0b837c2018-10-10 00:39:25 +0200603 return -1;
604 }
605
606 return 0;
607}
608
609int bankd_read_cb(struct ipa_client_conn *conn, struct msgb *msg)
610{
611 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
612 struct ipaccess_head_ext *he = (struct ipaccess_head_ext *) msgb_l2(msg);
613 struct bankd_client *bc = conn->data;
614 int rc;
615
616 if (msgb_length(msg) < sizeof(*hh))
617 goto invalid;
618 msg->l2h = &hh->data[0];
619 if (hh->proto != IPAC_PROTO_OSMO)
620 goto invalid;
621 if (!he || msgb_l2len(msg) < sizeof(*he))
622 goto invalid;
623 msg->l2h = &he->data[0];
624
625 if (he->proto != IPAC_PROTO_EXT_RSPRO)
626 goto invalid;
627
Harald Welte8d8d4f12019-03-27 22:50:39 +0100628 LOGPFSML(bc->bankd_fi, LOGL_DEBUG, "Received RSPRO %s\n", msgb_hexdump(msg));
Kévin Redone0b837c2018-10-10 00:39:25 +0200629
630 rc = bankd_handle_msg(bc, msg);
631
632 return rc;
633
634invalid:
635 msgb_free(msg);
636 return -1;
637}
638
Harald Weltee56f2b92019-03-02 17:02:13 +0100639/* handle incoming messages from server */
640static int srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
641{
642 RsproPDU_t *resp;
643
644 switch (pdu->msg.present) {
645 case RsproPDUchoice_PR_connectClientRes:
646 /* Store 'identity' of server in srvc->peer_comp_id */
647 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
648 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
649 break;
Harald Welted571a3e2019-03-11 22:09:50 +0100650 case RsproPDUchoice_PR_configClientIdReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100651 /* store/set the clientID as instructed by the server */
Harald Welteec628e92019-03-08 22:18:31 +0100652 if (!g_client->srv_conn.clslot)
653 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
Harald Welted571a3e2019-03-11 22:09:50 +0100654 *g_client->srv_conn.clslot = pdu->msg.choice.configClientIdReq.clientSlot;
655 /* send response to server */
656 resp = rspro_gen_ConfigClientIdRes(ResultCode_ok);
657 server_conn_send_rspro(srvc, resp);
658 break;
659 case RsproPDUchoice_PR_configClientBankReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100660 /* store/set the bankd ip/port as instructed by the server */
661 osmo_talloc_replace_string(g_client, &g_client->bankd_host,
Harald Welted571a3e2019-03-11 22:09:50 +0100662 rspro_IpAddr2str(&pdu->msg.choice.configClientBankReq.bankd.ip));
Harald Welte9cf013a2019-03-11 22:19:19 +0100663 rspro2bank_slot(&g_client->bankd_slot, &pdu->msg.choice.configClientBankReq.bankSlot);
Harald Welte7a950882019-03-17 09:35:16 +0100664 g_client->bankd_port = pdu->msg.choice.configClientBankReq.bankd.port;
Harald Weltee56f2b92019-03-02 17:02:13 +0100665 /* instruct bankd FSM to connect */
666 osmo_fsm_inst_dispatch(g_client->bankd_fi, BDC_E_ESTABLISH, NULL);
667 /* send response to server */
Harald Welted571a3e2019-03-11 22:09:50 +0100668 resp = rspro_gen_ConfigClientBankRes(ResultCode_ok);
Harald Weltea844bb02019-03-09 13:38:50 +0100669 server_conn_send_rspro(srvc, resp);
Harald Weltee56f2b92019-03-02 17:02:13 +0100670 break;
671 default:
Harald Welte8d8d4f12019-03-27 22:50:39 +0100672 LOGPFSML(srvc->fi, LOGL_ERROR, "Unknown/Unsupported RSPRO PDU type: %s\n",
673 rspro_msgt_name(pdu));
Harald Weltee56f2b92019-03-02 17:02:13 +0100674 return -1;
675 }
676
677 return 0;
678}
679
Harald Weltece638d82019-03-17 09:36:04 +0100680static void handle_sig_usr1(int signal)
681{
682 OSMO_ASSERT(signal == SIGUSR1);
683 talloc_report(g_tall_ctx, stderr);
684}
Harald Weltee56f2b92019-03-02 17:02:13 +0100685
Kévin Redon3ec265b2018-10-11 17:30:33 +0200686static void print_welcome(void)
687{
688 printf("simtrace2-remsim-client - Remote SIM card client for SIMtrace\n"
689 "(C) 2010-2017, Harald Welte <laforge@gnumonks.org>\n"
690 "(C) 2018, sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>\n\n");
691}
692
693static void print_help(void)
694{
Harald Weltee56f2b92019-03-02 17:02:13 +0100695 printf( "\t-s\t--server-host HOST\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200696 "\t-p\t--bankd-port PORT\n"
697 "\t-h\t--help\n"
698 "\t-i\t--gsmtap-ip\tA.B.C.D\n"
699 "\t-k\t--keep-running\n"
700 "\t-V\t--usb-vendor\tVENDOR_ID\n"
701 "\t-P\t--usb-product\tPRODUCT_ID\n"
702 "\t-C\t--usb-config\tCONFIG_ID\n"
703 "\t-I\t--usb-interface\tINTERFACE_ID\n"
704 "\t-S\t--usb-altsetting ALTSETTING_ID\n"
705 "\t-A\t--usb-address\tADDRESS\n"
706 "\t-H\t--usb-path\tPATH\n"
Kévin Redon206c3d72018-11-12 22:51:37 +0100707 "\t-a\t--atr\tATR\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200708 "\n"
709 );
710}
711
712static const struct option opts[] = {
Harald Weltee56f2b92019-03-02 17:02:13 +0100713 { "server-host", 1, 0, 's' },
714 { "server-port", 1, 0, 'p' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200715 { "gsmtap-ip", 1, 0, 'i' },
716 { "help", 0, 0, 'h' },
717 { "keep-running", 0, 0, 'k' },
718 { "usb-vendor", 1, 0, 'V' },
719 { "usb-product", 1, 0, 'P' },
720 { "usb-config", 1, 0, 'C' },
721 { "usb-interface", 1, 0, 'I' },
722 { "usb-altsetting", 1, 0, 'S' },
723 { "usb-address", 1, 0, 'A' },
724 { "usb-path", 1, 0, 'H' },
Kévin Redon206c3d72018-11-12 22:51:37 +0100725 { "atr", 1, 0, 'a' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200726 { NULL, 0, 0, 0 }
727};
728
Kévin Redone0b837c2018-10-10 00:39:25 +0200729int main(int argc, char **argv)
730{
Harald Weltee56f2b92019-03-02 17:02:13 +0100731 struct rspro_server_conn *srvc;
Kévin Redone0b837c2018-10-10 00:39:25 +0200732 struct st_transport *transp = ci->slot->transp;
733 char *gsmtap_host = "127.0.0.1";
734 int rc;
735 int c, ret = 1;
736 int keep_running = 0;
Harald Weltee56f2b92019-03-02 17:02:13 +0100737 int server_port = 9999;
Kévin Redone0b837c2018-10-10 00:39:25 +0200738 int if_num = 0, vendor_id = -1, product_id = -1;
739 int config_id = -1, altsetting = 0, addr = -1;
Harald Weltee56f2b92019-03-02 17:02:13 +0100740 char *server_host = "127.0.0.1";
Kévin Redone0b837c2018-10-10 00:39:25 +0200741 char *path = NULL;
Kévin Redon206c3d72018-11-12 22:51:37 +0100742 uint8_t atr_data[33] = { 0x3B, 0x00 }; // the shortest simplest ATR possible
743 uint8_t atr_len = 2;
Kévin Redone0b837c2018-10-10 00:39:25 +0200744
745 print_welcome();
746
747 while (1) {
748 int option_index = 0;
749
Harald Weltee56f2b92019-03-02 17:02:13 +0100750 c = getopt_long(argc, argv, "s:p:hi:V:P:C:I:S:A:H:a:k", opts, &option_index);
Kévin Redone0b837c2018-10-10 00:39:25 +0200751 if (c == -1)
752 break;
753 switch (c) {
Harald Weltee56f2b92019-03-02 17:02:13 +0100754 case 's':
755 server_host = optarg;
Kévin Redone0b837c2018-10-10 00:39:25 +0200756 break;
757 case 'p':
Harald Weltee56f2b92019-03-02 17:02:13 +0100758 server_port = atoi(optarg);
Kévin Redonfbca97a2018-10-11 19:13:24 +0200759 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200760 case 'h':
761 print_help();
762 exit(0);
763 break;
764 case 'i':
765 gsmtap_host = optarg;
766 break;
767 case 'k':
768 keep_running = 1;
769 break;
770 case 'V':
771 vendor_id = strtol(optarg, NULL, 16);
772 break;
773 case 'P':
774 product_id = strtol(optarg, NULL, 16);
775 break;
776 case 'C':
777 config_id = atoi(optarg);
778 break;
779 case 'I':
780 if_num = atoi(optarg);
781 break;
782 case 'S':
783 altsetting = atoi(optarg);
784 break;
785 case 'A':
786 addr = atoi(optarg);
787 break;
788 case 'H':
789 path = optarg;
790 break;
Kévin Redon206c3d72018-11-12 22:51:37 +0100791 case 'a':
792 rc = osmo_hexparse(optarg, atr_data, ARRAY_SIZE(atr_data));
793 if (rc < 2 || rc > ARRAY_SIZE(atr_data)) {
794 fprintf(stderr, "ATR matlformed\n");
795 goto do_exit;
796 }
797 atr_len = rc;
798 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200799 }
800 }
801
Kévin Redon39eb9dc2018-10-11 17:21:13 +0200802 if (vendor_id < 0 || product_id < 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200803 fprintf(stderr, "You have to specify the vendor and product ID\n");
804 goto do_exit;
805 }
806
Harald Weltece638d82019-03-17 09:36:04 +0100807 signal(SIGUSR1, handle_sig_usr1);
808
Kévin Redon193a8c12018-10-11 17:24:39 +0200809 rc = libusb_init(NULL);
810 if (rc < 0) {
811 fprintf(stderr, "libusb initialization failed\n");
812 goto do_exit;
Kévin Redone0b837c2018-10-10 00:39:25 +0200813 }
814
815 g_gti = gsmtap_source_init(gsmtap_host, GSMTAP_UDP_PORT, 0);
816 if (!g_gti) {
817 perror("unable to open GSMTAP");
818 goto close_exit;
819 }
820 gsmtap_source_add_sink(g_gti);
821
822 signal(SIGINT, &signal_handler);
823
824 // initialize remote SIM client
825 g_tall_ctx = talloc_named_const(NULL, 0, "global");
826
Kévin Redone0b837c2018-10-10 00:39:25 +0200827 g_client = talloc_zero(g_tall_ctx, struct bankd_client);
Harald Weltee56f2b92019-03-02 17:02:13 +0100828
829 srvc = &g_client->srv_conn;
830 srvc->server_host = server_host;
831 srvc->server_port = server_port;
832 srvc->handle_rx = srvc_handle_rx;
833 srvc->own_comp_id.type = ComponentType_remsimClient;
834 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "simtrace2-remsim-client");
835 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-client");
836 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
837 rc = server_conn_fsm_alloc(g_client, srvc);
838 if (rc < 0) {
839 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
840 exit(1);
841 }
Kévin Redone0b837c2018-10-10 00:39:25 +0200842
843 asn_debug = 0;
844 osmo_init_logging2(g_tall_ctx, &log_info);
845
846 if (bankd_conn_fsm_alloc(g_client) < 0) {
847 fprintf(stderr, "Unable to connect: %s\n", strerror(errno));
848 exit(1);
849 }
850
851 // connect to SIMtrace2 cardem
852 do {
853 struct usb_interface_match _ifm, *ifm = &_ifm;
854 ifm->vendor = vendor_id;
855 ifm->product = product_id;
856 ifm->configuration = config_id;
857 ifm->interface = if_num;
858 ifm->altsetting = altsetting;
859 ifm->addr = addr;
860 if (path)
861 osmo_strlcpy(ifm->path, path, sizeof(ifm->path));
862 transp->usb_devh = usb_open_claim_interface(NULL, ifm);
863 if (!transp->usb_devh) {
864 fprintf(stderr, "can't open USB device\n");
865 goto close_exit;
866 }
867
868 rc = libusb_claim_interface(transp->usb_devh, if_num);
869 if (rc < 0) {
870 fprintf(stderr, "can't claim interface %d; rc=%d\n", if_num, rc);
871 goto close_exit;
872 }
873
874 rc = get_usb_ep_addrs(transp->usb_devh, if_num, &transp->usb_ep.out,
875 &transp->usb_ep.in, &transp->usb_ep.irq_in);
876 if (rc < 0) {
877 fprintf(stderr, "can't obtain EP addrs; rc=%d\n", rc);
878 goto close_exit;
879 }
880
Kévin Redon3428e412018-10-11 19:14:00 +0200881 // switch modem SIM port to emulated SIM on OWHW
882 if (USB_VENDOR_OPENMOKO == ifm->vendor && USB_PRODUCT_OWHW_SAM3 == ifm->product) { // we are on the OWHW
883 int modem = -1;
884 switch (ifm->interface) { // the USB interface indicates for which modem we want to emulate the SIM
885 case 0:
886 modem = 1;
887 break;
888 case 1:
889 modem = 2;
890 break;
891 default:
892 fprintf(stderr, "unknown GPIO for SIMtrace interface %d\n", ifm->interface);
893 goto close_exit;
894 }
895 //
896 char gpio_path[PATH_MAX];
897 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/connect_st_usim%d/value", modem);
898 int connec_st_usim = open(gpio_path, O_WRONLY);
899 if (-1 == connec_st_usim) {
900 fprintf(stderr, "can't open GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
901 goto close_exit;
902 }
903 if (1 != write(connec_st_usim, "1", 1)) {
904 fprintf(stderr, "can't write GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
905 goto close_exit;
906 }
907 printf("switched modem %d to emulated USIM\n", modem);
908
909 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/mdm%d_rst/value", modem);
910 int mdm_rst = open(gpio_path, O_WRONLY);
911 if (-1 == mdm_rst) {
912 fprintf(stderr, "can't open GPIO %s to reset modem %d\n", gpio_path, modem);
913 goto close_exit;
914 }
915 if (1 != write(mdm_rst, "1", 1)) {
916 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
917 goto close_exit;
918 }
919 sleep(1); // wait a bit to ensure reset is effective
920 if (1 != write(mdm_rst, "0", 1)) {
921 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
922 goto close_exit;
923 }
924 printf("modem %d reset\n", modem);
925 }
926
Kévin Redone0b837c2018-10-10 00:39:25 +0200927 /* simulate card-insert to modem (owhw, not qmod) */
928 cardem_request_card_insert(ci, true);
929
930 /* select remote (forwarded) SIM */
931 st_modem_sim_select_remote(ci->slot);
932
933 /* set the ATR */
Kévin Redon206c3d72018-11-12 22:51:37 +0100934 //atr_update_csum(real_atr, sizeof(real_atr));
935 cardem_request_set_atr(ci, atr_data, atr_len);
Kévin Redone0b837c2018-10-10 00:39:25 +0200936
937 /* select remote (forwarded) SIM */
938 st_modem_reset_pulse(ci->slot, 300);
939
940 run_mainloop(ci);
941 ret = 0;
942
Kévin Redon193a8c12018-10-11 17:24:39 +0200943 libusb_release_interface(transp->usb_devh, 0);
Kévin Redone0b837c2018-10-10 00:39:25 +0200944close_exit:
945 if (transp->usb_devh)
946 libusb_close(transp->usb_devh);
947 if (keep_running)
948 sleep(1);
949 } while (keep_running);
950
Kévin Redon193a8c12018-10-11 17:24:39 +0200951 libusb_exit(NULL);
Kévin Redone0b837c2018-10-10 00:39:25 +0200952do_exit:
953 return ret;
954}