]> git.sur5r.net Git - openldap/blob - libraries/libldap/result.c
e4a18a1a75f894b83b2816e0e46caf5bbc938132
[openldap] / libraries / libldap / result.c
1 /* result.c - wait for an ldap result */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
17  * All rights reserved.
18  */
19 /* This notice applies to changes, created by or for Novell, Inc.,
20  * to preexisting works for which notices appear elsewhere in this file.
21  *
22  * Copyright (C) 1999, 2000 Novell, Inc. All Rights Reserved.
23  *
24  * THIS WORK IS SUBJECT TO U.S. AND INTERNATIONAL COPYRIGHT LAWS AND TREATIES.
25  * USE, MODIFICATION, AND REDISTRIBUTION OF THIS WORK IS SUBJECT TO VERSION
26  * 2.0.1 OF THE OPENLDAP PUBLIC LICENSE, A COPY OF WHICH IS AVAILABLE AT
27  * HTTP://WWW.OPENLDAP.ORG/LICENSE.HTML OR IN THE FILE "LICENSE" IN THE
28  * TOP-LEVEL DIRECTORY OF THE DISTRIBUTION. ANY USE OR EXPLOITATION OF THIS
29  * WORK OTHER THAN AS AUTHORIZED IN VERSION 2.0.1 OF THE OPENLDAP PUBLIC
30  * LICENSE, OR OTHER PRIOR WRITTEN CONSENT FROM NOVELL, COULD SUBJECT THE
31  * PERPETRATOR TO CRIMINAL AND CIVIL LIABILITY. 
32  *---
33  * Modification to OpenLDAP source by Novell, Inc.
34  * April 2000 sfs Add code to process V3 referrals and search results
35  *---
36  * Note: A verbatim copy of version 2.0.1 of the OpenLDAP Public License 
37  * can be found in the file "build/LICENSE-2.0.1" in this distribution
38  * of OpenLDAP Software.
39  */
40 /* Portions Copyright (C) The Internet Society (1997)
41  * ASN.1 fragments are from RFC 2251; see RFC for full legal notices.
42  */
43
44 /*
45  * LDAPv3 (RFC2251)
46  *      LDAPResult ::= SEQUENCE {
47  *              resultCode              ENUMERATED { ... },
48  *              matchedDN               LDAPDN,
49  *              errorMessage    LDAPString,
50  *              referral                Referral OPTIONAL
51  *      }
52  *      Referral ::= SEQUENCE OF LDAPURL        (one or more)
53  *      LDAPURL ::= LDAPString                          (limited to URL chars)
54  */
55
56 #include "portable.h"
57
58 #include <stdio.h>
59
60 #include <ac/stdlib.h>
61
62 #include <ac/errno.h>
63 #include <ac/socket.h>
64 #include <ac/string.h>
65 #include <ac/time.h>
66 #include <ac/unistd.h>
67
68 #include "ldap-int.h"
69 #include "ldap_log.h"
70
71 static int ldap_abandoned LDAP_P(( LDAP *ld, ber_int_t msgid ));
72 static int ldap_mark_abandoned LDAP_P(( LDAP *ld, ber_int_t msgid ));
73 static int wait4msg LDAP_P(( LDAP *ld, ber_int_t msgid, int all, struct timeval *timeout,
74         LDAPMessage **result ));
75 static ber_tag_t try_read1msg LDAP_P(( LDAP *ld, ber_int_t msgid,
76         int all, Sockbuf *sb, LDAPConn **lc, LDAPMessage **result ));
77 static ber_tag_t build_result_ber LDAP_P(( LDAP *ld, BerElement **bp, LDAPRequest *lr ));
78 static void merge_error_info LDAP_P(( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr ));
79 static LDAPMessage * chkResponseList LDAP_P(( LDAP *ld, int msgid, int all));
80
81
82 /*
83  * ldap_result - wait for an ldap result response to a message from the
84  * ldap server.  If msgid is LDAP_RES_ANY (-1), any message will be
85  * accepted.  If msgid is LDAP_RES_UNSOLICITED (0), any unsolicited
86  * message is accepted.  Otherwise ldap_result will wait for a response
87  * with msgid.  If all is LDAP_MSG_ONE (0) the first message with id
88  * msgid will be accepted, otherwise, ldap_result will wait for all
89  * responses with id msgid and then return a pointer to the entire list
90  * of messages.  In general, this is only useful for search responses,
91  * which can be of three message types (zero or more entries, zero or
92  * search references, followed by an ldap result).  An extension to
93  * LDAPv3 allows partial extended responses to be returned in response
94  * to any request.  The type of the first message received is returned.
95  * When waiting, any messages that have been abandoned are discarded.
96  *
97  * Example:
98  *      ldap_result( s, msgid, all, timeout, result )
99  */
100 int
101 ldap_result(
102         LDAP *ld,
103         int msgid,
104         int all,
105         struct timeval *timeout,
106         LDAPMessage **result )
107 {
108         LDAPMessage     *lm;
109         int     rc;
110
111         assert( ld != NULL );
112         assert( result != NULL );
113
114         Debug( LDAP_DEBUG_TRACE, "ldap_result msgid %d\n", msgid, 0, 0 );
115
116 #ifdef LDAP_R_COMPILE
117         ldap_pvt_thread_mutex_lock( &ld->ld_res_mutex );
118 #endif
119         lm = chkResponseList(ld, msgid, all);
120
121         if ( lm == NULL ) {
122                 rc = wait4msg( ld, msgid, all, timeout, result );
123         } else {
124                 *result = lm;
125                 ld->ld_errno = LDAP_SUCCESS;
126                 rc = lm->lm_msgtype;
127         }
128 #ifdef LDAP_R_COMPILE
129         ldap_pvt_thread_mutex_unlock( &ld->ld_res_mutex );
130 #endif
131         return( rc );
132 }
133
134 static LDAPMessage *
135 chkResponseList(
136         LDAP *ld,
137         int msgid,
138         int all)
139 {
140         LDAPMessage     *lm, *lastlm, *nextlm;
141     /*
142          * Look through the list of responses we have received on
143          * this association and see if the response we're interested in
144          * is there.  If it is, return it.  If not, call wait4msg() to
145          * wait until it arrives or timeout occurs.
146          */
147
148         Debug( LDAP_DEBUG_TRACE,
149                 "ldap_chkResponseList for msgid=%d, all=%d\n",
150             msgid, all, 0 );
151         lastlm = NULL;
152         for ( lm = ld->ld_responses; lm != NULL; lm = nextlm ) {
153                 nextlm = lm->lm_next;
154
155                 if ( ldap_abandoned( ld, lm->lm_msgid ) ) {
156                         Debug( LDAP_DEBUG_TRACE,
157                                 "ldap_chkResponseList msg abandoned, msgid %d\n",
158                             msgid, 0, 0 );
159                         ldap_mark_abandoned( ld, lm->lm_msgid );
160
161                         if ( lastlm == NULL ) {
162                                 /* Remove first entry in list */
163                                 ld->ld_responses = lm->lm_next;
164                         } else {
165                                 lastlm->lm_next = nextlm;
166                         }
167
168                         ldap_msgfree( lm );
169
170                         continue;
171                 }
172
173                 if ( msgid == LDAP_RES_ANY || lm->lm_msgid == msgid ) {
174                         LDAPMessage     *tmp;
175
176                         if ( all == LDAP_MSG_ONE || msgid == LDAP_RES_UNSOLICITED ) {
177                                 break;
178                         }
179
180                         if ( lm->lm_chain == NULL ) {
181                                 assert(lm->lm_chain_tail == lm);
182                                 if ((lm->lm_msgtype == LDAP_RES_SEARCH_ENTRY) ||
183                                         (lm->lm_msgtype == LDAP_RES_SEARCH_REFERENCE) ||
184                                         (lm->lm_msgtype == LDAP_RES_INTERMEDIATE)) {
185                                         tmp = NULL;
186                                 } else {
187                                         tmp = lm;
188                                 }
189                         } else {
190                                 assert(lm->lm_chain_tail);
191                                 assert(lm->lm_chain_tail->lm_chain);
192                                 if ((lm->lm_chain_tail->lm_chain->lm_msgtype
193                                                 == LDAP_RES_SEARCH_ENTRY) ||
194                                         (lm->lm_chain_tail->lm_chain->lm_msgtype
195                                                 == LDAP_RES_SEARCH_REFERENCE) ||
196                                         (lm->lm_chain_tail->lm_chain->lm_msgtype
197                                                 == LDAP_RES_INTERMEDIATE)) {
198                                         tmp = NULL;
199                                 } else {
200                                         tmp = lm->lm_chain_tail->lm_chain;
201                                 }
202                         }
203
204                         if ( tmp == NULL ) {
205                                 lm = NULL;
206                         }
207
208                         break;
209                 }
210                 lastlm = lm;
211         }
212
213     if ( lm != NULL ) {
214                 /* Found an entry, remove it from the list */
215             if ( lastlm == NULL ) {
216                     ld->ld_responses = (all == LDAP_MSG_ONE && lm->lm_chain != NULL
217                         ? lm->lm_chain : lm->lm_next);
218             } else {
219                     lastlm->lm_next = (all == LDAP_MSG_ONE && lm->lm_chain != NULL
220                         ? lm->lm_chain : lm->lm_next);
221             }
222             if ( all == LDAP_MSG_ONE && lm->lm_chain != NULL ) {
223                         lm->lm_chain->lm_next = lm->lm_next;
224                         lm->lm_chain->lm_chain_tail = ( lm->lm_chain_tail != lm ) ? lm->lm_chain_tail : lm->lm_chain;
225                         assert(lm->lm_chain->lm_chain_tail);
226                         lm->lm_chain = NULL;
227                         lm->lm_chain_tail = NULL;
228             }
229             lm->lm_next = NULL;
230     }
231
232 #ifdef LDAP_DEBUG
233         if( lm == NULL) {
234                 Debug( LDAP_DEBUG_TRACE,
235                         "ldap_chkResponseList returns NULL\n", 0, 0, 0);
236         } else {
237                 Debug( LDAP_DEBUG_TRACE,
238                         "ldap_chkResponseList returns msgid %d, type 0x%02lu\n",
239                         lm->lm_msgid, (unsigned long) lm->lm_msgtype, 0);
240         }
241 #endif
242     return lm;
243 }
244
245 static int
246 wait4msg(
247         LDAP *ld,
248         ber_int_t msgid,
249         int all,
250         struct timeval *timeout,
251         LDAPMessage **result )
252 {
253         int             rc;
254         struct timeval  tv, tv0, *tvp;
255         time_t          start_time = 0;
256         time_t          tmp_time;
257         LDAPConn        *lc, *nextlc;
258
259         assert( ld != NULL );
260         assert( result != NULL );
261
262 #ifdef LDAP_DEBUG
263         if ( timeout == NULL ) {
264                 Debug( LDAP_DEBUG_TRACE, "wait4msg (infinite timeout), msgid %d\n",
265                     msgid, 0, 0 );
266         } else {
267                 Debug( LDAP_DEBUG_TRACE, "wait4msg (timeout %ld sec, %ld usec), msgid %d\n",
268                        (long) timeout->tv_sec, (long) timeout->tv_usec, msgid );
269         }
270 #endif /* LDAP_DEBUG */
271
272         if ( timeout == NULL ) {
273                 tvp = NULL;
274         } else {
275                 tv0 = *timeout;
276                 tv = *timeout;
277                 tvp = &tv;
278                 start_time = time( NULL );
279         }
280                     
281         rc = -2;
282         while ( rc == -2 ) {
283 #ifdef LDAP_DEBUG
284                 Debug( LDAP_DEBUG_TRACE, "wait4msg continue, msgid %d, all %d\n",
285                     msgid, all, 0 );
286                 if ( ldap_debug & LDAP_DEBUG_TRACE ) {
287                         ldap_dump_connection( ld, ld->ld_conns, 1 );
288                         ldap_dump_requests_and_responses( ld );
289                 }
290 #endif /* LDAP_DEBUG */
291
292                 if ( (*result = chkResponseList(ld, msgid, all)) != NULL ) {
293                         rc = (*result)->lm_msgtype;
294
295                 } else {
296                         int lc_ready = 0;
297
298                         for ( lc = ld->ld_conns; lc != NULL; lc = nextlc ) {
299                                 nextlc = lc->lconn_next;
300                                 if ( ber_sockbuf_ctrl( lc->lconn_sb,
301                                                 LBER_SB_OPT_DATA_READY, NULL ) ) {
302                                         rc = try_read1msg( ld, msgid, all, lc->lconn_sb,
303                                                 &lc, result );
304                                         lc_ready = 1;
305                                         break;
306                                 }
307                         }
308
309                         if ( !lc_ready ) {
310                             rc = ldap_int_select( ld, tvp );
311 #ifdef LDAP_DEBUG
312                             if ( rc == -1 ) {
313                                 Debug( LDAP_DEBUG_TRACE,
314                                         "ldap_int_select returned -1: errno %d\n",
315                                         errno, 0, 0 );
316                             }
317 #endif
318
319                             if ( rc == 0 || ( rc == -1 && (
320                                     !LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_RESTART)
321                                     || errno != EINTR )))
322                             {
323                                     ld->ld_errno = (rc == -1 ? LDAP_SERVER_DOWN :
324                                         LDAP_TIMEOUT);
325                                     return( rc );
326                             }
327
328                             if ( rc == -1 ) {
329                                     rc = -2;    /* select interrupted: loop */
330                             } else {
331                                     rc = -2;
332 #ifdef LDAP_R_COMPILE
333                                     ldap_pvt_thread_mutex_lock( &ld->ld_req_mutex );
334 #endif
335                                     if ( ld->ld_requests &&
336                                                 ld->ld_requests->lr_status == LDAP_REQST_WRITING &&
337                                                 ldap_is_write_ready( ld,
338                                                         ld->ld_requests->lr_conn->lconn_sb ) ) {
339                                                 ldap_int_flush_request( ld, ld->ld_requests );
340                                         }
341 #ifdef LDAP_R_COMPILE
342                                     ldap_pvt_thread_mutex_unlock( &ld->ld_req_mutex );
343 #endif
344                                     for ( lc = ld->ld_conns; rc == -2 && lc != NULL;
345                                         lc = nextlc ) {
346                                             nextlc = lc->lconn_next;
347                                             if ( lc->lconn_status ==
348                                                 LDAP_CONNST_CONNECTED &&
349                                                 ldap_is_read_ready( ld,
350                                                 lc->lconn_sb )) {
351                                                     rc = try_read1msg( ld, msgid, all,
352                                                         lc->lconn_sb, &lc, result );
353                                                         if ( lc == NULL ) lc = nextlc;
354                                             }
355                                     }
356                             }
357                     }
358                 }
359
360                 if ( rc == -2 && tvp != NULL ) {
361                         tmp_time = time( NULL );
362                         if (( tv0.tv_sec -=  ( tmp_time - start_time )) <= 0 ) {
363                                 rc = 0; /* timed out */
364                                 ld->ld_errno = LDAP_TIMEOUT;
365                                 break;
366                         }
367                         tv.tv_sec = tv0.tv_sec;
368
369                         Debug( LDAP_DEBUG_TRACE, "wait4msg:  %ld secs to go\n",
370                                (long) tv.tv_sec, 0, 0 );
371                         start_time = tmp_time;
372                 }
373         }
374
375         return( rc );
376 }
377
378
379 static ber_tag_t
380 try_read1msg(
381         LDAP *ld,
382         ber_int_t msgid,
383         int all,
384         Sockbuf *sb,
385         LDAPConn **lcp,
386         LDAPMessage **result )
387 {
388         BerElement      *ber;
389         LDAPMessage     *newmsg, *l, *prev;
390         ber_int_t       id;
391         ber_tag_t       tag;
392         ber_len_t       len;
393         int             foundit = 0;
394         LDAPRequest     *lr, *tmplr;
395         LDAPConn        *lc;
396         BerElement      tmpber;
397         int             rc, refer_cnt, hadref, simple_request;
398         ber_int_t       lderr;
399
400 #ifdef LDAP_CONNECTIONLESS
401         LDAPMessage     *tmp = NULL, *chain_head = NULL;
402         int             firstmsg = 1, moremsgs = 0, isv2 = 0;
403 #endif
404
405         /*
406          * v3ref = flag for V3 referral / search reference
407          * 0 = not a ref, 1 = sucessfully chased ref, -1 = pass ref to application
408          */
409         int     v3ref;
410
411         assert( ld != NULL );
412         assert( lcp != NULL );
413         assert( *lcp != NULL );
414         
415         Debug( LDAP_DEBUG_TRACE, "read1msg: msgid %d, all %d\n", msgid, all, 0 );
416
417         lc = *lcp;
418
419 retry:
420         if ( lc->lconn_ber == NULL ) {
421                 lc->lconn_ber = ldap_alloc_ber_with_options(ld);
422
423                 if( lc->lconn_ber == NULL ) {
424                         return -1;
425                 }
426         }
427
428         ber = lc->lconn_ber;
429         assert( LBER_VALID (ber) );
430
431         /* get the next message */
432         errno = 0;
433 #ifdef LDAP_CONNECTIONLESS
434         if ( LDAP_IS_UDP(ld) ) {
435                 struct sockaddr from;
436                 ber_int_sb_read(sb, &from, sizeof(struct sockaddr));
437                 if (ld->ld_options.ldo_version == LDAP_VERSION2) isv2=1;
438         }
439 nextresp3:
440 #endif
441         tag = ber_get_next( sb, &len, ber );
442         if ( tag == LDAP_TAG_MESSAGE ) {
443                 /*
444                  * We read a complete message.
445                  * The connection should no longer need this ber.
446                  */
447                 lc->lconn_ber = NULL;
448         }
449         if ( tag != LDAP_TAG_MESSAGE ) {
450                 if ( tag == LBER_DEFAULT) {
451 #ifdef LDAP_DEBUG                  
452                         Debug( LDAP_DEBUG_CONNS,
453                               "ber_get_next failed.\n", 0, 0, 0 );
454 #endif             
455 #ifdef EWOULDBLOCK                      
456                         if (errno==EWOULDBLOCK) return -2;
457 #endif
458 #ifdef EAGAIN
459                         if (errno == EAGAIN) return -2;
460 #endif
461                         ld->ld_errno = LDAP_SERVER_DOWN;
462                         return -1;
463                 }
464                 ld->ld_errno = LDAP_LOCAL_ERROR;
465                 return -1;
466         }
467
468         /* message id */
469         if ( ber_get_int( ber, &id ) == LBER_ERROR ) {
470                 ber_free( ber, 1 );
471                 ld->ld_errno = LDAP_DECODING_ERROR;
472                 return( -1 );
473         }
474
475         /* if it's been abandoned, toss it */
476         if ( ldap_abandoned( ld, id ) ) {
477                 Debug( LDAP_DEBUG_ANY, "abandoned\n", 0, 0, 0);
478 retry_ber:
479                 ber_free( ber, 1 );
480                 if ( ber_sockbuf_ctrl( sb, LBER_SB_OPT_DATA_READY, NULL ) ) {
481                         goto retry;
482                 }
483                 return( -2 );   /* continue looking */
484         }
485
486         if (( lr = ldap_find_request_by_msgid( ld, id )) == NULL ) {
487                 Debug( LDAP_DEBUG_ANY,
488                     "no request for response with msgid %ld (tossing)\n",
489                     (long) id, 0, 0 );
490                 goto retry_ber;
491         }
492 #ifdef LDAP_CONNECTIONLESS
493         if (LDAP_IS_UDP(ld) && isv2) {
494                 ber_scanf(ber, "x{");
495         }
496 nextresp2:
497 #endif
498         /* the message type */
499         if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
500                 ld->ld_errno = LDAP_DECODING_ERROR;
501                 ber_free( ber, 1 );
502                 return( -1 );
503         }
504
505         Debug( LDAP_DEBUG_TRACE,
506                 "ldap_read: message type %s msgid %ld, original id %ld\n",
507             ldap_int_msgtype2str( tag ),
508                 (long) lr->lr_msgid, (long) lr->lr_origid );
509
510         id = lr->lr_origid;
511         refer_cnt = 0;
512         hadref = simple_request = 0;
513         rc = -2;        /* default is to keep looking (no response found) */
514         lr->lr_res_msgtype = tag;
515
516         /*
517          * This code figures out if we are going to chase a
518          * referral / search reference, or pass it back to the application
519          */
520         v3ref = 0;      /* Assume not a V3 search reference or referral */
521         if( (tag != LDAP_RES_SEARCH_ENTRY) && (ld->ld_version > LDAP_VERSION2) ) {
522                 BerElement      tmpber = *ber;  /* struct copy */
523                 char **refs = NULL;
524
525                 if( tag == LDAP_RES_SEARCH_REFERENCE) {
526                         /* This is a V3 search reference */
527                         /* Assume we do not chase the reference, but pass it to application */
528                         v3ref = -1;
529                         if( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS) ||
530                                         (lr->lr_parent != NULL) )
531                         {
532                                 /* Get the referral list */
533                                 if ( ber_scanf( &tmpber, "{v}", &refs ) == LBER_ERROR ) {
534                                         rc = LDAP_DECODING_ERROR;
535                                 } else {
536                                         /* Note: refs arrary is freed by ldap_chase_v3referrals */
537                                         refer_cnt = ldap_chase_v3referrals( ld, lr, refs,
538                                             1, &lr->lr_res_error, &hadref );
539                                         if ( refer_cnt > 0 ) {  /* sucessfully chased reference */
540                                                 /* If haven't got end search, set chasing referrals */
541                                                 if( lr->lr_status != LDAP_REQST_COMPLETED) {
542                                                         lr->lr_status = LDAP_REQST_CHASINGREFS;
543                                                         Debug( LDAP_DEBUG_TRACE,
544                                                             "read1msg:  search ref chased, mark request chasing refs, id = %d\n",
545                                                             lr->lr_msgid, 0, 0);
546                                                 }
547                                                 v3ref = 1;      /* We sucessfully chased the reference */
548                                         }
549                                 }
550                         }
551                 } else {
552                         /* Check for V3 referral */
553                         ber_len_t len;
554                         if ( ber_scanf( &tmpber, "{iaa",/*}*/ &lderr,
555                                     &lr->lr_res_matched, &lr->lr_res_error )
556                                     != LBER_ERROR ) {
557                                 /* Check if V3 referral */
558                                 if( ber_peek_tag( &tmpber, &len) == LDAP_TAG_REFERRAL ) {
559                                         /* We have a V3 referral, assume we cannot chase it */
560                                         v3ref = -1;
561                                         if( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS)
562                                                          || (lr->lr_parent != NULL) )
563                                         {
564                                                 v3ref = -1;  /* Assume referral not chased and return it to app */
565                                                 /* Get the referral list */
566                                                 if( ber_scanf( &tmpber, "{v}", &refs) == LBER_ERROR) {
567                                                         rc = LDAP_DECODING_ERROR;
568                                                         lr->lr_status = LDAP_REQST_COMPLETED;
569                                                         Debug( LDAP_DEBUG_TRACE,
570                                                             "read1msg: referral decode error, mark request completed, id = %d\n",
571                                                                     lr->lr_msgid, 0, 0);
572                                                 } else {
573                                                         /* Chase the referral 
574                                                          * Note: refs arrary is freed by ldap_chase_v3referrals
575                                                          */
576                                                         refer_cnt = ldap_chase_v3referrals( ld, lr, refs,
577                                                             0, &lr->lr_res_error, &hadref );
578                                                         lr->lr_status = LDAP_REQST_COMPLETED;
579                                                         Debug( LDAP_DEBUG_TRACE,
580                                                             "read1msg:  referral chased, mark request completed, id = %d\n",
581                                                             lr->lr_msgid, 0, 0);
582                                                         if( refer_cnt > 0) {
583                                                                 v3ref = 1;  /* Referral successfully chased */
584                                                         }
585                                                 }
586                                         }
587                                 }
588
589                                 if( lr->lr_res_matched != NULL ) {
590                                         LDAP_FREE( lr->lr_res_matched );
591                                         lr->lr_res_matched = NULL;
592                                 }
593                                 if( lr->lr_res_error != NULL ) {
594                                         LDAP_FREE( lr->lr_res_error );
595                                         lr->lr_res_error = NULL;
596                                 }
597                         }
598                 }
599         }
600
601         /* All results that just return a status, i.e. don't return data
602          * go through the following code.  This code also chases V2 referrals
603          * and checks if all referrals have been chased.
604          */
605         if ( (tag != LDAP_RES_SEARCH_ENTRY) && (v3ref > -1) &&
606                 (tag != LDAP_RES_INTERMEDIATE ))
607         {
608                 /* For a v3 search referral/reference, only come here if already chased it */
609                 if ( ld->ld_version >= LDAP_VERSION2 &&
610                         ( lr->lr_parent != NULL ||
611                         LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS) ) )
612                 {
613                         tmpber = *ber;  /* struct copy */
614                         if ( v3ref == 1 ) {
615                                 /* V3 search reference or V3 referral
616                                  * sucessfully chased. If this message
617                                  * is a search result, then it has no more
618                                  * outstanding referrals.
619                                  */
620                                 if ( tag == LDAP_RES_SEARCH_RESULT )
621                                         refer_cnt = 0;
622                         } else if ( ber_scanf( &tmpber, "{iaa}", &lderr,
623                             &lr->lr_res_matched, &lr->lr_res_error )
624                             != LBER_ERROR ) {
625                                 if ( lderr != LDAP_SUCCESS ) {
626                                         /* referrals are in error string */
627                                         refer_cnt = ldap_chase_referrals( ld, lr,
628                                                 &lr->lr_res_error, -1, &hadref );
629                                         lr->lr_status = LDAP_REQST_COMPLETED;
630                                         Debug( LDAP_DEBUG_TRACE,
631                                             "read1msg:  V2 referral chased, mark request completed, id = %d\n", lr->lr_msgid, 0, 0);
632                                 }
633
634                                 /* save errno, message, and matched string */
635                                 if ( !hadref || lr->lr_res_error == NULL ) {
636                                         lr->lr_res_errno = ( lderr ==
637                                         LDAP_PARTIAL_RESULTS ) ? LDAP_SUCCESS
638                                         : lderr;
639                                 } else if ( ld->ld_errno != LDAP_SUCCESS ) {
640                                         lr->lr_res_errno = ld->ld_errno;
641                                 } else {
642                                         lr->lr_res_errno = LDAP_PARTIAL_RESULTS;
643                                 }
644 Debug( LDAP_DEBUG_TRACE,
645     "new result:  res_errno: %d, res_error: <%s>, res_matched: <%s>\n",
646     lr->lr_res_errno, lr->lr_res_error ? lr->lr_res_error : "",
647     lr->lr_res_matched ? lr->lr_res_matched : "" );
648                         }
649                 }
650
651                 Debug( LDAP_DEBUG_TRACE,
652                     "read1msg:  %d new referrals\n", refer_cnt, 0, 0 );
653
654                 if ( refer_cnt != 0 ) { /* chasing referrals */
655                         ber_free( ber, 1 );
656                         ber = NULL;
657                         if ( refer_cnt < 0 ) {
658                                 return( -1 );   /* fatal error */
659                         }
660                         lr->lr_res_errno = LDAP_SUCCESS; /* sucessfully chased referral */
661                 } else {
662                         if ( lr->lr_outrefcnt <= 0 && lr->lr_parent == NULL ) {
663                                 /* request without any referrals */
664                                 simple_request = ( hadref ? 0 : 1 );
665                         } else {
666                                 /* request with referrals or child request */
667                                 ber_free( ber, 1 );
668                                 ber = NULL;
669                         }
670
671                         lr->lr_status = LDAP_REQST_COMPLETED; /* declare this request done */
672                         Debug( LDAP_DEBUG_TRACE,
673                             "read1msg:  mark request completed, id = %d\n", lr->lr_msgid, 0, 0);
674                         while ( lr->lr_parent != NULL ) {
675                                 merge_error_info( ld, lr->lr_parent, lr );
676
677                                 lr = lr->lr_parent;
678                                 if ( --lr->lr_outrefcnt > 0 ) {
679                                         break;  /* not completely done yet */
680                                 }
681                         }
682
683                         /* Check if all requests are finished, lr is now parent */
684                         tmplr = lr;
685                         if (tmplr->lr_status == LDAP_REQST_COMPLETED) {
686                                 for ( tmplr=lr->lr_child;
687                                         tmplr != NULL;
688                                         tmplr=tmplr->lr_refnext)
689                                 {
690                                         if( tmplr->lr_status != LDAP_REQST_COMPLETED) break;
691                                 }
692                         }
693
694                         /* This is the parent request if the request has referrals */
695                         if ( lr->lr_outrefcnt <= 0 && lr->lr_parent == NULL &&
696                                 tmplr == NULL )
697                         {
698                                 id = lr->lr_msgid;
699                                 tag = lr->lr_res_msgtype;
700                                 Debug( LDAP_DEBUG_ANY, "request %ld done\n",
701                                     (long) id, 0, 0 );
702 Debug( LDAP_DEBUG_TRACE,
703 "res_errno: %d, res_error: <%s>, res_matched: <%s>\n",
704 lr->lr_res_errno, lr->lr_res_error ? lr->lr_res_error : "",
705 lr->lr_res_matched ? lr->lr_res_matched : "" );
706                                 if ( !simple_request ) {
707                                         ber_free( ber, 1 );
708                                         ber = NULL;
709                                         if ( build_result_ber( ld, &ber, lr )
710                                             == LBER_ERROR ) {
711                                                 rc = -1; /* fatal error */
712                                         }
713                                 }
714
715                                 ldap_free_request( ld, lr );
716                         }
717
718                         if ( lc != NULL ) {
719                                 ldap_free_connection( ld, lc, 0, 1 );
720                                 *lcp = NULL;
721                         }
722                 }
723         }
724
725         if ( ber == NULL ) {
726                 return( rc );
727         }
728
729         /* make a new ldap message */
730         newmsg = (LDAPMessage *) LDAP_CALLOC( 1, sizeof(LDAPMessage) );
731         if ( newmsg == NULL ) {
732                 ld->ld_errno = LDAP_NO_MEMORY;
733                 return( -1 );
734         }
735         newmsg->lm_msgid = (int)id;
736         newmsg->lm_msgtype = tag;
737         newmsg->lm_ber = ber;
738
739 #ifdef LDAP_CONNECTIONLESS
740         /* CLDAP replies all fit in a single datagram. In LDAPv2 RFC1798
741          * the responses are all a sequence wrapped in one message. In
742          * LDAPv3 each response is in its own message. The datagram must
743          * end with a SearchResult. We can't just parse each response in
744          * separate calls to try_read1msg because the header info is only
745          * present at the beginning of the datagram, not at the beginning
746          * of each response. So parse all the responses at once and queue
747          * them up, then pull off the first response to return to the
748          * caller when all parsing is complete.
749          */
750         if ( LDAP_IS_UDP(ld) ) {
751                 /* If not a result, look for more */
752                 if ( tag != LDAP_RES_SEARCH_RESULT ) {
753                         int ok = 0;
754                         moremsgs = 1;
755                         if (isv2) {
756                                 /* LDAPv2: dup the current ber, skip past the current
757                                  * response, and see if there are any more after it.
758                                  */
759                                 ber = ber_dup( ber );
760                                 ber_scanf( ber, "x" );
761                                 if (ber_peek_tag(ber, &len) != LBER_DEFAULT) {
762                                         /* There's more - dup the ber buffer so they can all be
763                                          * individually freed by ldap_msgfree.
764                                          */
765                                         struct berval bv;
766                                         ber_get_option(ber, LBER_OPT_BER_REMAINING_BYTES, &len);
767                                         bv.bv_val = LDAP_MALLOC(len);
768                                         if (bv.bv_val) {
769                                                 ok=1;
770                                                 ber_read(ber, bv.bv_val, len);
771                                                 bv.bv_len = len;
772                                                 ber_init2(ber, &bv, ld->ld_lberoptions );
773                                         }
774                                 }
775                         } else {
776                                 /* LDAPv3: Just allocate a new ber. Since this is a buffered
777                                  * datagram, if the sockbuf is readable we still have data
778                                  * to parse.
779                                  */
780                                 ber = ldap_alloc_ber_with_options(ld);
781                                 if (ber_sockbuf_ctrl(sb, LBER_SB_OPT_DATA_READY, NULL)) ok=1;
782                         }
783                         /* set up response chain */
784                         if ( firstmsg ) {
785                                 firstmsg = 0;
786                                 newmsg->lm_next = ld->ld_responses;
787                                 ld->ld_responses = newmsg;
788                                 newmsg->lm_chain_tail = newmsg;
789                                 chain_head = newmsg;
790                         } else {
791                                 assert( tmp != NULL );
792                                 tmp->lm_chain = newmsg;
793                                 chain_head->lm_chain_tail = tmp;
794                         }
795                         tmp = newmsg;
796                         /* "ok" means there's more to parse */
797                         if (ok) {
798                                 if (isv2) goto nextresp2;
799                                 else goto nextresp3;
800                         } else {
801                                 /* got to end of datagram without a SearchResult. Free
802                                  * our dup'd ber, but leave any buffer alone. For v2 case,
803                                  * the previous response is still using this buffer. For v3,
804                                  * the new ber has no buffer to free yet.
805                                  */
806                                 ber_free(ber, 0);
807                                 return -1;
808                         }
809                 } else if ( moremsgs ) {
810                 /* got search result, and we had multiple responses in 1 datagram.
811                  * stick the result onto the end of the chain, and then pull the
812                  * first response off the head of the chain.
813                  */
814                         tmp->lm_chain = newmsg;
815                         chain_head->lm_chain_tail = tmp;
816                         *result = chkResponseList( ld, msgid, all );
817                         ld->ld_errno = LDAP_SUCCESS;
818                         return( (*result)->lm_msgtype );
819                 }
820         }
821 #endif /* LDAP_CONNECTIONLESS */
822
823         /* is this the one we're looking for? */
824         if ( msgid == LDAP_RES_ANY || id == msgid ) {
825                 if ( all == LDAP_MSG_ONE
826                     || (newmsg->lm_msgtype != LDAP_RES_SEARCH_RESULT
827                     && newmsg->lm_msgtype != LDAP_RES_SEARCH_ENTRY
828                     && newmsg->lm_msgtype != LDAP_RES_SEARCH_REFERENCE) ) {
829                         *result = newmsg;
830                         ld->ld_errno = LDAP_SUCCESS;
831                         return( tag );
832                 } else if ( newmsg->lm_msgtype == LDAP_RES_SEARCH_RESULT) {
833                         foundit = 1;    /* return the chain later */
834                 }
835         }
836
837         /* 
838          * if not, we must add it to the list of responses.  if
839          * the msgid is already there, it must be part of an existing
840          * search response.
841          */
842
843         prev = NULL;
844         for ( l = ld->ld_responses; l != NULL; l = l->lm_next ) {
845                 if ( l->lm_msgid == newmsg->lm_msgid )
846                         break;
847                 prev = l;
848         }
849
850         /* not part of an existing search response */
851         if ( l == NULL ) {
852                 if ( foundit ) {
853                         *result = newmsg;
854                         goto exit;
855                 }
856
857                 newmsg->lm_next = ld->ld_responses;
858                 ld->ld_responses = newmsg;
859                 newmsg->lm_chain_tail = newmsg;
860                 goto exit;
861         }
862
863         Debug( LDAP_DEBUG_TRACE, "adding response id %ld type %ld:\n",
864             (long) newmsg->lm_msgid, (long) newmsg->lm_msgtype, 0 );
865
866         /* part of a search response - add to end of list of entries */
867         if (l->lm_chain == NULL) {
868                 assert(l->lm_chain_tail == l);
869                 l->lm_chain = newmsg;
870         } else {
871                 assert(l->lm_chain_tail);
872                 assert(l->lm_chain_tail->lm_chain);
873                 if ((l->lm_chain_tail->lm_chain->lm_msgtype
874                                 == LDAP_RES_SEARCH_ENTRY) ||
875                         (l->lm_chain_tail->lm_chain->lm_msgtype
876                                 == LDAP_RES_SEARCH_REFERENCE) ||
877                         (l->lm_chain_tail->lm_chain->lm_msgtype
878                                 == LDAP_RES_INTERMEDIATE)) {
879                         l->lm_chain_tail->lm_chain->lm_chain = newmsg;
880                         l->lm_chain_tail = l->lm_chain_tail->lm_chain;
881                 } else {
882                         /*FIXME: ldap_msgfree( l->lm_chain_tail->lm_chain );*/
883                         l->lm_chain_tail->lm_chain = newmsg;
884                 }
885         }
886
887         /* return the whole chain if that's what we were looking for */
888         if ( foundit ) {
889                 if ( prev == NULL )
890                         ld->ld_responses = l->lm_next;
891                 else
892                         prev->lm_next = l->lm_next;
893                 *result = l;
894         }
895
896 exit:
897         if ( foundit ) {
898                 ld->ld_errno = LDAP_SUCCESS;
899                 return( tag );
900         }
901         if ( ber_sockbuf_ctrl( sb, LBER_SB_OPT_DATA_READY, NULL ) ) {
902                 goto retry;
903         }
904         return( -2 );   /* continue looking */
905 }
906
907
908 static ber_tag_t
909 build_result_ber( LDAP *ld, BerElement **bp, LDAPRequest *lr )
910 {
911         ber_len_t       len;
912         ber_tag_t       tag;
913         ber_int_t       along;
914         BerElement *ber;
915
916         *bp = NULL;
917         ber = ldap_alloc_ber_with_options( ld );
918
919         if( ber == NULL ) {
920                 ld->ld_errno = LDAP_NO_MEMORY;
921                 return LBER_ERROR;
922         }
923
924         if ( ber_printf( ber, "{it{ess}}", lr->lr_msgid,
925             lr->lr_res_msgtype, lr->lr_res_errno,
926             lr->lr_res_matched ? lr->lr_res_matched : "",
927             lr->lr_res_error ? lr->lr_res_error : "" ) == -1 ) {
928
929                 ld->ld_errno = LDAP_ENCODING_ERROR;
930                 ber_free(ber, 1);
931                 return( LBER_ERROR );
932         }
933
934         ber_reset( ber, 1 );
935
936         if ( ber_skip_tag( ber, &len ) == LBER_ERROR ) {
937                 ld->ld_errno = LDAP_DECODING_ERROR;
938                 ber_free(ber, 1);
939                 return( LBER_ERROR );
940         }
941
942         if ( ber_get_int( ber, &along ) == LBER_ERROR ) {
943                 ld->ld_errno = LDAP_DECODING_ERROR;
944                 ber_free(ber, 1);
945                 return( LBER_ERROR );
946         }
947
948         tag = ber_peek_tag( ber, &len );
949
950         if ( tag == LBER_ERROR ) {
951                 ld->ld_errno = LDAP_DECODING_ERROR;
952                 ber_free(ber, 1);
953                 return( LBER_ERROR );
954         }
955
956         *bp = ber;
957         return tag;
958 }
959
960
961 static void
962 merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr )
963 {
964 /*
965  * Merge error information in "lr" with "parentr" error code and string.
966  */
967         if ( lr->lr_res_errno == LDAP_PARTIAL_RESULTS ) {
968                 parentr->lr_res_errno = lr->lr_res_errno;
969                 if ( lr->lr_res_error != NULL ) {
970                         (void)ldap_append_referral( ld, &parentr->lr_res_error,
971                             lr->lr_res_error );
972                 }
973         } else if ( lr->lr_res_errno != LDAP_SUCCESS &&
974             parentr->lr_res_errno == LDAP_SUCCESS ) {
975                 parentr->lr_res_errno = lr->lr_res_errno;
976                 if ( parentr->lr_res_error != NULL ) {
977                         LDAP_FREE( parentr->lr_res_error );
978                 }
979                 parentr->lr_res_error = lr->lr_res_error;
980                 lr->lr_res_error = NULL;
981                 if ( LDAP_NAME_ERROR( lr->lr_res_errno )) {
982                         if ( parentr->lr_res_matched != NULL ) {
983                                 LDAP_FREE( parentr->lr_res_matched );
984                         }
985                         parentr->lr_res_matched = lr->lr_res_matched;
986                         lr->lr_res_matched = NULL;
987                 }
988         }
989
990         Debug( LDAP_DEBUG_TRACE, "merged parent (id %d) error info:  ",
991             parentr->lr_msgid, 0, 0 );
992         Debug( LDAP_DEBUG_TRACE, "result errno %d, error <%s>, matched <%s>\n",
993             parentr->lr_res_errno, parentr->lr_res_error ?
994             parentr->lr_res_error : "", parentr->lr_res_matched ?
995             parentr->lr_res_matched : "" );
996 }
997
998
999
1000 int
1001 ldap_msgtype( LDAPMessage *lm )
1002 {
1003         assert( lm != NULL );
1004         return ( lm != NULL ) ? lm->lm_msgtype : -1;
1005 }
1006
1007
1008 int
1009 ldap_msgid( LDAPMessage *lm )
1010 {
1011         assert( lm != NULL );
1012
1013         return ( lm != NULL ) ? lm->lm_msgid : -1;
1014 }
1015
1016
1017 char * ldap_int_msgtype2str( ber_tag_t tag )
1018 {
1019         switch( tag ) {
1020         case LDAP_RES_ADD: return "add";
1021         case LDAP_RES_BIND: return "bind";
1022         case LDAP_RES_COMPARE: return "compare";
1023         case LDAP_RES_DELETE: return "delete";
1024         case LDAP_RES_EXTENDED: return "extended-result";
1025         case LDAP_RES_INTERMEDIATE: return "intermediate";
1026         case LDAP_RES_MODIFY: return "modify";
1027         case LDAP_RES_RENAME: return "rename";
1028         case LDAP_RES_SEARCH_ENTRY: return "search-entry";
1029         case LDAP_RES_SEARCH_REFERENCE: return "search-reference";
1030         case LDAP_RES_SEARCH_RESULT: return "search-result";
1031         }
1032         return "unknown";
1033 }
1034
1035 int
1036 ldap_msgfree( LDAPMessage *lm )
1037 {
1038         LDAPMessage     *next;
1039         int             type = 0;
1040
1041         Debug( LDAP_DEBUG_TRACE, "ldap_msgfree\n", 0, 0, 0 );
1042
1043         for ( ; lm != NULL; lm = next ) {
1044                 next = lm->lm_chain;
1045                 type = lm->lm_msgtype;
1046                 ber_free( lm->lm_ber, 1 );
1047                 LDAP_FREE( (char *) lm );
1048         }
1049
1050         return( type );
1051 }
1052
1053 /*
1054  * ldap_msgdelete - delete a message.  It returns:
1055  *      0       if the entire message was deleted
1056  *      -1      if the message was not found, or only part of it was found
1057  */
1058 int
1059 ldap_msgdelete( LDAP *ld, int msgid )
1060 {
1061         LDAPMessage     *lm, *prev;
1062         int rc = 0;
1063
1064         assert( ld != NULL );
1065
1066         Debug( LDAP_DEBUG_TRACE, "ldap_msgdelete\n", 0, 0, 0 );
1067
1068         prev = NULL;
1069 #ifdef LDAP_R_COMPILE
1070         ldap_pvt_thread_mutex_lock( &ld->ld_res_mutex );
1071 #endif
1072         for ( lm = ld->ld_responses; lm != NULL; lm = lm->lm_next ) {
1073                 if ( lm->lm_msgid == msgid )
1074                         break;
1075                 prev = lm;
1076         }
1077
1078         if ( lm == NULL ) {
1079                 rc = -1;
1080         } else {
1081                 if ( prev == NULL )
1082                         ld->ld_responses = lm->lm_next;
1083                 else
1084                         prev->lm_next = lm->lm_next;
1085         }
1086 #ifdef LDAP_R_COMPILE
1087         ldap_pvt_thread_mutex_unlock( &ld->ld_res_mutex );
1088 #endif
1089         if ( lm && ldap_msgfree( lm ) == LDAP_RES_SEARCH_ENTRY )
1090                 rc = -1;
1091
1092         return( rc );
1093 }
1094
1095
1096 /*
1097  * return 1 if message msgid is waiting to be abandoned, 0 otherwise
1098  */
1099 static int
1100 ldap_abandoned( LDAP *ld, ber_int_t msgid )
1101 {
1102         int     i;
1103
1104         if ( ld->ld_abandoned == NULL )
1105                 return( 0 );
1106
1107         for ( i = 0; ld->ld_abandoned[i] != -1; i++ )
1108                 if ( ld->ld_abandoned[i] == msgid )
1109                         return( 1 );
1110
1111         return( 0 );
1112 }
1113
1114
1115 static int
1116 ldap_mark_abandoned( LDAP *ld, ber_int_t msgid )
1117 {
1118         int     i;
1119
1120         if ( ld->ld_abandoned == NULL )
1121                 return( -1 );
1122
1123         for ( i = 0; ld->ld_abandoned[i] != -1; i++ )
1124                 if ( ld->ld_abandoned[i] == msgid )
1125                         break;
1126
1127         if ( ld->ld_abandoned[i] == -1 )
1128                 return( -1 );
1129
1130         for ( ; ld->ld_abandoned[i] != -1; i++ ) {
1131                 ld->ld_abandoned[i] = ld->ld_abandoned[i + 1];
1132         }
1133
1134         return( 0 );
1135 }