blob: f46b7e684b12138fbb9ca68eb857692f7417b50b [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/***********************************************************************
130 * SIMTRACE pcore protocol
131 ***********************************************************************/
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 Welteec628e92019-03-08 22:18:31 +0100430 RsproPDU_t *pdu = rspro_gen_TpduModem2Card(g_client->srv_conn.clslot, &(BankSlot_t){ .bankId = 0, .slotNr = 0}, apdu_command, sizeof(ac.hdr) + ac.lc.tot); // create RSPRO packet
Kévin Redonbc08db52018-10-11 08:41:00 +0200431 ipa_client_conn_send_rspro(g_client->bankd_conn, pdu); // send RSPRO packet
432 // the response will come separately
433 free(apdu_command);
434 } else if (ac.lc.tot > ac.lc.cur) { // there is pending data from the modem
435 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 +0200436 }
437 return 0;
438}
439
440#if 0
441 case SIMTRACE_CMD_DO_ERROR
442 rc = process_do_error(ci, buf, len);
443 break;
444#endif
445
446/*! \brief Process an incoming message from the SIMtrace2 */
447static int process_usb_msg(struct cardem_inst *ci, uint8_t *buf, int len)
448{
449 struct simtrace_msg_hdr *sh = (struct simtrace_msg_hdr *)buf;
450 int rc;
451
Kévin Redon21e31de2018-10-11 17:25:58 +0200452 printf("SIMtrace -> %s\n", osmo_hexdump(buf, len));
Kévin Redone0b837c2018-10-10 00:39:25 +0200453
454 buf += sizeof(*sh);
455
456 switch (sh->msg_type) {
457 case SIMTRACE_MSGT_BD_CEMU_STATUS:
458 rc = process_do_status(ci, buf, len);
459 break;
460 case SIMTRACE_MSGT_DO_CEMU_PTS:
461 rc = process_do_pts(ci, buf, len);
462 break;
463 case SIMTRACE_MSGT_DO_CEMU_RX_DATA:
464 rc = process_do_rx_da(ci, buf, len);
465 break;
466 default:
467 printf("unknown simtrace msg type 0x%02x\n", sh->msg_type);
468 rc = -1;
469 break;
470 }
471
472 return rc;
473}
474
Kévin Redone0b837c2018-10-10 00:39:25 +0200475static void run_mainloop(struct cardem_inst *ci)
476{
477 struct st_transport *transp = ci->slot->transp;
478 unsigned int msg_count, byte_count = 0;
479 uint8_t buf[16*265];
480 int xfer_len;
481 int rc;
482
483 printf("Entering main loop\n");
484
485 while (1) {
486 /* read data from SIMtrace2 device (local or via USB) */
487 rc = libusb_bulk_transfer(transp->usb_devh, transp->usb_ep.in,
488 buf, sizeof(buf), &xfer_len, 100);
489 if (rc < 0 && rc != LIBUSB_ERROR_TIMEOUT &&
490 rc != LIBUSB_ERROR_INTERRUPTED &&
491 rc != LIBUSB_ERROR_IO) {
Kévin Redon6f074b72018-11-12 22:53:48 +0100492 fprintf(stderr, "BULK IN transfer error: %s\n", libusb_error_name(rc));
Kévin Redone0b837c2018-10-10 00:39:25 +0200493 return;
494 }
495 /* dispatch any incoming data */
496 if (xfer_len > 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200497 process_usb_msg(ci, buf, xfer_len);
498 msg_count++;
499 byte_count += xfer_len;
500 }
501 // handle remote SIM client fsm
502 // TODO register the USB fd for this select
503 osmo_select_main(true);
504 }
505}
506
507static struct st_transport _transp;
508
509static struct st_slot _slot = {
510 .transp = &_transp,
511 .slot_nr = 0,
512};
513
514struct cardem_inst _ci = {
515 .slot = &_slot,
516};
517
518struct cardem_inst *ci = &_ci;
519
520static void signal_handler(int signal)
521{
522 switch (signal) {
523 case SIGINT:
524 cardem_request_card_insert(ci, false);
525 exit(0);
526 break;
527 default:
528 break;
529 }
530}
531
532/** remsim_client **/
533
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200534static int bankd_handle_tpduCardToModem(struct bankd_client *bc, RsproPDU_t *pdu)
535{
536 OSMO_ASSERT(pdu);
537 OSMO_ASSERT(RsproPDUchoice_PR_tpduCardToModem == pdu->msg.present);
538
539 const struct TpduCardToModem *card2modem = &pdu->msg.choice.tpduCardToModem;
540 if (card2modem->data.size < 2) { // at least the two SW bytes are needed
541 return -1;
542 }
543
544 // save SW to our current APDU context
545 ac.sw[0] = card2modem->data.buf[card2modem->data.size - 2];
546 ac.sw[1] = card2modem->data.buf[card2modem->data.size - 1];
Kévin Redon21e31de2018-10-11 17:25:58 +0200547 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 +0200548 if (card2modem->data.size > 2) { // send PB and data to modem
549 cardem_request_pb_and_tx(ci, ac.hdr.ins, card2modem->data.buf, card2modem->data.size - 2);
550 }
551 cardem_request_sw_tx(ci, ac.sw); // send SW to modem
552
553 return 0;
554}
555
Kévin Redone0b837c2018-10-10 00:39:25 +0200556static int bankd_handle_msg(struct bankd_client *bc, struct msgb *msg)
557{
558 RsproPDU_t *pdu = rspro_dec_msg(msg);
559 if (!pdu) {
560 fprintf(stderr, "Error decoding PDU\n");
561 return -1;
562 }
563
564 switch (pdu->msg.present) {
565 case RsproPDUchoice_PR_connectClientRes:
Harald Weltee56f2b92019-03-02 17:02:13 +0100566 /* Store 'identity' of bankd to in peer_comp_id */
567 rspro_comp_id_retrieve(&bc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
Kévin Redone0b837c2018-10-10 00:39:25 +0200568 osmo_fsm_inst_dispatch(bc->bankd_fi, BDC_E_CLIENT_CONN_RES, pdu);
569 break;
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200570 case RsproPDUchoice_PR_tpduCardToModem: // APDU response from card received
571 bankd_handle_tpduCardToModem(bc, pdu);
572 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200573 default:
574 fprintf(stderr, "Unknown/Unsuppoerted RSPRO PDU: %s\n", msgb_hexdump(msg));
575 return -1;
576 }
577
578 return 0;
579}
580
581int bankd_read_cb(struct ipa_client_conn *conn, struct msgb *msg)
582{
583 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
584 struct ipaccess_head_ext *he = (struct ipaccess_head_ext *) msgb_l2(msg);
585 struct bankd_client *bc = conn->data;
586 int rc;
587
588 if (msgb_length(msg) < sizeof(*hh))
589 goto invalid;
590 msg->l2h = &hh->data[0];
591 if (hh->proto != IPAC_PROTO_OSMO)
592 goto invalid;
593 if (!he || msgb_l2len(msg) < sizeof(*he))
594 goto invalid;
595 msg->l2h = &he->data[0];
596
597 if (he->proto != IPAC_PROTO_EXT_RSPRO)
598 goto invalid;
599
600 printf("Received RSPRO %s\n", msgb_hexdump(msg));
601
602 rc = bankd_handle_msg(bc, msg);
603
604 return rc;
605
606invalid:
607 msgb_free(msg);
608 return -1;
609}
610
Harald Weltee56f2b92019-03-02 17:02:13 +0100611/* handle incoming messages from server */
612static int srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
613{
614 RsproPDU_t *resp;
615
616 switch (pdu->msg.present) {
617 case RsproPDUchoice_PR_connectClientRes:
618 /* Store 'identity' of server in srvc->peer_comp_id */
619 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
620 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
621 break;
622 case RsproPDUchoice_PR_configClientReq:
623 /* store/set the clientID as instructed by the server */
Harald Welteec628e92019-03-08 22:18:31 +0100624 if (!g_client->srv_conn.clslot)
625 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
626 *g_client->srv_conn.clslot = pdu->msg.choice.configClientReq.clientSlot;
Harald Weltee56f2b92019-03-02 17:02:13 +0100627 /* store/set the bankd ip/port as instructed by the server */
628 osmo_talloc_replace_string(g_client, &g_client->bankd_host,
629 rspro_IpAddr2str(&pdu->msg.choice.configClientReq.bankd.ip));
630 g_client->bankd_port = ntohs(pdu->msg.choice.configClientReq.bankd.port);
631 /* instruct bankd FSM to connect */
632 osmo_fsm_inst_dispatch(g_client->bankd_fi, BDC_E_ESTABLISH, NULL);
633 /* send response to server */
634 resp = rspro_gen_ConfigClientRes(ResultCode_ok);
635 ipa_client_conn_send_rspro(srvc->conn, resp);
636 break;
637 default:
638 fprintf(stderr, "Unknown/Unsupported RSPRO PDU type: %u\n", pdu->msg.present);
639 return -1;
640 }
641
642 return 0;
643}
644
645
Kévin Redon3ec265b2018-10-11 17:30:33 +0200646static void print_welcome(void)
647{
648 printf("simtrace2-remsim-client - Remote SIM card client for SIMtrace\n"
649 "(C) 2010-2017, Harald Welte <laforge@gnumonks.org>\n"
650 "(C) 2018, sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>\n\n");
651}
652
653static void print_help(void)
654{
Harald Weltee56f2b92019-03-02 17:02:13 +0100655 printf( "\t-s\t--server-host HOST\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200656 "\t-p\t--bankd-port PORT\n"
657 "\t-h\t--help\n"
658 "\t-i\t--gsmtap-ip\tA.B.C.D\n"
659 "\t-k\t--keep-running\n"
660 "\t-V\t--usb-vendor\tVENDOR_ID\n"
661 "\t-P\t--usb-product\tPRODUCT_ID\n"
662 "\t-C\t--usb-config\tCONFIG_ID\n"
663 "\t-I\t--usb-interface\tINTERFACE_ID\n"
664 "\t-S\t--usb-altsetting ALTSETTING_ID\n"
665 "\t-A\t--usb-address\tADDRESS\n"
666 "\t-H\t--usb-path\tPATH\n"
Kévin Redon206c3d72018-11-12 22:51:37 +0100667 "\t-a\t--atr\tATR\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200668 "\n"
669 );
670}
671
672static const struct option opts[] = {
Harald Weltee56f2b92019-03-02 17:02:13 +0100673 { "server-host", 1, 0, 's' },
674 { "server-port", 1, 0, 'p' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200675 { "gsmtap-ip", 1, 0, 'i' },
676 { "help", 0, 0, 'h' },
677 { "keep-running", 0, 0, 'k' },
678 { "usb-vendor", 1, 0, 'V' },
679 { "usb-product", 1, 0, 'P' },
680 { "usb-config", 1, 0, 'C' },
681 { "usb-interface", 1, 0, 'I' },
682 { "usb-altsetting", 1, 0, 'S' },
683 { "usb-address", 1, 0, 'A' },
684 { "usb-path", 1, 0, 'H' },
Kévin Redon206c3d72018-11-12 22:51:37 +0100685 { "atr", 1, 0, 'a' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200686 { NULL, 0, 0, 0 }
687};
688
Kévin Redone0b837c2018-10-10 00:39:25 +0200689int main(int argc, char **argv)
690{
Harald Weltee56f2b92019-03-02 17:02:13 +0100691 struct rspro_server_conn *srvc;
Kévin Redone0b837c2018-10-10 00:39:25 +0200692 struct st_transport *transp = ci->slot->transp;
693 char *gsmtap_host = "127.0.0.1";
694 int rc;
695 int c, ret = 1;
696 int keep_running = 0;
Harald Weltee56f2b92019-03-02 17:02:13 +0100697 int server_port = 9999;
Kévin Redone0b837c2018-10-10 00:39:25 +0200698 int if_num = 0, vendor_id = -1, product_id = -1;
699 int config_id = -1, altsetting = 0, addr = -1;
Harald Weltee56f2b92019-03-02 17:02:13 +0100700 char *server_host = "127.0.0.1";
Kévin Redone0b837c2018-10-10 00:39:25 +0200701 char *path = NULL;
Kévin Redon206c3d72018-11-12 22:51:37 +0100702 uint8_t atr_data[33] = { 0x3B, 0x00 }; // the shortest simplest ATR possible
703 uint8_t atr_len = 2;
Kévin Redone0b837c2018-10-10 00:39:25 +0200704
705 print_welcome();
706
707 while (1) {
708 int option_index = 0;
709
Harald Weltee56f2b92019-03-02 17:02:13 +0100710 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 +0200711 if (c == -1)
712 break;
713 switch (c) {
Harald Weltee56f2b92019-03-02 17:02:13 +0100714 case 's':
715 server_host = optarg;
Kévin Redone0b837c2018-10-10 00:39:25 +0200716 break;
717 case 'p':
Harald Weltee56f2b92019-03-02 17:02:13 +0100718 server_port = atoi(optarg);
Kévin Redonfbca97a2018-10-11 19:13:24 +0200719 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200720 case 'h':
721 print_help();
722 exit(0);
723 break;
724 case 'i':
725 gsmtap_host = optarg;
726 break;
727 case 'k':
728 keep_running = 1;
729 break;
730 case 'V':
731 vendor_id = strtol(optarg, NULL, 16);
732 break;
733 case 'P':
734 product_id = strtol(optarg, NULL, 16);
735 break;
736 case 'C':
737 config_id = atoi(optarg);
738 break;
739 case 'I':
740 if_num = atoi(optarg);
741 break;
742 case 'S':
743 altsetting = atoi(optarg);
744 break;
745 case 'A':
746 addr = atoi(optarg);
747 break;
748 case 'H':
749 path = optarg;
750 break;
Kévin Redon206c3d72018-11-12 22:51:37 +0100751 case 'a':
752 rc = osmo_hexparse(optarg, atr_data, ARRAY_SIZE(atr_data));
753 if (rc < 2 || rc > ARRAY_SIZE(atr_data)) {
754 fprintf(stderr, "ATR matlformed\n");
755 goto do_exit;
756 }
757 atr_len = rc;
758 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200759 }
760 }
761
Kévin Redon39eb9dc2018-10-11 17:21:13 +0200762 if (vendor_id < 0 || product_id < 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200763 fprintf(stderr, "You have to specify the vendor and product ID\n");
764 goto do_exit;
765 }
766
Kévin Redon193a8c12018-10-11 17:24:39 +0200767 rc = libusb_init(NULL);
768 if (rc < 0) {
769 fprintf(stderr, "libusb initialization failed\n");
770 goto do_exit;
Kévin Redone0b837c2018-10-10 00:39:25 +0200771 }
772
773 g_gti = gsmtap_source_init(gsmtap_host, GSMTAP_UDP_PORT, 0);
774 if (!g_gti) {
775 perror("unable to open GSMTAP");
776 goto close_exit;
777 }
778 gsmtap_source_add_sink(g_gti);
779
780 signal(SIGINT, &signal_handler);
781
782 // initialize remote SIM client
783 g_tall_ctx = talloc_named_const(NULL, 0, "global");
784
Kévin Redone0b837c2018-10-10 00:39:25 +0200785 g_client = talloc_zero(g_tall_ctx, struct bankd_client);
Harald Weltee56f2b92019-03-02 17:02:13 +0100786
787 srvc = &g_client->srv_conn;
788 srvc->server_host = server_host;
789 srvc->server_port = server_port;
790 srvc->handle_rx = srvc_handle_rx;
791 srvc->own_comp_id.type = ComponentType_remsimClient;
792 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "simtrace2-remsim-client");
793 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-client");
794 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
795 rc = server_conn_fsm_alloc(g_client, srvc);
796 if (rc < 0) {
797 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
798 exit(1);
799 }
Kévin Redone0b837c2018-10-10 00:39:25 +0200800
801 asn_debug = 0;
802 osmo_init_logging2(g_tall_ctx, &log_info);
803
804 if (bankd_conn_fsm_alloc(g_client) < 0) {
805 fprintf(stderr, "Unable to connect: %s\n", strerror(errno));
806 exit(1);
807 }
808
809 // connect to SIMtrace2 cardem
810 do {
811 struct usb_interface_match _ifm, *ifm = &_ifm;
812 ifm->vendor = vendor_id;
813 ifm->product = product_id;
814 ifm->configuration = config_id;
815 ifm->interface = if_num;
816 ifm->altsetting = altsetting;
817 ifm->addr = addr;
818 if (path)
819 osmo_strlcpy(ifm->path, path, sizeof(ifm->path));
820 transp->usb_devh = usb_open_claim_interface(NULL, ifm);
821 if (!transp->usb_devh) {
822 fprintf(stderr, "can't open USB device\n");
823 goto close_exit;
824 }
825
826 rc = libusb_claim_interface(transp->usb_devh, if_num);
827 if (rc < 0) {
828 fprintf(stderr, "can't claim interface %d; rc=%d\n", if_num, rc);
829 goto close_exit;
830 }
831
832 rc = get_usb_ep_addrs(transp->usb_devh, if_num, &transp->usb_ep.out,
833 &transp->usb_ep.in, &transp->usb_ep.irq_in);
834 if (rc < 0) {
835 fprintf(stderr, "can't obtain EP addrs; rc=%d\n", rc);
836 goto close_exit;
837 }
838
Kévin Redon3428e412018-10-11 19:14:00 +0200839 // switch modem SIM port to emulated SIM on OWHW
840 if (USB_VENDOR_OPENMOKO == ifm->vendor && USB_PRODUCT_OWHW_SAM3 == ifm->product) { // we are on the OWHW
841 int modem = -1;
842 switch (ifm->interface) { // the USB interface indicates for which modem we want to emulate the SIM
843 case 0:
844 modem = 1;
845 break;
846 case 1:
847 modem = 2;
848 break;
849 default:
850 fprintf(stderr, "unknown GPIO for SIMtrace interface %d\n", ifm->interface);
851 goto close_exit;
852 }
853 //
854 char gpio_path[PATH_MAX];
855 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/connect_st_usim%d/value", modem);
856 int connec_st_usim = open(gpio_path, O_WRONLY);
857 if (-1 == connec_st_usim) {
858 fprintf(stderr, "can't open GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
859 goto close_exit;
860 }
861 if (1 != write(connec_st_usim, "1", 1)) {
862 fprintf(stderr, "can't write GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
863 goto close_exit;
864 }
865 printf("switched modem %d to emulated USIM\n", modem);
866
867 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/mdm%d_rst/value", modem);
868 int mdm_rst = open(gpio_path, O_WRONLY);
869 if (-1 == mdm_rst) {
870 fprintf(stderr, "can't open GPIO %s to reset modem %d\n", gpio_path, modem);
871 goto close_exit;
872 }
873 if (1 != write(mdm_rst, "1", 1)) {
874 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
875 goto close_exit;
876 }
877 sleep(1); // wait a bit to ensure reset is effective
878 if (1 != write(mdm_rst, "0", 1)) {
879 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
880 goto close_exit;
881 }
882 printf("modem %d reset\n", modem);
883 }
884
Kévin Redone0b837c2018-10-10 00:39:25 +0200885 /* simulate card-insert to modem (owhw, not qmod) */
886 cardem_request_card_insert(ci, true);
887
888 /* select remote (forwarded) SIM */
889 st_modem_sim_select_remote(ci->slot);
890
891 /* set the ATR */
Kévin Redon206c3d72018-11-12 22:51:37 +0100892 //atr_update_csum(real_atr, sizeof(real_atr));
893 cardem_request_set_atr(ci, atr_data, atr_len);
Kévin Redone0b837c2018-10-10 00:39:25 +0200894
895 /* select remote (forwarded) SIM */
896 st_modem_reset_pulse(ci->slot, 300);
897
898 run_mainloop(ci);
899 ret = 0;
900
Kévin Redon193a8c12018-10-11 17:24:39 +0200901 libusb_release_interface(transp->usb_devh, 0);
Kévin Redone0b837c2018-10-10 00:39:25 +0200902close_exit:
903 if (transp->usb_devh)
904 libusb_close(transp->usb_devh);
905 if (keep_running)
906 sleep(1);
907 } while (keep_running);
908
Kévin Redon193a8c12018-10-11 17:24:39 +0200909 libusb_exit(NULL);
Kévin Redone0b837c2018-10-10 00:39:25 +0200910do_exit:
911 return ret;
912}