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