blob: d54e963cd8566552230f1ab065df303a527d55eb [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
Harald Welte3f09f632019-03-31 15:51:13 +0200100__attribute__((unused)) static int gsmtap_send_sim(const uint8_t *apdu, unsigned int len)
Kévin Redone0b837c2018-10-10 00:39:25 +0200101{
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),
Harald Welteb6b7bd12019-04-01 10:51:27 +0200158 &xfer_len, 1000);
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
Harald Welte3f09f632019-03-31 15:51:13 +0200273__attribute__((unused)) static void atr_update_csum(uint8_t *atr, unsigned int atr_len)
Kévin Redone0b837c2018-10-10 00:39:25 +0200274{
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 */
Harald Welte3f09f632019-03-31 15:51:13 +0200397__attribute__((unused)) static int process_do_error(struct cardem_inst *ci, uint8_t *buf, int len)
Kévin Redone0b837c2018-10-10 00:39:25 +0200398{
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
Harald Welte2ea20b92019-03-30 08:33:49 +0100424 uint8_t apdu_command[sizeof(ac.hdr) + ac.lc.tot]; // to store the APDU command to send
Kévin Redonbc08db52018-10-11 08:41:00 +0200425 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
Harald Welte3e9860b2019-12-02 23:04:54 +0100433 server_conn_send_rspro(&g_client->bankd_conn, pdu);
Kévin Redonbc08db52018-10-11 08:41:00 +0200434 // the response will come separately
Kévin Redonbc08db52018-10-11 08:41:00 +0200435 } else if (ac.lc.tot > ac.lc.cur) { // there is pending data from the modem
436 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 +0200437 }
438 return 0;
439}
440
441#if 0
442 case SIMTRACE_CMD_DO_ERROR
443 rc = process_do_error(ci, buf, len);
444 break;
445#endif
446
447/*! \brief Process an incoming message from the SIMtrace2 */
448static int process_usb_msg(struct cardem_inst *ci, uint8_t *buf, int len)
449{
450 struct simtrace_msg_hdr *sh = (struct simtrace_msg_hdr *)buf;
451 int rc;
452
Kévin Redon21e31de2018-10-11 17:25:58 +0200453 printf("SIMtrace -> %s\n", osmo_hexdump(buf, len));
Kévin Redone0b837c2018-10-10 00:39:25 +0200454
455 buf += sizeof(*sh);
456
457 switch (sh->msg_type) {
458 case SIMTRACE_MSGT_BD_CEMU_STATUS:
459 rc = process_do_status(ci, buf, len);
460 break;
461 case SIMTRACE_MSGT_DO_CEMU_PTS:
462 rc = process_do_pts(ci, buf, len);
463 break;
464 case SIMTRACE_MSGT_DO_CEMU_RX_DATA:
465 rc = process_do_rx_da(ci, buf, len);
466 break;
467 default:
468 printf("unknown simtrace msg type 0x%02x\n", sh->msg_type);
469 rc = -1;
470 break;
471 }
472
473 return rc;
474}
475
Kévin Redone0b837c2018-10-10 00:39:25 +0200476static void run_mainloop(struct cardem_inst *ci)
477{
478 struct st_transport *transp = ci->slot->transp;
479 unsigned int msg_count, byte_count = 0;
480 uint8_t buf[16*265];
481 int xfer_len;
482 int rc;
483
484 printf("Entering main loop\n");
485
486 while (1) {
487 /* read data from SIMtrace2 device (local or via USB) */
488 rc = libusb_bulk_transfer(transp->usb_devh, transp->usb_ep.in,
489 buf, sizeof(buf), &xfer_len, 100);
490 if (rc < 0 && rc != LIBUSB_ERROR_TIMEOUT &&
491 rc != LIBUSB_ERROR_INTERRUPTED &&
492 rc != LIBUSB_ERROR_IO) {
Kévin Redon6f074b72018-11-12 22:53:48 +0100493 fprintf(stderr, "BULK IN transfer error: %s\n", libusb_error_name(rc));
Kévin Redone0b837c2018-10-10 00:39:25 +0200494 return;
495 }
496 /* dispatch any incoming data */
497 if (xfer_len > 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200498 process_usb_msg(ci, buf, xfer_len);
499 msg_count++;
500 byte_count += xfer_len;
501 }
502 // handle remote SIM client fsm
503 // TODO register the USB fd for this select
504 osmo_select_main(true);
505 }
506}
507
508static struct st_transport _transp;
509
510static struct st_slot _slot = {
511 .transp = &_transp,
512 .slot_nr = 0,
513};
514
515struct cardem_inst _ci = {
516 .slot = &_slot,
517};
518
519struct cardem_inst *ci = &_ci;
520
521static void signal_handler(int signal)
522{
523 switch (signal) {
524 case SIGINT:
525 cardem_request_card_insert(ci, false);
526 exit(0);
527 break;
528 default:
529 break;
530 }
531}
532
533/** remsim_client **/
534
Harald Welte3e9860b2019-12-02 23:04:54 +0100535static int bankd_handle_tpduCardToModem(struct bankd_client *bc, const RsproPDU_t *pdu)
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200536{
537 OSMO_ASSERT(pdu);
538 OSMO_ASSERT(RsproPDUchoice_PR_tpduCardToModem == pdu->msg.present);
539
540 const struct TpduCardToModem *card2modem = &pdu->msg.choice.tpduCardToModem;
541 if (card2modem->data.size < 2) { // at least the two SW bytes are needed
542 return -1;
543 }
544
545 // save SW to our current APDU context
546 ac.sw[0] = card2modem->data.buf[card2modem->data.size - 2];
547 ac.sw[1] = card2modem->data.buf[card2modem->data.size - 1];
Kévin Redon21e31de2018-10-11 17:25:58 +0200548 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 +0200549 if (card2modem->data.size > 2) { // send PB and data to modem
550 cardem_request_pb_and_tx(ci, ac.hdr.ins, card2modem->data.buf, card2modem->data.size - 2);
551 }
552 cardem_request_sw_tx(ci, ac.sw); // send SW to modem
553
554 return 0;
555}
556
Harald Welte3e9860b2019-12-02 23:04:54 +0100557static int bankd_handle_setAtrReq(struct bankd_client *bc, const RsproPDU_t *pdu)
Harald Weltefa365592019-03-28 20:28:57 +0100558{
559 RsproPDU_t *resp;
560 int rc;
561
562 OSMO_ASSERT(pdu);
563 OSMO_ASSERT(RsproPDUchoice_PR_setAtrReq == pdu->msg.present);
564
565 /* FIXME: is this permitted at any time by the SIMtrace2 cardemfirmware? */
566 rc = cardem_request_set_atr(ci, pdu->msg.choice.setAtrReq.atr.buf,
567 pdu->msg.choice.setAtrReq.atr.size);
568 if (rc == 0)
569 resp = rspro_gen_SetAtrRes(ResultCode_ok);
570 else
571 resp = rspro_gen_SetAtrRes(ResultCode_cardTransmissionError);
572 if (!resp)
573 return -ENOMEM;
Harald Welte3e9860b2019-12-02 23:04:54 +0100574 server_conn_send_rspro(&g_client->bankd_conn, resp);
Harald Weltefa365592019-03-28 20:28:57 +0100575
576 return 0;
577}
578
Harald Welte3e9860b2019-12-02 23:04:54 +0100579/* handle incoming message from bankd */
580static int bankd_handle_rx(struct rspro_server_conn *bankdc, const RsproPDU_t *pdu)
Kévin Redone0b837c2018-10-10 00:39:25 +0200581{
Kévin Redone0b837c2018-10-10 00:39:25 +0200582 switch (pdu->msg.present) {
583 case RsproPDUchoice_PR_connectClientRes:
Harald Weltee56f2b92019-03-02 17:02:13 +0100584 /* Store 'identity' of bankd to in peer_comp_id */
Harald Welte3e9860b2019-12-02 23:04:54 +0100585 rspro_comp_id_retrieve(&bankdc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
586 osmo_fsm_inst_dispatch(bankdc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
Kévin Redone0b837c2018-10-10 00:39:25 +0200587 break;
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200588 case RsproPDUchoice_PR_tpduCardToModem: // APDU response from card received
Harald Welte3e9860b2019-12-02 23:04:54 +0100589 bankd_handle_tpduCardToModem(g_client, pdu);
Kévin Redon9b69a3f2018-10-11 08:41:57 +0200590 break;
Harald Weltefa365592019-03-28 20:28:57 +0100591 case RsproPDUchoice_PR_setAtrReq:
Harald Welte3e9860b2019-12-02 23:04:54 +0100592 bankd_handle_setAtrReq(g_client, pdu);
Harald Weltefa365592019-03-28 20:28:57 +0100593 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200594 default:
Harald Welte3e9860b2019-12-02 23:04:54 +0100595 LOGPFSML(bankdc->fi, LOGL_ERROR, "Unknown/Unsuppoerted RSPRO PDU %s\n",
596 rspro_msgt_name(pdu));
Kévin Redone0b837c2018-10-10 00:39:25 +0200597 return -1;
598 }
599
600 return 0;
601}
602
Harald Weltee56f2b92019-03-02 17:02:13 +0100603/* handle incoming messages from server */
604static int srvc_handle_rx(struct rspro_server_conn *srvc, const RsproPDU_t *pdu)
605{
606 RsproPDU_t *resp;
607
608 switch (pdu->msg.present) {
609 case RsproPDUchoice_PR_connectClientRes:
610 /* Store 'identity' of server in srvc->peer_comp_id */
611 rspro_comp_id_retrieve(&srvc->peer_comp_id, &pdu->msg.choice.connectClientRes.identity);
612 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_CLIENT_CONN_RES, (void *) pdu);
613 break;
Harald Welted571a3e2019-03-11 22:09:50 +0100614 case RsproPDUchoice_PR_configClientIdReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100615 /* store/set the clientID as instructed by the server */
Harald Welteec628e92019-03-08 22:18:31 +0100616 if (!g_client->srv_conn.clslot)
617 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
Harald Welted571a3e2019-03-11 22:09:50 +0100618 *g_client->srv_conn.clslot = pdu->msg.choice.configClientIdReq.clientSlot;
Harald Welte3e9860b2019-12-02 23:04:54 +0100619 if (!g_client->bankd_conn.clslot)
620 g_client->bankd_conn.clslot = talloc_zero(g_client, ClientSlot_t);
621 *g_client->bankd_conn.clslot = *g_client->srv_conn.clslot;
Harald Welted571a3e2019-03-11 22:09:50 +0100622 /* send response to server */
623 resp = rspro_gen_ConfigClientIdRes(ResultCode_ok);
624 server_conn_send_rspro(srvc, resp);
625 break;
626 case RsproPDUchoice_PR_configClientBankReq:
Harald Weltee56f2b92019-03-02 17:02:13 +0100627 /* store/set the bankd ip/port as instructed by the server */
Harald Welte3e9860b2019-12-02 23:04:54 +0100628 osmo_talloc_replace_string(g_client, &g_client->bankd_conn.server_host,
Harald Welted571a3e2019-03-11 22:09:50 +0100629 rspro_IpAddr2str(&pdu->msg.choice.configClientBankReq.bankd.ip));
Harald Welte9cf013a2019-03-11 22:19:19 +0100630 rspro2bank_slot(&g_client->bankd_slot, &pdu->msg.choice.configClientBankReq.bankSlot);
Harald Welte3e9860b2019-12-02 23:04:54 +0100631 g_client->bankd_conn.server_port = pdu->msg.choice.configClientBankReq.bankd.port;
Harald Weltee56f2b92019-03-02 17:02:13 +0100632 /* instruct bankd FSM to connect */
Harald Welte3e9860b2019-12-02 23:04:54 +0100633 osmo_fsm_inst_dispatch(g_client->bankd_conn.fi, SRVC_E_ESTABLISH, NULL);
Harald Weltee56f2b92019-03-02 17:02:13 +0100634 /* send response to server */
Harald Welted571a3e2019-03-11 22:09:50 +0100635 resp = rspro_gen_ConfigClientBankRes(ResultCode_ok);
Harald Weltea844bb02019-03-09 13:38:50 +0100636 server_conn_send_rspro(srvc, resp);
Harald Weltee56f2b92019-03-02 17:02:13 +0100637 break;
638 default:
Harald Welte8d8d4f12019-03-27 22:50:39 +0100639 LOGPFSML(srvc->fi, LOGL_ERROR, "Unknown/Unsupported RSPRO PDU type: %s\n",
640 rspro_msgt_name(pdu));
Harald Weltee56f2b92019-03-02 17:02:13 +0100641 return -1;
642 }
643
644 return 0;
645}
646
Harald Weltece638d82019-03-17 09:36:04 +0100647static void handle_sig_usr1(int signal)
648{
649 OSMO_ASSERT(signal == SIGUSR1);
Harald Welteb54a51e2019-03-31 15:57:59 +0200650 talloc_report_full(g_tall_ctx, stderr);
Harald Weltece638d82019-03-17 09:36:04 +0100651}
Harald Weltee56f2b92019-03-02 17:02:13 +0100652
Kévin Redon3ec265b2018-10-11 17:30:33 +0200653static void print_welcome(void)
654{
655 printf("simtrace2-remsim-client - Remote SIM card client for SIMtrace\n"
656 "(C) 2010-2017, Harald Welte <laforge@gnumonks.org>\n"
657 "(C) 2018, sysmocom -s.f.m.c. GmbH, Author: Kevin Redon <kredon@sysmocom.de>\n\n");
658}
659
660static void print_help(void)
661{
Harald Weltee56f2b92019-03-02 17:02:13 +0100662 printf( "\t-s\t--server-host HOST\n"
Kévin Redonda1854c2019-09-17 14:16:54 +0200663 "\t-p\t--server-port PORT\n"
Harald Welte72cde102019-03-30 10:43:06 +0100664 "\t-c\t--client-id <0-65535>\n"
Kévin Redonda1854c2019-09-17 14:16:54 +0200665 "\t-n\t--client-slot <0-65535>\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200666 "\t-h\t--help\n"
Harald Weltecd7fcd72019-12-03 21:29:07 +0100667 "\t-v\t--version\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200668 "\t-i\t--gsmtap-ip\tA.B.C.D\n"
669 "\t-k\t--keep-running\n"
670 "\t-V\t--usb-vendor\tVENDOR_ID\n"
671 "\t-P\t--usb-product\tPRODUCT_ID\n"
672 "\t-C\t--usb-config\tCONFIG_ID\n"
673 "\t-I\t--usb-interface\tINTERFACE_ID\n"
674 "\t-S\t--usb-altsetting ALTSETTING_ID\n"
675 "\t-A\t--usb-address\tADDRESS\n"
676 "\t-H\t--usb-path\tPATH\n"
Kévin Redon206c3d72018-11-12 22:51:37 +0100677 "\t-a\t--atr\tATR\n"
Kévin Redon3ec265b2018-10-11 17:30:33 +0200678 "\n"
679 );
680}
681
682static const struct option opts[] = {
Harald Weltee56f2b92019-03-02 17:02:13 +0100683 { "server-host", 1, 0, 's' },
684 { "server-port", 1, 0, 'p' },
Harald Welte72cde102019-03-30 10:43:06 +0100685 { "client-id", 1, 0, 'c' },
686 { "client-slot", 1, 0, 'n' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200687 { "help", 0, 0, 'h' },
Harald Weltecd7fcd72019-12-03 21:29:07 +0100688 { "version", 0, 0, 'v' },
Harald Weltefd5a62a2019-03-30 09:06:39 +0100689 { "gsmtap-ip", 1, 0, 'i' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200690 { "keep-running", 0, 0, 'k' },
691 { "usb-vendor", 1, 0, 'V' },
692 { "usb-product", 1, 0, 'P' },
693 { "usb-config", 1, 0, 'C' },
694 { "usb-interface", 1, 0, 'I' },
695 { "usb-altsetting", 1, 0, 'S' },
696 { "usb-address", 1, 0, 'A' },
697 { "usb-path", 1, 0, 'H' },
Kévin Redon206c3d72018-11-12 22:51:37 +0100698 { "atr", 1, 0, 'a' },
Kévin Redon3ec265b2018-10-11 17:30:33 +0200699 { NULL, 0, 0, 0 }
700};
701
Kévin Redone0b837c2018-10-10 00:39:25 +0200702int main(int argc, char **argv)
703{
Harald Welte3e9860b2019-12-02 23:04:54 +0100704 struct rspro_server_conn *srvc, *bankdc;
Kévin Redone0b837c2018-10-10 00:39:25 +0200705 struct st_transport *transp = ci->slot->transp;
706 char *gsmtap_host = "127.0.0.1";
707 int rc;
708 int c, ret = 1;
709 int keep_running = 0;
Harald Welte7817b202019-03-30 08:34:14 +0100710 int server_port = 9998;
Kévin Redone0b837c2018-10-10 00:39:25 +0200711 int if_num = 0, vendor_id = -1, product_id = -1;
712 int config_id = -1, altsetting = 0, addr = -1;
Harald Welte72cde102019-03-30 10:43:06 +0100713 int client_id = -1, client_slot = -1;
Harald Weltee56f2b92019-03-02 17:02:13 +0100714 char *server_host = "127.0.0.1";
Kévin Redone0b837c2018-10-10 00:39:25 +0200715 char *path = NULL;
Kévin Redon206c3d72018-11-12 22:51:37 +0100716 uint8_t atr_data[33] = { 0x3B, 0x00 }; // the shortest simplest ATR possible
717 uint8_t atr_len = 2;
Kévin Redone0b837c2018-10-10 00:39:25 +0200718
719 print_welcome();
720
721 while (1) {
722 int option_index = 0;
723
Harald Weltecd7fcd72019-12-03 21:29:07 +0100724 c = getopt_long(argc, argv, "s:p:c:n:hvi:kV:P:C:I:S:A:H:a:", opts, &option_index);
Kévin Redone0b837c2018-10-10 00:39:25 +0200725 if (c == -1)
726 break;
727 switch (c) {
Harald Weltee56f2b92019-03-02 17:02:13 +0100728 case 's':
729 server_host = optarg;
Kévin Redone0b837c2018-10-10 00:39:25 +0200730 break;
731 case 'p':
Harald Weltee56f2b92019-03-02 17:02:13 +0100732 server_port = atoi(optarg);
Kévin Redonfbca97a2018-10-11 19:13:24 +0200733 break;
Harald Welte72cde102019-03-30 10:43:06 +0100734 case 'c':
735 client_id = atoi(optarg);
736 break;
737 case 'n':
738 client_slot = atoi(optarg);
739 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200740 case 'h':
741 print_help();
742 exit(0);
743 break;
Harald Weltecd7fcd72019-12-03 21:29:07 +0100744 case 'v':
745 printf("osmo-remsim-client version %s\n", VERSION);
746 exit(0);
747 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200748 case 'i':
749 gsmtap_host = optarg;
750 break;
751 case 'k':
752 keep_running = 1;
753 break;
754 case 'V':
755 vendor_id = strtol(optarg, NULL, 16);
756 break;
757 case 'P':
758 product_id = strtol(optarg, NULL, 16);
759 break;
760 case 'C':
761 config_id = atoi(optarg);
762 break;
763 case 'I':
764 if_num = atoi(optarg);
765 break;
766 case 'S':
767 altsetting = atoi(optarg);
768 break;
769 case 'A':
770 addr = atoi(optarg);
771 break;
772 case 'H':
773 path = optarg;
774 break;
Kévin Redon206c3d72018-11-12 22:51:37 +0100775 case 'a':
776 rc = osmo_hexparse(optarg, atr_data, ARRAY_SIZE(atr_data));
777 if (rc < 2 || rc > ARRAY_SIZE(atr_data)) {
778 fprintf(stderr, "ATR matlformed\n");
779 goto do_exit;
780 }
781 atr_len = rc;
782 break;
Kévin Redone0b837c2018-10-10 00:39:25 +0200783 }
784 }
785
Kévin Redon39eb9dc2018-10-11 17:21:13 +0200786 if (vendor_id < 0 || product_id < 0) {
Kévin Redone0b837c2018-10-10 00:39:25 +0200787 fprintf(stderr, "You have to specify the vendor and product ID\n");
788 goto do_exit;
789 }
790
Harald Weltece638d82019-03-17 09:36:04 +0100791 signal(SIGUSR1, handle_sig_usr1);
792
Harald Welte972a1e82019-03-30 08:34:30 +0100793 g_tall_ctx = talloc_named_const(NULL, 0, "global");
Harald Welteb54a51e2019-03-31 15:57:59 +0200794 talloc_asn1_ctx = talloc_named_const(g_tall_ctx, 0, "asn1");
Harald Weltef7442b52019-07-18 18:54:05 +0200795 msgb_talloc_ctx_init(g_tall_ctx, 0);
Harald Welte972a1e82019-03-30 08:34:30 +0100796 osmo_init_logging2(g_tall_ctx, &log_info);
797
Kévin Redon193a8c12018-10-11 17:24:39 +0200798 rc = libusb_init(NULL);
799 if (rc < 0) {
800 fprintf(stderr, "libusb initialization failed\n");
801 goto do_exit;
Kévin Redone0b837c2018-10-10 00:39:25 +0200802 }
803
804 g_gti = gsmtap_source_init(gsmtap_host, GSMTAP_UDP_PORT, 0);
805 if (!g_gti) {
806 perror("unable to open GSMTAP");
807 goto close_exit;
808 }
809 gsmtap_source_add_sink(g_gti);
810
811 signal(SIGINT, &signal_handler);
812
813 // initialize remote SIM client
Kévin Redone0b837c2018-10-10 00:39:25 +0200814
Kévin Redone0b837c2018-10-10 00:39:25 +0200815 g_client = talloc_zero(g_tall_ctx, struct bankd_client);
Harald Weltee56f2b92019-03-02 17:02:13 +0100816
Harald Welte72cde102019-03-30 10:43:06 +0100817 if (client_id != -1) {
818 /* default to client slot 0 */
819 if (client_slot == -1)
820 client_slot = 0;
821 g_client->srv_conn.clslot = talloc_zero(g_client, ClientSlot_t);
822 g_client->srv_conn.clslot->clientId = client_id;
823 g_client->srv_conn.clslot->slotNr = client_slot;
Harald Welte3e9860b2019-12-02 23:04:54 +0100824 g_client->bankd_conn.clslot = talloc_zero(g_client, ClientSlot_t);
825 *g_client->bankd_conn.clslot = *g_client->srv_conn.clslot;
Harald Welte72cde102019-03-30 10:43:06 +0100826 }
827
Harald Weltee56f2b92019-03-02 17:02:13 +0100828 srvc = &g_client->srv_conn;
829 srvc->server_host = server_host;
830 srvc->server_port = server_port;
831 srvc->handle_rx = srvc_handle_rx;
832 srvc->own_comp_id.type = ComponentType_remsimClient;
833 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.name, "simtrace2-remsim-client");
834 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.software, "remsim-client");
835 OSMO_STRLCPY_ARRAY(srvc->own_comp_id.sw_version, PACKAGE_VERSION);
836 rc = server_conn_fsm_alloc(g_client, srvc);
837 if (rc < 0) {
838 fprintf(stderr, "Unable to create Server conn FSM: %s\n", strerror(errno));
839 exit(1);
840 }
Harald Welted2192e22019-11-07 18:10:57 +0100841 osmo_fsm_inst_dispatch(srvc->fi, SRVC_E_ESTABLISH, NULL);
Kévin Redone0b837c2018-10-10 00:39:25 +0200842
Harald Welte3e9860b2019-12-02 23:04:54 +0100843 bankdc = &g_client->bankd_conn;
844 /* server_host / server_port are configured from remsim-server */
845 bankdc->handle_rx = bankd_handle_rx;
846 memcpy(&bankdc->own_comp_id, &srvc->own_comp_id, sizeof(bankdc->own_comp_id));
847 rc = server_conn_fsm_alloc(g_client, bankdc);
848 if (rc < 0) {
849 fprintf(stderr, "Unable to create bankd conn FSM: %s\n", strerror(errno));
Kévin Redone0b837c2018-10-10 00:39:25 +0200850 exit(1);
851 }
852
Harald Welte3e9860b2019-12-02 23:04:54 +0100853 asn_debug = 0;
854
Kévin Redone0b837c2018-10-10 00:39:25 +0200855 // connect to SIMtrace2 cardem
856 do {
857 struct usb_interface_match _ifm, *ifm = &_ifm;
858 ifm->vendor = vendor_id;
859 ifm->product = product_id;
860 ifm->configuration = config_id;
861 ifm->interface = if_num;
862 ifm->altsetting = altsetting;
863 ifm->addr = addr;
864 if (path)
865 osmo_strlcpy(ifm->path, path, sizeof(ifm->path));
866 transp->usb_devh = usb_open_claim_interface(NULL, ifm);
867 if (!transp->usb_devh) {
868 fprintf(stderr, "can't open USB device\n");
869 goto close_exit;
870 }
871
872 rc = libusb_claim_interface(transp->usb_devh, if_num);
873 if (rc < 0) {
874 fprintf(stderr, "can't claim interface %d; rc=%d\n", if_num, rc);
875 goto close_exit;
876 }
877
878 rc = get_usb_ep_addrs(transp->usb_devh, if_num, &transp->usb_ep.out,
879 &transp->usb_ep.in, &transp->usb_ep.irq_in);
880 if (rc < 0) {
881 fprintf(stderr, "can't obtain EP addrs; rc=%d\n", rc);
882 goto close_exit;
883 }
884
Kévin Redon3428e412018-10-11 19:14:00 +0200885 // switch modem SIM port to emulated SIM on OWHW
886 if (USB_VENDOR_OPENMOKO == ifm->vendor && USB_PRODUCT_OWHW_SAM3 == ifm->product) { // we are on the OWHW
887 int modem = -1;
888 switch (ifm->interface) { // the USB interface indicates for which modem we want to emulate the SIM
889 case 0:
890 modem = 1;
891 break;
892 case 1:
893 modem = 2;
894 break;
895 default:
896 fprintf(stderr, "unknown GPIO for SIMtrace interface %d\n", ifm->interface);
897 goto close_exit;
898 }
899 //
900 char gpio_path[PATH_MAX];
901 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/connect_st_usim%d/value", modem);
902 int connec_st_usim = open(gpio_path, O_WRONLY);
903 if (-1 == connec_st_usim) {
904 fprintf(stderr, "can't open GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
905 goto close_exit;
906 }
907 if (1 != write(connec_st_usim, "1", 1)) {
908 fprintf(stderr, "can't write GPIO %s to switch modem %d to emulated USIM\n", gpio_path, modem);
909 goto close_exit;
910 }
911 printf("switched modem %d to emulated USIM\n", modem);
912
913 snprintf(gpio_path, sizeof(gpio_path), "/dev/gpio/mdm%d_rst/value", modem);
914 int mdm_rst = open(gpio_path, O_WRONLY);
915 if (-1 == mdm_rst) {
916 fprintf(stderr, "can't open GPIO %s to reset modem %d\n", gpio_path, modem);
917 goto close_exit;
918 }
919 if (1 != write(mdm_rst, "1", 1)) {
920 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
921 goto close_exit;
922 }
923 sleep(1); // wait a bit to ensure reset is effective
924 if (1 != write(mdm_rst, "0", 1)) {
925 fprintf(stderr, "can't write GPIO %s to reset modem %d\n", gpio_path, modem);
926 goto close_exit;
927 }
928 printf("modem %d reset\n", modem);
929 }
930
Kévin Redone0b837c2018-10-10 00:39:25 +0200931 /* simulate card-insert to modem (owhw, not qmod) */
932 cardem_request_card_insert(ci, true);
933
934 /* select remote (forwarded) SIM */
935 st_modem_sim_select_remote(ci->slot);
936
937 /* set the ATR */
Kévin Redon206c3d72018-11-12 22:51:37 +0100938 //atr_update_csum(real_atr, sizeof(real_atr));
939 cardem_request_set_atr(ci, atr_data, atr_len);
Kévin Redone0b837c2018-10-10 00:39:25 +0200940
941 /* select remote (forwarded) SIM */
942 st_modem_reset_pulse(ci->slot, 300);
943
944 run_mainloop(ci);
945 ret = 0;
946
Kévin Redon193a8c12018-10-11 17:24:39 +0200947 libusb_release_interface(transp->usb_devh, 0);
Kévin Redone0b837c2018-10-10 00:39:25 +0200948close_exit:
949 if (transp->usb_devh)
950 libusb_close(transp->usb_devh);
951 if (keep_running)
952 sleep(1);
953 } while (keep_running);
954
Kévin Redon193a8c12018-10-11 17:24:39 +0200955 libusb_exit(NULL);
Kévin Redone0b837c2018-10-10 00:39:25 +0200956do_exit:
957 return ret;
958}