File: LdapContextImpl.java

package info (click to toggle)
ldapjdk 4.21.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 9,768 kB
  • sloc: ansic: 44,727; java: 39,519; xml: 7,420; sh: 4,237; perl: 3,774; makefile: 1,681; cpp: 979
file content (656 lines) | stat: -rw-r--r-- 23,928 bytes parent folder | download | duplicates (3)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is mozilla.org code.
 *
 * The Initial Developer of the Original Code is
 * Netscape Communications Corporation.
 * Portions created by the Initial Developer are Copyright (C) 1999
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */
package com.netscape.jndi.ldap;

import java.util.Hashtable;

import javax.naming.Binding;
import javax.naming.Context;
import javax.naming.InvalidNameException;
import javax.naming.Name;
import javax.naming.NameAlreadyBoundException;
import javax.naming.NameClassPair;
import javax.naming.NameParser;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.OperationNotSupportedException;
import javax.naming.directory.Attributes;
import javax.naming.directory.DirContext;
import javax.naming.directory.ModificationItem;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.naming.event.EventDirContext;
import javax.naming.event.NamingListener;
import javax.naming.ldap.Control;
import javax.naming.ldap.ExtendedRequest;
import javax.naming.ldap.ExtendedResponse;
import javax.naming.ldap.LdapContext;

import com.netscape.jndi.ldap.common.Debug;
import com.netscape.jndi.ldap.controls.NetscapeControlFactory;

import netscape.ldap.LDAPControl;
import netscape.ldap.LDAPSearchConstraints;
import netscape.ldap.LDAPUrl;

/**
 * Implementation for the DirContext. The context also supports controls
 * through the implementation of LdapContext interface and events through
 * the implementaion of EventDirContext.
 * Semantically, the LdapContextImpl corresponds to a directory entry.
 * Thus a context is associated with a DN (m_ctxDN). Multiple contexts share
 * the same LDAPConnection which is wrapped into a LdapService object
 * (m_ldapSvc). Each context also maintains a set of environment properties
 * (m_ctxEnv). A context environment is shared among mutiple contexts using a
 * variation of copy-on-write algorithm (see common.ShareableEnv class).
 *
 * Each context also maintains a set of LDAPSearchConstraints, as search
 * constrainsts like e.g. server controls, or max number of returned search
 * search results, are context specific. The LdapService reads the
 * LDAPSearchConstraints from a context that makes a service request.
 */
public class LdapContextImpl implements EventDirContext, LdapContext {

    /**
     * Context environment setting
     */
    protected ContextEnv m_ctxEnv;

    /**
     * DN associated with this context
     * The default value is the root DSE ("")
     */
    protected String m_ctxDN;

    /**
     * Ldap Connection/Service
     */
    protected LdapService m_ldapSvc;


    /**
     * Ldap Connection Search Constraints
     */
    protected LDAPSearchConstraints m_searchCons;

    // TODO Should have a constructor that accepts attributes

    /**
     * Constructor
     */
    public LdapContextImpl(Hashtable<Object, Object> env) throws NamingException{
        m_ctxEnv = new ContextEnv(env); // no need to clone (Hashtable)env.clone());
        m_ldapSvc = new LdapService();
        m_ldapSvc.connect(this); // BLITS but to be removed, hurts lazy resource usage
        getDN();
        getSearchConstraints();
    }

    /**
     * Copy Constructor
     */
    public LdapContextImpl(String ctxDN, LdapContextImpl cloneCtx) throws NamingException{

        m_ctxEnv = (ContextEnv)cloneCtx.m_ctxEnv.clone();

        // An instance of ldapService is shared among multiple contexts.
        // Increment the client reference count
        m_ldapSvc = cloneCtx.m_ldapSvc;
        cloneCtx.m_ldapSvc.incrementClientCount();

        if (cloneCtx.getSearchConstraints().getServerControls() == null) {
            m_searchCons = cloneCtx.getSearchConstraints();
        }
        else {
            // In LdapContext Context Controls are not inherited by derived contexts
            m_searchCons = (LDAPSearchConstraints) cloneCtx.getSearchConstraints().clone();
            m_searchCons.setServerControls((LDAPControl[])null);
        }

        m_ctxDN = ctxDN;
    }


    /**
     * Close the context when finalized
     */
    protected void finalize() {
        Debug.println(1, "finalize ctx");
        try {
            close();
        }
        catch (Exception e) {}
    }

    /**
     * Disconnect the Ldap Connection if close is requested
     * LDAP operations can not be performed any more ones
     * the context is closed
     */
    public void close() throws NamingException {
        m_ldapSvc.disconnect();
        m_ldapSvc = null;
    }

    /**
     * Return LdapJdk search constraints for this context
     */
    LDAPSearchConstraints getSearchConstraints() throws NamingException{
        if (m_searchCons == null) {
            LDAPSearchConstraints cons = new LDAPSearchConstraints();
            m_ctxEnv.updateSearchCons(cons);
            m_searchCons = cons;
        }
        return m_searchCons;
    }

    /**
     * Return DN for this context
     */
    String getDN() throws NamingException{
        if (m_ctxDN == null) {
            LDAPUrl url = m_ctxEnv.getDirectoryServerURL();
            if (url != null && url.getDN() != null) {
                m_ctxDN = url.getDN();
            }
            else {
                m_ctxDN = "";
            }
        }
        return m_ctxDN;
    }

    /**
     * Return reference to the context environment
     */
    ContextEnv getEnv() {
        return m_ctxEnv;
    }

    /**
     * Conver object to String
     */
    public String toString() {
        return this.getClass().getName() + ": " + m_ctxDN;
    }

    /**
     * Check if LdapURL is passed as the name paremetr to a method
     * If that's the case, craete environment for the ldap url
     */
    String checkLdapUrlAsName(String name) throws NamingException{
        if (name.startsWith("ldap://")) {
            m_ctxEnv.setProperty(ContextEnv.P_PROVIDER_URL, name);
            close(); // Force reconnect
            m_ldapSvc = new LdapService();
            // Return New name relative to the context
            return "";
        }
        return name;
    }

    /**
     * Environment operatins (javax.naming.Context interface)
     */

    public Hashtable<Object, Object> getEnvironment() throws NamingException {
        return m_ctxEnv.getAllProperties();
    }

    public Object addToEnvironment(String propName, Object propValue) throws NamingException {
        if (propName.equalsIgnoreCase(ContextEnv.P_TRACE)) {
            m_ldapSvc.setTraceOutput(propValue);
        }
        return m_ctxEnv.updateProperty(propName, propValue, getSearchConstraints());
    }

    public Object removeFromEnvironment(String propName) throws NamingException {
        if (propName.equalsIgnoreCase(ContextEnv.P_TRACE)) {
            m_ldapSvc.setTraceOutput(null);
        }
        return m_ctxEnv.removeProperty(propName);
    }

    /**
     * Name operations (javax.naming.Context interface)
     */

    public String composeName(String name, String prefix) throws NamingException {
        return name + "," + prefix;
    }

    public Name composeName(Name name, Name prefix) throws NamingException {
        String compoundName = composeName(name.toString(), prefix.toString());
        return LdapNameParser.getParser().parse(compoundName);
    }

    public String getNameInNamespace() throws NamingException {
        return new String(m_ctxDN);
    }

    public NameParser getNameParser(String name) throws NamingException {
        return LdapNameParser.getParser();
    }

    public NameParser getNameParser(Name name) throws NamingException {
        return LdapNameParser.getParser();
    }

    /**
     * Search operations (javax.naming.DirContext interface)
     */

    public NamingEnumeration<SearchResult> search(String name, String filter, SearchControls cons) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.search(this, name, filter, /*attrs=*/null, cons);
    }

    public NamingEnumeration<SearchResult> search(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException {
        name = checkLdapUrlAsName(name);
        String filter = ProviderUtils.expandFilterExpr(filterExpr, filterArgs);
        return m_ldapSvc.search(this, name, filter, /*attrs=*/null, cons);
    }

    public NamingEnumeration<SearchResult> search(String name, Attributes matchingAttributes) throws NamingException {
        name = checkLdapUrlAsName(name);
        String filter = ProviderUtils.attributesToFilter(matchingAttributes);
        return m_ldapSvc.search(this, name, filter, /*attrs=*/null, /*jndiCons=*/null);
    }

    public NamingEnumeration<SearchResult> search(String name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException {
        name = checkLdapUrlAsName(name);
        String filter = ProviderUtils.attributesToFilter(matchingAttributes);
        return m_ldapSvc.search(this, name, filter, attributesToReturn, /*jndiCons=*/null);
    }

    public NamingEnumeration<SearchResult> search(Name name, String filter, SearchControls cons) throws NamingException {
        return m_ldapSvc.search(this, name.toString(), filter, /*attrs=*/null, cons);
    }

    public NamingEnumeration<SearchResult> search(Name name, String filterExpr, Object[] filterArgs, SearchControls cons) throws NamingException {
        String filter = ProviderUtils.expandFilterExpr(filterExpr, filterArgs);
        return m_ldapSvc.search(this, name.toString(), filter, /*attrs=*/null, cons);
    }

    public NamingEnumeration<SearchResult> search(Name name, Attributes attrs) throws NamingException {
        String filter = ProviderUtils.attributesToFilter(attrs);
        return m_ldapSvc.search(this, name.toString(), filter, /*attr=*/null, /*jndiCons=*/null);
    }

    public NamingEnumeration<SearchResult> search(Name name, Attributes matchingAttributes, String[] attributesToReturn) throws NamingException {
        String filter = ProviderUtils.attributesToFilter(matchingAttributes);
        return m_ldapSvc.search(this, name.toString(), filter, attributesToReturn, /*jndiCons=*/null);
    }

    /**
     * Attribute Operations (javax.naming.DirContext interface)
     */

    public Attributes getAttributes(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.readAttrs(this, name, null);
    }

    public Attributes getAttributes(String name, String[] attrIds) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.readAttrs(this, name, attrIds);
    }

    public Attributes getAttributes(Name name) throws NamingException {
        return m_ldapSvc.readAttrs(this, name.toString(), null);

    }

    public Attributes getAttributes(Name name, String[] attrIds) throws NamingException {
        return m_ldapSvc.readAttrs(this, name.toString(), attrIds);

    }

    public void modifyAttributes(String name, int mod_op, Attributes attrs) throws NamingException {
        name = checkLdapUrlAsName(name);
        m_ldapSvc.modifyEntry(this, name, AttributesImpl.jndiAttrsToLdapModSet(mod_op, attrs));
    }

    public void modifyAttributes(String name, ModificationItem[] mods) throws NamingException {
        name = checkLdapUrlAsName(name);
        m_ldapSvc.modifyEntry(this, name, AttributesImpl.jndiModsToLdapModSet(mods));
    }

    public void modifyAttributes(Name name, int mod_op, Attributes attrs) throws NamingException {
        m_ldapSvc.modifyEntry(this, name.toString(), AttributesImpl.jndiAttrsToLdapModSet(mod_op, attrs));

    }

    public void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException {
        m_ldapSvc.modifyEntry(this, name.toString(), AttributesImpl.jndiModsToLdapModSet(mods));
    }

    /**
     * Ldap entry operations (javax.naming.DirContext interface)
     */

    public Context createSubcontext(String name) throws NamingException {
        // Directory entry must have attributes
        throw new OperationNotSupportedException();
    }

    public Context createSubcontext(Name name) throws NamingException {
        // Directory entry must have attributes
        throw new OperationNotSupportedException();
    }

    public DirContext createSubcontext(String name, Attributes attrs) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.addEntry(this, name, AttributesImpl.jndiAttrsToLdapAttrSet(attrs));
    }

    public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException {
        return m_ldapSvc.addEntry(this, name.toString(), AttributesImpl.jndiAttrsToLdapAttrSet(attrs));

    }

    public void destroySubcontext(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        m_ldapSvc.delEntry(this, name);
    }

    public void destroySubcontext(Name name) throws NamingException {
        m_ldapSvc.delEntry(this, name.toString());

    }

    /**
     * Naming Bind/Rename operations
     * (javax.naming.Context, javax.naming.DirContext interface)
     */

    public void bind(String name, Object obj) throws NamingException {
        name = checkLdapUrlAsName(name);
        m_ldapSvc.addEntry(this, name.toString(),
            ObjectMapper.objectToAttrSet(obj, name, this, /*attrs=*/null));
    }

    public void bind(Name name, Object obj) throws NamingException {
        bind(name.toString(), obj);
    }

    public void bind(String name, Object obj, Attributes attrs) throws NamingException {
        name = checkLdapUrlAsName(name);
        m_ldapSvc.addEntry(this, name.toString(),
            ObjectMapper.objectToAttrSet(obj, name, this, attrs));
    }

    public void bind(Name name, Object obj, Attributes attrs) throws NamingException {
        bind(name.toString(), obj, attrs);
    }

    public void rebind(String name, Object obj) throws NamingException {
        rebind(name, obj, /*attrs=*/null);
    }

    public void rebind(Name name, Object obj) throws NamingException {
        rebind(name.toString(), obj, null);
    }

    public void rebind(String name, Object obj, Attributes attrs) throws NamingException {
        name = checkLdapUrlAsName(name);
        try {
            bind(name, obj, attrs);
        }
        catch (NameAlreadyBoundException ex) {
            unbind(name);
            bind(name, obj, attrs);
        }
    }

    public void rebind(Name name, Object obj, Attributes attrs) throws NamingException {
        rebind(name.toString(), obj, attrs);
    }

    public void rename(String oldName, String newName) throws NamingException {
        oldName = checkLdapUrlAsName(oldName);
        LdapNameParser parser = LdapNameParser.getParser();
        Name oldNameObj = parser.parse(oldName);
        Name newNameObj = parser.parse(newName);
        rename(oldNameObj, newNameObj);
    }

    public void rename(Name oldName, Name newName) throws NamingException {
        // Can rename only RDN
        if (newName.size() != oldName.size()) {
            throw new InvalidNameException("Invalid name " + newName);
        }
        Name oldPrefix = oldName.getPrefix(oldName.size() -1);
        Name newPrefix = newName.getPrefix(oldName.size() -1);
        if (!newPrefix.equals(oldPrefix)) {
            throw new InvalidNameException("Invalid name " + newName);
        }
        m_ldapSvc.changeRDN(this, oldName.toString(), newName.get(newName.size()-1));
    }

    public void unbind(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        // In ldap every entry is naming context
        destroySubcontext(name);
    }

    public void unbind(Name name) throws NamingException {
        // In ldap every entry is naming context
        destroySubcontext(name);
    }

    /**
     * List Operations (javax.naming.Context interface)
     */

    public NamingEnumeration<NameClassPair> list(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.list(this, name);
    }

    public NamingEnumeration<NameClassPair> list(Name name) throws NamingException {
        return m_ldapSvc.list(this, name.toString());
    }

    public NamingEnumeration<Binding> listBindings(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.listBindings(this, name);
    }

    public NamingEnumeration<Binding> listBindings(Name name) throws NamingException {
        return m_ldapSvc.listBindings(this, name.toString());
    }

    /**
     * Lookup Operations (javax.naming.Context interface)
     */

    public Object lookup(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.lookup(this, name);
    }

    public Object lookup(Name name) throws NamingException {
        return m_ldapSvc.lookup(this, name.toString());
    }

    public Object lookupLink(String name) throws NamingException {
        throw new OperationNotSupportedException();
    }

    public Object lookupLink(Name name) throws NamingException {
        throw new OperationNotSupportedException();
    }


    /**
     * Schema Operations (javax.naming.DirContext interface)
     */
    public DirContext getSchema(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        return m_ldapSvc.getSchema(this, name);
    }

    public DirContext getSchema(Name name) throws NamingException {
        return m_ldapSvc.getSchema(this, name.toString());
    }

    public DirContext getSchemaClassDefinition(String name) throws NamingException {
        name = checkLdapUrlAsName(name);
        throw new OperationNotSupportedException();
    }

    public DirContext getSchemaClassDefinition(Name name) throws NamingException {
        return getSchemaClassDefinition(name.toString());
    }

    /**
     * Naming Event methods javax.naming.event.EventDirContext interface)
     */
    public void addNamingListener(String target, int scope, NamingListener l) throws NamingException {
        EventService eventSvc = m_ldapSvc.getEventService(this);
        String filter = LdapService.DEFAULT_FILTER;
        SearchControls ctls = new SearchControls();
        ctls.setSearchScope(scope);
        eventSvc.addListener(this, target, filter, ctls, l);
    }

    public void addNamingListener(Name target, int scope, NamingListener l) throws NamingException {
        addNamingListener(target.toString(), scope, l);
    }

    public void addNamingListener(String target, String filter, SearchControls ctls, NamingListener l)throws NamingException {
        EventService eventSvc = m_ldapSvc.getEventService(this);
        eventSvc.addListener(this, target, filter, ctls, l);

    }

    public void addNamingListener(Name target, String filter, SearchControls ctls, NamingListener l)throws NamingException {
        addNamingListener(target.toString(), filter, ctls, l);
    }

    public void addNamingListener(String target, String filterExpr, Object[] filterArgs, SearchControls ctls, NamingListener l)throws NamingException {
        EventService eventSvc = m_ldapSvc.getEventService(this);
        String filter = ProviderUtils.expandFilterExpr(filterExpr, filterArgs);
        eventSvc.addListener(this, target, filter, ctls, l);
    }

    public void addNamingListener(Name target, String filterExpr, Object[] filterArgs, SearchControls ctls, NamingListener l)throws NamingException {
        addNamingListener(target.toString(), filterExpr, filterArgs, ctls, l);
    }

    public void removeNamingListener(NamingListener l) throws NamingException {
        EventService eventSvc = m_ldapSvc.getEventService(this);
        eventSvc.removeListener(l);
    }

    public boolean targetMustExist() {
        return true;
    }

    /**
     * LdapContext methods (javax.naming.ldap.LdapContext interface)
     */
    public ExtendedResponse extendedOperation(ExtendedRequest req)throws NamingException {
        throw new OperationNotSupportedException();
    }

    public Control[] getRequestControls() throws NamingException {
        LDAPControl[] ldapCtls = m_searchCons.getServerControls();
        if (ldapCtls == null) {
            return null;
        }
        Control[] ctls = new Control[ldapCtls.length];
        for (int i=0; i < ldapCtls.length; i++) {
            ctls[i] = (Control) ldapCtls[i];
        }
        return ctls;
    }

    public void setRequestControls(Control[] reqCtls) throws NamingException {
        LDAPControl[] ldapCtls = new LDAPControl[reqCtls.length];
        for (int i=0; i < reqCtls.length; i++) {
            try {
                ldapCtls[i] = (LDAPControl) reqCtls[i];
            }
            catch (ClassCastException ex) {
                throw new NamingException(
                    "Unsupported control type " + reqCtls[i].getClass().getName());
            }
        }

        getSearchConstraints().setServerControls(ldapCtls);
    }

    public Control[] getResponseControls() throws NamingException {
        LDAPControl[] ldapCtls = m_ldapSvc.getConnection().getResponseControls();
        if (ldapCtls == null) {
            return null;
        }
        // Parse raw controls
        Control[] ctls = new Control[ldapCtls.length];
        for (int i=0; i < ldapCtls.length; i++) {
            ctls[i] = NetscapeControlFactory.getControlInstance(ldapCtls[i]);
            if (ctls[i] == null) {
                throw new NamingException("Unsupported control " + ldapCtls[i].getID());
            }
        }
        return ctls;
    }

    public LdapContext newInstance(Control[] reqCtls) throws NamingException {
        LdapContextImpl clone = new LdapContextImpl(m_ctxDN, this);
        // This controls are to be set on the the LDAPConnection
        clone.m_ctxEnv.setProperty(ContextEnv.P_CONNECT_CTRLS, reqCtls);
        return clone;
    }

    public void reconnect(Control[] reqCtls) throws NamingException {
        close();
        m_ldapSvc = new LdapService();
        // This controls are to be set on the the LDAPConnection
        if (reqCtls != null) {
            m_ctxEnv.setProperty(ContextEnv.P_CONNECT_CTRLS, reqCtls);
        }
        m_ldapSvc.connect(this);
    }

    public Control[] getConnectControls() {
        return (Control[])m_ctxEnv.getProperty(ContextEnv.P_CONNECT_CTRLS);
    }
}