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