]> git.sur5r.net Git - openldap/blob - servers/slapd/backend.c
1119d2ec84db5af1d0aa1a0bb3124d1f48aba468
[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_mask_t exopflag = 0;
938         slap_ssf_set_t *ssf;
939         int updateop = 0;
940         int starttls = 0;
941         int session = 0;
942
943         if( op->o_bd ) {
944                 if ( backend_check_controls( op, rs ) != LDAP_SUCCESS ) {
945                         return rs->sr_err;
946                 }
947
948                 restrictops = op->o_bd->be_restrictops;
949                 requires = op->o_bd->be_requires;
950                 ssf = &op->o_bd->be_ssf_set;
951
952         } else {
953                 restrictops = global_restrictops;
954                 requires = global_requires;
955                 ssf = &global_ssf_set;
956         }
957
958         switch( op->o_tag ) {
959         case LDAP_REQ_ADD:
960                 opflag = SLAP_RESTRICT_OP_ADD;
961                 updateop++;
962                 break;
963         case LDAP_REQ_BIND:
964                 opflag = SLAP_RESTRICT_OP_BIND;
965                 session++;
966                 break;
967         case LDAP_REQ_COMPARE:
968                 opflag = SLAP_RESTRICT_OP_COMPARE;
969                 break;
970         case LDAP_REQ_DELETE:
971                 updateop++;
972                 opflag = SLAP_RESTRICT_OP_DELETE;
973                 break;
974         case LDAP_REQ_EXTENDED:
975                 opflag = SLAP_RESTRICT_OP_EXTENDED;
976
977                 if( !opdata ) {
978                         /* treat unspecified as a modify */
979                         opflag = SLAP_RESTRICT_OP_MODIFY;
980                         updateop++;
981                         break;
982                 }
983
984                 if( bvmatch( opdata, &slap_EXOP_START_TLS ) ) {
985                         session++;
986                         starttls++;
987                         exopflag = SLAP_RESTRICT_EXOP_START_TLS;
988                         break;
989                 }
990
991                 if( bvmatch( opdata, &slap_EXOP_WHOAMI ) ) {
992                         exopflag = SLAP_RESTRICT_EXOP_WHOAMI;
993                         break;
994                 }
995
996                 if ( bvmatch( opdata, &slap_EXOP_CANCEL ) ) {
997                         exopflag = SLAP_RESTRICT_EXOP_CANCEL;
998                         break;
999                 }
1000
1001                 if ( bvmatch( opdata, &slap_EXOP_MODIFY_PASSWD ) ) {
1002                         exopflag = SLAP_RESTRICT_EXOP_MODIFY_PASSWD;
1003                         updateop++;
1004                         break;
1005                 }
1006
1007                 /* treat everything else as a modify */
1008                 opflag = SLAP_RESTRICT_OP_MODIFY;
1009                 updateop++;
1010                 break;
1011
1012         case LDAP_REQ_MODIFY:
1013                 updateop++;
1014                 opflag = SLAP_RESTRICT_OP_MODIFY;
1015                 break;
1016         case LDAP_REQ_RENAME:
1017                 updateop++;
1018                 opflag = SLAP_RESTRICT_OP_RENAME;
1019                 break;
1020         case LDAP_REQ_SEARCH:
1021                 opflag = SLAP_RESTRICT_OP_SEARCH;
1022                 break;
1023         case LDAP_REQ_UNBIND:
1024                 session++;
1025                 opflag = 0;
1026                 break;
1027         default:
1028                 rs->sr_text = "restrict operations internal error";
1029                 rs->sr_err = LDAP_OTHER;
1030                 return rs->sr_err;
1031         }
1032
1033         if ( !starttls ) {
1034                 /* these checks don't apply to StartTLS */
1035
1036                 rs->sr_err = LDAP_CONFIDENTIALITY_REQUIRED;
1037                 if( op->o_transport_ssf < ssf->sss_transport ) {
1038                         rs->sr_text = op->o_transport_ssf
1039                                 ? "stronger transport confidentiality required"
1040                                 : "transport confidentiality required";
1041                         return rs->sr_err;
1042                 }
1043
1044                 if( op->o_tls_ssf < ssf->sss_tls ) {
1045                         rs->sr_text = op->o_tls_ssf
1046                                 ? "stronger TLS confidentiality required"
1047                                 : "TLS confidentiality required";
1048                         return rs->sr_err;
1049                 }
1050
1051
1052                 if( op->o_tag == LDAP_REQ_BIND && opdata == NULL ) {
1053                         /* simple bind specific check */
1054                         if( op->o_ssf < ssf->sss_simple_bind ) {
1055                                 rs->sr_text = op->o_ssf
1056                                         ? "stronger confidentiality required"
1057                                         : "confidentiality required";
1058                                 return rs->sr_err;
1059                         }
1060                 }
1061
1062                 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
1063                         /* these checks don't apply to SASL bind */
1064
1065                         if( op->o_sasl_ssf < ssf->sss_sasl ) {
1066                                 rs->sr_text = op->o_sasl_ssf
1067                                         ? "stronger SASL confidentiality required"
1068                                         : "SASL confidentiality required";
1069                                 return rs->sr_err;
1070                         }
1071
1072                         if( op->o_ssf < ssf->sss_ssf ) {
1073                                 rs->sr_text = op->o_ssf
1074                                         ? "stronger confidentiality required"
1075                                         : "confidentiality required";
1076                                 return rs->sr_err;
1077                         }
1078                 }
1079
1080                 if( updateop ) {
1081                         if( op->o_transport_ssf < ssf->sss_update_transport ) {
1082                                 rs->sr_text = op->o_transport_ssf
1083                                         ? "stronger transport confidentiality required for update"
1084                                         : "transport confidentiality required for update";
1085                                 return rs->sr_err;
1086                         }
1087
1088                         if( op->o_tls_ssf < ssf->sss_update_tls ) {
1089                                 rs->sr_text = op->o_tls_ssf
1090                                         ? "stronger TLS confidentiality required for update"
1091                                         : "TLS confidentiality required for update";
1092                                 return rs->sr_err;
1093                         }
1094
1095                         if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
1096                                 rs->sr_text = op->o_sasl_ssf
1097                                         ? "stronger SASL confidentiality required for update"
1098                                         : "SASL confidentiality required for update";
1099                                 return rs->sr_err;
1100                         }
1101
1102                         if( op->o_ssf < ssf->sss_update_ssf ) {
1103                                 rs->sr_text = op->o_ssf
1104                                         ? "stronger confidentiality required for update"
1105                                         : "confidentiality required for update";
1106                                 return rs->sr_err;
1107                         }
1108
1109                         if( !( global_allows & SLAP_ALLOW_UPDATE_ANON ) &&
1110                                 op->o_ndn.bv_len == 0 )
1111                         {
1112                                 rs->sr_text = "modifications require authentication";
1113                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1114                                 return rs->sr_err;
1115                         }
1116
1117 #ifdef SLAP_X_LISTENER_MOD
1118                         if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & ( op->o_ndn.bv_len > 0 ? S_IWUSR : S_IWOTH ) ) ) {
1119                                 /* no "w" mode means readonly */
1120                                 rs->sr_text = "modifications not allowed on this listener";
1121                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1122                                 return rs->sr_err;
1123                         }
1124 #endif /* SLAP_X_LISTENER_MOD */
1125                 }
1126         }
1127
1128         if ( !session ) {
1129                 /* these checks don't apply to Bind, StartTLS, or Unbind */
1130
1131                 if( requires & SLAP_REQUIRE_STRONG ) {
1132                         /* should check mechanism */
1133                         if( ( op->o_transport_ssf < ssf->sss_transport
1134                                 && op->o_authtype == LDAP_AUTH_SIMPLE )
1135                                 || op->o_dn.bv_len == 0 )
1136                         {
1137                                 rs->sr_text = "strong(er) authentication required";
1138                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1139                                 return rs->sr_err;
1140                         }
1141                 }
1142
1143                 if( requires & SLAP_REQUIRE_SASL ) {
1144                         if( op->o_authtype != LDAP_AUTH_SASL || op->o_dn.bv_len == 0 ) {
1145                                 rs->sr_text = "SASL authentication required";
1146                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1147                                 return rs->sr_err;
1148                         }
1149                 }
1150                         
1151                 if( requires & SLAP_REQUIRE_AUTHC ) {
1152                         if( op->o_dn.bv_len == 0 ) {
1153                                 rs->sr_text = "authentication required";
1154                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1155                                 return rs->sr_err;
1156                         }
1157                 }
1158
1159                 if( requires & SLAP_REQUIRE_BIND ) {
1160                         int version;
1161                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1162                         version = op->o_conn->c_protocol;
1163                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1164
1165                         if( !version ) {
1166                                 /* no bind has occurred */
1167                                 rs->sr_text = "BIND required";
1168                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1169                                 return rs->sr_err;
1170                         }
1171                 }
1172
1173                 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
1174                         if( op->o_protocol < LDAP_VERSION3 ) {
1175                                 /* no bind has occurred */
1176                                 rs->sr_text = "operation restricted to LDAPv3 clients";
1177                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1178                                 return rs->sr_err;
1179                         }
1180                 }
1181
1182 #ifdef SLAP_X_LISTENER_MOD
1183                 if ( !starttls && op->o_dn.bv_len == 0 ) {
1184                         if ( op->o_conn->c_listener &&
1185                                 !( op->o_conn->c_listener->sl_perms & S_IXOTH ))
1186                 {
1187                                 /* no "x" mode means bind required */
1188                                 rs->sr_text = "bind required on this listener";
1189                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1190                                 return rs->sr_err;
1191                         }
1192                 }
1193
1194                 if ( !starttls && !updateop ) {
1195                         if ( op->o_conn->c_listener &&
1196                                 !( op->o_conn->c_listener->sl_perms &
1197                                         ( op->o_dn.bv_len > 0 ? S_IRUSR : S_IROTH )))
1198                         {
1199                                 /* no "r" mode means no read */
1200                                 rs->sr_text = "read not allowed on this listener";
1201                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1202                                 return rs->sr_err;
1203                         }
1204                 }
1205 #endif /* SLAP_X_LISTENER_MOD */
1206
1207         }
1208
1209         if( ( restrictops & opflag )
1210                         || ( exopflag && ( restrictops & exopflag ) ) ) {
1211                 if( ( restrictops & SLAP_RESTRICT_OP_MASK) == SLAP_RESTRICT_OP_READS ) {
1212                         rs->sr_text = "read operations restricted";
1213                 } else if ( restrictops & exopflag ) {
1214                         rs->sr_text = "extended operation restricted";
1215                 } else {
1216                         rs->sr_text = "operation restricted";
1217                 }
1218                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1219                 return rs->sr_err;
1220         }
1221
1222         rs->sr_err = LDAP_SUCCESS;
1223         return rs->sr_err;
1224 }
1225
1226 int backend_check_referrals( Operation *op, SlapReply *rs )
1227 {
1228         rs->sr_err = LDAP_SUCCESS;
1229
1230         if( op->o_bd->be_chk_referrals ) {
1231                 rs->sr_err = op->o_bd->be_chk_referrals( op, rs );
1232
1233                 if( rs->sr_err != LDAP_SUCCESS && rs->sr_err != LDAP_REFERRAL ) {
1234                         send_ldap_result( op, rs );
1235                 }
1236         }
1237
1238         return rs->sr_err;
1239 }
1240
1241 int
1242 be_entry_get_rw(
1243         Operation *op,
1244         struct berval *ndn,
1245         ObjectClass *oc,
1246         AttributeDescription *at,
1247         int rw,
1248         Entry **e )
1249 {
1250         int rc;
1251
1252         *e = NULL;
1253
1254         if (op->o_bd == NULL) {
1255                 rc = LDAP_NO_SUCH_OBJECT;
1256         } else if ( op->o_bd->be_fetch ) {
1257                 rc = ( op->o_bd->be_fetch )( op, ndn,
1258                         oc, at, rw, e );
1259         } else {
1260                 rc = LDAP_UNWILLING_TO_PERFORM;
1261         }
1262         return rc;
1263 }
1264
1265 int 
1266 backend_group(
1267         Operation *op,
1268         Entry   *target,
1269         struct berval *gr_ndn,
1270         struct berval *op_ndn,
1271         ObjectClass *group_oc,
1272         AttributeDescription *group_at )
1273 {
1274         Entry *e;
1275         Attribute *a;
1276         int rc;
1277         GroupAssertion *g;
1278         Backend *be = op->o_bd;
1279
1280         if ( op->o_abandon ) return SLAPD_ABANDON;
1281
1282         op->o_bd = select_backend( gr_ndn, 0, 0 );
1283
1284         for (g = op->o_groups; g; g=g->ga_next) {
1285                 if (g->ga_be != op->o_bd || g->ga_oc != group_oc ||
1286                         g->ga_at != group_at || g->ga_len != gr_ndn->bv_len)
1287                         continue;
1288                 if (strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0)
1289                         break;
1290         }
1291
1292         if (g) {
1293                 rc = g->ga_res;
1294                 goto done;
1295         }
1296
1297         if ( target && dn_match( &target->e_nname, gr_ndn ) ) {
1298                 e = target;
1299                 rc = 0;
1300         } else {
1301                 rc = be_entry_get_rw(op, gr_ndn, group_oc, group_at, 0, &e );
1302         }
1303         if ( e ) {
1304                 a = attr_find( e->e_attrs, group_at );
1305                 if ( a ) {
1306                         /* If the attribute is a subtype of labeledURI, treat this as
1307                          * a dynamic group ala groupOfURLs
1308                          */
1309                         if (is_at_subtype( group_at->ad_type,
1310                                 slap_schema.si_ad_labeledURI->ad_type ) )
1311                         {
1312                                 int i;
1313                                 LDAPURLDesc *ludp;
1314                                 struct berval bv, nbase;
1315                                 Filter *filter;
1316                                 Entry *user;
1317                                 Backend *b2 = op->o_bd;
1318
1319                                 if ( target && dn_match( &target->e_nname, op_ndn ) ) {
1320                                         user = target;
1321                                 } else {
1322                                         op->o_bd = select_backend( op_ndn, 0, 0 );
1323                                         rc = be_entry_get_rw(op, op_ndn, NULL, NULL, 0, &user );
1324                                 }
1325                                 
1326                                 if ( rc == 0 ) {
1327                                         rc = 1;
1328                                         for (i=0; a->a_vals[i].bv_val; i++) {
1329                                                 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1330                                                         LDAP_SUCCESS )
1331                                                 {
1332                                                         continue;
1333                                                 }
1334                                                 nbase.bv_val = NULL;
1335                                                 /* host part must be empty */
1336                                                 /* attrs and extensions parts must be empty */
1337                                                 if (( ludp->lud_host && *ludp->lud_host ) ||
1338                                                         ludp->lud_attrs || ludp->lud_exts )
1339                                                 {
1340                                                         goto loopit;
1341                                                 }
1342                                                 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1343                                                 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase,
1344                                                         op->o_tmpmemctx ) != LDAP_SUCCESS )
1345                                                 {
1346                                                         goto loopit;
1347                                                 }
1348                                                 switch(ludp->lud_scope) {
1349                                                 case LDAP_SCOPE_BASE:
1350                                                         if ( !dn_match( &nbase, op_ndn )) goto loopit;
1351                                                         break;
1352                                                 case LDAP_SCOPE_ONELEVEL:
1353                                                         dnParent(op_ndn, &bv );
1354                                                         if ( !dn_match( &nbase, &bv )) goto loopit;
1355                                                         break;
1356                                                 case LDAP_SCOPE_SUBTREE:
1357                                                         if ( !dnIsSuffix( op_ndn, &nbase )) goto loopit;
1358                                                         break;
1359 #ifdef LDAP_SCOPE_SUBORDINATE
1360                                                 case LDAP_SCOPE_SUBORDINATE:
1361                                                         if ( dn_match( &nbase, op_ndn ) &&
1362                                                                 !dnIsSuffix(op_ndn, &nbase ))
1363                                                         {
1364                                                                 goto loopit;
1365                                                         }
1366 #endif
1367                                                 }
1368                                                 filter = str2filter_x( op, ludp->lud_filter );
1369                                                 if ( filter ) {
1370                                                         if ( test_filter( NULL, user, filter ) ==
1371                                                                 LDAP_COMPARE_TRUE )
1372                                                         {
1373                                                                 rc = 0;
1374                                                         }
1375                                                         filter_free_x( op, filter );
1376                                                 }
1377 loopit:
1378                                                 ldap_free_urldesc( ludp );
1379                                                 if ( nbase.bv_val ) {
1380                                                         op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1381                                                 }
1382                                                 if ( rc == 0 ) break;
1383                                         }
1384                                         if ( user != target ) {
1385                                                 be_entry_release_r( op, user );
1386                                         }
1387                                 }
1388                                 op->o_bd = b2;
1389                         } else {
1390                                 rc = value_find_ex( group_at,
1391                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1392                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1393                                 a->a_nvals, op_ndn, op->o_tmpmemctx );
1394                         }
1395                 } else {
1396                         rc = LDAP_NO_SUCH_ATTRIBUTE;
1397                 }
1398                 if (e != target ) {
1399                         be_entry_release_r( op, e );
1400                 }
1401         } else {
1402                 rc = LDAP_NO_SUCH_OBJECT;
1403         }
1404
1405         if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
1406                 g = op->o_tmpalloc(sizeof(GroupAssertion) + gr_ndn->bv_len,
1407                         op->o_tmpmemctx);
1408                 g->ga_be = op->o_bd;
1409                 g->ga_oc = group_oc;
1410                 g->ga_at = group_at;
1411                 g->ga_res = rc;
1412                 g->ga_len = gr_ndn->bv_len;
1413                 strcpy(g->ga_ndn, gr_ndn->bv_val);
1414                 g->ga_next = op->o_groups;
1415                 op->o_groups = g;
1416         }
1417 done:
1418         op->o_bd = be;
1419         return rc;
1420 }
1421
1422 int 
1423 backend_attribute(
1424         Operation *op,
1425         Entry   *target,
1426         struct berval   *edn,
1427         AttributeDescription *entry_at,
1428         BerVarray *vals )
1429 {
1430         Entry *e;
1431         Attribute *a;
1432         int i, j, rc = LDAP_SUCCESS;
1433         AccessControlState acl_state = ACL_STATE_INIT;
1434         Backend *be = op->o_bd;
1435
1436         op->o_bd = select_backend( edn, 0, 0 );
1437
1438         if ( target && dn_match( &target->e_nname, edn ) ) {
1439                 e = target;
1440         } else {
1441                 rc = be_entry_get_rw(op, edn, NULL, entry_at, 0, &e );
1442         } 
1443
1444         if ( e ) {
1445                 a = attr_find( e->e_attrs, entry_at );
1446                 if ( a ) {
1447                         BerVarray v;
1448
1449                         if ( op->o_conn && access_allowed( op,
1450                                 e, entry_at, NULL, ACL_AUTH,
1451                                 &acl_state ) == 0 ) {
1452                                 rc = LDAP_INSUFFICIENT_ACCESS;
1453                                 goto freeit;
1454                         }
1455
1456                         for ( i=0; a->a_vals[i].bv_val; i++ ) ;
1457                         
1458                         v = op->o_tmpalloc( sizeof(struct berval) * (i+1),
1459                                 op->o_tmpmemctx );
1460                         for ( i=0,j=0; a->a_vals[i].bv_val; i++ ) {
1461                                 if ( op->o_conn && access_allowed( op,
1462                                         e, entry_at,
1463                                         &a->a_nvals[i],
1464                                         ACL_AUTH, &acl_state ) == 0 ) {
1465                                         continue;
1466                                 }
1467                                 ber_dupbv_x( &v[j],
1468                                         &a->a_nvals[i], op->o_tmpmemctx );
1469                                 if (v[j].bv_val ) j++;
1470                         }
1471                         if (j == 0) {
1472                                 op->o_tmpfree( v, op->o_tmpmemctx );
1473                                 *vals = NULL;
1474                                 rc = LDAP_INSUFFICIENT_ACCESS;
1475                         } else {
1476                                 v[j].bv_val = NULL;
1477                                 v[j].bv_len = 0;
1478                                 *vals = v;
1479                                 rc = LDAP_SUCCESS;
1480                         }
1481                 }
1482 freeit:         if (e != target ) {
1483                         be_entry_release_r( op, e );
1484                 }
1485         }
1486
1487         op->o_bd = be;
1488         return rc;
1489 }
1490
1491 Attribute *backend_operational(
1492         Operation *op,
1493         SlapReply *rs,
1494         int opattrs     )
1495 {
1496         Attribute *a = NULL, **ap = &a;
1497
1498         /*
1499          * If operational attributes (allegedly) are required, 
1500          * and the backend supports specific operational attributes, 
1501          * add them to the attribute list
1502          */
1503         if ( opattrs || ( op->ors_attrs &&
1504                 ad_inlist( slap_schema.si_ad_subschemaSubentry, op->ors_attrs )) ) {
1505                 *ap = slap_operational_subschemaSubentry( op->o_bd );
1506                 ap = &(*ap)->a_next;
1507         }
1508
1509         if ( ( opattrs || op->ors_attrs ) && op->o_bd &&
1510                 op->o_bd->be_operational != NULL )
1511         {
1512                 ( void )op->o_bd->be_operational( op, rs, opattrs, ap );
1513         }
1514
1515         return a;
1516 }
1517