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