提交 7eb831c3 编写于 作者: I igerasim

8046343: (smartcardio) CardTerminal.connect('direct') does not work on MacOSX

Reviewed-by: mullan, valeriep
上级 f643c097
/* /*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
package sun.security.smartcardio; package sun.security.smartcardio;
import java.nio.ByteBuffer; import java.nio.ByteBuffer;
import java.security.AccessController;
import java.security.PrivilegedAction;
import javax.smartcardio.*; import javax.smartcardio.*;
import static sun.security.smartcardio.PCSC.*; import static sun.security.smartcardio.PCSC.*;
/** /**
...@@ -62,6 +62,15 @@ final class CardImpl extends Card { ...@@ -62,6 +62,15 @@ final class CardImpl extends Card {
// thread holding exclusive access to the card, or null // thread holding exclusive access to the card, or null
private volatile Thread exclusiveThread; private volatile Thread exclusiveThread;
// used for platform specific logic
private static final boolean isWindows;
static {
final String osName = AccessController.doPrivileged(
(PrivilegedAction<String>) () -> System.getProperty("os.name"));
isWindows = osName.startsWith("Windows");
}
CardImpl(TerminalImpl terminal, String protocol) throws PCSCException { CardImpl(TerminalImpl terminal, String protocol) throws PCSCException {
this.terminal = terminal; this.terminal = terminal;
int sharingMode = SCARD_SHARE_SHARED; int sharingMode = SCARD_SHARE_SHARED;
...@@ -74,7 +83,12 @@ final class CardImpl extends Card { ...@@ -74,7 +83,12 @@ final class CardImpl extends Card {
connectProtocol = SCARD_PROTOCOL_T1; connectProtocol = SCARD_PROTOCOL_T1;
} else if (protocol.equalsIgnoreCase("direct")) { } else if (protocol.equalsIgnoreCase("direct")) {
// testing // testing
connectProtocol = 0;
// MSDN states that the preferred protocol can be zero, but doesn't
// specify whether other values are allowed.
// pcsc-lite implementation expects the preferred protocol to be non zero.
connectProtocol = isWindows ? 0 : SCARD_PROTOCOL_RAW;
sharingMode = SCARD_SHARE_DIRECT; sharingMode = SCARD_SHARE_DIRECT;
} else { } else {
throw new IllegalArgumentException("Unsupported protocol " + protocol); throw new IllegalArgumentException("Unsupported protocol " + protocol);
......
...@@ -40,6 +40,7 @@ public class TestAll { ...@@ -40,6 +40,7 @@ public class TestAll {
TestMultiplePresent.class, TestMultiplePresent.class,
TestPresent.class, TestPresent.class,
TestTransmit.class, TestTransmit.class,
TestDirect.class,
}; };
public static void main(String[] args) throws Exception { public static void main(String[] args) throws Exception {
......
/*
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* @test
* @bug 8046343
* @summary Make sure that direct protocol is available
* @run main/manual TestDirect
*/
// This test requires special hardware.
import javax.smartcardio.Card;
import javax.smartcardio.CardTerminal;
import javax.smartcardio.CardTerminals;
import javax.smartcardio.TerminalFactory;
public class TestDirect {
public static void main(String[] args) throws Exception {
TerminalFactory terminalFactory = TerminalFactory.getDefault();
CardTerminals cardTerminals = terminalFactory.terminals();
CardTerminal cardTerminal = cardTerminals.list().get(0);
Card card = cardTerminal.connect("DIRECT");
card.disconnect(true);
System.out.println("OK.");
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册