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