jdk/src/java.base/unix/classes/sun/net/www/protocol/http/ntlm/NTLMAuthentication.java
author asmotrak
Wed, 30 Sep 2015 15:30:50 +0300
changeset 32842 831e91e26c15
parent 31061 fead7d86d75f
child 37593 824750ada3d6
permissions -rw-r--r--
8137174: NTLM impl should use doPrivileged when it reads system properties Reviewed-by: chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
32842
831e91e26c15 8137174: NTLM impl should use doPrivileged when it reads system properties
asmotrak
parents: 31061
diff changeset
     2
 * Copyright (c) 2005, 2015, 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(
25396
5e73c95f95db 7150092: NTLM authentication fail if user specified a different realm
weijun
parents: 23010
diff changeset
    80
            new sun.security.action.GetPropertyAction("http.auth.ntlm.domain", ""));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    83
    public static boolean supportsTransparentAuth () {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
8815
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    87
    /**
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    88
     * 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
    89
     * transparent Authentication.
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    90
     */
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    91
    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
    92
        return NTLMAuthCallback.isTrustedSite(url);
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    93
    }
9a3f042d307e 6997851: Create NTLM AuthenticationCallBack class to avoid NTLM info leakage on client side
chegar
parents: 6517
diff changeset
    94
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    private void init0() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    97
        hostname = java.security.AccessController.doPrivileged(
29986
97167d851fc4 8078467: Update core libraries to use diamond with anonymous classes
darcy
parents: 25859
diff changeset
    98
            new java.security.PrivilegedAction<>() {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
    99
            public String run() {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   100
                String localhost;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   101
                try {
25396
5e73c95f95db 7150092: NTLM authentication fail if user specified a different realm
weijun
parents: 23010
diff changeset
   102
                    localhost = InetAddress.getLocalHost().getHostName();
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   103
                } catch (UnknownHostException e) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   104
                     localhost = "localhost";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   106
                return localhost;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   108
        });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    PasswordAuthentication pw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   113
    Client client;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * Create a NTLMAuthentication:
31061
fead7d86d75f 8081517: minor cleanup for docs
avstepan
parents: 29986
diff changeset
   116
     * Username may be specified as {@literal domain<BACKSLASH>username}
fead7d86d75f 8081517: minor cleanup for docs
avstepan
parents: 29986
diff changeset
   117
     * in the application Authenticator.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * If this notation is not used, then the domain will be taken
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * from a system property: "http.auth.ntlm.domain".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public NTLMAuthentication(boolean isProxy, URL url, PasswordAuthentication pw) {
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   122
        super(isProxy ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   123
                AuthScheme.NTLM,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   124
                url,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   125
                "");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        init (pw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    private void init (PasswordAuthentication pw) {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   130
        String username;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   131
        String ntdomain;
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   132
        char[] password;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        this.pw = pw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        String s = pw.getUserName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        int i = s.indexOf ('\\');
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        if (i == -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            username = s;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            ntdomain = defaultDomain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            ntdomain = s.substring (0, i).toUpperCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
            username = s.substring (i+1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        }
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   143
        password = pw.getPassword();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        init0();
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   145
        try {
32842
831e91e26c15 8137174: NTLM impl should use doPrivileged when it reads system properties
asmotrak
parents: 31061
diff changeset
   146
            String version = java.security.AccessController.doPrivileged(
831e91e26c15 8137174: NTLM impl should use doPrivileged when it reads system properties
asmotrak
parents: 31061
diff changeset
   147
                    new sun.security.action.GetPropertyAction("ntlm.version"));
831e91e26c15 8137174: NTLM impl should use doPrivileged when it reads system properties
asmotrak
parents: 31061
diff changeset
   148
            client = new Client(version, hostname, username, ntdomain, password);
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   149
        } catch (NTLMException ne) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   150
            try {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   151
                client = new Client(null, hostname, username, ntdomain, password);
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   152
            } catch (NTLMException ne2) {
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   153
                // Will never happen
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   154
                throw new AssertionError("Really?");
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   155
            }
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   156
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
   /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    * Constructor used for proxy entries
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public NTLMAuthentication(boolean isProxy, String host, int port,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                                PasswordAuthentication pw) {
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   164
        super(isProxy ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   165
                AuthScheme.NTLM,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   166
                host,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   167
                port,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 1639
diff changeset
   168
                "");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        init (pw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @return true if this authentication supports preemptive authorization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   175
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   176
    public boolean supportsPreemptiveAuthorization() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Not supported. Must use the setHeaders() method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   183
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   184
    public String getHeaderValue(URL url, String method) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        throw new RuntimeException ("getHeaderValue not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * Check if the header indicates that the current auth. parameters are stale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * If so, then replace the relevant field with the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * and return true. Otherwise return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * returning true means the request can be retried with the same userid/password
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * returning false means we have to go back to the user to ask for a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * username password.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   196
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   197
    public boolean isAuthorizationStale (String header) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        return false; /* should not be called for ntlm */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * Set header(s) on the given connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * @param conn The connection to apply the header(s) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @param p A source of header values for this connection, not used because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     *          HeaderParser converts the fields to lower case, use raw instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     * @param raw The raw header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @return true if all goes well, false if no headers were set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   209
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   210
    public synchronized boolean setHeaders(HttpURLConnection conn, HeaderParser p, String raw) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            String response;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            if (raw.length() < 6) { /* NTLM<sp> */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
                response = buildType1Msg ();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                String msg = raw.substring (5); /* skip NTLM<sp> */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                response = buildType3Msg (msg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            conn.setAuthenticationProperty(getHeaderName(), response);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        } catch (GeneralSecurityException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    private String buildType1Msg () {
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   230
        byte[] msg = client.type1();
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   231
        String result = "NTLM " + Base64.getEncoder().encodeToString(msg);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    private String buildType3Msg (String challenge) throws GeneralSecurityException,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                                                           IOException  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
        /* First decode the type2 message to get the server nonce */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        /* nonce is located at type2[24] for 8 bytes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   240
        byte[] type2 = Base64.getDecoder().decode(challenge);
6517
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   241
        byte[] nonce = new byte[8];
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   242
        new java.util.Random().nextBytes(nonce);
151856936fd8 6911951: NTLM should be a supported Java SASL mechanism
weijun
parents: 5506
diff changeset
   243
        byte[] msg = client.type3(type2, nonce);
15276
bbddb82e66ce 8006568: HTTP protocol handler NLTM Authentication should use Base64 API
msheppar
parents: 9035
diff changeset
   244
        String result = "NTLM " + Base64.getEncoder().encodeToString(msg);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248