]> git.sur5r.net Git - openldap/blob - servers/slapd/root_dse.c
Reengineered ldappasswd(1). Uses extended operation to set
[openldap] / servers / slapd / root_dse.c
1 /* $OpenLDAP$ */
2 /* root_dse.c - Provides the ROOT DSA-Specific Entry
3  *
4  * Copyright 1999 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms are permitted only
8  * as authorized by the OpenLDAP Public License.  A copy of this
9  * license is available at http://www.OpenLDAP.org/license.html or
10  * in file LICENSE in the top-level directory of the distribution.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16 #include <ac/string.h>
17
18 #include "slap.h"
19
20 void
21 root_dse_info( Connection *conn, Operation *op, char **attrs, int attrsonly )
22 {
23         char buf[BUFSIZ];
24         Entry           *e;
25         struct berval   val;
26         struct berval   *vals[2];
27         int             i, j;
28
29         vals[0] = &val;
30         vals[1] = NULL;
31
32         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
33
34         e->e_attrs = NULL;
35         e->e_dn = ch_strdup( LDAP_ROOT_DSE );
36         e->e_ndn = ch_strdup( LDAP_ROOT_DSE );
37         (void) dn_normalize( e->e_ndn );
38         e->e_private = NULL;
39
40         for ( i = 0; i < nbackends; i++ ) {
41                 for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) {
42                         val.bv_val = backends[i].be_suffix[j];
43                         val.bv_len = strlen( val.bv_val );
44                         attr_merge( e, "namingContexts", vals );
45                 }
46         }
47
48 #if defined( SLAPD_MONITOR_DN )
49         val.bv_val = SLAPD_MONITOR_DN;
50         val.bv_len = strlen( val.bv_val );
51         attr_merge( e, "namingContexts", vals );
52         /* subschemasubentry is added by send_search_entry() */
53 #endif
54
55 #if defined( SLAPD_CONFIG_DN )
56         val.bv_val = SLAPD_CONFIG_DN;
57         val.bv_len = strlen( val.bv_val );
58         attr_merge( e, "namingContexts", vals );
59 #endif
60
61 #if defined( SLAPD_SCHEMA_DN )
62         val.bv_val = SLAPD_SCHEMA_DN;
63         val.bv_len = strlen( val.bv_val );
64         attr_merge( e, "namingContexts", vals );
65 #endif
66
67         /* altServer unsupported */
68
69         /* supportedControl */
70         for ( i=0; supportedControls[i] != NULL; i++ ) {
71                 val.bv_val = supportedControls[i];
72                 val.bv_len = strlen( val.bv_val );
73                 attr_merge( e, "supportedControl", vals );
74         }
75
76         /* supportedExtension */
77         for ( i=0; (val.bv_val = get_supported_extop(i)) != NULL; i++ ) {
78                 val.bv_len = strlen( val.bv_val );
79                 attr_merge( e, "supportedExtension", vals );
80         }
81
82         /* supportedLDAPVersion */
83         for ( i=LDAP_VERSION_MIN; i<=LDAP_VERSION_MAX; i++ ) {
84                 sprintf(buf,"%d",i);
85                 val.bv_val = buf;
86                 val.bv_len = strlen( val.bv_val );
87                 attr_merge( e, "supportedLDAPVersion", vals );
88         }
89
90         /* supportedSASLMechanism */
91         if( supportedSASLMechanisms != NULL ) {
92                 for ( i=0; supportedSASLMechanisms[i] != NULL; i++ ) {
93                         val.bv_val = supportedSASLMechanisms[i];
94                         val.bv_len = strlen( val.bv_val );
95                         attr_merge( e, "supportedSASLMechanisms", vals );
96                 }
97         }
98
99 #ifdef SLAPD_ACI_ENABLED
100         /* supportedACIMechanisms */
101         for ( i=0; (val.bv_val = get_supported_acimech(i)) != NULL; i++ ) {
102                 val.bv_len = strlen( val.bv_val );
103                 attr_merge( e, "supportedACIMechanisms", vals );
104         }
105 #endif
106
107         if ( default_referral != NULL ) {
108                 attr_merge( e, "ref", default_referral );
109         }
110
111         val.bv_val = "top";
112         val.bv_len = sizeof("top")-1;
113         attr_merge( e, "objectClass", vals );
114
115         val.bv_val = "LDAProotDSE";
116         val.bv_len = sizeof("LDAProotDSE")-1;
117         attr_merge( e, "objectClass", vals );
118
119         val.bv_val = "extensibleObject";
120         val.bv_len = sizeof("extensibleObject")-1;
121         attr_merge( e, "objectClass", vals );
122
123         send_search_entry( &backends[0], conn, op,
124                 e, attrs, attrsonly, NULL );
125         send_search_result( conn, op, LDAP_SUCCESS,
126                 NULL, NULL, NULL, NULL, 1 );
127
128         entry_free( e );
129 }
130