blob: c37380a3b46cd665a64b77435759f26ef79e90af [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file reader_pcsc.c
2 * PC/SC Card reader backend for libosmosim. */
Harald Weltead418632012-09-10 10:49:59 +02003/*
4 * (C) 2012 by Harald Welte <laforge@gnumonks.org>
5 *
6 * All Rights Reserved
7 *
Harald Weltee08da972017-11-13 01:00:26 +09008 * SPDX-License-Identifier: GPL-2.0+
9 *
Harald Weltead418632012-09-10 10:49:59 +020010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 *
24 */
25
26
Harald Welted54c2ee2012-01-17 18:25:50 +010027#include <string.h>
28#include <stdint.h>
29#include <stdio.h>
30#include <errno.h>
31
32#include <osmocom/core/talloc.h>
33#include <osmocom/sim/sim.h>
34
Holger Hans Peter Freytherb0310dd2014-10-27 12:00:37 +010035#include <wintypes.h>
36#include <winscard.h>
Harald Welted54c2ee2012-01-17 18:25:50 +010037
38#include "sim_int.h"
39
40#define PCSC_ERROR(rv, text) \
41if (rv != SCARD_S_SUCCESS) { \
42 fprintf(stderr, text ": %s (0x%lX)\n", pcsc_stringify_error(rv), rv); \
43 goto end; \
44} else { \
45 printf(text ": OK\n\n"); \
46}
47
48
49
50struct pcsc_reader_state {
51 SCARDCONTEXT hContext;
52 SCARDHANDLE hCard;
53 DWORD dwActiveProtocol;
54 const SCARD_IO_REQUEST *pioSendPci;
55 SCARD_IO_REQUEST pioRecvPci;
56 char *name;
57};
58
59static struct osim_reader_hdl *pcsc_reader_open(int num, const char *id, void *ctx)
60{
61 struct osim_reader_hdl *rh;
62 struct pcsc_reader_state *st;
Harald Welte0d246442014-05-04 13:58:54 +020063 LONG rc;
Harald Welted54c2ee2012-01-17 18:25:50 +010064 LPSTR mszReaders = NULL;
65 DWORD dwReaders;
66 unsigned int num_readers;
67 char *ptr;
68
69 /* FIXME: implement matching on id or num */
70
71 rh = talloc_zero(ctx, struct osim_reader_hdl);
72 st = rh->priv = talloc_zero(rh, struct pcsc_reader_state);
73
74 rc = SCardEstablishContext(SCARD_SCOPE_SYSTEM, NULL, NULL,
75 &st->hContext);
Harald Welted83d2962013-03-04 17:52:33 +000076 PCSC_ERROR(rc, "SCardEstablishContext");
Harald Welted54c2ee2012-01-17 18:25:50 +010077
78 dwReaders = SCARD_AUTOALLOCATE;
79 rc = SCardListReaders(st->hContext, NULL, (LPSTR)&mszReaders, &dwReaders);
80 PCSC_ERROR(rc, "SCardListReaders");
81
Eric Wild94cd4ac2019-10-31 19:18:45 +010082 /* SCARD_S_SUCCESS means there is at least one reader in the group */
Harald Welted54c2ee2012-01-17 18:25:50 +010083 num_readers = 0;
84 ptr = mszReaders;
Eric Wild94cd4ac2019-10-31 19:18:45 +010085 while (*ptr != '\0' && num_readers != num) {
Harald Welted54c2ee2012-01-17 18:25:50 +010086 ptr += strlen(ptr)+1;
87 num_readers++;
88 }
89
Eric Wild18caa872020-01-29 14:41:18 +010090 if (num != num_readers) {
91 SCardFreeMemory(st->hContext, mszReaders);
Harald Welted54c2ee2012-01-17 18:25:50 +010092 goto end;
Eric Wild18caa872020-01-29 14:41:18 +010093 }
Harald Welted54c2ee2012-01-17 18:25:50 +010094
Eric Wild94cd4ac2019-10-31 19:18:45 +010095 st->name = talloc_strdup(rh, ptr);
Harald Welted54c2ee2012-01-17 18:25:50 +010096 st->dwActiveProtocol = -1;
Eric Wild18caa872020-01-29 14:41:18 +010097 SCardFreeMemory(st->hContext, mszReaders);
Harald Welted54c2ee2012-01-17 18:25:50 +010098
99 return rh;
100end:
101 talloc_free(rh);
102 return NULL;
103}
104
Harald Welte55790aa2014-10-26 18:46:50 +0100105static struct osim_card_hdl *pcsc_card_open(struct osim_reader_hdl *rh,
106 enum osim_proto proto)
Harald Welted54c2ee2012-01-17 18:25:50 +0100107{
108 struct pcsc_reader_state *st = rh->priv;
109 struct osim_card_hdl *card;
110 struct osim_chan_hdl *chan;
Harald Welte0d246442014-05-04 13:58:54 +0200111 LONG rc;
Harald Welted54c2ee2012-01-17 18:25:50 +0100112
Harald Welte55790aa2014-10-26 18:46:50 +0100113 if (proto != OSIM_PROTO_T0)
114 return NULL;
115
Harald Welted54c2ee2012-01-17 18:25:50 +0100116 rc = SCardConnect(st->hContext, st->name, SCARD_SHARE_SHARED,
117 SCARD_PROTOCOL_T0, &st->hCard, &st->dwActiveProtocol);
118 PCSC_ERROR(rc, "SCardConnect");
119
120 st->pioSendPci = SCARD_PCI_T0;
121
122 card = talloc_zero(rh, struct osim_card_hdl);
123 INIT_LLIST_HEAD(&card->channels);
Harald Welte429adec2020-03-20 13:05:40 +0100124 INIT_LLIST_HEAD(&card->apps);
Harald Welted54c2ee2012-01-17 18:25:50 +0100125 card->reader = rh;
126 rh->card = card;
127
128 /* create a default channel */
129 chan = talloc_zero(card, struct osim_chan_hdl);
130 chan->card = card;
131 llist_add(&chan->list, &card->channels);
132
133 return card;
134
135end:
136 return NULL;
137}
138
139
140static int pcsc_transceive(struct osim_reader_hdl *rh, struct msgb *msg)
141{
142 struct pcsc_reader_state *st = rh->priv;
143 DWORD rlen = msgb_tailroom(msg);
Harald Welte0d246442014-05-04 13:58:54 +0200144 LONG rc;
Harald Welted54c2ee2012-01-17 18:25:50 +0100145
146 printf("TX: %s\n", osmo_hexdump(msg->data, msg->len));
147
148 rc = SCardTransmit(st->hCard, st->pioSendPci, msg->data, msgb_length(msg),
149 &st->pioRecvPci, msg->tail, &rlen);
150 PCSC_ERROR(rc, "SCardEndTransaction");
151
152 printf("RX: %s\n", osmo_hexdump(msg->tail, rlen));
153 msgb_put(msg, rlen);
154 msgb_apdu_le(msg) = rlen;
155
156 return 0;
157end:
158 return -EIO;
159}
160
161const struct osim_reader_ops pcsc_reader_ops = {
162 .name = "PC/SC",
163 .reader_open = pcsc_reader_open,
164 .card_open = pcsc_card_open,
165 .transceive = pcsc_transceive,
166};
167