]> git.sur5r.net Git - openldap/blob - servers/slapd/back-dnssrv/search.c
ITS#3549 cleanup abandon/cancel processing
[openldap] / servers / slapd / back-dnssrv / search.c
1 /* search.c - DNS SRV backend search function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2005 The OpenLDAP Foundation.
6  * Portions Copyright 2000-2003 Kurt D. Zeilenga.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was originally developed by Kurt D. Zeilenga for inclusion
19  * in OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #include <stdio.h>
25
26 #include <ac/socket.h>
27 #include <ac/string.h>
28 #include <ac/time.h>
29
30 #include "slap.h"
31 #include "proto-dnssrv.h"
32
33 int
34 dnssrv_back_search(
35     Operation   *op,
36     SlapReply   *rs )
37 {
38         int i;
39         int rc;
40         char *domain = NULL;
41         char *hostlist = NULL;
42         char **hosts = NULL;
43         char *refdn;
44         struct berval nrefdn = BER_BVNULL;
45         BerVarray urls = NULL;
46         int manageDSAit;
47
48         rs->sr_ref = NULL;
49
50         if ( BER_BVISEMPTY( &op->o_req_ndn ) ) {
51 #ifdef LDAP_DEVEL
52                 /* FIXME: need some means to determine whether the database
53                  * is a glue instance; if we got here with empty DN, then
54                  * we passed this same test in dnssrv_back_referrals() */
55                 if ( !SLAP_GLUE_INSTANCE( op->o_bd ) ) {
56                         rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
57                         rs->sr_text = "DNS SRV operation upon null (empty) DN disallowed";
58
59                 } else {
60                         rs->sr_err = LDAP_SUCCESS;
61                 }
62                 goto done;
63 #endif /* LDAP_DEVEL */
64         }
65
66         manageDSAit = get_manageDSAit( op );
67         /*
68          * FIXME: we may return a referral if manageDSAit is not set
69          */
70         if ( !manageDSAit ) {
71                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
72                                 "manageDSAit must be set" );
73                 goto done;
74         }
75
76         if( ldap_dn2domain( op->o_req_dn.bv_val, &domain ) || domain == NULL ) {
77                 rs->sr_err = LDAP_REFERRAL;
78                 rs->sr_ref = default_referral;
79                 send_ldap_result( op, rs );
80                 rs->sr_ref = NULL;
81                 goto done;
82         }
83
84         Debug( LDAP_DEBUG_TRACE, "DNSSRV: dn=\"%s\" -> domain=\"%s\"\n",
85                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "", domain, 0 );
86
87         if( ( rc = ldap_domain2hostlist( domain, &hostlist ) ) ) {
88                 Debug( LDAP_DEBUG_TRACE, "DNSSRV: domain2hostlist returned %d\n",
89                         rc, 0, 0 );
90                 send_ldap_error( op, rs, LDAP_NO_SUCH_OBJECT,
91                         "no DNS SRV RR available for DN" );
92                 goto done;
93         }
94
95         hosts = ldap_str2charray( hostlist, " " );
96
97         if( hosts == NULL ) {
98                 Debug( LDAP_DEBUG_TRACE, "DNSSRV: str2charrary error\n", 0, 0, 0 );
99                 send_ldap_error( op, rs, LDAP_OTHER,
100                         "problem processing DNS SRV records for DN" );
101                 goto done;
102         }
103
104         for( i=0; hosts[i] != NULL; i++) {
105                 struct berval url;
106
107                 url.bv_len = sizeof("ldap://")-1 + strlen(hosts[i]);
108                 url.bv_val = ch_malloc( url.bv_len + 1 );
109
110                 strcpy( url.bv_val, "ldap://" );
111                 strcpy( &url.bv_val[sizeof("ldap://")-1], hosts[i] );
112
113                 if( ber_bvarray_add( &urls, &url ) < 0 ) {
114                         free( url.bv_val );
115                         send_ldap_error( op, rs, LDAP_OTHER,
116                         "problem processing DNS SRV records for DN" );
117                         goto done;
118                 }
119         }
120
121         Statslog( LDAP_DEBUG_STATS,
122             "%s DNSSRV p=%d dn=\"%s\" url=\"%s\"\n",
123             op->o_log_prefix, op->o_protocol,
124                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "", urls[0].bv_val, 0 );
125
126         Debug( LDAP_DEBUG_TRACE,
127                 "DNSSRV: ManageDSAit scope=%d dn=\"%s\" -> url=\"%s\"\n",
128                 op->oq_search.rs_scope,
129                 op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
130                 urls[0].bv_val );
131
132         rc = ldap_domain2dn(domain, &refdn);
133
134         if( rc != LDAP_SUCCESS ) {
135                 send_ldap_error( op, rs, LDAP_OTHER,
136                         "DNS SRV problem processing manageDSAit control" );
137                 goto done;
138
139         } else {
140                 struct berval bv;
141                 bv.bv_val = refdn;
142                 bv.bv_len = strlen( refdn );
143
144                 rc = dnNormalize( 0, NULL, NULL, &bv, &nrefdn, op->o_tmpmemctx );
145                 if( rc != LDAP_SUCCESS ) {
146                         send_ldap_error( op, rs, LDAP_OTHER,
147                                 "DNS SRV problem processing manageDSAit control" );
148                         goto done;
149                 }
150         }
151
152         if( !dn_match( &nrefdn, &op->o_req_ndn ) ) {
153                 /* requested dn is subordinate */
154
155                 Debug( LDAP_DEBUG_TRACE,
156                         "DNSSRV: dn=\"%s\" subordinate to refdn=\"%s\"\n",
157                         op->o_req_dn.bv_len ? op->o_req_dn.bv_val : "",
158                         refdn == NULL ? "" : refdn,
159                         NULL );
160
161                 rs->sr_matched = refdn;
162                 rs->sr_err = LDAP_NO_SUCH_OBJECT;
163                 send_ldap_result( op, rs );
164                 rs->sr_matched = NULL;
165
166         } else if ( op->oq_search.rs_scope == LDAP_SCOPE_ONELEVEL ) {
167                 send_ldap_error( op, rs, LDAP_SUCCESS, NULL );
168
169         } else {
170                 Entry *e = ch_calloc( 1, sizeof(Entry) );
171                 AttributeDescription *ad_objectClass
172                         = slap_schema.si_ad_objectClass;
173                 AttributeDescription *ad_ref = slap_schema.si_ad_ref;
174                 e->e_name.bv_val = strdup( op->o_req_dn.bv_val );
175                 e->e_name.bv_len = op->o_req_dn.bv_len;
176                 e->e_nname.bv_val = strdup( op->o_req_ndn.bv_val );
177                 e->e_nname.bv_len = op->o_req_ndn.bv_len;
178
179                 e->e_attrs = NULL;
180                 e->e_private = NULL;
181
182                 attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_top->soc_cname );
183                 attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_referral->soc_cname );
184                 attr_mergeit_one( e, ad_objectClass, &slap_schema.si_oc_extensibleObject->soc_cname );
185
186                 if ( ad_dc ) {
187                         char            *p;
188                         struct berval   bv;
189
190                         bv.bv_val = domain;
191
192                         p = strchr( bv.bv_val, '.' );
193                                         
194                         if ( p == bv.bv_val ) {
195                                 bv.bv_len = 1;
196
197                         } else if ( p != NULL ) {
198                                 bv.bv_len = p - bv.bv_val;
199
200                         } else {
201                                 bv.bv_len = strlen( bv.bv_val );
202                         }
203
204                         attr_mergeit_one( e, ad_dc, &bv );
205                 }
206
207                 if ( ad_associatedDomain ) {
208                         struct berval   bv;
209
210                         ber_str2bv( domain, 0, 0, &bv );
211                         attr_mergeit_one( e, ad_associatedDomain, &bv );
212                 }
213
214                 attr_mergeit( e, ad_ref, urls );
215
216                 rc = test_filter( op, e, op->oq_search.rs_filter ); 
217
218                 if( rc == LDAP_COMPARE_TRUE ) {
219                         rs->sr_entry = e;
220                         rs->sr_attrs = op->oq_search.rs_attrs;
221                         rs->sr_flags = REP_ENTRY_MODIFIABLE;
222                         send_search_entry( op, rs );
223                         rs->sr_entry = NULL;
224                         rs->sr_attrs = NULL;
225                 }
226
227                 entry_free( e );
228
229                 rs->sr_err = LDAP_SUCCESS;
230                 send_ldap_result( op, rs );
231         }
232
233         if ( refdn ) free( refdn );
234         if ( nrefdn.bv_val ) free( nrefdn.bv_val );
235
236 done:
237         if( domain != NULL ) ch_free( domain );
238         if( hostlist != NULL ) ch_free( hostlist );
239         if( hosts != NULL ) ldap_charray_free( hosts );
240         if( urls != NULL ) ber_bvarray_free( urls );
241         return 0;
242 }
243