jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/NTLMAuthentication.java
author msheppar
Sat, 19 Jan 2013 08:39:20 +0000
changeset 15276 bbddb82e66ce
parent 9035 1255eb81cc2f
child 23010 6dadb192ad81
permissions -rw-r--r--
8006568: HTTP protocol handler NLTM Authentication should use Base64 API Reviewed-by: chegar, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8815
diff changeset
     2
 * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    26
package sun.net.www.protocol.http.ntlm;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    28
import com.sun.security.ntlm.Client;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    29
import com.sun.security.ntlm.NTLMException;
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    30
import java.io.IOException;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    31
import java.net.InetAddress;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    32
import java.net.PasswordAuthentication;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    33
import java.net.UnknownHostException;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    34
import java.net.URL;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
    35
import java.security.GeneralSecurityException;
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
    36
import java.util.Base64;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import sun.net.www.HeaderParser;
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    39
import sun.net.www.protocol.http.AuthenticationInfo;
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    40
import sun.net.www.protocol.http.AuthScheme;
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    41
import sun.net.www.protocol.http.HttpURLConnection;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * NTLMAuthentication:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @author Michael McMahon
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * NTLM authentication is nominally based on the framework defined in RFC2617,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * but differs from the standard (Basic & Digest) schemes as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * 1. A complete authentication requires three request/response transactions
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 *    as shown below:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *            REQ ------------------------------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *            <---- 401 (signalling NTLM) --------
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 *            REQ (with type1 NTLM msg) --------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *            <---- 401 (with type 2 NTLM msg) ---
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *            REQ (with type3 NTLM msg) --------->
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 *            <---- OK ---------------------------
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * 2. The scope of the authentication is the TCP connection (which must be kept-alive)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 *    after the type2 response is received. This means that NTLM does not work end-to-end
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 *    through a proxy, rather between client and proxy, or between client and server (with no proxy)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    69
public class NTLMAuthentication extends AuthenticationInfo {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    70
    private static final long serialVersionUID = 170L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
8815
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    72
    private static final NTLMAuthenticationCallback NTLMAuthCallback =
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    73
        NTLMAuthenticationCallback.getNTLMAuthenticationCallback();
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    74
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private String hostname;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    private static String defaultDomain; /* Domain to use if not specified by user */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        defaultDomain = java.security.AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            new sun.security.action.GetPropertyAction("http.auth.ntlm.domain",
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                                                      "domain"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    84
    public static boolean supportsTransparentAuth () {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
8815
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    88
    /**
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    89
     * Returns true if the given site is trusted, i.e. we can try
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    90
     * transparent Authentication.
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    91
     */
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    92
    public static boolean isTrustedSite(URL url) {
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    93
        return NTLMAuthCallback.isTrustedSite(url);
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    94
    }
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    95
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    private void init0() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    98
        hostname = java.security.AccessController.doPrivileged(
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    99
            new java.security.PrivilegedAction<String>() {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   100
            public String run() {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   101
                String localhost;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   102
                try {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   103
                    localhost = InetAddress.getLocalHost().getHostName().toUpperCase();
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   104
                } catch (UnknownHostException e) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   105
                     localhost = "localhost";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   107
                return localhost;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   109
        });
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   110
        int x = hostname.indexOf ('.');
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   111
        if (x != -1) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   112
            hostname = hostname.substring (0, x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    PasswordAuthentication pw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   118
    Client client;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Create a NTLMAuthentication:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Username may be specified as domain<BACKSLASH>username in the application Authenticator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * If this notation is not used, then the domain will be taken
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * from a system property: "http.auth.ntlm.domain".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public NTLMAuthentication(boolean isProxy, URL url, PasswordAuthentication pw) {
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   126
        super(isProxy ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   127
                AuthScheme.NTLM,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   128
                url,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   129
                "");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        init (pw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    private void init (PasswordAuthentication pw) {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   134
        String username;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   135
        String ntdomain;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   136
        char[] password;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        this.pw = pw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        String s = pw.getUserName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        int i = s.indexOf ('\\');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        if (i == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            username = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            ntdomain = defaultDomain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            ntdomain = s.substring (0, i).toUpperCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            username = s.substring (i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   147
        password = pw.getPassword();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        init0();
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   149
        try {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   150
            client = new Client(System.getProperty("ntlm.version"), hostname,
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   151
                    username, ntdomain, password);
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   152
        } catch (NTLMException ne) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   153
            try {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   154
                client = new Client(null, hostname, username, ntdomain, password);
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   155
            } catch (NTLMException ne2) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   156
                // Will never happen
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   157
                throw new AssertionError("Really?");
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   158
            }
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   159
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    * Constructor used for proxy entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    public NTLMAuthentication(boolean isProxy, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                                PasswordAuthentication pw) {
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   167
        super(isProxy ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   168
                AuthScheme.NTLM,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   169
                host,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   170
                port,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   171
                "");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        init (pw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @return true if this authentication supports preemptive authorization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   178
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   179
    public boolean supportsPreemptiveAuthorization() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Not supported. Must use the setHeaders() method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   186
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   187
    public String getHeaderValue(URL url, String method) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        throw new RuntimeException ("getHeaderValue not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Check if the header indicates that the current auth. parameters are stale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * If so, then replace the relevant field with the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * and return true. Otherwise return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * returning true means the request can be retried with the same userid/password
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * returning false means we have to go back to the user to ask for a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * username password.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   199
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   200
    public boolean isAuthorizationStale (String header) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        return false; /* should not be called for ntlm */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * Set header(s) on the given connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param conn The connection to apply the header(s) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @param p A source of header values for this connection, not used because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     *          HeaderParser converts the fields to lower case, use raw instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * @param raw The raw header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * @return true if all goes well, false if no headers were set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   212
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   213
    public synchronized boolean setHeaders(HttpURLConnection conn, HeaderParser p, String raw) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            String response;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            if (raw.length() < 6) { /* NTLM<sp> */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                response = buildType1Msg ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                String msg = raw.substring (5); /* skip NTLM<sp> */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                response = buildType3Msg (msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            conn.setAuthenticationProperty(getHeaderName(), response);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
        } catch (GeneralSecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    private String buildType1Msg () {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   233
        byte[] msg = client.type1();
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   234
        String result = "NTLM " + Base64.getEncoder().encodeToString(msg);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    private String buildType3Msg (String challenge) throws GeneralSecurityException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
                                                           IOException  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        /* First decode the type2 message to get the server nonce */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        /* nonce is located at type2[24] for 8 bytes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   243
        byte[] type2 = Base64.getDecoder().decode(challenge);
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   244
        byte[] nonce = new byte[8];
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   245
        new java.util.Random().nextBytes(nonce);
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   246
        byte[] msg = client.type3(type2, nonce);
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   247
        String result = "NTLM " + Base64.getEncoder().encodeToString(msg);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251