]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/search.c
Fix: remap API error codes into protocol error codes before sending
[openldap] / servers / slapd / back-ldap / search.c
1 /* search.c - ldap backend search function */
2 /* $OpenLDAP$ */
3
4 /*
5  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
6  * 
7  * Permission is granted to anyone to use this software for any purpose
8  * on any computer system, and to alter it and redistribute it, subject
9  * to the following restrictions:
10  * 
11  * 1. The author is not responsible for the consequences of use of this
12  *    software, no matter how awful, even if they arise from flaws in it.
13  * 
14  * 2. The origin of this software must not be misrepresented, either by
15  *    explicit claim or by omission.  Since few users ever read sources,
16  *    credits should appear in the documentation.
17  * 
18  * 3. Altered versions must be plainly marked as such, and must not be
19  *    misrepresented as being the original software.  Since few users
20  *    ever read sources, credits should appear in the documentation.
21  * 
22  * 4. This notice may not be removed or altered.
23  */
24
25 #include "portable.h"
26
27 #include <stdio.h>
28
29 #include <ac/socket.h>
30 #include <ac/string.h>
31 #include <ac/time.h>
32
33 #include "slap.h"
34 #include "back-ldap.h"
35
36 static void ldap_send_entry( Backend *be, Operation *op, struct ldapconn *lc,
37                              LDAPMessage *e, char **attrs, int attrsonly );
38
39 int
40 ldap_back_search(
41     Backend     *be,
42     Connection  *conn,
43     Operation   *op,
44     const char  *base,
45     const char  *nbase,
46     int         scope,
47     int         deref,
48     int         size,
49     int         time,
50     Filter      *filter,
51     const char  *filterstr,
52     char        **attrs,
53     int         attrsonly
54 )
55 {
56         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
57         struct ldapconn *lc;
58         struct timeval  tv;
59         LDAPMessage             *res, *e;
60         int                     i, rc, msgid, sres = LDAP_SUCCESS; 
61         char *match = NULL, *err = NULL;
62
63         lc = ldap_back_getconn(li, conn, op);
64         if (!lc)
65                 return( -1 );
66
67         if (deref != -1)
68                 ldap_set_option( lc->ld, LDAP_OPT_DEREF, (void *)&deref);
69         if (time != -1)
70                 ldap_set_option( lc->ld, LDAP_OPT_TIMELIMIT, (void *)&time);
71         if (size != -1)
72                 ldap_set_option( lc->ld, LDAP_OPT_SIZELIMIT, (void *)&size);
73         if (!lc->bound) {
74                 ldap_back_dobind(lc, op);
75                 if (!lc->bound)
76                         return( -1 );
77         }
78
79         if ((msgid = ldap_search(lc->ld, base, scope, filterstr, attrs,
80                 attrsonly)) == -1)
81 fail:           return( ldap_back_op_result(lc, op) );
82
83         /* We pull apart the ber result, stuff it into a slapd entry, and
84          * let send_search_entry stuff it back into ber format. Slow & ugly,
85          * but this is necessary for version matching, and for ACL processing.
86          */
87         
88         for (i=0, rc=0; rc != -1;
89                 rc = ldap_result(lc->ld, LDAP_RES_ANY, 0, &tv, &res)) {
90                 int ab;
91
92                 /* check for abandon */
93                 ldap_pvt_thread_mutex_lock( &op->o_abandonmutex );
94                 ab = op->o_abandon;
95                 ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
96
97                 if (ab) {
98                         ldap_abandon(lc->ld, msgid);
99                 } else if (rc == 0) {
100                         tv.tv_sec = 0;
101                         tv.tv_usec = 100000;
102                         ldap_pvt_thread_yield();
103                         continue;
104                 } else if (rc == LDAP_RES_SEARCH_ENTRY) {
105                         e = ldap_first_entry(lc->ld,res);
106                         ldap_send_entry(be, op, lc, e, attrs, attrsonly);
107                         i++;
108                         ldap_msgfree(res);
109                 } else {
110                         sres = ldap_result2error(lc->ld, res, 1);
111                         sres = ldap_back_map_result(sres);
112                         ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &err);
113                         ldap_get_option(lc->ld, LDAP_OPT_MATCHED_DN, &match);
114                         rc = 0;
115                 }
116                 if (ab)
117                         return (0);
118                 else if (rc == 0)
119                         break;
120         }
121
122         if (rc == -1)
123                 goto fail;
124
125         send_search_result( conn, op, sres,
126                 match, err, NULL, NULL, i );
127         if (match)
128                 free(match);
129         if (err)
130                 free(err);
131         return( 0 );
132 }
133
134 static void
135 ldap_send_entry(
136         Backend *be,
137         Operation *op,
138         struct ldapconn *lc,
139         LDAPMessage *e,
140         char **attrs,
141         int attrsonly
142 )
143 {
144         char *a;
145         Entry ent;
146         BerElement *ber = NULL;
147         Attribute *attr, **attrp;
148         struct berval *dummy = NULL;
149         const char *text;
150
151         ent.e_dn = ldap_get_dn(lc->ld, e);
152         ent.e_ndn = ch_strdup( ent.e_dn);
153         (void) dn_normalize( ent.e_ndn );
154         ent.e_id = 0;
155         ent.e_attrs = 0;
156         ent.e_private = 0;
157         attrp = &ent.e_attrs;
158
159         for (   a = ldap_first_attribute(lc->ld, e, &ber);
160                         a != NULL;
161                         a = ldap_next_attribute(lc->ld, e, ber))
162         {
163                 attr = (Attribute *)ch_malloc( sizeof(Attribute) );
164                 if (attr == NULL)
165                         continue;
166                 attr->a_next = 0;
167                 slap_str2ad(a, &attr->a_desc, &text);
168                 attr->a_vals = ldap_get_values_len(lc->ld, e, a);
169                 if (!attr->a_vals)
170                         attr->a_vals = &dummy;
171                 *attrp = attr;
172                 attrp = &attr->a_next;
173         }
174         send_search_entry( be, lc->conn, op, &ent, attrs, attrsonly, NULL );
175         for (;ent.e_attrs;) {
176                 attr=ent.e_attrs;
177                 ent.e_attrs = attr->a_next;
178                 ad_free(attr->a_desc, 1);
179                 if (attr->a_vals != &dummy)
180                         ber_bvecfree(attr->a_vals);
181                 free(attr);
182         }
183         if (ber)
184                 ber_free(ber,0);
185 }