pcsc-lite 1.9.9
prothandler.c
Go to the documentation of this file.
1/*
2 * MUSCLE SmartCard Development ( https://pcsclite.apdu.fr/ )
3 *
4 * Copyright (C) 1999
5 * David Corcoran <corcoran@musclecard.com>
6 * Copyright (C) 2004-2011
7 * Ludovic Rousseau <ludovic.rousseau@free.fr>
8 *
9Redistribution and use in source and binary forms, with or without
10modification, are permitted provided that the following conditions
11are met:
12
131. Redistributions of source code must retain the above copyright
14 notice, this list of conditions and the following disclaimer.
152. Redistributions in binary form must reproduce the above copyright
16 notice, this list of conditions and the following disclaimer in the
17 documentation and/or other materials provided with the distribution.
183. The name of the author may not be used to endorse or promote products
19 derived from this software without specific prior written permission.
20
21THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
38#include "config.h"
39#include <string.h>
40
41#include "misc.h"
42#include "pcscd.h"
43#include "debuglog.h"
44#include "readerfactory.h"
45#include "prothandler.h"
46#include "atrhandler.h"
47#include "ifdwrapper.h"
48#include "eventhandler.h"
49
60DWORD PHSetProtocol(struct ReaderContext * rContext,
61 DWORD dwPreferred, UCHAR ucAvailable, UCHAR ucDefault)
62{
63 DWORD protocol;
64 LONG rv;
65 UCHAR ucChosen;
66
67 /* App has specified no protocol */
68 if (dwPreferred == SCARD_PROTOCOL_UNDEFINED)
69 return SET_PROTOCOL_WRONG_ARGUMENT;
70
71 /* requested protocol is not available */
72 if (! (dwPreferred & ucAvailable))
73 {
74 /* Note:
75 * dwPreferred must be either SCARD_PROTOCOL_T0 or SCARD_PROTOCOL_T1
76 * if dwPreferred == SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1 the test
77 * (SCARD_PROTOCOL_T0 == dwPreferred) will not work as expected
78 * and the debug message will not be correct.
79 *
80 * This case may only occur if
81 * dwPreferred == SCARD_PROTOCOL_T0 | SCARD_PROTOCOL_T1
82 * and ucAvailable == 0 since we have (dwPreferred & ucAvailable) == 0
83 * and the case ucAvailable == 0 should never occur (the card is at
84 * least T=0 or T=1)
85 */
86 Log2(PCSC_LOG_ERROR, "Protocol T=%d requested but unsupported by the card",
87 (SCARD_PROTOCOL_T0 == dwPreferred) ? 0 : 1);
88 return SET_PROTOCOL_WRONG_ARGUMENT;
89 }
90
91 /* set default value */
92 protocol = ucDefault;
93
94 /* keep only the available protocols */
95 dwPreferred &= ucAvailable;
96
97 /* we try to use T=1 first */
98 if (dwPreferred & SCARD_PROTOCOL_T1)
99 ucChosen = SCARD_PROTOCOL_T1;
100 else
101 if (dwPreferred & SCARD_PROTOCOL_T0)
102 ucChosen = SCARD_PROTOCOL_T0;
103 else
104 /* App wants unsupported protocol */
105 return SET_PROTOCOL_WRONG_ARGUMENT;
106
107 Log2(PCSC_LOG_INFO, "Attempting PTS to T=%d",
108 (SCARD_PROTOCOL_T0 == ucChosen ? 0 : 1));
109 rv = IFDSetPTS(rContext, ucChosen, 0x00, 0x00, 0x00, 0x00);
110
111 switch(rv)
112 {
113 case IFD_SUCCESS:
114 protocol = ucChosen;
115 break;
116
118 case IFD_ERROR_NOT_SUPPORTED:
119 /* protocol not supported */
120 if (protocol != dwPreferred)
121 {
122 Log3(PCSC_LOG_INFO,
123 "Set PTS failed (%ld). Using T=%d", rv,
124 (SCARD_PROTOCOL_T0 == protocol) ? 0 : 1);
125 }
126 else
127 {
128 /* no other protocol to use */
129 Log2(PCSC_LOG_INFO, "PTS protocol failed (%ld)", rv);
130 protocol = SET_PROTOCOL_PPS_FAILED;
131 }
132 break;
133
135 /* command not supported */
136 Log3(PCSC_LOG_INFO, "Set PTS failed (%ld). Using T=%d", rv,
137 (SCARD_PROTOCOL_T0 == protocol) ? 0 : 1);
138 break;
139
140 default:
141 Log2(PCSC_LOG_INFO, "Set PTS failed (%ld)", rv);
142
143 /* ISO 7816-3:1997 ch. 7.2 PPS protocol page 14
144 * - If the PPS exchange is unsuccessful, then the interface
145 * device shall either reset or reject the card.
146 */
147 protocol = SET_PROTOCOL_PPS_FAILED;
148 }
149
150 return protocol;
151}
152
This keeps track of smart card protocols, timing issues and Answer to Reset ATR handling.
This handles debugging.
This handles card insertion/removal events, updates ATR, protocol, and status information.
#define IFD_NOT_SUPPORTED
request is not supported
Definition ifdhandler.h:364
#define IFD_PROTOCOL_NOT_SUPPORTED
requested protocol not supported
Definition ifdhandler.h:357
#define IFD_SUCCESS
no error
Definition ifdhandler.h:351
RESPONSECODE IFDSetPTS(READER_CONTEXT *rContext, DWORD dwProtocol, UCHAR ucFlags, UCHAR ucPTS1, UCHAR ucPTS2, UCHAR ucPTS3)
Set the protocol type selection (PTS).
Definition ifdwrapper.c:67
This wraps the dynamic ifdhandler functions.
This keeps a list of defines for pcsc-lite.
#define SCARD_PROTOCOL_UNDEFINED
protocol not set
Definition pcsclite.h:239
#define SCARD_PROTOCOL_T1
T=1 active protocol.
Definition pcsclite.h:242
#define SCARD_PROTOCOL_T0
T=0 active protocol.
Definition pcsclite.h:241
DWORD PHSetProtocol(struct ReaderContext *rContext, DWORD dwPreferred, UCHAR ucAvailable, UCHAR ucDefault)
Determine which protocol to use.
Definition prothandler.c:60
This handles protocol defaults, PTS, etc.
This keeps track of a list of currently available reader structures.