0N/A/*
2362N/A * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 6520665 6357133
0N/A * @run main/othervm NTLMTest
0N/A * @summary 6520665 & 6357133: NTLM authentication issues.
0N/A */
0N/A
0N/Aimport java.net.*;
0N/Aimport java.io.*;
0N/Aimport sun.net.www.MessageHeader;
0N/A
0N/Apublic class NTLMTest
0N/A{
0N/A public static void main(String[] args) {
0N/A Authenticator.setDefault(new NullAuthenticator());
0N/A
0N/A try {
0N/A // Test with direct connection.
0N/A ServerSocket serverSS = new ServerSocket(0);
0N/A startServer(serverSS, false);
0N/A runClient(Proxy.NO_PROXY, serverSS.getLocalPort());
0N/A
0N/A // Test with proxy.
0N/A serverSS = new ServerSocket(0);
0N/A startServer(serverSS, true /*proxy*/);
0N/A SocketAddress proxyAddr = new InetSocketAddress("localhost", serverSS.getLocalPort());
0N/A runClient(new Proxy(java.net.Proxy.Type.HTTP, proxyAddr), 8888);
0N/A
0N/A } catch (IOException e) {
0N/A e.printStackTrace();
0N/A }
0N/A }
0N/A
0N/A static void runClient(Proxy proxy, int serverPort) {
0N/A try {
0N/A String urlStr = "http://localhost:" + serverPort + "/";
0N/A URL url = new URL(urlStr);
0N/A HttpURLConnection uc = (HttpURLConnection) url.openConnection(proxy);
0N/A uc.getInputStream();
0N/A
0N/A } catch (ProtocolException e) {
0N/A /* java.net.ProtocolException: Server redirected too many times (20) */
0N/A throw new RuntimeException("Failed: ProtocolException", e);
0N/A } catch (IOException ioe) {
0N/A /* IOException is OK. We are expecting "java.io.IOException: Server
0N/A * returned HTTP response code: 401 for URL: ..."
0N/A */
0N/A //ioe.printStackTrace();
0N/A } catch (NullPointerException npe) {
0N/A throw new RuntimeException("Failed: NPE thrown ", npe);
0N/A }
0N/A }
0N/A
0N/A static String[] serverResp = new String[] {
0N/A "HTTP/1.1 401 Unauthorized\r\n" +
0N/A "Content-Length: 0\r\n" +
0N/A "WWW-Authenticate: NTLM\r\n\r\n",
0N/A
0N/A "HTTP/1.1 401 Unauthorized\r\n" +
0N/A "Content-Length: 0\r\n" +
0N/A "WWW-Authenticate: NTLM TlRMTVNTUAACAAAAAAAAACgAAAABggAAU3J2Tm9uY2UAAAAAAAAAAA==\r\n\r\n"};
0N/A
0N/A static String[] proxyResp = new String[] {
0N/A "HTTP/1.1 407 Proxy Authentication Required\r\n" +
0N/A "Content-Length: 0\r\n" +
0N/A "Proxy-Authenticate: NTLM\r\n\r\n",
0N/A
0N/A "HTTP/1.1 407 Proxy Authentication Required\r\n" +
0N/A "Content-Length: 0\r\n" +
0N/A "Proxy-Authenticate: NTLM TlRMTVNTUAACAAAAAAAAACgAAAABggAAU3J2Tm9uY2UAAAAAAAAAAA==\r\n\r\n"};
0N/A
0N/A static void startServer(ServerSocket serverSS, boolean proxy) {
0N/A final ServerSocket ss = serverSS;
0N/A final boolean isProxy = proxy;
0N/A
0N/A Thread thread = new Thread(new Runnable() {
0N/A public void run() {
0N/A boolean doing2ndStageNTLM = false;
0N/A while (true) {
0N/A try {
0N/A Socket s = ss.accept();
0N/A if (!doing2ndStageNTLM) {
0N/A handleConnection(s, isProxy ? proxyResp : serverResp, 0, 1);
0N/A doing2ndStageNTLM = true;
0N/A } else {
0N/A handleConnection(s, isProxy ? proxyResp : serverResp, 1, 2);
0N/A doing2ndStageNTLM = false;
0N/A }
0N/A connectionCount++;
0N/A //System.out.println("connectionCount = " + connectionCount);
0N/A
0N/A } catch (IOException ioe) {
0N/A ioe.printStackTrace();
0N/A }
0N/A }
0N/A } });
0N/A thread.setDaemon(true);
0N/A thread.start();
0N/A
0N/A }
0N/A
0N/A static int connectionCount = 0;
0N/A
0N/A static void handleConnection(Socket s, String[] resp, int start, int end) {
0N/A try {
0N/A OutputStream os = s.getOutputStream();
0N/A
0N/A for (int i=start; i<end; i++) {
0N/A MessageHeader header = new MessageHeader (s.getInputStream());
0N/A //System.out.println("Input :" + header);
0N/A //System.out.println("Output:" + resp[i]);
0N/A os.write(resp[i].getBytes("ASCII"));
0N/A }
0N/A
0N/A s.close();
0N/A } catch (IOException ioe) {
0N/A ioe.printStackTrace();
0N/A }
0N/A }
0N/A
0N/A static class NullAuthenticator extends java.net.Authenticator
0N/A {
0N/A public int count = 0;
0N/A
0N/A protected PasswordAuthentication getPasswordAuthentication() {
0N/A count++;
0N/A System.out.println("NullAuthenticator.getPasswordAuthentication called " + count + " times");
0N/A
0N/A return null;
0N/A }
0N/A
0N/A public int getCallCount() {
0N/A return count;
0N/A }
0N/A }
0N/A
0N/A}