src/java.security.sasl/share/classes/com/sun/security/sasl/ExternalClient.java
author igerasim
Tue, 12 Nov 2019 01:36:17 -0800
changeset 59024 b046ba510bbc
parent 47216 71c04702a3d5
permissions -rw-r--r--
8233884: Avoid looking up standard charsets in security libraries Reviewed-by: coffeys
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
     2
 * Copyright (c) 1999, 2019, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package com.sun.security.sasl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.security.sasl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    30
import static java.nio.charset.StandardCharsets.UTF_8;
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    31
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
  * Implements the EXTERNAL SASL client mechanism.
5820
4f5e99470724 6967036: Need to fix links with // in Javadoc comments
ohair
parents: 5506
diff changeset
    34
  * (<A HREF="http://www.ietf.org/rfc/rfc2222.txt">RFC 2222</A>).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  * The EXTERNAL mechanism returns the optional authorization ID as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
  * the initial response. It processes no challenges.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
  * @author Rosanna Lee
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
final class ExternalClient implements SaslClient {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private byte[] username;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private boolean completed = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
     * Constructs an External mechanism with optional authorization ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
     * @param authorizationID If non-null, used to specify authorization ID.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
     */
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    49
    ExternalClient(String authorizationID) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        if (authorizationID != null) {
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    51
            username = authorizationID.getBytes(UTF_8);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            username = new byte[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
     * Retrieves this mechanism's name for initiating the "EXTERNAL" protocol
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * exchange.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * @return  The string "EXTERNAL".
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    public String getMechanismName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        return "EXTERNAL";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * This mechanism has an initial response.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    public boolean hasInitialResponse() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    public void dispose() throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Processes the challenge data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * It returns the EXTERNAL mechanism's initial response,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * which is the authorization id encoded in UTF-8.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * This is the optional information that is sent along with the SASL command.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * After this method is called, isComplete() returns true.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * @param challengeData Ignored.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @return The possible empty initial response.
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    86
     * @throws IllegalStateException If authentication has already been called.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
59024
b046ba510bbc 8233884: Avoid looking up standard charsets in security libraries
igerasim
parents: 47216
diff changeset
    88
    public byte[] evaluateChallenge(byte[] challengeData) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        if (completed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                "EXTERNAL authentication already completed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        completed = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        return username;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Returns whether this mechanism is complete.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @return true if initial response has been sent; false otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public boolean isComplete() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        return completed;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
      * Unwraps the incoming buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
      * @throws SaslException Not applicable to this mechanism.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public byte[] unwrap(byte[] incoming, int offset, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (completed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            throw new SaslException("EXTERNAL has no supported QOP");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                "EXTERNAL authentication Not completed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
      * Wraps the outgoing buffer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
      *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
      * @throws SaslException Not applicable to this mechanism.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public byte[] wrap(byte[] outgoing, int offset, int len)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        if (completed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            throw new SaslException("EXTERNAL has no supported QOP");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                "EXTERNAL authentication not completed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Retrieves the negotiated property.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * This method can be called only after the authentication exchange has
32275
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   138
     * completed (i.e., when {@code isComplete()} returns true);
17eeb583a331 8133802: replace some <tt> tags (obsolete in html5) in security-libs docs
avstepan
parents: 25859
diff changeset
   139
     * otherwise, an {@code IllegalStateException} is thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @return null No property is applicable to this mechanism.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * @exception IllegalStateException if this authentication exchange
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * has not completed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public Object getNegotiatedProperty(String propName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        if (completed) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                "EXTERNAL authentication not completed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
}