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