jdk/src/java.naming/share/classes/com/sun/jndi/ldap/Connection.java
author robm
Fri, 05 Dec 2014 20:13:05 +0000
changeset 27935 80c148fb46c5
parent 25859 3317bb8137f4
child 30901 3a319ea18158
permissions -rw-r--r--
8065238: javax.naming.NamingException after upgrade to JDK 8 Reviewed-by: vinnie
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
24519
2fab99d91c4d 8042857: 14 stuck threads waiting for notification on LDAPRequest
robm
parents: 23010
diff changeset
     2
 * Copyright (c) 1999, 2014, 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: 4188
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: 4188
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: 4188
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4188
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4188
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.jndi.ldap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.BufferedInputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.BufferedOutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.InterruptedIOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.io.InputStream;
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
    34
import java.net.InetSocketAddress;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.net.Socket;
10703
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
    36
import javax.net.ssl.SSLSocket;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import javax.naming.CommunicationException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import javax.naming.ServiceUnavailableException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import javax.naming.NamingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import javax.naming.InterruptedNamingException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import javax.naming.ldap.Control;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.lang.reflect.InvocationTargetException;
4188
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
    47
import java.util.Arrays;
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
    48
import sun.misc.IOUtils;
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
    49
import javax.net.SocketFactory;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
  * A thread that creates a connection to an LDAP server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
  * After the connection, the thread reads from the connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
  * A caller can invoke methods on the instance to read LDAP responses
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
  * and to send LDAP requests.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
  * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
  * There is a one-to-one correspondence between an LdapClient and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
  * a Connection. Access to Connection and its methods is only via
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
  * LdapClient with two exceptions: SASL authentication and StartTLS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
  * SASL needs to access Connection's socket IO streams (in order to do encryption
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
  * of the security layer). StartTLS needs to do replace IO streams
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
  * and close the IO  streams on nonfatal close. The code for SASL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
  * authentication can be treated as being the same as from LdapClient
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
  * because the SASL code is only ever called from LdapClient, from
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
  * inside LdapClient's synchronized authenticate() method. StartTLS is called
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
  * directly by the application but should only occur when the underlying
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
  * connection is quiet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
  * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
  * In terms of synchronization, worry about data structures
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
  * used by the Connection thread because that usage might contend
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
  * with calls by the main threads (i.e., those that call LdapClient).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
  * Main threads need to worry about contention with each other.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
  * Fields that Connection thread uses:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
  *     inStream - synced access and update; initialized in constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
  *           referenced outside class unsync'ed (by LdapSasl) only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
  *           when connection is quiet
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
  *     traceFile, traceTagIn, traceTagOut - no sync; debugging only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
  *     parent - no sync; initialized in constructor; no updates
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
  *     pendingRequests - sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
  *     pauseLock - per-instance lock;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
  *     paused - sync via pauseLock (pauseReader())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
  * Members used by main threads (LdapClient):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
  *     host, port - unsync; read-only access for StartTLS and debug messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
  *     setBound(), setV3() - no sync; called only by LdapClient.authenticate(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
  *             which is a sync method called only when connection is "quiet"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
  *     getMsgId() - sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
  *     writeRequest(), removeRequest(),findRequest(), abandonOutstandingReqs() -
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
  *             access to shared pendingRequests is sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
  *     writeRequest(),  abandonRequest(), ldapUnbind() - access to outStream sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
  *     cleanup() - sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
  *     readReply() - access to sock sync
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
  *     unpauseReader() - (indirectly via writeRequest) sync on pauseLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
  * Members used by SASL auth (main thread):
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
  *     inStream, outStream - no sync; used to construct new stream; accessed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
  *             only when conn is "quiet" and not shared
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
  *     replaceStreams() - sync method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
  * Members used by StartTLS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
  *     inStream, outStream - no sync; used to record the existing streams;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
  *             accessed only when conn is "quiet" and not shared
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
  *     replaceStreams() - sync method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
  * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
  * Handles anonymous, simple, and SASL bind for v3; anonymous and simple
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
  * for v2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
  * %%% made public for access by LdapSasl %%%
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
  *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
  * @author Vincent Ryan
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
  * @author Rosanna Lee
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
  * @author Jagane Sundar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
public final class Connection implements Runnable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    private static final boolean debug = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    private static final int dump = 0; // > 0 r, > 1 rw
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    final private Thread worker;    // Initialized in constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    private boolean v3 = true;       // Set in setV3()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    final public String host;  // used by LdapClient for generating exception messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                         // used by StartTlsResponse when creating an SSL socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    final public int port;     // used by LdapClient for generating exception messages
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                         // used by StartTlsResponse when creating an SSL socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    private boolean bound = false;   // Set in setBound()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    // All three are initialized in constructor and read-only afterwards
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    private OutputStream traceFile = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    private String traceTagIn = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private String traceTagOut = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    // Initialized in constructor; read and used externally (LdapSasl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    // Updated in replaceStreams() during "quiet", unshared, period
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public InputStream inStream;   // must be public; used by LdapSasl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    // Initialized in constructor; read and used externally (LdapSasl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    // Updated in replaceOutputStream() during "quiet", unshared, period
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public OutputStream outStream; // must be public; used by LdapSasl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    // Initialized in constructor; read and used externally (TLS) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    // get new IO streams; closed during cleanup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    public Socket sock;            // for TLS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    // For processing "disconnect" unsolicited notification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    // Initialized in constructor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    final private LdapClient parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    // Incremented and returned in sync getMsgId()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    private int outMsgId = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    // The list of ldapRequests pending on this binding
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    // Accessed only within sync methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    private LdapRequest pendingRequests = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    volatile IOException closureReason = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
    volatile boolean useable = true;  // is Connection still useable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
14184
5553422ece67 8000487: Java JNDI connection library on ldap conn is not honoring configured timeout
robm
parents: 13157
diff changeset
   160
    int readTimeout;
5553422ece67 8000487: Java JNDI connection library on ldap conn is not honoring configured timeout
robm
parents: 13157
diff changeset
   161
    int connectTimeout;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    // true means v3; false means v2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    // Called in LdapClient.authenticate() (which is synchronized)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    // when connection is "quiet" and not shared; no need to synchronize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    void setV3(boolean v) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        v3 = v;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    // A BIND request has been successfully made on this connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    // When cleaning up, remember to do an UNBIND
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    // Called in LdapClient.authenticate() (which is synchronized)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    // when connection is "quiet" and not shared; no need to synchronize
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    void setBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        bound = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    // Create an LDAP Binding object and bind to a particular server
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
    Connection(LdapClient parent, String host, int port, String socketFactory,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        int connectTimeout, int readTimeout, OutputStream trace) throws NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        this.host = host;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        this.port = port;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        this.parent = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        this.readTimeout = readTimeout;
14184
5553422ece67 8000487: Java JNDI connection library on ldap conn is not honoring configured timeout
robm
parents: 13157
diff changeset
   191
        this.connectTimeout = connectTimeout;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        if (trace != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            traceFile = trace;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            traceTagIn = "<- " + host + ":" + port + "\n\n";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            traceTagOut = "-> " + host + ":" + port + "\n\n";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        // Connect to server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            sock = createSocket(host, port, socketFactory, connectTimeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                System.err.println("Connection: opening socket: " + host + "," + port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            inStream = new BufferedInputStream(sock.getInputStream());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            outStream = new BufferedOutputStream(sock.getOutputStream());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        } catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
            Throwable realException = e.getTargetException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            // realException.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            CommunicationException ce =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                new CommunicationException(host + ":" + port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
            ce.setRootCause(realException);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
            throw ce;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        } catch (Exception e) {
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   221
            // We need to have a catch all here and
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            // ignore generic exceptions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            // Also catches all IO errors generated by socket creation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            CommunicationException ce =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                new CommunicationException(host + ":" + port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            ce.setRootCause(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            throw ce;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        worker = Obj.helper.createThread(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        worker.setDaemon(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        worker.start();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * Create an InetSocketAddress using the specified hostname and port number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   238
    private InetSocketAddress createInetSocketAddress(String host, int port) {
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   239
            return new InetSocketAddress(host, port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * Create a Socket object using the specified socket factory and time limit.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * If a timeout is supplied and unconnected sockets are supported then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * an unconnected socket is created and the timeout is applied when
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * connecting the socket. If a timeout is supplied but unconnected sockets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * are not supported then the timeout is ignored and a connected socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * is created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    private Socket createSocket(String host, int port, String socketFactory,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            int connectTimeout) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        Socket socket = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        if (socketFactory != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            // create the factory
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
25577
1d036fa8c9c4 8050798: New unchecked warning introduced in com.sun.jndi.ldap.Connection
darcy
parents: 25514
diff changeset
   260
            @SuppressWarnings("unchecked")
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   261
            Class<? extends SocketFactory> socketFactoryClass =
25577
1d036fa8c9c4 8050798: New unchecked warning introduced in com.sun.jndi.ldap.Connection
darcy
parents: 25514
diff changeset
   262
                (Class<? extends SocketFactory>)Obj.helper.loadClass(socketFactory);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            Method getDefault =
10324
e28265130e4f 7072353: JNDI libraries do not build with javac -Xlint:all -Werror
jjg
parents: 8564
diff changeset
   264
                socketFactoryClass.getMethod("getDefault", new Class<?>[]{});
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   265
            SocketFactory factory = (SocketFactory) getDefault.invoke(null, new Object[]{});
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            // create the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
            if (connectTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   271
                InetSocketAddress endpoint =
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   272
                        createInetSocketAddress(host, port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   274
                // unconnected socket
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   275
                socket = factory.createSocket();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   277
                if (debug) {
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   278
                    System.err.println("Connection: creating socket with " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                            "a timeout using supplied socket factory");
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   280
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   282
                // connected socket
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   283
                socket.connect(endpoint, connectTimeout);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   286
            // continue (but ignore connectTimeout)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            if (socket == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                    System.err.println("Connection: creating socket using " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                        "supplied socket factory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                // connected socket
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   293
                socket = factory.createSocket(host, port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
            if (connectTimeout > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   299
                    InetSocketAddress endpoint = createInetSocketAddress(host, port);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   301
                    socket = new Socket();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
                    if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                        System.err.println("Connection: creating socket with " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                            "a timeout");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                    }
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   307
                    socket.connect(endpoint, connectTimeout);
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   308
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
25514
3cc6665bb6f4 8048175: Remove redundant use of reflection on core classes from JNDI
prappo
parents: 25406
diff changeset
   310
            // continue (but ignore connectTimeout)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
            if (socket == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
                if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
                    System.err.println("Connection: creating socket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
                // connected socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
                socket = new Socket(host, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
10703
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   321
        // For LDAP connect timeouts on LDAP over SSL connections must treat
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   322
        // the SSL handshake following socket connection as part of the timeout.
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   323
        // So explicitly set a socket read timeout, trigger the SSL handshake,
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   324
        // then reset the timeout.
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   325
        if (connectTimeout > 0 && socket instanceof SSLSocket) {
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   326
            SSLSocket sslSocket = (SSLSocket) socket;
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   327
            int socketTimeout = sslSocket.getSoTimeout();
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   328
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   329
            sslSocket.setSoTimeout(connectTimeout); // reuse full timeout value
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   330
            sslSocket.startHandshake();
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   331
            sslSocket.setSoTimeout(socketTimeout);
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   332
        }
5e4b04df89ec 7094377: Com.sun.jndi.ldap.read.timeout doesn't work with ldaps.
vinnie
parents: 10324
diff changeset
   333
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        return socket;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
    // Methods to IO to the LDAP server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
    synchronized int getMsgId() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
        return ++outMsgId;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    LdapRequest writeRequest(BerEncoder ber, int msgId) throws IOException {
8564
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   348
        return writeRequest(ber, msgId, false /* pauseAfterReceipt */, -1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
8564
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   351
    LdapRequest writeRequest(BerEncoder ber, int msgId,
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   352
        boolean pauseAfterReceipt) throws IOException {
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   353
        return writeRequest(ber, msgId, pauseAfterReceipt, -1);
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   354
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
8564
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   356
    LdapRequest writeRequest(BerEncoder ber, int msgId,
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   357
        boolean pauseAfterReceipt, int replyQueueCapacity) throws IOException {
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   358
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   359
        LdapRequest req =
d99f879a35ab 6750362: Very large LDAP requests throw a OOM on LDAP servers which aren't aware of Paged Results Controls
coffeys
parents: 8182
diff changeset
   360
            new LdapRequest(msgId, pauseAfterReceipt, replyQueueCapacity);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        addRequest(req);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        if (traceFile != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            Ber.dumpBER(traceFile, traceTagOut, ber.getBuf(), 0, ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        // unpause reader so that it can get response
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        // NOTE: Must do this before writing request, otherwise might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        // create a race condition where the writer unblocks its own response
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        unpauseReader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            System.err.println("Writing request to: " + outStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
                outStream.write(ber.getBuf(), 0, ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                outStream.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
            cleanup(null, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            throw (closureReason = e); // rethrow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        return req;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * Reads a reply; waits until one is ready.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    BerDecoder readReply(LdapRequest ldr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            throws IOException, NamingException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        BerDecoder rber;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        boolean waited = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
        while (((rber = ldr.getReplyBer()) == null) && !waited) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
                // If socket closed, don't even try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                    if (sock == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                        throw new ServiceUnavailableException(host + ":" + port +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                            "; socket closed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
                synchronized (ldr) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                    // check if condition has changed since our last check
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                    rber = ldr.getReplyBer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                    if (rber == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                        if (readTimeout > 0) {  // Socket read timeout is specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                            // will be woken up before readTimeout only if reply is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                            // available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                            ldr.wait(readTimeout);
27935
80c148fb46c5 8065238: javax.naming.NamingException after upgrade to JDK 8
robm
parents: 25859
diff changeset
   416
                            waited = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                        } else {
27935
80c148fb46c5 8065238: javax.naming.NamingException after upgrade to JDK 8
robm
parents: 25859
diff changeset
   418
                            // no timeout is set so we wait infinitely until
80c148fb46c5 8065238: javax.naming.NamingException after upgrade to JDK 8
robm
parents: 25859
diff changeset
   419
                            // a response is received
80c148fb46c5 8065238: javax.naming.NamingException after upgrade to JDK 8
robm
parents: 25859
diff changeset
   420
                            // http://docs.oracle.com/javase/8/docs/technotes/guides/jndi/jndi-ldap.html#PROP
80c148fb46c5 8065238: javax.naming.NamingException after upgrade to JDK 8
robm
parents: 25859
diff changeset
   421
                            ldr.wait();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
            } catch (InterruptedException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
                throw new InterruptedNamingException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
                    "Interrupted during LDAP operation");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        if ((rber == null) && waited) {
24568
0a6c919b3b31 8041451: com.sun.jndi.ldap.Connection:ReadTimeout should abandon ldap request
robm
parents: 24519
diff changeset
   434
            abandonRequest(ldr, null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
            throw new NamingException("LDAP response read timed out, timeout used:"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
                            + readTimeout + "ms." );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        return rber;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    // Methods to add, find, delete, and abandon requests made to server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
    private synchronized void addRequest(LdapRequest ldapRequest) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        LdapRequest ldr = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        if (ldr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
            pendingRequests = ldapRequest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            ldapRequest.next = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            ldapRequest.next = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
            pendingRequests = ldapRequest;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    synchronized LdapRequest findRequest(int msgId) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        LdapRequest ldr = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        while (ldr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
            if (ldr.msgId == msgId) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
                return ldr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            ldr = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    synchronized void removeRequest(LdapRequest req) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        LdapRequest ldr = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        LdapRequest ldrprev = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        while (ldr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            if (ldr == req) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
                ldr.cancel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                if (ldrprev != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                    ldrprev.next = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                    pendingRequests = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
                ldr.next = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
            ldrprev = ldr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
            ldr = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    void abandonRequest(LdapRequest ldr, Control[] reqCtls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        // Remove from queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        removeRequest(ldr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        BerEncoder ber = new BerEncoder(256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        int abandonMsgId = getMsgId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        // build the abandon request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            ber.beginSeq(Ber.ASN_SEQUENCE | Ber.ASN_CONSTRUCTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
                ber.encodeInt(abandonMsgId);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                ber.encodeInt(ldr.msgId, LdapClient.LDAP_REQ_ABANDON);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
                if (v3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                    LdapClient.encodeControls(ber, reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            ber.endSeq();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            if (traceFile != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                Ber.dumpBER(traceFile, traceTagOut, ber.getBuf(), 0,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                    ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                outStream.write(ber.getBuf(), 0, ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                outStream.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        } catch (IOException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            //System.err.println("ldap.abandon: " + ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 14184
diff changeset
   528
        // Don't expect any response for the abandon request.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
    synchronized void abandonOutstandingReqs(Control[] reqCtls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        LdapRequest ldr = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        while (ldr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            abandonRequest(ldr, reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            pendingRequests = ldr = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    // Methods to unbind from server and clear up resources when object is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    // destroyed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    private void ldapUnbind(Control[] reqCtls) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        BerEncoder ber = new BerEncoder(256);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        int unbindMsgId = getMsgId();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        // build the unbind request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
            ber.beginSeq(Ber.ASN_SEQUENCE | Ber.ASN_CONSTRUCTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
                ber.encodeInt(unbindMsgId);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
                // IMPLICIT TAGS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                ber.encodeByte(LdapClient.LDAP_REQ_UNBIND);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
                ber.encodeByte(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                if (v3) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    LdapClient.encodeControls(ber, reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
            ber.endSeq();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
            if (traceFile != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
                Ber.dumpBER(traceFile, traceTagOut, ber.getBuf(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                    0, ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                outStream.write(ber.getBuf(), 0, ber.getDataLen());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
                outStream.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        } catch (IOException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            //System.err.println("ldap.unbind: " + ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 14184
diff changeset
   583
        // Don't expect any response for the unbind request.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * @param reqCtls Possibly null request controls that accompanies the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *    abandon and unbind LDAP request.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @param notifyParent true means to call parent LdapClient back, notifying
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *    it that the connection has been closed; false means not to notify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *    parent. If LdapClient invokes cleanup(), notifyParent should be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     *    false because LdapClient already knows that it is closing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     *    the connection. If Connection invokes cleanup(), notifyParent should be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *    set to true because LdapClient needs to know about the closure.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
    void cleanup(Control[] reqCtls, boolean notifyParent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
        boolean nparent = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        synchronized (this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            useable = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
            if (sock != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    System.err.println("Connection: closing socket: " + host + "," + port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                    if (!notifyParent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
                        abandonOutstandingReqs(reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
                    if (bound) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                        ldapUnbind(reqCtls);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
                        outStream.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                        sock.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
                        unpauseReader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                    } catch (IOException ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                        if (debug)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
                            System.err.println("Connection: problem closing socket: " + ie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                    if (!notifyParent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                        LdapRequest ldr = pendingRequests;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                        while (ldr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                            ldr.cancel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                            ldr = ldr.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
                    sock = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
                nparent = notifyParent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
            }
8182
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   633
            if (nparent) {
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   634
                LdapRequest ldr = pendingRequests;
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   635
                while (ldr != null) {
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   636
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   637
                    synchronized (ldr) {
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   638
                        ldr.notify();
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   639
                        ldr = ldr.next;
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   640
                    }
1afdfa9621b6 7017486: Need synchronized access when flushing the LDAP request queue
vinnie
parents: 6312
diff changeset
   641
                }
6126
bf66999384ac 6870947: 15 sec delay detecting "socket closed" condition when a TCP connection is reset by an LDAP server
xuelei
parents: 5506
diff changeset
   642
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        }
13157
2141a68fb2a7 7174887: Deadlock in jndi ldap connection cleanup
robm
parents: 10703
diff changeset
   644
        if (nparent) {
2141a68fb2a7 7174887: Deadlock in jndi ldap connection cleanup
robm
parents: 10703
diff changeset
   645
            parent.processConnectionClosure();
2141a68fb2a7 7174887: Deadlock in jndi ldap connection cleanup
robm
parents: 10703
diff changeset
   646
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    // Assume everything is "quiet"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    // "synchronize" might lead to deadlock so don't synchronize method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    // Use streamLock instead for synchronizing update to stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    synchronized public void replaceStreams(InputStream newIn, OutputStream newOut) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
            System.err.println("Replacing " + inStream + " with: " + newIn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
            System.err.println("Replacing " + outStream + " with: " + newOut);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        inStream = newIn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        // Cleanup old stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
            outStream.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        } catch (IOException ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            if (debug)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                System.err.println("Connection: cannot flush outstream: " + ie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        // Replace stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
        outStream = newOut;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * Used by Connection thread to read inStream into a local variable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * This ensures that there is no contention between the main thread
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     * and the Connection thread when the main thread updates inStream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    synchronized private InputStream getInputStream() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        return inStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    // Code for pausing/unpausing the reader thread ('worker')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * The main idea is to mark requests that need the reader thread to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * pause after getting the response. When the reader thread gets the response,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     * it waits on a lock instead of returning to the read(). The next time a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * request is sent, the reader is automatically unblocked if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * Note that the reader must be unblocked BEFORE the request is sent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     * Otherwise, there is a race condition where the request is sent and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     * the reader thread might read the response and be unblocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
     * by writeRequest().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     * This pause gives the main thread (StartTLS or SASL) an opportunity to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * update the reader's state (e.g., its streams) if necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
     * The assumption is that the connection will remain quiet during this pause
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * (i.e., no intervening requests being sent).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
     * For dealing with StartTLS close,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * when the read() exits either due to EOF or an exception,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * the reader thread checks whether there is a new stream to read from.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * If so, then it reattempts the read. Otherwise, the EOF or exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * is processed and the reader thread terminates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * In a StartTLS close, the client first replaces the SSL IO streams with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * plain ones and then closes the SSL socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * If the reader thread attempts to read, or was reading, from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * the SSL socket (that is, it got to the read BEFORE replaceStreams()),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
     * the SSL socket close will cause the reader thread to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * get an EOF/exception and reexamine the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     * If the reader thread sees a new stream, it reattempts the read.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
     * If the underlying socket is still alive, then the new read will succeed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     * If the underlying socket has been closed also, then the new read will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * fail and the reader thread exits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * If the reader thread attempts to read, or was reading, from the plain
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * socket (that is, it got to the read AFTER replaceStreams()), the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * SSL socket close will have no effect on the reader thread.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * The check for new stream is made only
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * in the first attempt at reading a BER buffer; the reader should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     * never be in midst of reading a buffer when a nonfatal close occurs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     * If this occurs, then the connection is in an inconsistent state and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * the safest thing to do is to shut it down.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    private Object pauseLock = new Object();  // lock for reader to wait on while paused
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    private boolean paused = false;           // paused state of reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     * Unpauses reader thread if it was paused
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
    private void unpauseReader() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        synchronized (pauseLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
            if (paused) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                    System.err.println("Unpausing reader; read from: " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
                                        inStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
                paused = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
                pauseLock.notify();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     * Pauses reader so that it stops reading from the input stream.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
     * Reader blocks on pauseLock instead of read().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     * MUST be called from within synchronized (pauseLock) clause.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    private void pauseReader() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
            System.err.println("Pausing reader;  was reading from: " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
                                inStream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        paused = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
            while (paused) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
                pauseLock.wait(); // notified by unpauseReader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        } catch (InterruptedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
            throw new InterruptedIOException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
                    "Pause/unpause reader has problems.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    // The LDAP Binding thread. It does the mux/demux of multiple requests
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    // on the same TCP connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    ////////////////////////////////////////////////////////////////////////////
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
    public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        byte inbuf[];   // Buffer for reading incoming bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        int inMsgId;    // Message id of incoming response
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
        int bytesread;  // Number of bytes in inbuf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        int br;         // Temp; number of bytes read from stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        int offset;     // Offset of where to store bytes in inbuf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        int seqlen;     // Length of ASN sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        int seqlenlen;  // Number of sequence length bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        boolean eos;    // End of stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        BerDecoder retBer;    // Decoder for ASN.1 BER data from inbuf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        InputStream in = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
            while (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                try {
6312
ec857430700d 6921610: 1.6 update 17 and 18 throw java.lang.IndexOutOfBoundsException
weijun
parents: 6126
diff changeset
   795
                    // type and length (at most 128 octets for long form)
ec857430700d 6921610: 1.6 update 17 and 18 throw java.lang.IndexOutOfBoundsException
weijun
parents: 6126
diff changeset
   796
                    inbuf = new byte[129];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
                    offset = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
                    seqlen = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
                    seqlenlen = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                    in = getInputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                    // check that it is the beginning of a sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
                    bytesread = in.read(inbuf, offset, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
                    if (bytesread < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
                        if (in != getInputStream()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
                            continue;   // a new stream to try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
                            break; // EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
                    if (inbuf[offset++] != (Ber.ASN_SEQUENCE | Ber.ASN_CONSTRUCTOR))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
                        continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
                    // get length of sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
                    bytesread = in.read(inbuf, offset, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
                    if (bytesread < 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
                        break; // EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
                    seqlen = inbuf[offset++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
                    // if high bit is on, length is encoded in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
                    // subsequent length bytes and the number of length bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
                    // is equal to & 0x80 (i.e. length byte with high bit off).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
                    if ((seqlen & 0x80) == 0x80) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
                        seqlenlen = seqlen & 0x7f;  // number of length bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                        bytesread = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                        eos = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
                        // Read all length bytes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
                        while (bytesread < seqlenlen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
                            br = in.read(inbuf, offset+bytesread,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
                                seqlenlen-bytesread);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                            if (br < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                                eos = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                                break; // EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                            bytesread += br;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
                        // end-of-stream reached before length bytes are read
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                        if (eos)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
                            break;  // EOF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
                        // Add contents of length bytes to determine length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                        seqlen = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                        for( int i = 0; i < seqlenlen; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                            seqlen = (seqlen << 8) + (inbuf[offset+i] & 0xff);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                        offset += bytesread;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                    // read in seqlen bytes
4188
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
   856
                    byte[] left = IOUtils.readFully(in, seqlen, false);
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
   857
                    inbuf = Arrays.copyOf(inbuf, offset + left.length);
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
   858
                    System.arraycopy(left, 0, inbuf, offset, left.length);
f67abce80f05 6864911: ASN.1/DER input stream parser needs more work
weijun
parents: 2
diff changeset
   859
                    offset += left.length;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
if (dump > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
System.err.println("seqlen: " + seqlen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
System.err.println("bufsize: " + offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
System.err.println("bytesleft: " + bytesleft);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
System.err.println("bytesread: " + bytesread);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                    try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                        retBer = new BerDecoder(inbuf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        if (traceFile != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                            Ber.dumpBER(traceFile, traceTagIn, inbuf, 0, offset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
                        retBer.parseSeq(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
                        inMsgId = retBer.parseInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
                        retBer.reset(); // reset offset
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                        boolean needPause = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                        if (inMsgId == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
                            // Unsolicited Notification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
                            parent.processUnsolicited(retBer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
                            LdapRequest ldr = findRequest(inMsgId);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
                            if (ldr != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                                /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
                                 * Grab pauseLock before making reply available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
                                 * to ensure that reader goes into paused state
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
                                 * before writer can attempt to unpause reader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
                                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
                                synchronized (pauseLock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
                                    needPause = ldr.addReplyBer(retBer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
                                    if (needPause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
                                        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
                                         * Go into paused state; release
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
                                         * pauseLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
                                         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                                        pauseReader();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                                    // else release pauseLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
                                // System.err.println("Cannot find" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
                                //              "LdapRequest for " + inMsgId);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
                    } catch (Ber.DecodeException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
                        //System.err.println("Cannot parse Ber");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
                } catch (IOException ie) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
                    if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
                        System.err.println("Connection: Inside Caught " + ie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
                        ie.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
                    if (in != getInputStream()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
                        // A new stream to try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                        // Go to top of loop and continue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                            System.err.println("Connection: rethrowing " + ie);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
                        throw ie;  // rethrow exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
            if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                System.err.println("Connection: end-of-stream detected: "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
                    + in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        } catch (IOException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
                System.err.println("Connection: Caught " + ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
            closureReason = ex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
            cleanup(null, true); // cleanup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        if (debug) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            System.err.println("Connection: Thread Exiting");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    // This code must be uncommented to run the LdapAbandonTest.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    /*public void sendSearchReqs(String dn, int numReqs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        int i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        String attrs[] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        for(i = 1; i <= numReqs; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            BerEncoder ber = new BerEncoder(2048);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
            ber.beginSeq(Ber.ASN_SEQUENCE | Ber.ASN_CONSTRUCTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
                ber.encodeInt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
                ber.beginSeq(LdapClient.LDAP_REQ_SEARCH);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
                    ber.encodeString(dn == null ? "" : dn);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
                    ber.encodeInt(0, LdapClient.LBER_ENUMERATED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
                    ber.encodeInt(3, LdapClient.LBER_ENUMERATED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
                    ber.encodeInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
                    ber.encodeInt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                    ber.encodeBoolean(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
                    LdapClient.encodeFilter(ber, "");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
                    ber.beginSeq(Ber.ASN_SEQUENCE | Ber.ASN_CONSTRUCTOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
                        ber.encodeStringArray(attrs);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
                    ber.endSeq();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                ber.endSeq();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            ber.endSeq();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            writeRequest(ber, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
            //System.err.println("wrote request " + i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
            } catch (Exception ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
            //System.err.println("ldap.search: Caught " + ex + " building req");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
    } */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
}