]> git.sur5r.net Git - openldap/blob - servers/slapd/configinfo.c
Fix backend_destroy to call bi_destroy instead of bi_close
[openldap] / servers / slapd / configinfo.c
1 /*
2  * Copyright (c) 1995 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/string.h>
18 #include <ac/socket.h>
19
20 #include "ldapconfig.h"
21 #include "slap.h"
22
23 #if defined( SLAPD_CONFIG_DN )
24
25 /*
26  * no mutex protection in here - take our chances!
27  */
28
29 void
30 config_info( Connection *conn, Operation *op )
31 {
32         Entry           *e;
33         char            buf[BUFSIZ];
34         struct berval   val;
35         struct berval   *vals[2];
36         int             i, j;
37
38         vals[0] = &val;
39         vals[1] = NULL;
40
41         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
42         /* initialize reader/writer lock */
43         entry_rdwr_init(e);
44
45         e->e_attrs = NULL;
46         e->e_dn = ch_strdup( SLAPD_CONFIG_DN );
47
48         for ( i = 0; i < nbackends; i++ ) {
49                 strcpy( buf, backends[i].be_type );
50                 for ( j = 0; backends[i].be_suffix[j] != NULL; j++ ) {
51                         strcat( buf, " : " );
52                         strcat( buf, backends[i].be_suffix[j] );
53                 }
54                 val.bv_val = buf;
55                 val.bv_len = strlen( buf );
56                 attr_merge( e, "database", vals );
57         }
58
59         if ( default_referral != NULL ) {
60                 strcpy( buf, default_referral );
61                 val.bv_val = buf;
62                 val.bv_len = strlen( buf );
63                 attr_merge( e, "database", vals );
64         }
65
66         send_search_entry( &backends[0], conn, op, e, NULL, 0 );
67         send_ldap_search_result( conn, op, LDAP_SUCCESS, NULL, NULL, 1 );
68
69         entry_free( e );
70 }
71
72 #endif /* slapd_config_dn */