blob: 9e05e3c02cf180b5cf9486c6914a0db5b0463291 [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 Wild94cd4ac2019-10-31 19:18:45 +010090 if (num != num_readers)
Harald Welted54c2ee2012-01-17 18:25:50 +010091 goto end;
92
Eric Wild94cd4ac2019-10-31 19:18:45 +010093 st->name = talloc_strdup(rh, ptr);
Harald Welted54c2ee2012-01-17 18:25:50 +010094 st->dwActiveProtocol = -1;
95
96 return rh;
97end:
98 talloc_free(rh);
99 return NULL;
100}
101
Harald Welte55790aa2014-10-26 18:46:50 +0100102static struct osim_card_hdl *pcsc_card_open(struct osim_reader_hdl *rh,
103 enum osim_proto proto)
Harald Welted54c2ee2012-01-17 18:25:50 +0100104{
105 struct pcsc_reader_state *st = rh->priv;
106 struct osim_card_hdl *card;
107 struct osim_chan_hdl *chan;
Harald Welte0d246442014-05-04 13:58:54 +0200108 LONG rc;
Harald Welted54c2ee2012-01-17 18:25:50 +0100109
Harald Welte55790aa2014-10-26 18:46:50 +0100110 if (proto != OSIM_PROTO_T0)
111 return NULL;
112
Harald Welted54c2ee2012-01-17 18:25:50 +0100113 rc = SCardConnect(st->hContext, st->name, SCARD_SHARE_SHARED,
114 SCARD_PROTOCOL_T0, &st->hCard, &st->dwActiveProtocol);
115 PCSC_ERROR(rc, "SCardConnect");
116
117 st->pioSendPci = SCARD_PCI_T0;
118
119 card = talloc_zero(rh, struct osim_card_hdl);
120 INIT_LLIST_HEAD(&card->channels);
121 card->reader = rh;
122 rh->card = card;
123
124 /* create a default channel */
125 chan = talloc_zero(card, struct osim_chan_hdl);
126 chan->card = card;
127 llist_add(&chan->list, &card->channels);
128
129 return card;
130
131end:
132 return NULL;
133}
134
135
136static int pcsc_transceive(struct osim_reader_hdl *rh, struct msgb *msg)
137{
138 struct pcsc_reader_state *st = rh->priv;
139 DWORD rlen = msgb_tailroom(msg);
Harald Welte0d246442014-05-04 13:58:54 +0200140 LONG rc;
Harald Welted54c2ee2012-01-17 18:25:50 +0100141
142 printf("TX: %s\n", osmo_hexdump(msg->data, msg->len));
143
144 rc = SCardTransmit(st->hCard, st->pioSendPci, msg->data, msgb_length(msg),
145 &st->pioRecvPci, msg->tail, &rlen);
146 PCSC_ERROR(rc, "SCardEndTransaction");
147
148 printf("RX: %s\n", osmo_hexdump(msg->tail, rlen));
149 msgb_put(msg, rlen);
150 msgb_apdu_le(msg) = rlen;
151
152 return 0;
153end:
154 return -EIO;
155}
156
157const struct osim_reader_ops pcsc_reader_ops = {
158 .name = "PC/SC",
159 .reader_open = pcsc_reader_open,
160 .card_open = pcsc_card_open,
161 .transceive = pcsc_transceive,
162};
163