]> git.sur5r.net Git - openldap/blob - servers/slapd/backend.c
First round of changes from HEAD
[openldap] / servers / slapd / backend.c
1 /* backend.c - routines for dealing with back-end databases */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
17  * All rights reserved.
18  *
19  * Redistribution and use in source and binary forms are permitted
20  * provided that this notice is preserved and that due credit is given
21  * to the University of Michigan at Ann Arbor. The name of the University
22  * may not be used to endorse or promote products derived from this
23  * software without specific prior written permission. This software
24  * is provided ``as is'' without express or implied warranty.
25  */
26
27
28 #include "portable.h"
29
30 #include <stdio.h>
31
32 #include <ac/string.h>
33 #include <ac/socket.h>
34 #include <sys/stat.h>
35
36 #include "slap.h"
37 #include "lutil.h"
38 #include "lber_pvt.h"
39
40 #include "ldap_rq.h"
41
42 #ifdef LDAP_SLAPI
43 #include "slapi/slapi.h"
44 #endif
45
46 /*
47  * If a module is configured as dynamic, its header should not
48  * get included into slapd. While this is a general rule and does
49  * not have much of an effect in UNIX, this rule should be adhered
50  * to for Windows, where dynamic object code should not be implicitly
51  * imported into slapd without appropriate __declspec(dllimport) directives.
52  */
53
54 #if SLAPD_BDB == SLAPD_MOD_STATIC
55 #include "back-bdb/external.h"
56 #endif
57 #if SLAPD_DNSSRV == SLAPD_MOD_STATIC
58 #include "back-dnssrv/external.h"
59 #endif
60 #if SLAPD_HDB == SLAPD_MOD_STATIC
61 #include "back-hdb/external.h"
62 #endif
63 #if SLAPD_LDAP == SLAPD_MOD_STATIC
64 #include "back-ldap/external.h"
65 #endif
66 #if SLAPD_LDBM == SLAPD_MOD_STATIC
67 #include "back-ldbm/external.h"
68 #endif
69 #if SLAPD_META == SLAPD_MOD_STATIC
70 #include "back-meta/external.h"
71 #endif
72 #if SLAPD_MONITOR == SLAPD_MOD_STATIC
73 #include "back-monitor/external.h"
74 #endif
75 #if SLAPD_NULL == SLAPD_MOD_STATIC
76 #include "back-null/external.h"
77 #endif
78 #if SLAPD_PASSWD == SLAPD_MOD_STATIC
79 #include "back-passwd/external.h"
80 #endif
81 #if SLAPD_PERL == SLAPD_MOD_STATIC
82 #include "back-perl/external.h"
83 #endif
84 #if SLAPD_RELAY == SLAPD_MOD_STATIC
85 #include "back-relay/external.h"
86 #endif
87 #if SLAPD_SHELL == SLAPD_MOD_STATIC
88 #include "back-shell/external.h"
89 #endif
90 #if SLAPD_TCL == SLAPD_MOD_STATIC
91 #include "back-tcl/external.h"
92 #endif
93 #if SLAPD_SQL == SLAPD_MOD_STATIC
94 #include "back-sql/external.h"
95 #endif
96 #if SLAPD_PRIVATE == SLAPD_MOD_STATIC
97 #include "private/external.h"
98 #endif
99
100 static BackendInfo binfo[] = {
101 #if SLAPD_BDB == SLAPD_MOD_STATIC
102         {"bdb", bdb_initialize},
103 #endif
104 #if SLAPD_DNSSRV == SLAPD_MOD_STATIC
105         {"dnssrv",      dnssrv_back_initialize},
106 #endif
107 #if SLAPD_HDB == SLAPD_MOD_STATIC
108         {"hdb", hdb_initialize},
109 #endif
110 #if SLAPD_LDAP == SLAPD_MOD_STATIC
111         {"ldap",        ldap_back_initialize},
112 #endif
113 #if SLAPD_LDBM == SLAPD_MOD_STATIC
114         {"ldbm",        ldbm_back_initialize},
115 #endif
116 #if SLAPD_META == SLAPD_MOD_STATIC
117         {"meta",        meta_back_initialize},
118 #endif
119 #if SLAPD_MONITOR == SLAPD_MOD_STATIC
120         {"monitor",     monitor_back_initialize},
121 #endif
122 #if SLAPD_NULL == SLAPD_MOD_STATIC
123         {"null",        null_back_initialize},
124 #endif
125 #if SLAPD_PASSWD == SLAPD_MOD_STATIC
126         {"passwd",      passwd_back_initialize},
127 #endif
128 #if SLAPD_PERL == SLAPD_MOD_STATIC
129         {"perl",        perl_back_initialize},
130 #endif
131 #if SLAPD_RELAY == SLAPD_MOD_STATIC
132         {"relay",       relay_back_initialize},
133 #endif
134 #if SLAPD_SHELL == SLAPD_MOD_STATIC
135         {"shell",       shell_back_initialize},
136 #endif
137 #if SLAPD_TCL == SLAPD_MOD_STATIC
138         {"tcl",         tcl_back_initialize},
139 #endif
140 #if SLAPD_SQL == SLAPD_MOD_STATIC
141         {"sql",         sql_back_initialize},
142 #endif
143         /* for any private backend */
144 #if SLAPD_PRIVATE == SLAPD_MOD_STATIC
145         {"private",     private_back_initialize},
146 #endif
147         {NULL}
148 };
149
150 int                     nBackendInfo = 0;
151 BackendInfo     *backendInfo = NULL;
152
153 int                     nBackendDB = 0; 
154 BackendDB       *backendDB = NULL;
155
156 ldap_pvt_thread_pool_t  syncrepl_pool;
157 int                     syncrepl_pool_max = SLAP_MAX_SYNCREPL_THREADS;
158
159 int backend_init(void)
160 {
161         int rc = -1;
162
163         ldap_pvt_thread_pool_init( &syncrepl_pool, syncrepl_pool_max, 0 );
164
165         if((nBackendInfo != 0) || (backendInfo != NULL)) {
166                 /* already initialized */
167 #ifdef NEW_LOGGING
168                 LDAP_LOG( BACKEND, ERR, 
169                         "backend_init:  backend already initialized\n", 0, 0, 0 );
170 #else
171                 Debug( LDAP_DEBUG_ANY,
172                         "backend_init: already initialized.\n", 0, 0, 0 );
173 #endif
174                 return -1;
175         }
176
177         for( ;
178                 binfo[nBackendInfo].bi_type != NULL;
179                 nBackendInfo++ )
180         {
181                 assert( binfo[nBackendInfo].bi_init );
182
183                 rc = binfo[nBackendInfo].bi_init( &binfo[nBackendInfo] );
184
185                 if(rc != 0) {
186 #ifdef NEW_LOGGING
187                         LDAP_LOG( BACKEND, INFO, 
188                                 "backend_init:  initialized for type \"%s\"\n",
189                                 binfo[nBackendInfo].bi_type, 0, 0 );
190 #else
191                         Debug( LDAP_DEBUG_ANY,
192                                 "backend_init: initialized for type \"%s\"\n",
193                                 binfo[nBackendInfo].bi_type, 0, 0 );
194 #endif
195                         /* destroy those we've already inited */
196                         for( nBackendInfo--;
197                                 nBackendInfo >= 0 ;
198                                 nBackendInfo-- )
199                         { 
200                                 if ( binfo[nBackendInfo].bi_destroy ) {
201                                         binfo[nBackendInfo].bi_destroy(
202                                                 &binfo[nBackendInfo] );
203                                 }
204                         }
205                         return rc;
206                 }
207         }
208
209         if ( nBackendInfo > 0) {
210                 backendInfo = binfo;
211                 return 0;
212         }
213
214 #ifdef SLAPD_MODULES    
215         return 0;
216 #else
217
218 #ifdef NEW_LOGGING
219         LDAP_LOG( BACKEND, ERR, "backend_init: failed\n", 0, 0, 0 );
220 #else
221         Debug( LDAP_DEBUG_ANY,
222                 "backend_init: failed\n",
223                 0, 0, 0 );
224 #endif
225
226         return rc;
227 #endif /* SLAPD_MODULES */
228 }
229
230 int backend_add(BackendInfo *aBackendInfo)
231 {
232         int rc = 0;
233
234         if ( aBackendInfo->bi_init == NULL ) {
235 #ifdef NEW_LOGGING
236                 LDAP_LOG( BACKEND, ERR, "backend_add: "
237                         "backend type \"%s\" does not have the (mandatory)init function\n",
238                         aBackendInfo->bi_type, 0, 0 );
239 #else
240                 Debug( LDAP_DEBUG_ANY, "backend_add: "
241                         "backend type \"%s\" does not have the (mandatory)init function\n",
242                         aBackendInfo->bi_type, 0, 0 );
243 #endif
244                 return -1;
245         }
246
247    if ((rc = aBackendInfo->bi_init(aBackendInfo)) != 0) {
248 #ifdef NEW_LOGGING
249                 LDAP_LOG( BACKEND, ERR, 
250                         "backend_add:  initialization for type \"%s\" failed\n",
251                         aBackendInfo->bi_type, 0, 0 );
252 #else
253                 Debug( LDAP_DEBUG_ANY,
254                         "backend_add:  initialization for type \"%s\" failed\n",
255                         aBackendInfo->bi_type, 0, 0 );
256 #endif
257                 return rc;
258    }
259
260         /* now add the backend type to the Backend Info List */
261         {
262                 BackendInfo *newBackendInfo = 0;
263
264                 /* if backendInfo == binfo no deallocation of old backendInfo */
265                 if (backendInfo == binfo) {
266                         newBackendInfo = ch_calloc(nBackendInfo + 1, sizeof(BackendInfo));
267                         AC_MEMCPY(newBackendInfo, backendInfo,
268                                 sizeof(BackendInfo) * nBackendInfo);
269                 } else {
270                         newBackendInfo = ch_realloc(backendInfo,
271                                 sizeof(BackendInfo) * (nBackendInfo + 1));
272                 }
273
274                 AC_MEMCPY(&newBackendInfo[nBackendInfo], aBackendInfo,
275                         sizeof(BackendInfo));
276                 backendInfo = newBackendInfo;
277                 nBackendInfo++;
278                 return 0;
279         }
280 }
281
282 /* startup a specific backend database */
283 int backend_startup_one(Backend *be)
284 {
285         int rc = 0;
286
287         assert(be);
288
289         be->be_pending_csn_list = (struct be_pcl *)
290                 ch_calloc( 1, sizeof( struct be_pcl ));
291         build_new_dn( &be->be_context_csn, be->be_nsuffix,
292                 (struct berval *)&slap_ldapsync_cn_bv, NULL );
293
294         LDAP_TAILQ_INIT( be->be_pending_csn_list );
295
296 #ifdef NEW_LOGGING
297         LDAP_LOG( BACKEND, DETAIL1, "backend_startup:  starting \"%s\"\n",
298                 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
299                 0, 0 );
300 #else
301         Debug( LDAP_DEBUG_TRACE,
302                 "backend_startup: starting \"%s\"\n",
303                 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
304                 0, 0 );
305 #endif
306         if ( be->bd_info->bi_db_open ) {
307                 rc = be->bd_info->bi_db_open( be );
308                 if ( rc != 0 ) {
309 #ifdef NEW_LOGGING
310                         LDAP_LOG( BACKEND, CRIT, 
311                                 "backend_startup: bi_db_open failed! (%d)\n", rc, 0, 0 );
312 #else
313                         Debug( LDAP_DEBUG_ANY,
314                                 "backend_startup: bi_db_open failed! (%d)\n",
315                                 rc, 0, 0 );
316 #endif
317                 }
318         }
319         return rc;
320 }
321
322 int backend_startup(Backend *be)
323 {
324         int i;
325         int rc = 0;
326
327         if( ! ( nBackendDB > 0 ) ) {
328                 /* no databases */
329 #ifdef NEW_LOGGING
330                 LDAP_LOG( BACKEND, INFO, 
331                         "backend_startup: %d databases to startup. \n", nBackendDB, 0, 0 );
332 #else
333                 Debug( LDAP_DEBUG_ANY,
334                         "backend_startup: %d databases to startup.\n",
335                         nBackendDB, 0, 0 );
336 #endif
337                 return 1;
338         }
339
340         if(be != NULL) {
341                 if ( be->bd_info->bi_open ) {
342                         rc = be->bd_info->bi_open( be->bd_info );
343                         if ( rc != 0 ) {
344 #ifdef NEW_LOGGING
345                                 LDAP_LOG( BACKEND, CRIT,
346                                         "backend_startup: bi_open failed!\n", 0, 0, 0 );
347 #else
348                                 Debug( LDAP_DEBUG_ANY,
349                                         "backend_startup: bi_open failed!\n",
350                                         0, 0, 0 );
351 #endif
352
353                                 return rc;
354                         }
355                 }
356
357                 return backend_startup_one( be );
358         }
359
360         /* open each backend type */
361         for( i = 0; i < nBackendInfo; i++ ) {
362                 if( backendInfo[i].bi_nDB == 0) {
363                         /* no database of this type, don't open */
364                         continue;
365                 }
366
367                 if( backendInfo[i].bi_open ) {
368                         rc = backendInfo[i].bi_open(
369                                 &backendInfo[i] );
370                         if ( rc != 0 ) {
371 #ifdef NEW_LOGGING
372                                 LDAP_LOG( BACKEND, CRIT, 
373                                         "backend_startup: bi_open %d failed!\n", i, 0, 0 );
374 #else
375                                 Debug( LDAP_DEBUG_ANY,
376                                         "backend_startup: bi_open %d failed!\n",
377                                         i, 0, 0 );
378 #endif
379                                 return rc;
380                         }
381                 }
382         }
383
384         ldap_pvt_thread_mutex_init( &syncrepl_rq.rq_mutex );
385         LDAP_STAILQ_INIT( &syncrepl_rq.task_list );
386         LDAP_STAILQ_INIT( &syncrepl_rq.run_list );
387
388         /* open each backend database */
389         for( i = 0; i < nBackendDB; i++ ) {
390                 if ( backendDB[i].be_suffix == NULL ) {
391 #ifdef NEW_LOGGING
392                         LDAP_LOG( BACKEND, CRIT, 
393                                 "backend_startup: warning, database %d (%s) "
394                                 "has no suffix\n",
395                                 i, backendDB[i].bd_info->bi_type, 0 );
396 #else
397                         Debug( LDAP_DEBUG_ANY,
398                                 "backend_startup: warning, database %d (%s) "
399                                 "has no suffix\n",
400                                 i, backendDB[i].bd_info->bi_type, 0 );
401 #endif
402                 }
403                 /* append global access controls */
404                 acl_append( &backendDB[i].be_acl, global_acl );
405
406                 rc = backend_startup_one( &backendDB[i] );
407
408                 if ( rc ) return rc;
409
410
411                 if ( !LDAP_STAILQ_EMPTY( &backendDB[i].be_syncinfo )) {
412                         syncinfo_t *si;
413
414                         if ( !( backendDB[i].be_search && backendDB[i].be_add &&
415                                 backendDB[i].be_modify && backendDB[i].be_delete )) {
416 #ifdef NEW_LOGGING
417                                 LDAP_LOG( BACKEND, CRIT, 
418                                         "backend_startup: database(%d) does not support "
419                                         "operations required for syncrepl", i, 0, 0 );
420 #else
421                                 Debug( LDAP_DEBUG_ANY,
422                                         "backend_startup: database(%d) does not support "
423                                         "operations required for syncrepl", i, 0, 0 );
424 #endif
425                                 continue;
426                         }
427
428                         LDAP_STAILQ_FOREACH( si, &backendDB[i].be_syncinfo, si_next ) {
429                                 si->si_be = &backendDB[i];
430                                 init_syncrepl( si );
431                                 ldap_pvt_thread_mutex_lock( &syncrepl_rq.rq_mutex );
432                                 ldap_pvt_runqueue_insert( &syncrepl_rq,
433                                                 si->si_interval, do_syncrepl, (void *) si );
434                                 ldap_pvt_thread_mutex_unlock( &syncrepl_rq.rq_mutex );
435                         }
436                 }
437         }
438
439         return rc;
440 }
441
442 int backend_num( Backend *be )
443 {
444         int i;
445
446         if( be == NULL ) return -1;
447
448         for( i = 0; i < nBackendDB; i++ ) {
449                 if( be == &backendDB[i] ) return i;
450         }
451         return -1;
452 }
453
454 int backend_shutdown( Backend *be )
455 {
456         int i;
457         int rc = 0;
458
459         if( be != NULL ) {
460                 /* shutdown a specific backend database */
461
462                 if ( be->bd_info->bi_nDB == 0 ) {
463                         /* no database of this type, we never opened it */
464                         return 0;
465                 }
466
467                 if ( be->bd_info->bi_db_close ) {
468                         be->bd_info->bi_db_close( be );
469                 }
470
471                 if( be->bd_info->bi_close ) {
472                         be->bd_info->bi_close( be->bd_info );
473                 }
474
475                 return 0;
476         }
477
478         /* close each backend database */
479         for( i = 0; i < nBackendDB; i++ ) {
480                 if ( backendDB[i].bd_info->bi_db_close ) {
481                         backendDB[i].bd_info->bi_db_close(
482                                 &backendDB[i] );
483                 }
484
485                 if(rc != 0) {
486 #ifdef NEW_LOGGING
487                         LDAP_LOG( BACKEND, NOTICE, 
488                                 "backend_shutdown: bi_close %s failed!\n",
489                                 backendDB[i].be_type, 0, 0 );
490 #else
491                         Debug( LDAP_DEBUG_ANY,
492                                 "backend_close: bi_close %s failed!\n",
493                                 backendDB[i].be_type, 0, 0 );
494 #endif
495                 }
496         }
497
498         /* close each backend type */
499         for( i = 0; i < nBackendInfo; i++ ) {
500                 if( backendInfo[i].bi_nDB == 0 ) {
501                         /* no database of this type */
502                         continue;
503                 }
504
505                 if( backendInfo[i].bi_close ) {
506                         backendInfo[i].bi_close(
507                                 &backendInfo[i] );
508                 }
509         }
510
511         return 0;
512 }
513
514 int backend_destroy(void)
515 {
516         int i;
517         BackendDB *bd;
518
519         ldap_pvt_thread_pool_destroy( &syncrepl_pool, 1 );
520
521         /* destroy each backend database */
522         for( i = 0, bd = backendDB; i < nBackendDB; i++, bd++ ) {
523                 if ( bd->bd_info->bi_db_destroy ) {
524                         bd->bd_info->bi_db_destroy( bd );
525                 }
526                 ber_bvarray_free( bd->be_suffix );
527                 ber_bvarray_free( bd->be_nsuffix );
528                 if ( bd->be_rootdn.bv_val ) free( bd->be_rootdn.bv_val );
529                 if ( bd->be_rootndn.bv_val ) free( bd->be_rootndn.bv_val );
530                 if ( bd->be_rootpw.bv_val ) free( bd->be_rootpw.bv_val );
531                 if ( bd->be_context_csn.bv_val ) free( bd->be_context_csn.bv_val );
532                 acl_destroy( bd->be_acl, global_acl );
533         }
534         free( backendDB );
535
536         /* destroy each backend type */
537         for( i = 0; i < nBackendInfo; i++ ) {
538                 if( backendInfo[i].bi_destroy ) {
539                         backendInfo[i].bi_destroy(
540                                 &backendInfo[i] );
541                 }
542         }
543
544 #ifdef SLAPD_MODULES
545         if (backendInfo != binfo) {
546            free(backendInfo);
547         }
548 #endif /* SLAPD_MODULES */
549
550         nBackendInfo = 0;
551         backendInfo = NULL;
552
553         return 0;
554 }
555
556 BackendInfo* backend_info(const char *type)
557 {
558         int i;
559
560         /* search for the backend type */
561         for( i = 0; i < nBackendInfo; i++ ) {
562                 if( strcasecmp(backendInfo[i].bi_type, type) == 0 ) {
563                         return &backendInfo[i];
564                 }
565         }
566
567         return NULL;
568 }
569
570
571 BackendDB *
572 backend_db_init(
573     const char  *type )
574 {
575         Backend *be;
576         BackendInfo *bi = backend_info(type);
577         int     rc = 0;
578
579         if( bi == NULL ) {
580                 fprintf( stderr, "Unrecognized database type (%s)\n", type );
581                 return NULL;
582         }
583
584         backendDB = (BackendDB *) ch_realloc(
585                         (char *) backendDB,
586                     (nBackendDB + 1) * sizeof(Backend) );
587
588         memset( &backendDB[nbackends], '\0', sizeof(Backend) );
589
590         be = &backends[nbackends++];
591
592         be->bd_info = bi;
593         be->be_def_limit = deflimit;
594         be->be_dfltaccess = global_default_access;
595
596         be->be_restrictops = global_restrictops;
597         be->be_requires = global_requires;
598         be->be_ssf_set = global_ssf_set;
599
600         be->be_context_csn.bv_len = 0;
601         be->be_context_csn.bv_val = NULL;
602         ldap_pvt_thread_mutex_init( &be->be_pcl_mutex );
603         ldap_pvt_thread_mutex_init( &be->be_context_csn_mutex );
604
605         LDAP_STAILQ_INIT( &be->be_syncinfo );
606
607         /* assign a default depth limit for alias deref */
608         be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH; 
609
610         if(bi->bi_db_init) {
611                 rc = bi->bi_db_init( be );
612         }
613
614         if(rc != 0) {
615                 fprintf( stderr, "database init failed (%s)\n", type );
616                 nbackends--;
617                 return NULL;
618         }
619
620         bi->bi_nDB++;
621         return( be );
622 }
623
624 void
625 be_db_close( void )
626 {
627         int     i;
628
629         for ( i = 0; i < nbackends; i++ ) {
630                 if ( backends[i].bd_info->bi_db_close ) {
631                         (*backends[i].bd_info->bi_db_close)( &backends[i] );
632                 }
633         }
634 }
635
636 Backend *
637 select_backend(
638         struct berval * dn,
639         int manageDSAit,
640         int noSubs )
641 {
642         int     i, j;
643         ber_len_t len, dnlen = dn->bv_len;
644         Backend *be = NULL;
645
646         for ( i = 0; i < nbackends; i++ ) {
647                 for ( j = 0; backends[i].be_nsuffix != NULL &&
648                     backends[i].be_nsuffix[j].bv_val != NULL; j++ )
649                 {
650                         if ( ( SLAP_GLUE_SUBORDINATE( &backends[i] ) )
651                                 && noSubs )
652                         {
653                                 continue;
654                         }
655
656                         len = backends[i].be_nsuffix[j].bv_len;
657
658                         if ( len > dnlen ) {
659                                 /* suffix is longer than DN */
660                                 continue;
661                         }
662                         
663                         /*
664                          * input DN is normalized, so the separator check
665                          * need not look at escaping
666                          */
667                         if ( len && len < dnlen &&
668                                 !DN_SEPARATOR( dn->bv_val[(dnlen-len)-1] ))
669                         {
670                                 continue;
671                         }
672
673                         if ( strcmp( backends[i].be_nsuffix[j].bv_val,
674                                 &dn->bv_val[dnlen-len] ) == 0 )
675                         {
676                                 if( be == NULL ) {
677                                         be = &backends[i];
678
679                                         if( manageDSAit && len == dnlen &&
680                                                 !SLAP_GLUE_SUBORDINATE( be ) ) {
681                                                 continue;
682                                         }
683                                 } else {
684                                         be = &backends[i];
685                                 }
686                                 return be;
687                         }
688                 }
689         }
690
691         return be;
692 }
693
694 int
695 be_issuffix(
696     Backend *be,
697     struct berval *bvsuffix )
698 {
699         int     i;
700
701         for ( i = 0;
702                 be->be_nsuffix != NULL && be->be_nsuffix[i].bv_val != NULL;
703                 i++ )
704         {
705                 if ( bvmatch( &be->be_nsuffix[i], bvsuffix ) ) {
706                         return( 1 );
707                 }
708         }
709
710         return( 0 );
711 }
712
713 int
714 be_isroot_dn( Backend *be, struct berval *ndn )
715 {
716         if ( !ndn->bv_len ) {
717                 return( 0 );
718         }
719
720         if ( !be->be_rootndn.bv_len ) {
721                 return( 0 );
722         }
723
724         return dn_match( &be->be_rootndn, ndn );
725 }
726
727 int
728 be_sync_update( Operation *op )
729 {
730         return ( SLAP_SYNC_SHADOW( op->o_bd ) && syncrepl_isupdate( op ) );
731 }
732
733 int
734 be_slurp_update( Operation *op )
735 {
736         return ( SLAP_SLURP_SHADOW( op->o_bd ) &&
737                 be_isupdate_dn( op->o_bd, &op->o_ndn ));
738 }
739
740 int
741 be_shadow_update( Operation *op )
742 {
743         return ( SLAP_SHADOW( op->o_bd ) &&
744                 ( syncrepl_isupdate( op ) || be_isupdate_dn( op->o_bd, &op->o_ndn )));
745 }
746
747 int
748 be_isupdate_dn( Backend *be, struct berval *ndn )
749 {
750         if ( !ndn->bv_len ) return( 0 );
751
752         if ( !be->be_update_ndn.bv_len ) return( 0 );
753
754         return dn_match( &be->be_update_ndn, ndn );
755 }
756
757 struct berval *
758 be_root_dn( Backend *be )
759 {
760         return &be->be_rootdn;
761 }
762
763 int
764 be_isroot( Operation *op )
765 {
766         return be_isroot_dn( op->o_bd, &op->o_ndn );
767 }
768
769 int
770 be_isroot_pw( Operation *op )
771 {
772         int result;
773         char *errmsg;
774
775         if ( ! be_isroot_dn( op->o_bd, &op->o_req_ndn ) ) {
776                 return 0;
777         }
778
779         if( op->o_bd->be_rootpw.bv_len == 0 ) {
780                 return 0;
781         }
782
783 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
784         ldap_pvt_thread_mutex_lock( &passwd_mutex );
785 #ifdef SLAPD_SPASSWD
786         lutil_passwd_sasl_conn = op->o_conn->c_sasl_authctx;
787 #endif
788 #endif
789
790         result = lutil_passwd( &op->o_bd->be_rootpw, &op->orb_cred, NULL, NULL );
791
792 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
793 #ifdef SLAPD_SPASSWD
794         lutil_passwd_sasl_conn = NULL;
795 #endif
796         ldap_pvt_thread_mutex_unlock( &passwd_mutex );
797 #endif
798
799         return result == 0;
800 }
801
802 int
803 be_entry_release_rw(
804         Operation *op,
805         Entry *e,
806         int rw )
807 {
808         if ( op->o_bd->be_release ) {
809                 /* free and release entry from backend */
810                 return op->o_bd->be_release( op, e, rw );
811         } else {
812                 /* free entry */
813                 entry_free( e );
814                 return 0;
815         }
816 }
817
818 int
819 backend_unbind( Operation *op, SlapReply *rs )
820 {
821         int             i;
822
823         for ( i = 0; i < nbackends; i++ ) {
824 #if defined( LDAP_SLAPI )
825                 if ( op->o_pb ) {
826                         int rc;
827                         if ( i == 0 ) slapi_int_pblock_set_operation( op->o_pb, op );
828                         slapi_pblock_set( op->o_pb, SLAPI_BACKEND, (void *)&backends[i] );
829                         rc = slapi_int_call_plugins( &backends[i],
830                                 SLAPI_PLUGIN_PRE_UNBIND_FN, (Slapi_PBlock *)op->o_pb );
831                         if ( rc < 0 ) {
832                                 /*
833                                  * A preoperation plugin failure will abort the
834                                  * entire operation.
835                                  */
836 #ifdef NEW_LOGGING
837                                 LDAP_LOG( OPERATION, INFO,
838                                         "do_bind: Unbind preoperation plugin failed\n",
839                                         0, 0, 0);
840 #else
841                                 Debug(LDAP_DEBUG_TRACE,
842                                         "do_bind: Unbind preoperation plugin failed\n",
843                                         0, 0, 0);
844 #endif
845                                 return 0;
846                         }
847                 }
848 #endif /* defined( LDAP_SLAPI ) */
849
850                 if ( backends[i].be_unbind ) {
851                         op->o_bd = &backends[i];
852                         (*backends[i].be_unbind)( op, rs );
853                 }
854
855 #if defined( LDAP_SLAPI )
856                 if ( op->o_pb != NULL && slapi_int_call_plugins( &backends[i],
857                         SLAPI_PLUGIN_POST_UNBIND_FN, (Slapi_PBlock *)op->o_pb ) < 0 )
858                 {
859 #ifdef NEW_LOGGING
860                         LDAP_LOG( OPERATION, INFO,
861                                 "do_unbind: Unbind postoperation plugins failed\n",
862                                 0, 0, 0);
863 #else
864                         Debug(LDAP_DEBUG_TRACE,
865                                 "do_unbind: Unbind postoperation plugins failed\n",
866                                 0, 0, 0);
867 #endif
868                 }
869 #endif /* defined( LDAP_SLAPI ) */
870         }
871
872         return 0;
873 }
874
875 int
876 backend_connection_init(
877         Connection   *conn )
878 {
879         int     i;
880
881         for ( i = 0; i < nbackends; i++ ) {
882                 if ( backends[i].be_connection_init ) {
883                         (*backends[i].be_connection_init)( &backends[i], conn);
884                 }
885         }
886
887         return 0;
888 }
889
890 int
891 backend_connection_destroy(
892         Connection   *conn )
893 {
894         int     i;
895
896         for ( i = 0; i < nbackends; i++ ) {
897                 if ( backends[i].be_connection_destroy ) {
898                         (*backends[i].be_connection_destroy)( &backends[i], conn);
899                 }
900         }
901
902         return 0;
903 }
904
905 static int
906 backend_check_controls(
907         Operation *op,
908         SlapReply *rs )
909 {
910         LDAPControl **ctrls = op->o_ctrls;
911         rs->sr_err = LDAP_SUCCESS;
912
913         if( ctrls ) {
914                 for( ; *ctrls != NULL ; ctrls++ ) {
915                         if( (*ctrls)->ldctl_iscritical && !ldap_charray_inlist(
916                                 op->o_bd->be_controls, (*ctrls)->ldctl_oid ) )
917                         {
918                                 rs->sr_text = "control unavailable in context";
919                                 rs->sr_err = LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
920                                 break;
921                         }
922                 }
923         }
924
925         return rs->sr_err;
926 }
927
928 int
929 backend_check_restrictions(
930         Operation *op,
931         SlapReply *rs,
932         struct berval *opdata )
933 {
934         slap_mask_t restrictops;
935         slap_mask_t requires;
936         slap_mask_t opflag;
937         slap_ssf_set_t *ssf;
938         int updateop = 0;
939         int starttls = 0;
940         int session = 0;
941
942         if( op->o_bd ) {
943                 if ( backend_check_controls( op, rs ) != LDAP_SUCCESS ) {
944                         return rs->sr_err;
945                 }
946
947                 restrictops = op->o_bd->be_restrictops;
948                 requires = op->o_bd->be_requires;
949                 ssf = &op->o_bd->be_ssf_set;
950
951         } else {
952                 restrictops = global_restrictops;
953                 requires = global_requires;
954                 ssf = &global_ssf_set;
955         }
956
957         switch( op->o_tag ) {
958         case LDAP_REQ_ADD:
959                 opflag = SLAP_RESTRICT_OP_ADD;
960                 updateop++;
961                 break;
962         case LDAP_REQ_BIND:
963                 opflag = SLAP_RESTRICT_OP_BIND;
964                 session++;
965                 break;
966         case LDAP_REQ_COMPARE:
967                 opflag = SLAP_RESTRICT_OP_COMPARE;
968                 break;
969         case LDAP_REQ_DELETE:
970                 updateop++;
971                 opflag = SLAP_RESTRICT_OP_DELETE;
972                 break;
973         case LDAP_REQ_EXTENDED:
974                 opflag = SLAP_RESTRICT_OP_EXTENDED;
975
976                 if( !opdata ) {
977                         /* treat unspecified as a modify */
978                         opflag = SLAP_RESTRICT_OP_MODIFY;
979                         updateop++;
980                         break;
981                 }
982
983                 if( bvmatch( opdata, &slap_EXOP_START_TLS ) ) {
984                         session++;
985                         starttls++;
986                         break;
987                 }
988
989                 if( bvmatch( opdata, &slap_EXOP_WHOAMI ) ) {
990                         break;
991                 }
992
993                 if ( bvmatch( opdata, &slap_EXOP_CANCEL ) ) {
994                         break;
995                 }
996
997                 /* treat everything else as a modify */
998                 opflag = SLAP_RESTRICT_OP_MODIFY;
999                 updateop++;
1000                 break;
1001
1002         case LDAP_REQ_MODIFY:
1003                 updateop++;
1004                 opflag = SLAP_RESTRICT_OP_MODIFY;
1005                 break;
1006         case LDAP_REQ_RENAME:
1007                 updateop++;
1008                 opflag = SLAP_RESTRICT_OP_RENAME;
1009                 break;
1010         case LDAP_REQ_SEARCH:
1011                 opflag = SLAP_RESTRICT_OP_SEARCH;
1012                 break;
1013         case LDAP_REQ_UNBIND:
1014                 session++;
1015                 opflag = 0;
1016                 break;
1017         default:
1018                 rs->sr_text = "restrict operations internal error";
1019                 rs->sr_err = LDAP_OTHER;
1020                 return rs->sr_err;
1021         }
1022
1023         if ( !starttls ) {
1024                 /* these checks don't apply to StartTLS */
1025
1026                 rs->sr_err = LDAP_CONFIDENTIALITY_REQUIRED;
1027                 if( op->o_transport_ssf < ssf->sss_transport ) {
1028                         rs->sr_text = op->o_transport_ssf
1029                                 ? "stronger transport confidentiality required"
1030                                 : "transport confidentiality required";
1031                         return rs->sr_err;
1032                 }
1033
1034                 if( op->o_tls_ssf < ssf->sss_tls ) {
1035                         rs->sr_text = op->o_tls_ssf
1036                                 ? "stronger TLS confidentiality required"
1037                                 : "TLS confidentiality required";
1038                         return rs->sr_err;
1039                 }
1040
1041
1042                 if( op->o_tag == LDAP_REQ_BIND && opdata == NULL ) {
1043                         /* simple bind specific check */
1044                         if( op->o_ssf < ssf->sss_simple_bind ) {
1045                                 rs->sr_text = op->o_ssf
1046                                         ? "stronger confidentiality required"
1047                                         : "confidentiality required";
1048                                 return rs->sr_err;
1049                         }
1050                 }
1051
1052                 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
1053                         /* these checks don't apply to SASL bind */
1054
1055                         if( op->o_sasl_ssf < ssf->sss_sasl ) {
1056                                 rs->sr_text = op->o_sasl_ssf
1057                                         ? "stronger SASL confidentiality required"
1058                                         : "SASL confidentiality required";
1059                                 return rs->sr_err;
1060                         }
1061
1062                         if( op->o_ssf < ssf->sss_ssf ) {
1063                                 rs->sr_text = op->o_ssf
1064                                         ? "stronger confidentiality required"
1065                                         : "confidentiality required";
1066                                 return rs->sr_err;
1067                         }
1068                 }
1069
1070                 if( updateop ) {
1071                         if( op->o_transport_ssf < ssf->sss_update_transport ) {
1072                                 rs->sr_text = op->o_transport_ssf
1073                                         ? "stronger transport confidentiality required for update"
1074                                         : "transport confidentiality required for update";
1075                                 return rs->sr_err;
1076                         }
1077
1078                         if( op->o_tls_ssf < ssf->sss_update_tls ) {
1079                                 rs->sr_text = op->o_tls_ssf
1080                                         ? "stronger TLS confidentiality required for update"
1081                                         : "TLS confidentiality required for update";
1082                                 return rs->sr_err;
1083                         }
1084
1085                         if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
1086                                 rs->sr_text = op->o_sasl_ssf
1087                                         ? "stronger SASL confidentiality required for update"
1088                                         : "SASL confidentiality required for update";
1089                                 return rs->sr_err;
1090                         }
1091
1092                         if( op->o_ssf < ssf->sss_update_ssf ) {
1093                                 rs->sr_text = op->o_ssf
1094                                         ? "stronger confidentiality required for update"
1095                                         : "confidentiality required for update";
1096                                 return rs->sr_err;
1097                         }
1098
1099                         if( !( global_allows & SLAP_ALLOW_UPDATE_ANON ) &&
1100                                 op->o_ndn.bv_len == 0 )
1101                         {
1102                                 rs->sr_text = "modifications require authentication";
1103                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1104                                 return rs->sr_err;
1105                         }
1106
1107 #ifdef SLAP_X_LISTENER_MOD
1108                         if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & ( op->o_ndn.bv_len > 0 ? S_IWUSR : S_IWOTH ) ) ) {
1109                                 /* no "w" mode means readonly */
1110                                 rs->sr_text = "modifications not allowed on this listener";
1111                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1112                                 return rs->sr_err;
1113                         }
1114 #endif /* SLAP_X_LISTENER_MOD */
1115                 }
1116         }
1117
1118         if ( !session ) {
1119                 /* these checks don't apply to Bind, StartTLS, or Unbind */
1120
1121                 if( requires & SLAP_REQUIRE_STRONG ) {
1122                         /* should check mechanism */
1123                         if( ( op->o_transport_ssf < ssf->sss_transport
1124                                 && op->o_authtype == LDAP_AUTH_SIMPLE )
1125                                 || op->o_dn.bv_len == 0 )
1126                         {
1127                                 rs->sr_text = "strong(er) authentication required";
1128                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1129                                 return rs->sr_err;
1130                         }
1131                 }
1132
1133                 if( requires & SLAP_REQUIRE_SASL ) {
1134                         if( op->o_authtype != LDAP_AUTH_SASL || op->o_dn.bv_len == 0 ) {
1135                                 rs->sr_text = "SASL authentication required";
1136                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1137                                 return rs->sr_err;
1138                         }
1139                 }
1140                         
1141                 if( requires & SLAP_REQUIRE_AUTHC ) {
1142                         if( op->o_dn.bv_len == 0 ) {
1143                                 rs->sr_text = "authentication required";
1144                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1145                                 return rs->sr_err;
1146                         }
1147                 }
1148
1149                 if( requires & SLAP_REQUIRE_BIND ) {
1150                         int version;
1151                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1152                         version = op->o_conn->c_protocol;
1153                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1154
1155                         if( !version ) {
1156                                 /* no bind has occurred */
1157                                 rs->sr_text = "BIND required";
1158                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1159                                 return rs->sr_err;
1160                         }
1161                 }
1162
1163                 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
1164                         if( op->o_protocol < LDAP_VERSION3 ) {
1165                                 /* no bind has occurred */
1166                                 rs->sr_text = "operation restricted to LDAPv3 clients";
1167                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1168                                 return rs->sr_err;
1169                         }
1170                 }
1171
1172 #ifdef SLAP_X_LISTENER_MOD
1173                 if ( !starttls && op->o_dn.bv_len == 0 ) {
1174                         if ( op->o_conn->c_listener &&
1175                                 !( op->o_conn->c_listener->sl_perms & S_IXOTH ))
1176                 {
1177                                 /* no "x" mode means bind required */
1178                                 rs->sr_text = "bind required on this listener";
1179                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1180                                 return rs->sr_err;
1181                         }
1182                 }
1183
1184                 if ( !starttls && !updateop ) {
1185                         if ( op->o_conn->c_listener &&
1186                                 !( op->o_conn->c_listener->sl_perms &
1187                                         ( op->o_dn.bv_len > 0 ? S_IRUSR : S_IROTH )))
1188                         {
1189                                 /* no "r" mode means no read */
1190                                 rs->sr_text = "read not allowed on this listener";
1191                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1192                                 return rs->sr_err;
1193                         }
1194                 }
1195 #endif /* SLAP_X_LISTENER_MOD */
1196
1197         }
1198
1199         if( restrictops & opflag ) {
1200                 if( restrictops == SLAP_RESTRICT_OP_READS ) {
1201                         rs->sr_text = "read operations restricted";
1202                 } else {
1203                         rs->sr_text = "operation restricted";
1204                 }
1205                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1206                 return rs->sr_err;
1207         }
1208
1209         rs->sr_err = LDAP_SUCCESS;
1210         return rs->sr_err;
1211 }
1212
1213 int backend_check_referrals( Operation *op, SlapReply *rs )
1214 {
1215         rs->sr_err = LDAP_SUCCESS;
1216
1217         if( op->o_bd->be_chk_referrals ) {
1218                 rs->sr_err = op->o_bd->be_chk_referrals( op, rs );
1219
1220                 if( rs->sr_err != LDAP_SUCCESS && rs->sr_err != LDAP_REFERRAL ) {
1221                         send_ldap_result( op, rs );
1222                 }
1223         }
1224
1225         return rs->sr_err;
1226 }
1227
1228 int
1229 be_entry_get_rw(
1230         Operation *op,
1231         struct berval *ndn,
1232         ObjectClass *oc,
1233         AttributeDescription *at,
1234         int rw,
1235         Entry **e )
1236 {
1237         int rc;
1238
1239         *e = NULL;
1240
1241         if (op->o_bd == NULL) {
1242                 rc = LDAP_NO_SUCH_OBJECT;
1243         } else if ( op->o_bd->be_fetch ) {
1244                 rc = ( op->o_bd->be_fetch )( op, ndn,
1245                         oc, at, rw, e );
1246         } else {
1247                 rc = LDAP_UNWILLING_TO_PERFORM;
1248         }
1249         return rc;
1250 }
1251
1252 int 
1253 backend_group(
1254         Operation *op,
1255         Entry   *target,
1256         struct berval *gr_ndn,
1257         struct berval *op_ndn,
1258         ObjectClass *group_oc,
1259         AttributeDescription *group_at )
1260 {
1261         Entry *e;
1262         Attribute *a;
1263         int rc;
1264         GroupAssertion *g;
1265         Backend *be = op->o_bd;
1266
1267         if ( op->o_abandon ) return SLAPD_ABANDON;
1268
1269         op->o_bd = select_backend( gr_ndn, 0, 0 );
1270
1271         for (g = op->o_groups; g; g=g->ga_next) {
1272                 if (g->ga_be != op->o_bd || g->ga_oc != group_oc ||
1273                         g->ga_at != group_at || g->ga_len != gr_ndn->bv_len)
1274                         continue;
1275                 if (strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0)
1276                         break;
1277         }
1278
1279         if (g) {
1280                 rc = g->ga_res;
1281                 goto done;
1282         }
1283
1284         if ( target && dn_match( &target->e_nname, gr_ndn ) ) {
1285                 e = target;
1286                 rc = 0;
1287         } else {
1288                 rc = be_entry_get_rw(op, gr_ndn, group_oc, group_at, 0, &e );
1289         }
1290         if ( e ) {
1291                 a = attr_find( e->e_attrs, group_at );
1292                 if ( a ) {
1293                         /* If the attribute is a subtype of labeledURI, treat this as
1294                          * a dynamic group ala groupOfURLs
1295                          */
1296                         if (is_at_subtype( group_at->ad_type,
1297                                 slap_schema.si_ad_labeledURI->ad_type ) )
1298                         {
1299                                 int i;
1300                                 LDAPURLDesc *ludp;
1301                                 struct berval bv, nbase;
1302                                 Filter *filter;
1303                                 Entry *user;
1304                                 Backend *b2 = op->o_bd;
1305
1306                                 if ( target && dn_match( &target->e_nname, op_ndn ) ) {
1307                                         user = target;
1308                                 } else {
1309                                         op->o_bd = select_backend( op_ndn, 0, 0 );
1310                                         rc = be_entry_get_rw(op, op_ndn, NULL, NULL, 0, &user );
1311                                 }
1312                                 
1313                                 if ( rc == 0 ) {
1314                                         rc = 1;
1315                                         for (i=0; a->a_vals[i].bv_val; i++) {
1316                                                 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1317                                                         LDAP_SUCCESS )
1318                                                 {
1319                                                         continue;
1320                                                 }
1321                                                 nbase.bv_val = NULL;
1322                                                 /* host part must be empty */
1323                                                 /* attrs and extensions parts must be empty */
1324                                                 if (( ludp->lud_host && *ludp->lud_host ) ||
1325                                                         ludp->lud_attrs || ludp->lud_exts )
1326                                                 {
1327                                                         goto loopit;
1328                                                 }
1329                                                 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1330                                                 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase,
1331                                                         op->o_tmpmemctx ) != LDAP_SUCCESS )
1332                                                 {
1333                                                         goto loopit;
1334                                                 }
1335                                                 switch(ludp->lud_scope) {
1336                                                 case LDAP_SCOPE_BASE:
1337                                                         if ( !dn_match( &nbase, op_ndn )) goto loopit;
1338                                                         break;
1339                                                 case LDAP_SCOPE_ONELEVEL:
1340                                                         dnParent(op_ndn, &bv );
1341                                                         if ( !dn_match( &nbase, &bv )) goto loopit;
1342                                                         break;
1343                                                 case LDAP_SCOPE_SUBTREE:
1344                                                         if ( !dnIsSuffix( op_ndn, &nbase )) goto loopit;
1345                                                         break;
1346 #ifdef LDAP_SCOPE_SUBORDINATE
1347                                                 case LDAP_SCOPE_SUBORDINATE:
1348                                                         if ( dn_match( &nbase, op_ndn ) &&
1349                                                                 !dnIsSuffix(op_ndn, &nbase ))
1350                                                         {
1351                                                                 goto loopit;
1352                                                         }
1353 #endif
1354                                                 }
1355                                                 filter = str2filter_x( op, ludp->lud_filter );
1356                                                 if ( filter ) {
1357                                                         if ( test_filter( NULL, user, filter ) ==
1358                                                                 LDAP_COMPARE_TRUE )
1359                                                         {
1360                                                                 rc = 0;
1361                                                         }
1362                                                         filter_free_x( op, filter );
1363                                                 }
1364 loopit:
1365                                                 ldap_free_urldesc( ludp );
1366                                                 if ( nbase.bv_val ) {
1367                                                         op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1368                                                 }
1369                                                 if ( rc == 0 ) break;
1370                                         }
1371                                         if ( user != target ) {
1372                                                 be_entry_release_r( op, user );
1373                                         }
1374                                 }
1375                                 op->o_bd = b2;
1376                         } else {
1377                                 rc = value_find_ex( group_at,
1378                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1379                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1380                                 a->a_nvals, op_ndn, op->o_tmpmemctx );
1381                         }
1382                 } else {
1383                         rc = LDAP_NO_SUCH_ATTRIBUTE;
1384                 }
1385                 if (e != target ) {
1386                         be_entry_release_r( op, e );
1387                 }
1388         } else {
1389                 rc = LDAP_NO_SUCH_OBJECT;
1390         }
1391
1392         if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
1393                 g = op->o_tmpalloc(sizeof(GroupAssertion) + gr_ndn->bv_len,
1394                         op->o_tmpmemctx);
1395                 g->ga_be = op->o_bd;
1396                 g->ga_oc = group_oc;
1397                 g->ga_at = group_at;
1398                 g->ga_res = rc;
1399                 g->ga_len = gr_ndn->bv_len;
1400                 strcpy(g->ga_ndn, gr_ndn->bv_val);
1401                 g->ga_next = op->o_groups;
1402                 op->o_groups = g;
1403         }
1404 done:
1405         op->o_bd = be;
1406         return rc;
1407 }
1408
1409 int 
1410 backend_attribute(
1411         Operation *op,
1412         Entry   *target,
1413         struct berval   *edn,
1414         AttributeDescription *entry_at,
1415         BerVarray *vals )
1416 {
1417         Entry *e;
1418         Attribute *a;
1419         int i, j, rc = LDAP_SUCCESS;
1420         AccessControlState acl_state = ACL_STATE_INIT;
1421         Backend *be = op->o_bd;
1422
1423         op->o_bd = select_backend( edn, 0, 0 );
1424
1425         if ( target && dn_match( &target->e_nname, edn ) ) {
1426                 e = target;
1427         } else {
1428                 rc = be_entry_get_rw(op, edn, NULL, entry_at, 0, &e );
1429         } 
1430
1431         if ( e ) {
1432                 a = attr_find( e->e_attrs, entry_at );
1433                 if ( a ) {
1434                         BerVarray v;
1435
1436                         if ( op->o_conn && access_allowed( op,
1437                                 e, entry_at, NULL, ACL_AUTH,
1438                                 &acl_state ) == 0 ) {
1439                                 rc = LDAP_INSUFFICIENT_ACCESS;
1440                                 goto freeit;
1441                         }
1442
1443                         for ( i=0; a->a_vals[i].bv_val; i++ ) ;
1444                         
1445                         v = op->o_tmpalloc( sizeof(struct berval) * (i+1),
1446                                 op->o_tmpmemctx );
1447                         for ( i=0,j=0; a->a_vals[i].bv_val; i++ ) {
1448                                 if ( op->o_conn && access_allowed( op,
1449                                         e, entry_at,
1450                                         &a->a_nvals[i],
1451                                         ACL_AUTH, &acl_state ) == 0 ) {
1452                                         continue;
1453                                 }
1454                                 ber_dupbv_x( &v[j],
1455                                         &a->a_nvals[i], op->o_tmpmemctx );
1456                                 if (v[j].bv_val ) j++;
1457                         }
1458                         if (j == 0) {
1459                                 op->o_tmpfree( v, op->o_tmpmemctx );
1460                                 *vals = NULL;
1461                                 rc = LDAP_INSUFFICIENT_ACCESS;
1462                         } else {
1463                                 v[j].bv_val = NULL;
1464                                 v[j].bv_len = 0;
1465                                 *vals = v;
1466                                 rc = LDAP_SUCCESS;
1467                         }
1468                 }
1469 freeit:         if (e != target ) {
1470                         be_entry_release_r( op, e );
1471                 }
1472         }
1473
1474         op->o_bd = be;
1475         return rc;
1476 }
1477
1478 Attribute *backend_operational(
1479         Operation *op,
1480         SlapReply *rs,
1481         int opattrs     )
1482 {
1483         Attribute *a = NULL, **ap = &a;
1484
1485         /*
1486          * If operational attributes (allegedly) are required, 
1487          * and the backend supports specific operational attributes, 
1488          * add them to the attribute list
1489          */
1490         if ( opattrs || ( op->ors_attrs &&
1491                 ad_inlist( slap_schema.si_ad_subschemaSubentry, op->ors_attrs )) ) {
1492                 *ap = slap_operational_subschemaSubentry( op->o_bd );
1493                 ap = &(*ap)->a_next;
1494         }
1495
1496         if ( ( opattrs || op->ors_attrs ) && op->o_bd &&
1497                 op->o_bd->be_operational != NULL )
1498         {
1499                 ( void )op->o_bd->be_operational( op, rs, opattrs, ap );
1500         }
1501
1502         return a;
1503 }
1504