]> git.sur5r.net Git - openldap/blob - libraries/libldap/result.c
strlen returns size_t not int.
[openldap] / libraries / libldap / result.c
1 /*
2  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  */
5 /*  Portions
6  *  Copyright (c) 1990 Regents of the University of Michigan.
7  *  All rights reserved.
8  *
9  *  result.c - wait for an ldap result
10  */
11
12 #include "portable.h"
13
14 #include <stdio.h>
15 #include <stdlib.h>
16
17 #include <ac/errno.h>
18 #include <ac/socket.h>
19 #include <ac/string.h>
20 #include <ac/time.h>
21 #include <ac/unistd.h>
22
23 #include "ldap-int.h"
24
25
26 static int ldap_abandoned LDAP_P(( LDAP *ld, int msgid ));
27 static int ldap_mark_abandoned LDAP_P(( LDAP *ld, int msgid ));
28 static int wait4msg LDAP_P(( LDAP *ld, int msgid, int all, struct timeval *timeout,
29         LDAPMessage **result ));
30 static int try_read1msg LDAP_P(( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
31         LDAPMessage **result ));
32 static unsigned long build_result_ber LDAP_P(( LDAP *ld, BerElement *ber, LDAPRequest *lr ));
33 static void merge_error_info LDAP_P(( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr ));
34
35
36 /*
37  * ldap_result - wait for an ldap result response to a message from the
38  * ldap server.  If msgid is -1, any message will be accepted, otherwise
39  * ldap_result will wait for a response with msgid.  If all is 0 the
40  * first message with id msgid will be accepted, otherwise, ldap_result
41  * will wait for all responses with id msgid and then return a pointer to
42  * the entire list of messages.  This is only useful for search responses,
43  * which can be of two message types (zero or more entries, followed by an
44  * ldap result).  The type of the first message received is returned.
45  * When waiting, any messages that have been abandoned are discarded.
46  *
47  * Example:
48  *      ldap_result( s, msgid, all, timeout, result )
49  */
50 int
51 ldap_result( LDAP *ld, int msgid, int all, struct timeval *timeout,
52         LDAPMessage **result )
53 {
54         LDAPMessage     *lm, *lastlm, *nextlm;
55
56         assert( ld != NULL );
57         assert( result != NULL );
58
59         Debug( LDAP_DEBUG_TRACE, "ldap_result\n", 0, 0, 0 );
60
61         if( ld == NULL ) {
62                 return -1;
63         }
64
65         if( result == NULL ) {
66                 ld->ld_errno = LDAP_PARAM_ERROR;
67                 return -1;
68         }
69
70         /*
71          * First, look through the list of responses we have received on
72          * this association and see if the response we're interested in
73          * is there.  If it is, return it.  If not, call wait4msg() to
74          * wait until it arrives or timeout occurs.
75          */
76
77         *result = NULLMSG;
78         lastlm = NULLMSG;
79         for ( lm = ld->ld_responses; lm != NULLMSG; lm = nextlm ) {
80                 nextlm = lm->lm_next;
81
82                 if ( ldap_abandoned( ld, lm->lm_msgid ) ) {
83                         ldap_mark_abandoned( ld, lm->lm_msgid );
84
85                         if ( lastlm == NULLMSG ) {
86                                 ld->ld_responses = lm->lm_next;
87                         } else {
88                                 lastlm->lm_next = nextlm;
89                         }
90
91                         ldap_msgfree( lm );
92
93                         continue;
94                 }
95
96                 if ( msgid == LDAP_RES_ANY || lm->lm_msgid == msgid ) {
97                         LDAPMessage     *tmp;
98
99                         if ( all == 0
100                             || (lm->lm_msgtype != LDAP_RES_SEARCH_RESULT
101                             && lm->lm_msgtype != LDAP_RES_SEARCH_REFERENCE      /* LDAPv3 */
102                             && lm->lm_msgtype != LDAP_RES_SEARCH_ENTRY) )
103                                 break;
104
105                         for ( tmp = lm; tmp != NULLMSG; tmp = tmp->lm_chain ) {
106                                 if ( tmp->lm_msgtype == LDAP_RES_SEARCH_RESULT )
107                                         break;
108                         }
109
110                         if ( tmp == NULLMSG ) {
111                                 return( wait4msg( ld, msgid, all, timeout,
112                                     result ) );
113                         }
114
115                         break;
116                 }
117                 lastlm = lm;
118         }
119         if ( lm == NULLMSG ) {
120                 return( wait4msg( ld, msgid, all, timeout, result ) );
121         }
122
123         if ( lastlm == NULLMSG ) {
124                 ld->ld_responses = (all == 0 && lm->lm_chain != NULLMSG
125                     ? lm->lm_chain : lm->lm_next);
126         } else {
127                 lastlm->lm_next = (all == 0 && lm->lm_chain != NULLMSG
128                     ? lm->lm_chain : lm->lm_next);
129         }
130         if ( all == 0 )
131                 lm->lm_chain = NULLMSG;
132         lm->lm_next = NULLMSG;
133
134         *result = lm;
135         ld->ld_errno = LDAP_SUCCESS;
136         return( lm->lm_msgtype );
137 }
138
139 static int
140 wait4msg( LDAP *ld, int msgid, int all, struct timeval *timeout,
141         LDAPMessage **result )
142 {
143         int             rc;
144         struct timeval  tv, *tvp;
145         time_t          start_time = 0;
146         time_t          tmp_time;
147         LDAPConn        *lc, *nextlc;
148
149         assert( ld != NULL );
150         assert( result != NULL );
151
152 #ifdef LDAP_DEBUG
153         if ( timeout == NULL ) {
154                 Debug( LDAP_DEBUG_TRACE, "wait4msg (infinite timeout)\n",
155                     0, 0, 0 );
156         } else {
157                 Debug( LDAP_DEBUG_TRACE, "wait4msg (timeout %ld sec, %ld usec)\n",
158                        (long) timeout->tv_sec, (long) timeout->tv_usec, 0 );
159         }
160 #endif /* LDAP_DEBUG */
161
162         if ( timeout == NULL ) {
163                 tvp = NULL;
164         } else {
165                 tv = *timeout;
166                 tvp = &tv;
167                 start_time = time( NULL );
168         }
169                     
170         rc = -2;
171         while ( rc == -2 ) {
172 #ifdef LDAP_DEBUG
173                 if ( ldap_debug & LDAP_DEBUG_TRACE ) {
174                         ldap_dump_connection( ld, ld->ld_conns, 1 );
175                         ldap_dump_requests_and_responses( ld );
176                 }
177 #endif /* LDAP_DEBUG */
178                 for ( lc = ld->ld_conns; lc != NULL; lc = lc->lconn_next ) {
179                         if ( ber_pvt_sb_data_ready(lc->lconn_sb) ) {
180                                 rc = try_read1msg( ld, msgid, all, lc->lconn_sb,
181                                     lc, result );
182                                 break;
183                         }
184                 }
185
186                 if ( lc == NULL ) {
187                         rc = do_ldap_select( ld, tvp );
188
189
190 #ifdef LDAP_DEBUG
191                         if ( rc == -1 ) {
192                             Debug( LDAP_DEBUG_TRACE,
193                                     "do_ldap_select returned -1: errno %d\n",
194                                     errno, 0, 0 );
195                         }
196 #endif
197
198                         if ( rc == 0 || ( rc == -1 && (
199                                 ( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_RESTART)
200                                         == LDAP_OPT_OFF )
201                                 || errno != EINTR )))
202                         {
203                                 ld->ld_errno = (rc == -1 ? LDAP_SERVER_DOWN :
204                                     LDAP_TIMEOUT);
205                                 return( rc );
206                         }
207
208                         if ( rc == -1 ) {
209                                 rc = -2;        /* select interrupted: loop */
210                         } else {
211                                 rc = -2;
212                                 for ( lc = ld->ld_conns; rc == -2 && lc != NULL;
213                                     lc = nextlc ) {
214                                         nextlc = lc->lconn_next;
215                                         if ( lc->lconn_status ==
216                                             LDAP_CONNST_CONNECTED &&
217                                             ldap_is_read_ready( ld,
218                                             lc->lconn_sb )) {
219                                                 rc = try_read1msg( ld, msgid, all,
220                                                     lc->lconn_sb, lc, result );
221                                         }
222                                 }
223                         }
224                 }
225
226                 if ( rc == -2 && tvp != NULL ) {
227                         tmp_time = time( NULL );
228                         if (( tv.tv_sec -=  ( tmp_time - start_time )) <= 0 ) {
229                                 rc = 0; /* timed out */
230                                 ld->ld_errno = LDAP_TIMEOUT;
231                                 break;
232                         }
233
234                         Debug( LDAP_DEBUG_TRACE, "wait4msg:  %ld secs to go\n",
235                                (long) tv.tv_sec, 0, 0 );
236                         start_time = tmp_time;
237                 }
238         }
239
240         return( rc );
241 }
242
243
244 static int
245 try_read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb,
246     LDAPConn *lc, LDAPMessage **result )
247 {
248         BerElement      *ber;
249         LDAPMessage     *new, *l, *prev, *tmp;
250         long            id;
251         unsigned long   tag, len;
252         int             foundit = 0;
253         LDAPRequest     *lr;
254         BerElement      tmpber;
255         int             rc, refer_cnt, hadref, simple_request;
256         unsigned long   lderr;
257
258         assert( ld != NULL );
259         assert( lc != NULL );
260         
261         ber = &lc->lconn_ber;
262
263         Debug( LDAP_DEBUG_TRACE, "read1msg\n", 0, 0, 0 );
264
265 #if 0
266         ber_init_w_nullc( &ber, 0 );
267         ldap_set_ber_options( ld, &ber );
268 #endif
269
270         /* get the next message */
271         if ( (tag = ber_get_next( sb, &len, ber ))
272             != LDAP_TAG_MESSAGE ) {
273                 if ( tag == LBER_DEFAULT) {
274 #ifdef LDAP_DEBUG                  
275                         Debug( LDAP_DEBUG_CONNS,
276                               "ber_get_next failed.\n", 0, 0, 0 );
277 #endif             
278 #ifdef EWOULDBLOCK                      
279                         if (errno==EWOULDBLOCK) return -2;
280 #endif
281 #ifdef EAGAIN
282                         if (errno == EAGAIN) return -2;
283 #endif
284                         ld->ld_errno = LDAP_SERVER_DOWN;
285                         return -1;
286                 }
287                 ld->ld_errno = LDAP_LOCAL_ERROR;
288                 return -1;
289         }
290
291         /* message id */
292         if ( ber_get_int( ber, &id ) == LBER_ERROR ) {
293                 ld->ld_errno = LDAP_DECODING_ERROR;
294                 return( -1 );
295         }
296
297         /* if it's been abandoned, toss it */
298         if ( ldap_abandoned( ld, (int)id ) ) {
299                 ber_clear( ber, 1 );    /* gack! */
300                 return( -2 );   /* continue looking */
301         }
302
303         if (( lr = ldap_find_request_by_msgid( ld, id )) == NULL ) {
304                 Debug( LDAP_DEBUG_ANY,
305                     "no request for response with msgid %ld (tossing)\n",
306                     id, 0, 0 );
307                 ber_clear( ber, 1 );    /* gack! */
308                 return( -2 );   /* continue looking */
309         }
310         Debug( LDAP_DEBUG_TRACE, "ldap_read: %s msgid %ld, original id %d\n",
311             ( tag == LDAP_RES_SEARCH_ENTRY ) ? "entry" : 
312                 ( tag == LDAP_RES_SEARCH_REFERENCE ) ? "reference" : "result",
313                 id, lr->lr_origid );
314         id = lr->lr_origid;
315
316         /* the message type */
317         if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
318                 ld->ld_errno = LDAP_DECODING_ERROR;
319                 return( -1 );
320         }
321
322         refer_cnt = 0;
323         hadref = simple_request = 0;
324         rc = -2;        /* default is to keep looking (no response found) */
325         lr->lr_res_msgtype = tag;
326
327         if ( tag != LDAP_RES_SEARCH_ENTRY ) {
328                 if ( ld->ld_version >= LDAP_VERSION2 &&
329                         ( lr->lr_parent != NULL ||
330                         ( LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_REFERRALS)
331                                 != LDAP_OPT_OFF ) ) )
332                 {
333                         tmpber = *ber;  /* struct copy */
334                         if ( ber_scanf( &tmpber, "{iaa}", &lderr,
335                             &lr->lr_res_matched, &lr->lr_res_error )
336                             != LBER_ERROR ) {
337                                 if ( lderr != LDAP_SUCCESS ) {
338                                         /* referrals are in error string */
339                                         refer_cnt = ldap_chase_referrals( ld, lr,
340                                             &lr->lr_res_error, &hadref );
341                                 }
342
343                                 /* save errno, message, and matched string */
344                                 if ( !hadref || lr->lr_res_error == NULL ) {
345                                         lr->lr_res_errno = ( lderr ==
346                                         LDAP_PARTIAL_RESULTS ) ? LDAP_SUCCESS
347                                         : lderr;
348                                 } else if ( ld->ld_errno != LDAP_SUCCESS ) {
349                                         lr->lr_res_errno = ld->ld_errno;
350                                 } else {
351                                         lr->lr_res_errno = LDAP_PARTIAL_RESULTS;
352                                 }
353 Debug( LDAP_DEBUG_TRACE,
354     "new result:  res_errno: %d, res_error: <%s>, res_matched: <%s>\n",
355     lr->lr_res_errno, lr->lr_res_error ? lr->lr_res_error : "",
356     lr->lr_res_matched ? lr->lr_res_matched : "" );
357                         }
358                 }
359
360                 Debug( LDAP_DEBUG_TRACE,
361                     "read1msg:  %d new referrals\n", refer_cnt, 0, 0 );
362
363                 if ( refer_cnt != 0 ) { /* chasing referrals */
364                         ber_clear( ber, 1 );    /* gack! */
365                         if ( refer_cnt < 0 ) {
366                                 return( -1 );   /* fatal error */
367                         }
368                         lr->lr_status = LDAP_REQST_CHASINGREFS;
369                 } else {
370                         if ( lr->lr_outrefcnt <= 0 && lr->lr_parent == NULL ) {
371                                 /* request without any referrals */
372                                 simple_request = ( hadref ? 0 : 1 );
373                         } else {
374                                 /* request with referrals or child request */
375                                 ber_clear( ber, 1 );    /* gack! */
376                         }
377
378                         while ( lr->lr_parent != NULL ) {
379                                 merge_error_info( ld, lr->lr_parent, lr );
380
381                                 lr = lr->lr_parent;
382                                 if ( --lr->lr_outrefcnt > 0 ) {
383                                         break;  /* not completely done yet */
384                                 }
385                         }
386
387                         if ( lr->lr_outrefcnt <= 0 && lr->lr_parent == NULL ) {
388                                 id = lr->lr_msgid;
389                                 tag = lr->lr_res_msgtype;
390                                 Debug( LDAP_DEBUG_ANY, "request %ld done\n",
391                                     id, 0, 0 );
392 Debug( LDAP_DEBUG_TRACE,
393 "res_errno: %d, res_error: <%s>, res_matched: <%s>\n",
394 lr->lr_res_errno, lr->lr_res_error ? lr->lr_res_error : "",
395 lr->lr_res_matched ? lr->lr_res_matched : "" );
396                                 if ( !simple_request ) {
397                                         ber_clear( ber, 1 ); /* gack! */
398                                         if ( build_result_ber( ld, ber, lr )
399                                             == LBER_ERROR ) {
400                                                 ld->ld_errno = LDAP_NO_MEMORY;
401                                                 rc = -1; /* fatal error */
402                                         }
403                                 }
404
405                                 ldap_free_request( ld, lr );
406                         }
407
408                         if ( lc != NULL ) {
409                                 ldap_free_connection( ld, lc, 0, 1 );
410                         }
411                 }
412         }
413
414         if ( ber->ber_buf == NULL ) {
415                 return( rc );
416         }
417
418         /* make a new ldap message */
419         if ( (new = (LDAPMessage *) calloc( 1, sizeof(LDAPMessage) ))
420             == NULL ) {
421                 ld->ld_errno = LDAP_NO_MEMORY;
422                 return( -1 );
423         }
424         new->lm_msgid = (int)id;
425         new->lm_msgtype = tag;
426         new->lm_ber = ber_dup( ber );
427         ber_clear( ber, 0 ); /* don't kill buffer */
428
429 #ifndef LDAP_NOCACHE
430                 if ( ld->ld_cache != NULL ) {
431                         ldap_add_result_to_cache( ld, new );
432                 }
433 #endif /* LDAP_NOCACHE */
434
435         /* is this the one we're looking for? */
436         if ( msgid == LDAP_RES_ANY || id == msgid ) {
437                 if ( all == 0
438                     || (new->lm_msgtype != LDAP_RES_SEARCH_RESULT
439                     && new->lm_msgtype != LDAP_RES_SEARCH_ENTRY) ) {
440                         *result = new;
441                         ld->ld_errno = LDAP_SUCCESS;
442                         return( tag );
443                 } else if ( new->lm_msgtype == LDAP_RES_SEARCH_RESULT) {
444                         foundit = 1;    /* return the chain later */
445                 }
446         }
447
448         /* 
449          * if not, we must add it to the list of responses.  if
450          * the msgid is already there, it must be part of an existing
451          * search response.
452          */
453
454         prev = NULLMSG;
455         for ( l = ld->ld_responses; l != NULLMSG; l = l->lm_next ) {
456                 if ( l->lm_msgid == new->lm_msgid )
457                         break;
458                 prev = l;
459         }
460
461         /* not part of an existing search response */
462         if ( l == NULLMSG ) {
463                 if ( foundit ) {
464                         *result = new;
465                         ld->ld_errno = LDAP_SUCCESS;
466                         return( tag );
467                 }
468
469                 new->lm_next = ld->ld_responses;
470                 ld->ld_responses = new;
471                 return( -2 );   /* continue looking */
472         }
473
474         Debug( LDAP_DEBUG_TRACE, "adding response id %d type %d:\n",
475             new->lm_msgid, new->lm_msgtype, 0 );
476
477         /* part of a search response - add to end of list of entries */
478         for ( tmp = l; tmp->lm_chain != NULLMSG &&
479             tmp->lm_chain->lm_msgtype == LDAP_RES_SEARCH_ENTRY;
480             tmp = tmp->lm_chain )
481                 ;       /* NULL */
482         tmp->lm_chain = new;
483
484         /* return the whole chain if that's what we were looking for */
485         if ( foundit ) {
486                 if ( prev == NULLMSG )
487                         ld->ld_responses = l->lm_next;
488                 else
489                         prev->lm_next = l->lm_next;
490                 *result = l;
491                 ld->ld_errno = LDAP_SUCCESS;
492 #ifdef LDAP_WORLD_P16
493                 /*
494                  * XXX questionable fix; see text for [P16] on
495                  * http://www.critical-angle.com/ldapworld/patch/
496                  *
497                  * inclusion of this patch causes searchs to hang on
498                  * multiple platforms
499                  */
500                 return( l->lm_msgtype );
501 #else   /* LDAP_WORLD_P16 */
502                 return( tag );
503 #endif  /* !LDAP_WORLD_P16 */
504         }
505
506         return( -2 );   /* continue looking */
507 }
508
509
510 static unsigned long
511 build_result_ber( LDAP *ld, BerElement *ber, LDAPRequest *lr )
512 {
513         unsigned long   len;
514         long            along;
515
516         ber_init_w_nullc( ber, 0 );
517         ldap_set_ber_options( ld, ber );
518         if ( ber_printf( ber, "{it{ess}}", lr->lr_msgid,
519             (unsigned long) lr->lr_res_msgtype, lr->lr_res_errno,
520             lr->lr_res_matched ? lr->lr_res_matched : "",
521             lr->lr_res_error ? lr->lr_res_error : "" ) == -1 ) {
522                 return( LBER_ERROR );
523         }
524
525         ber_reset( ber, 1 );
526         if ( ber_skip_tag( ber, &len ) == LBER_ERROR ) {
527                 return( LBER_ERROR );
528         }
529
530         if ( ber_get_int( ber, &along ) == LBER_ERROR ) {
531                 return( LBER_ERROR );
532         }
533
534         return( ber_peek_tag( ber, &len ));
535 }
536
537
538 static void
539 merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr )
540 {
541 /*
542  * Merge error information in "lr" with "parentr" error code and string.
543  */
544         if ( lr->lr_res_errno == LDAP_PARTIAL_RESULTS ) {
545                 parentr->lr_res_errno = lr->lr_res_errno;
546                 if ( lr->lr_res_error != NULL ) {
547                         (void)ldap_append_referral( ld, &parentr->lr_res_error,
548                             lr->lr_res_error );
549                 }
550         } else if ( lr->lr_res_errno != LDAP_SUCCESS &&
551             parentr->lr_res_errno == LDAP_SUCCESS ) {
552                 parentr->lr_res_errno = lr->lr_res_errno;
553                 if ( parentr->lr_res_error != NULL ) {
554                         free( parentr->lr_res_error );
555                 }
556                 parentr->lr_res_error = lr->lr_res_error;
557                 lr->lr_res_error = NULL;
558                 if ( LDAP_NAME_ERROR( lr->lr_res_errno )) {
559                         if ( parentr->lr_res_matched != NULL ) {
560                                 free( parentr->lr_res_matched );
561                         }
562                         parentr->lr_res_matched = lr->lr_res_matched;
563                         lr->lr_res_matched = NULL;
564                 }
565         }
566
567         Debug( LDAP_DEBUG_TRACE, "merged parent (id %d) error info:  ",
568             parentr->lr_msgid, 0, 0 );
569         Debug( LDAP_DEBUG_TRACE, "result errno %d, error <%s>, matched <%s>\n",
570             parentr->lr_res_errno, parentr->lr_res_error ?
571             parentr->lr_res_error : "", parentr->lr_res_matched ?
572             parentr->lr_res_matched : "" );
573 }
574
575
576
577 int
578 ldap_msgtype( LDAPMessage *lm )
579 {
580         assert( lm != NULL );
581         return ( lm == NULL ) ? lm->lm_msgtype : -1;
582 }
583
584
585 int
586 ldap_msgid( LDAPMessage *lm )
587 {
588         assert( lm != NULL );
589
590         return ( lm == NULL ) ? lm->lm_msgid : -1;
591 }
592
593
594 int
595 ldap_msgfree( LDAPMessage *lm )
596 {
597         LDAPMessage     *next;
598         int             type = 0;
599
600         assert( lm != NULL );
601
602         Debug( LDAP_DEBUG_TRACE, "ldap_msgfree\n", 0, 0, 0 );
603
604         for ( ; lm != NULLMSG; lm = next ) {
605                 next = lm->lm_chain;
606                 type = lm->lm_msgtype;
607                 ber_free( lm->lm_ber, 1 );
608                 free( (char *) lm );
609         }
610
611         return( type );
612 }
613
614 /*
615  * ldap_msgdelete - delete a message.  It returns:
616  *      0       if the entire message was deleted
617  *      -1      if the message was not found, or only part of it was found
618  */
619 int
620 ldap_msgdelete( LDAP *ld, int msgid )
621 {
622         LDAPMessage     *lm, *prev;
623
624         assert( ld != NULL );
625
626         Debug( LDAP_DEBUG_TRACE, "ldap_msgdelete\n", 0, 0, 0 );
627
628         prev = NULLMSG;
629         for ( lm = ld->ld_responses; lm != NULLMSG; lm = lm->lm_next ) {
630                 if ( lm->lm_msgid == msgid )
631                         break;
632                 prev = lm;
633         }
634
635         if ( lm == NULLMSG )
636                 return( -1 );
637
638         if ( prev == NULLMSG )
639                 ld->ld_responses = lm->lm_next;
640         else
641                 prev->lm_next = lm->lm_next;
642
643         if ( ldap_msgfree( lm ) == LDAP_RES_SEARCH_ENTRY )
644                 return( -1 );
645
646         return( 0 );
647 }
648
649
650 /*
651  * return 1 if message msgid is waiting to be abandoned, 0 otherwise
652  */
653 static int
654 ldap_abandoned( LDAP *ld, int msgid )
655 {
656         int     i;
657
658         if ( ld->ld_abandoned == NULL )
659                 return( 0 );
660
661         for ( i = 0; ld->ld_abandoned[i] != -1; i++ )
662                 if ( ld->ld_abandoned[i] == msgid )
663                         return( 1 );
664
665         return( 0 );
666 }
667
668
669 static int
670 ldap_mark_abandoned( LDAP *ld, int msgid )
671 {
672         int     i;
673
674         if ( ld->ld_abandoned == NULL )
675                 return( -1 );
676
677         for ( i = 0; ld->ld_abandoned[i] != -1; i++ )
678                 if ( ld->ld_abandoned[i] == msgid )
679                         break;
680
681         if ( ld->ld_abandoned[i] == -1 )
682                 return( -1 );
683
684         for ( ; ld->ld_abandoned[i] != -1; i++ ) {
685                 ld->ld_abandoned[i] = ld->ld_abandoned[i + 1];
686         }
687
688         return( 0 );
689 }
690
691
692 #ifdef LDAP_CONNECTIONLESS
693 int
694 cldap_getmsg( LDAP *ld, struct timeval *timeout, BerElement *ber )
695 {
696         int             rc;
697         unsigned long   tag, len;
698
699         if ( ! ber_pvt_sb_data_ready(&ld->ld_sb) ) {
700                 rc = ldap_select1( ld, timeout );
701                 if ( rc == -1 || rc == 0 ) {
702                         ld->ld_errno = (rc == -1 ? LDAP_SERVER_DOWN :
703                             LDAP_TIMEOUT);
704                         return( rc );
705                 }
706         }
707
708         /* get the next message */
709         if ( (tag = ber_get_next( &ld->ld_sb, &len, ber ))
710             != LDAP_TAG_MESSAGE ) {
711                 ld->ld_errno = (tag == LBER_DEFAULT ? LDAP_SERVER_DOWN :
712                     LDAP_LOCAL_ERROR);
713                 return( -1 );
714         }
715
716         return( tag );
717 }
718 #endif /* LDAP_CONNECTIONLESS */