File: LDAPConnection.java

package info (click to toggle)
libgnuinet-java 1.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,368 kB
  • ctags: 1,710
  • sloc: java: 12,475; sh: 5,408; makefile: 218; xml: 126
file content (750 lines) | stat: -rw-r--r-- 23,647 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
/*
 * LDAPConnection.java
 * Copyright (C) 2004 The Free Software Foundation
 * 
 * This file is part of GNU inetlib, a library.
 * 
 * GNU inetlib is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 * 
 * GNU inetlib is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * 
 * As a special exception, if you link this library with other files to
 * produce an executable, this library does not by itself cause the
 * resulting executable to be covered by the GNU General Public License.
 * This exception does not however invalidate any other reasons why the
 * executable file might be covered by the GNU General Public License.
 */

package gnu.inet.ldap;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.InputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import java.net.InetSocketAddress;
import java.net.ProtocolException;
import java.net.Socket;
import java.net.SocketAddress;
import java.util.ArrayList;
import javax.naming.ldap.Control;

/**
 * An LDAPv3 client.
 * This client is still experimental, please contact
 * <a href='mailto:dog@gnu.org'>Chris Burdess</a> if you want to help out
 * with it.
 *
 * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>
 */
public class LDAPConnection
{

  /**
   * The default LDAP port.
   */
  public static final int DEFAULT_PORT = 389;

  public static final int SCOPE_BASE_OBJECT = 0;
  public static final int SCOPE_SINGLE_LEVEL = 1;
  public static final int SCOPE_WHOLE_SUBTREE = 2;

  /**
   * Do not dereference aliases in searching or in locating the base object
   * of the search.
   */
  public static final int DEREF_NEVER = 0;

  /**
   * Dereference aliases in subordinates of the base object in searching,
   * but not in locating the base object of the search.
   */
  public static final int DEREF_IN_SEARCHING = 1;

  /**
   * Dereference aliases in locating the base object of the search, but not
   * when searching subordinates of the base object.
   */
  public static final int DEREF_FINDING_BASE_OBJ = 2;

  /**
   * Dereference aliases both in searching and in locating the base object
   * of the search.
   */
  public static final int DEREF_ALWAYS = 3;

  private static final int SUCCESS = 0;
  private static final int SASL_BIND_IN_PROGRESS = 14;

  private static final int MESSAGE = 0x30;
  private static final int BIND_REQUEST = 0x60;
  private static final int BIND_RESPONSE = 0x61;
  private static final int UNBIND_REQUEST = 0x62;
  private static final int SEARCH_REQUEST = 0x63;
  private static final int SEARCH_RESULT = 0x64;
  private static final int SEARCH_RESULT_DONE = 0x65;
  private static final int MODIFY_REQUEST = 0x66;
  private static final int MODIFY_RESPONSE = 0x67;
  private static final int ADD_REQUEST = 0x68;
  private static final int ADD_RESPONSE = 0x69;
  private static final int DELETE_REQUEST = 0x6a;
  private static final int DELETE_RESPONSE = 0x6b;
  private static final int MODIFY_DN_REQUEST = 0x6c;
  private static final int MODIFY_DN_RESPONSE = 0x6d;
  private static final int SEARCH_REFERENCE = 0x73;

  protected String host;
  protected int port;
  protected int version; // 2 or 3
  
  private Socket socket;
  private InputStream in;
  private OutputStream out;
  
  private int messageId;
  private Map asyncResponses;

  /**
   * Creates a new LDAP connection to the specified host, using the default
   * LDAP port.
   * @param host the host
   */
  public LDAPConnection (String host)
    throws IOException
  {
    this (host, DEFAULT_PORT, 0, 0);
  }

  /**
   * Creates a new LDAP connection to the specified host and port.
   * @param host the host
   * @param port the port
   */
  public LDAPConnection (String host, int port)
    throws IOException
  {
    this (host, port, 0, 0);
  }

  /**
   * Creates a new LDAP connection to the specified host, port, and timeouts.
   * @param host the host
   * @param port the port
   * @param connectionTimeout the connection timeout in ms
   * @param timeout the socket I/O timeout in ms
   */
  public LDAPConnection (String host, int port,
                         int connectionTimeout, int timeout)
    throws IOException
  {
    this.host = host;
    if (port < 0)
      {
        port = DEFAULT_PORT;
      }
    this.port = port;
    messageId = 0;
    asyncResponses = new HashMap ();
    version = 3;

    // Connect
    socket = new Socket ();
    SocketAddress address = new InetSocketAddress (host, port);
    if (connectionTimeout > 0)
      {
        socket.connect (address, connectionTimeout);
      }
    else
      {
        socket.connect (address);
      }
    in = new BufferedInputStream (socket.getInputStream ());
    out = new BufferedOutputStream (socket.getOutputStream ());
  }

  /**
   * Sets the version of LDAP to use.
   * This implementation supports versions 2 and 3.
   * @param version the LDAP version
   */
  public void setVersion (int version)
  {
    if (version < 2 || version > 3)
      {
        throw new IllegalArgumentException (Integer.toString(version));
      }
    this.version = version;
  }

  /**
   * Initiates a bind operation to authenticate the client to the server.
   * @param name the LDAP DN to authenticate to, or <code>null</code> for
   * anonymous binding
   * @param mechanism the SASL mechanism to use, or <code>null</code> for
   * simple authentication
   * @param credentials the security credentials to use
   * @return the LDAP result
   */
  public LDAPResult bind (String name, String mechanism,
                          byte[] credentials, Control[] controls)
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder bind = new BEREncoder (utf8);
    if (mechanism == null)
      {
        bind.append (version);
        bind.append (name);
        bind.append (credentials);
        // Request controls
        BEREncoder ctls = new BEREncoder (utf8);
        if (controls != null)
          {
            for (int i = 0; i < controls.length; i++)
              {
                ctls.append (controlSequence (controls[i], utf8),
                             BERConstants.SEQUENCE);
              }
          }
        bind.append (ctls.toByteArray (), BERConstants.SEQUENCE);
        // Write request
        write (id, BIND_REQUEST, bind.toByteArray ());
        // Read response
        BERDecoder response = read (id);
        BERDecoder resultSequence = response.parseSequence (BIND_RESPONSE);
        LDAPResult result = parseResult (resultSequence);
        if (resultSequence.available ())
          {
            byte[] serverCreds = resultSequence.parseOctetString ();
            // TODO
          }
        // TODO response controls
        return result;
      }
    else
      {
        bind.append (version);
        bind.append (name);
        // TODO
        throw new UnsupportedOperationException ("TODO");
      }
  }

  /**
   * Issues an unbind request. This indicates to the server that the client
   * has no more requests to issue and will terminate the connection. After
   * invoking this method, no further methods may be invoked.
   */
  public void unbind ()
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder unbind = new BEREncoder (utf8);
    unbind.appendNull ();
    write (id, UNBIND_REQUEST, unbind.toByteArray ());
    // Close socket
    socket.close ();
  }

  /**
   * Issues a search request.
   * @param name the LDAP DN that is the base object entry relative to which
   * the search is to be performed
   * @param scope the search scope, one of the SCOPE_* constants
   * @param derefAliases whether to dereference aliases, one of the DEREF_*
   * constants
   * @param sizeLimit the maximum number of entries to return, or 0 for no
   * restriction
   * @param timeLimit the maximum time in seconds permitted for the search,
   * or 0 for no restriction
   * @param typesOnly whether to return only attribute types (true) or both
   * attribute types and values (false)
   * @param filter the search filter in RFC2254 format
   * @param attributes the IDs of the attributes to return
   * @param controls the request controls
   * @param handler the result handler to receive notification of results
   * @return the LDAP result
   */
  public LDAPResult search (String name, int scope, int derefAliases,
                            int sizeLimit, int timeLimit,
                            boolean typesOnly, String filter,
                            String[] attributes, Control[] controls,
                            ResultHandler handler)
    throws IOException
  {
    if (filter == null || filter.length () == 0)
      {
        filter = "(objectClass=*)";
      }
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder search = new BEREncoder (utf8);
    search.append (name);
    search.append (scope, BERConstants.ENUMERATED);
    search.append (derefAliases, BERConstants.ENUMERATED);
    search.append (sizeLimit);
    search.append (timeLimit);
    search.append (typesOnly);
    search.appendFilter (filter);
    BEREncoder attributeSequence = new BEREncoder (utf8);
    if (attributes != null)
      {
        for (int i = 0; i < attributes.length; i++)
          {
            attributeSequence.append (attributes[i]);
          }
      }
    search.append (attributeSequence.toByteArray (), BERConstants.SEQUENCE);
    // Request controls
    BEREncoder ctls = new BEREncoder (utf8);
    if (controls != null)
      {
        for (int i = 0; i < controls.length; i++)
          {
            ctls.append (controlSequence (controls[i], utf8),
                         BERConstants.SEQUENCE);
          }
      }
    search.append (ctls.toByteArray (), BERConstants.SEQUENCE);
    // Write request
    write (id, SEARCH_REQUEST, search.toByteArray ());
    do
      {
        BERDecoder response = read (id);
        int code = response.parseType ();
        switch (code)
          {
          case SEARCH_RESULT:
            BERDecoder entry = response.parseSequence (code);
            String objectName = entry.parseString ();
            BERDecoder attributeSeq = entry.parseSequence ();
            Map attrs = new TreeMap ();
            while (attributeSeq.available ())
              {
                BERDecoder attribute = attributeSeq.parseSequence ();
                String type = attribute.parseString ();
                BERDecoder values = attribute.parseSet ();
                List acc = new ArrayList ();
                while (values.available ())
                  {
                    int valueType = values.parseType ();
                    switch (valueType)
                      {
                      case BERConstants.BOOLEAN:
                        acc.add (Boolean.valueOf (values.parseBoolean ()));
                        break;
                      case BERConstants.INTEGER:
                      case BERConstants.ENUMERATED:
                        acc.add (new Integer (values.parseInt ()));
                        break;
                        // TODO float
                      case BERConstants.UTF8_STRING:
                        acc.add (values.parseString ());
                        break;
                      case BERConstants.OCTET_STRING:
                        acc.add (values.parseOctetString ());
                        break;
                      }
                  }
                attrs.put (type, acc);
              }
            handler.searchResultEntry (objectName, attrs);
            break;
          case SEARCH_REFERENCE:
            List acc = new ArrayList ();
            BERDecoder urls = response.parseSequence (code);
            while (urls.available ())
              {
                acc.add (urls.parseString ());
              }
            handler.searchResultReference (acc);
            break;
          case SEARCH_RESULT_DONE:
            return parseResult (response.parseSequence (code));
          default:
            throw new ProtocolException ("Unexpected response code: " +
                                         code);
          }
      }
    while (true);
  }

  /**
   * Issues a modify request.
   * @param name the LDAP DN of the object to be modified (alias
   * dereferencing will not be performed)
   * @param modifications a sequence of modifications to be executed
   * to be executed
   * @see Modification
   */
  public LDAPResult modify (String name, final Modification[] modifications)
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder modify = new BEREncoder (utf8);
    modify.append (name);
    BEREncoder modSeq = new BEREncoder (utf8);
    for (int i = 0; i < modifications.length; i++)
      {
        BEREncoder mod = new BEREncoder (utf8);
        mod.append (modifications[i].operation);
        BEREncoder typeAndValues = new BEREncoder (utf8);
        typeAndValues.append (modifications[i].type);
        BEREncoder values = new BEREncoder (utf8);
        appendValues (values, modifications[i].values);
        typeAndValues.append (values.toByteArray (), BERConstants.SET);
        mod.append (typeAndValues.toByteArray (), BERConstants.SEQUENCE);
        modSeq.append (mod.toByteArray (), BERConstants.SEQUENCE);
      }
    modify.append (modSeq.toByteArray (), BERConstants.SEQUENCE);
    // Write request
    write (id, MODIFY_REQUEST, modify.toByteArray ());
    // Read response
    BERDecoder response = read (id);
    BERDecoder resultSequence = response.parseSequence (MODIFY_RESPONSE);
    LDAPResult result = parseResult (resultSequence);
    return result;
  }

  /**
   * Requests the addition of a new entry into the directory.
   * @param name the LDAP DN of the new entry
   * @param attributes a sequence of attributes to assign to the new entry
   */
  public LDAPResult add (String name, AttributeValues[] attributes)
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder add = new BEREncoder (utf8);
    add.append (name);
    BEREncoder attrSeq = new BEREncoder (utf8);
    for (int i = 0; i < attributes.length; i++)
      {
        BEREncoder attr = new BEREncoder (utf8);
        attr.append (attributes[i].type);
        BEREncoder values = new BEREncoder (utf8);
        appendValues (values, attributes[i].values);
        attr.append (values.toByteArray (), BERConstants.SET);
        attrSeq.append (attr.toByteArray (), BERConstants.SEQUENCE);
      }
    add.append (attrSeq.toByteArray (), BERConstants.SEQUENCE);
    // Write request
    write (id, ADD_REQUEST, add.toByteArray ());
    // Read response
    BERDecoder response = read (id);
    BERDecoder resultSequence = response.parseSequence (ADD_RESPONSE);
    LDAPResult result = parseResult (resultSequence);
    return result;
  }

  /**
   * Requests the removal of an entry from the directory.
   * @param name the LDAP DN of the entry to remove
   */
  public LDAPResult delete (String name)
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder del = new BEREncoder (utf8);
    del.append (name);
    // Write request
    write (id, DELETE_REQUEST, del.toByteArray ());
    // Read response
    BERDecoder response = read (id);
    int code = response.parseType ();
    if (code != DELETE_RESPONSE)
      {
        throw new ProtocolException ("Unexpected response type: " +
                                     code);
      }
    BERDecoder resultSequence = response.parseSequence ();
    LDAPResult result = parseResult (resultSequence);
    return result;
  }

  /**
   * Changes the leftmost (least significant) component of the name of an
   * entry in the directory, or move a subtree of entries to a new location
   * in the directory.
   * @param name the LDAP DN of the entry to be changed
   * @param newRDN the RDN that will form the leftmost component of the new
   * name of the entry
   * @param deleteOldRDN if false, the old RDN values will be retained as
   * attributes of the entry, otherwise they are deleted from the entry
   * @param newSuperior if non-null, the DN of the entry to become the
   * immediate superior of the existing entry
   */
  public LDAPResult modifyDN (String name, String newRDN,
                              boolean deleteOldRDN, String newSuperior)
    throws IOException
  {
    int id = messageId++;
    boolean utf8 = (version == 3);
    BEREncoder modifyDN = new BEREncoder (utf8);
    modifyDN.append (name);
    modifyDN.append (newRDN);
    modifyDN.append (deleteOldRDN);
    if (newSuperior != null)
      {
        modifyDN.append (newSuperior);
      }
    // Write request
    write (id, MODIFY_DN_REQUEST, modifyDN.toByteArray ());
    // Read response
    BERDecoder response = read (id);
    BERDecoder resultSequence = response.parseSequence (MODIFY_DN_RESPONSE);
    LDAPResult result = parseResult (resultSequence);
    return result;
  }

  /* TODO Compare Operation */

  /* TODO Abandon Operation */

  /* TODO Extended Operation */



  /**
   * Appends the specified set of values to the given encoder.
   */
  void appendValues (BEREncoder encoder, Set values)
    throws BERException
  {
    if (values != null)
      {
        for (Iterator i = values.iterator (); i.hasNext (); )
          {
            Object value = i.next ();
            if (value == null)
              {
                encoder.appendNull ();
              }
            else if (value instanceof String)
              {
                encoder.append ((String) value);
              }
            else if (value instanceof Integer)
              {
                encoder.append (((Integer) value).intValue ());
              }
            else if (value instanceof Boolean)
              {
                encoder.append (((Boolean) value).booleanValue ());
              }
            else if (value instanceof byte[])
              {
                encoder.append ((byte[]) value);
              }
            // TODO float
            else
              {
                throw new ClassCastException (value.getClass ().getName ());
              }
          }
      }
  }

  /**
   * Encode a control.
   */
  byte[] controlSequence (final Control control, boolean utf8)
    throws IOException
  {
    BEREncoder encoder = new BEREncoder (utf8);
    encoder.append (control.getID ());
    if (control.isCritical ())
      {
        encoder.append (true);
      }
    return encoder.toByteArray ();
  }

  /**
   * Parse a response into an LDAP result object.
   */
  LDAPResult parseResult (BERDecoder response)
    throws IOException
  {
    int status = response.parseInt ();
    String matchingDN = response.parseString ();
    String errorMessage = response.parseString ();
    String[] referrals = null;
    if (response.available ())
      {
        int type = response.parseType ();
        if (type == BERConstants.SEQUENCE)
          {
            ArrayList list = new ArrayList ();
            BERDecoder sequence = response.parseSequence ();
            type = sequence.parseType ();
            while (type != -1)
              {
                list.add (sequence.parseString ());
              }
            referrals = new String[list.size ()];
            list.toArray (referrals);
          }
      }
    return new LDAPResult (status, matchingDN, errorMessage, referrals);
  }

  /**
   * Write a request.
   * @param id the message ID
   * @param code the operation code
   * @param request the request body
   */
  void write (int id, int code, byte[] request)
    throws IOException
  {
    boolean utf8 = (version == 3);
    BEREncoder envelope = new BEREncoder (utf8);
    envelope.append (id);
    envelope.append (request, code);
    BEREncoder message = new BEREncoder (utf8);
    message.append (envelope.toByteArray (), MESSAGE);
    byte[] toSend = message.toByteArray ();
    // Write to socket
    out.write (toSend);
    out.flush ();
  }

  /**
   * Read a response associated with the given message ID.
   * @param id the message ID
   * @return a BERDecoder for the content of the message
   */
  BERDecoder read (int id)
    throws IOException
  {
    // Check for an already received async response
    Integer key = new Integer (id);
    List responses = (List) asyncResponses.get (key);
    if (responses != null)
      {
        BERDecoder response = (BERDecoder) responses.remove (0);
        if (responses.size () == 0)
          {
            asyncResponses.remove (key);
          }
        return response;
      }
    do
      {
        // Read LDAP message
        byte[] bytes = readMessage ();
        boolean utf8 = (version == 3);
        BERDecoder message = new BERDecoder (bytes, utf8);
        message = message.parseSequence (MESSAGE);
        // Check message ID
        int msgId = message.parseInt ();
        if (msgId == id)
          {
            return message;
          }
        else
          {
            // Store this message for later processing
            key = new Integer (msgId);
            responses = (List) asyncResponses.get (key);
            if (responses == null)
              {
                responses = new ArrayList ();
                asyncResponses.put (key, responses);
              }
            responses.add (message);
          }
      }
    while (true);
  }

  /**
   * Read an LDAP message.
   */
  byte[] readMessage ()
    throws IOException
  {
    // Peek at the length part of the BER encoding to determine the length
    // of the message
    // TODO normalize this with functionality in BERDecoder
    byte[] header = new byte[6];
    int offset = 0;
    header[offset++] = (byte) readByte (); // type
    int len = readByte (); // length 0
    header[offset++] = (byte) len;
    if ((len & 0x80) != 0)
      {
        int lsize = len - 0x80;
        if (lsize > 4)
          {
            throw new BERException ("Data too long: " + lsize);
          }
        len = 0;
        for (int i = 0; i < lsize; i++)
          {
            int c = readByte ();
            header[offset++] = (byte) c;
            len = (len << 8) + c;
          }
      }
    // Allocate message array
    byte[] message = new byte[offset + len];
    System.arraycopy (header, 0, message, 0, offset);
    if (len == 0)
      {
        return message;
      }
    header = null;
    // Read message content
    do
      {
        int l = in.read (message, offset, len);
        if (l == -1)
          {
            throw new IOException ("EOF");
          }
        offset += l;
        len -= l;
      }
    while (len > 0);
    return message;
  }

  /**
   * Read a single byte.
   */
  int readByte ()
    throws IOException
  {
    int ret = in.read ();
    if (ret == -1)
      {
        throw new IOException ("EOF");
      }
    return ret & 0xff;
  }
  
}