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