]> git.sur5r.net Git - openldap/blob - servers/slapd/backend.c
96d51dcf8d431c29c57fa6d7d2cab4d9dc11c326
[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-2005 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
45 static void init_group_pblock( Operation *op, Entry *target,
46         Entry *e, struct berval *op_ndn, AttributeDescription *group_at );
47 static int call_group_preop_plugins( Operation *op );
48 static void call_group_postop_plugins( Operation *op );
49 #endif /* LDAP_SLAPI */
50
51 /*
52  * If a module is configured as dynamic, its header should not
53  * get included into slapd. While this is a general rule and does
54  * not have much of an effect in UNIX, this rule should be adhered
55  * to for Windows, where dynamic object code should not be implicitly
56  * imported into slapd without appropriate __declspec(dllimport) directives.
57  */
58
59 int                     nBackendInfo = 0;
60 BackendInfo             *backendInfo = NULL;
61
62 int                     nBackendDB = 0; 
63 BackendDB               *backendDB = NULL;
64
65 ldap_pvt_thread_pool_t  syncrepl_pool;
66 int                     syncrepl_pool_max = SLAP_MAX_SYNCREPL_THREADS;
67
68 int backend_init(void)
69 {
70         int rc = -1;
71
72         ldap_pvt_thread_pool_init( &syncrepl_pool, syncrepl_pool_max, 0 );
73
74         if((nBackendInfo != 0) || (backendInfo != NULL)) {
75                 /* already initialized */
76                 Debug( LDAP_DEBUG_ANY,
77                         "backend_init: already initialized.\n", 0, 0, 0 );
78                 return -1;
79         }
80
81         for( ;
82                 slap_binfo[nBackendInfo].bi_type != NULL;
83                 nBackendInfo++ )
84         {
85                 assert( slap_binfo[nBackendInfo].bi_init );
86
87                 rc = slap_binfo[nBackendInfo].bi_init( &slap_binfo[nBackendInfo] );
88
89                 if(rc != 0) {
90                         Debug( LDAP_DEBUG_ANY,
91                                 "backend_init: initialized for type \"%s\"\n",
92                                 slap_binfo[nBackendInfo].bi_type, 0, 0 );
93                         /* destroy those we've already inited */
94                         for( nBackendInfo--;
95                                 nBackendInfo >= 0 ;
96                                 nBackendInfo-- )
97                         { 
98                                 if ( slap_binfo[nBackendInfo].bi_destroy ) {
99                                         slap_binfo[nBackendInfo].bi_destroy(
100                                                 &slap_binfo[nBackendInfo] );
101                                 }
102                         }
103                         return rc;
104                 }
105         }
106
107         if ( nBackendInfo > 0) {
108                 backendInfo = slap_binfo;
109                 return 0;
110         }
111
112 #ifdef SLAPD_MODULES    
113         return 0;
114 #else
115
116         Debug( LDAP_DEBUG_ANY,
117                 "backend_init: failed\n",
118                 0, 0, 0 );
119
120         return rc;
121 #endif /* SLAPD_MODULES */
122 }
123
124 int backend_add(BackendInfo *aBackendInfo)
125 {
126         int rc = 0;
127
128         if ( aBackendInfo->bi_init == NULL ) {
129                 Debug( LDAP_DEBUG_ANY, "backend_add: "
130                         "backend type \"%s\" does not have the (mandatory)init function\n",
131                         aBackendInfo->bi_type, 0, 0 );
132                 return -1;
133         }
134
135    if ((rc = aBackendInfo->bi_init(aBackendInfo)) != 0) {
136                 Debug( LDAP_DEBUG_ANY,
137                         "backend_add:  initialization for type \"%s\" failed\n",
138                         aBackendInfo->bi_type, 0, 0 );
139                 return rc;
140    }
141
142         /* now add the backend type to the Backend Info List */
143         {
144                 BackendInfo *newBackendInfo = 0;
145
146                 /* if backendInfo == slap_binfo no deallocation of old backendInfo */
147                 if (backendInfo == slap_binfo) {
148                         newBackendInfo = ch_calloc(nBackendInfo + 1, sizeof(BackendInfo));
149                         AC_MEMCPY(newBackendInfo, backendInfo,
150                                 sizeof(BackendInfo) * nBackendInfo);
151                 } else {
152                         newBackendInfo = ch_realloc(backendInfo,
153                                 sizeof(BackendInfo) * (nBackendInfo + 1));
154                 }
155
156                 AC_MEMCPY(&newBackendInfo[nBackendInfo], aBackendInfo,
157                         sizeof(BackendInfo));
158                 backendInfo = newBackendInfo;
159                 nBackendInfo++;
160                 return 0;
161         }
162 }
163
164 /* startup a specific backend database */
165 int backend_startup_one(Backend *be)
166 {
167         int             rc = 0;
168         BackendInfo     *bi = be->bd_info;
169
170         assert(be);
171
172         be->be_pending_csn_list = (struct be_pcl *)
173                 ch_calloc( 1, sizeof( struct be_pcl ));
174
175         LDAP_TAILQ_INIT( be->be_pending_csn_list );
176
177         /* back-relay takes care of itself; so may do other */
178         if ( be->be_controls == NULL ) {
179                 if ( overlay_is_over( be ) ) {
180                         bi = ((slap_overinfo *)be->bd_info->bi_private)->oi_orig;
181                 }
182
183                 if ( bi->bi_controls ) {
184                         be->be_controls = ldap_charray_dup( bi->bi_controls );
185                 }
186         }
187
188         Debug( LDAP_DEBUG_TRACE,
189                 "backend_startup: starting \"%s\"\n",
190                 be->be_suffix ? be->be_suffix[0].bv_val : "(unknown)",
191                 0, 0 );
192         if ( be->bd_info->bi_db_open ) {
193                 rc = be->bd_info->bi_db_open( be );
194                 if ( rc != 0 ) {
195                         Debug( LDAP_DEBUG_ANY,
196                                 "backend_startup: bi_db_open failed! (%d)\n",
197                                 rc, 0, 0 );
198                 }
199         }
200
201         /* back-relay takes care of itself; so may do other */
202         bi = be->bd_info;
203         if ( overlay_is_over( be ) ) {
204                 bi = ((slap_overinfo *)be->bd_info->bi_private)->oi_orig;
205         }
206
207         if ( bi->bi_controls ) {
208                 if ( be->be_controls == NULL ) {
209                         be->be_controls = ldap_charray_dup( bi->bi_controls );
210
211                 } else {
212                         int     i;
213
214                         /* maybe not efficient, but it's startup and few dozens of controls... */
215                         for ( i = 0; bi->bi_controls[ i ]; i++ ) {
216                                 if ( !ldap_charray_inlist( be->be_controls, bi->bi_controls[ i ] ) ) {
217                                         rc = ldap_charray_add( &be->be_controls, bi->bi_controls[ i ] );
218                                         if ( rc != 0 ) {
219                                                 break;
220                                         }
221                                 }
222                         }
223                 }
224         }
225
226         return rc;
227 }
228
229 int backend_startup(Backend *be)
230 {
231         int i;
232         int rc = 0;
233
234         if( ! ( nBackendDB > 0 ) ) {
235                 /* no databases */
236                 Debug( LDAP_DEBUG_ANY,
237                         "backend_startup: %d databases to startup.\n",
238                         nBackendDB, 0, 0 );
239                 return 1;
240         }
241
242         if(be != NULL) {
243                 if ( be->bd_info->bi_open ) {
244                         rc = be->bd_info->bi_open( be->bd_info );
245                         if ( rc != 0 ) {
246                                 Debug( LDAP_DEBUG_ANY,
247                                         "backend_startup: bi_open failed!\n",
248                                         0, 0, 0 );
249
250                                 return rc;
251                         }
252                 }
253
254                 return backend_startup_one( be );
255         }
256
257         /* open frontend, if required */
258         if ( frontendDB->bd_info->bi_db_open ) {
259                 rc = frontendDB->bd_info->bi_db_open( frontendDB );
260                 if ( rc != 0 ) {
261                         Debug( LDAP_DEBUG_ANY,
262                                 "backend_startup: bi_db_open(frontend) failed! (%d)\n",
263                                 rc, 0, 0 );
264                         return rc;
265                 }
266         }
267
268         /* open each backend type */
269         for( i = 0; i < nBackendInfo; i++ ) {
270                 if( backendInfo[i].bi_nDB == 0) {
271                         /* no database of this type, don't open */
272                         continue;
273                 }
274
275                 if( backendInfo[i].bi_open ) {
276                         rc = backendInfo[i].bi_open(
277                                 &backendInfo[i] );
278                         if ( rc != 0 ) {
279                                 Debug( LDAP_DEBUG_ANY,
280                                         "backend_startup: bi_open %d failed!\n",
281                                         i, 0, 0 );
282                                 return rc;
283                         }
284                 }
285         }
286
287         ldap_pvt_thread_mutex_init( &slapd_rq.rq_mutex );
288         LDAP_STAILQ_INIT( &slapd_rq.task_list );
289         LDAP_STAILQ_INIT( &slapd_rq.run_list );
290
291         /* open each backend database */
292         for( i = 0; i < nBackendDB; i++ ) {
293                 if ( backendDB[i].be_suffix == NULL ) {
294                         Debug( LDAP_DEBUG_ANY,
295                                 "backend_startup: warning, database %d (%s) "
296                                 "has no suffix\n",
297                                 i, backendDB[i].bd_info->bi_type, 0 );
298                 }
299                 /* append global access controls */
300                 acl_append( &backendDB[i].be_acl, frontendDB->be_acl );
301
302                 rc = backend_startup_one( &backendDB[i] );
303
304                 if ( rc ) return rc;
305
306
307                 if ( backendDB[i].be_syncinfo ) {
308                         syncinfo_t *si;
309
310                         if ( !( backendDB[i].be_search && backendDB[i].be_add &&
311                                 backendDB[i].be_modify && backendDB[i].be_delete )) {
312                                 Debug( LDAP_DEBUG_ANY,
313                                         "backend_startup: database(%d) does not support "
314                                         "operations required for syncrepl", i, 0, 0 );
315                                 continue;
316                         }
317
318                         {
319                                 si = backendDB[i].be_syncinfo;
320                                 si->si_be = &backendDB[i];
321                                 init_syncrepl( si );
322                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
323                                 ldap_pvt_runqueue_insert( &slapd_rq,
324                                                 si->si_interval, do_syncrepl, (void *) si );
325                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
326                         }
327                 }
328         }
329
330         return rc;
331 }
332
333 int backend_num( Backend *be )
334 {
335         int i;
336
337         if( be == NULL ) return -1;
338
339         for( i = 0; i < nBackendDB; i++ ) {
340                 if( be == &backendDB[i] ) return i;
341         }
342         return -1;
343 }
344
345 int backend_shutdown( Backend *be )
346 {
347         int i;
348         int rc = 0;
349
350         if( be != NULL ) {
351                 /* shutdown a specific backend database */
352
353                 if ( be->bd_info->bi_nDB == 0 ) {
354                         /* no database of this type, we never opened it */
355                         return 0;
356                 }
357
358                 if ( be->bd_info->bi_db_close ) {
359                         be->bd_info->bi_db_close( be );
360                 }
361
362                 if( be->bd_info->bi_close ) {
363                         be->bd_info->bi_close( be->bd_info );
364                 }
365
366                 return 0;
367         }
368
369         /* close each backend database */
370         for( i = 0; i < nBackendDB; i++ ) {
371                 if ( backendDB[i].bd_info->bi_db_close ) {
372                         backendDB[i].bd_info->bi_db_close(
373                                 &backendDB[i] );
374                 }
375
376                 if(rc != 0) {
377                         Debug( LDAP_DEBUG_ANY,
378                                 "backend_close: bi_db_close %s failed!\n",
379                                 backendDB[i].be_type, 0, 0 );
380                 }
381         }
382
383         /* close each backend type */
384         for( i = 0; i < nBackendInfo; i++ ) {
385                 if( backendInfo[i].bi_nDB == 0 ) {
386                         /* no database of this type */
387                         continue;
388                 }
389
390                 if( backendInfo[i].bi_close ) {
391                         backendInfo[i].bi_close(
392                                 &backendInfo[i] );
393                 }
394         }
395
396         /* close frontend, if required */
397         if ( frontendDB->bd_info->bi_db_close ) {
398                 rc = frontendDB->bd_info->bi_db_close ( frontendDB );
399                 if ( rc != 0 ) {
400                         Debug( LDAP_DEBUG_ANY,
401                                 "backend_startup: bi_db_close(frontend) failed! (%d)\n",
402                                 rc, 0, 0 );
403                 }
404         }
405
406         return 0;
407 }
408
409 int backend_destroy(void)
410 {
411         int i;
412         BackendDB *bd;
413         struct slap_csn_entry *csne;
414
415         ldap_pvt_thread_pool_destroy( &syncrepl_pool, 1 );
416
417         /* destroy each backend database */
418         for( i = 0, bd = backendDB; i < nBackendDB; i++, bd++ ) {
419
420                 if ( bd->be_syncinfo ) {
421                         syncinfo_free( bd->be_syncinfo );
422                 }
423
424                 if ( bd->be_pending_csn_list ) {
425                         csne = LDAP_TAILQ_FIRST( bd->be_pending_csn_list );
426                         while ( csne ) {
427                                 struct slap_csn_entry *tmp_csne = csne;
428
429                                 LDAP_TAILQ_REMOVE( bd->be_pending_csn_list, csne, ce_csn_link );
430                                 ch_free( csne->ce_csn.bv_val );
431                                 csne = LDAP_TAILQ_NEXT( csne, ce_csn_link );
432                                 ch_free( tmp_csne );
433                         }
434                 }
435                 
436                 if ( bd->bd_info->bi_db_destroy ) {
437                         bd->bd_info->bi_db_destroy( bd );
438                 }
439                 ber_bvarray_free( bd->be_suffix );
440                 ber_bvarray_free( bd->be_nsuffix );
441                 if ( !BER_BVISNULL( &bd->be_rootdn ) ) {
442                         free( bd->be_rootdn.bv_val );
443                 }
444                 if ( !BER_BVISNULL( &bd->be_rootndn ) ) {
445                         free( bd->be_rootndn.bv_val );
446                 }
447                 if ( !BER_BVISNULL( &bd->be_rootpw ) ) {
448                         free( bd->be_rootpw.bv_val );
449                 }
450                 acl_destroy( bd->be_acl, frontendDB->be_acl );
451                 if ( bd->be_controls ) {
452                         ldap_charray_free( bd->be_controls );
453                 }
454         }
455         free( backendDB );
456
457         /* destroy each backend type */
458         for( i = 0; i < nBackendInfo; i++ ) {
459                 if( backendInfo[i].bi_destroy ) {
460                         backendInfo[i].bi_destroy(
461                                 &backendInfo[i] );
462                 }
463         }
464
465 #ifdef SLAPD_MODULES
466         if (backendInfo != slap_binfo) {
467            free(backendInfo);
468         }
469 #endif /* SLAPD_MODULES */
470
471         nBackendInfo = 0;
472         backendInfo = NULL;
473
474         /* destroy frontend database */
475         bd = frontendDB;
476         if ( bd ) {
477                 if ( bd->bd_info->bi_db_destroy ) {
478                         bd->bd_info->bi_db_destroy( bd );
479                 }
480                 ber_bvarray_free( bd->be_suffix );
481                 ber_bvarray_free( bd->be_nsuffix );
482                 if ( !BER_BVISNULL( &bd->be_rootdn ) ) {
483                         free( bd->be_rootdn.bv_val );
484                 }
485                 if ( !BER_BVISNULL( &bd->be_rootndn ) ) {
486                         free( bd->be_rootndn.bv_val );
487                 }
488                 if ( !BER_BVISNULL( &bd->be_rootpw ) ) {
489                         free( bd->be_rootpw.bv_val );
490                 }
491                 acl_destroy( bd->be_acl, frontendDB->be_acl );
492         }
493
494         return 0;
495 }
496
497 BackendInfo* backend_info(const char *type)
498 {
499         int i;
500
501         /* search for the backend type */
502         for( i = 0; i < nBackendInfo; i++ ) {
503                 if( strcasecmp(backendInfo[i].bi_type, type) == 0 ) {
504                         return &backendInfo[i];
505                 }
506         }
507
508         return NULL;
509 }
510
511
512 BackendDB *
513 backend_db_init(
514     const char  *type )
515 {
516         Backend *be;
517         BackendInfo *bi = backend_info(type);
518         int     rc = 0;
519
520         if( bi == NULL ) {
521                 fprintf( stderr, "Unrecognized database type (%s)\n", type );
522                 return NULL;
523         }
524
525         be = backendDB;
526
527         backendDB = (BackendDB *) ch_realloc(
528                         (char *) backendDB,
529                     (nBackendDB + 1) * sizeof(Backend) );
530
531         memset( &backendDB[nbackends], '\0', sizeof(Backend) );
532
533         /* did realloc move our table? if so, fix up dependent pointers */
534         if ( be != backendDB ) {
535                 int i;
536                 for ( i=0, be=backendDB; i<nbackends; i++, be++ ) {
537                         be->be_pcl_mutexp = &be->be_pcl_mutex;
538                 }
539         }
540
541         be = &backends[nbackends++];
542
543         be->bd_info = bi;
544
545         be->be_def_limit = frontendDB->be_def_limit;
546         be->be_dfltaccess = frontendDB->be_dfltaccess;
547
548         be->be_restrictops = frontendDB->be_restrictops;
549         be->be_requires = frontendDB->be_requires;
550         be->be_ssf_set = frontendDB->be_ssf_set;
551
552         be->be_pcl_mutexp = &be->be_pcl_mutex;
553         ldap_pvt_thread_mutex_init( be->be_pcl_mutexp );
554
555         /* assign a default depth limit for alias deref */
556         be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH; 
557
558         if ( bi->bi_db_init ) {
559                 rc = bi->bi_db_init( be );
560         }
561
562         if ( rc != 0 ) {
563                 fprintf( stderr, "database init failed (%s)\n", type );
564                 nbackends--;
565                 return NULL;
566         }
567
568         bi->bi_nDB++;
569         return( be );
570 }
571
572 void
573 be_db_close( void )
574 {
575         int     i;
576
577         for ( i = 0; i < nbackends; i++ ) {
578                 if ( backends[i].bd_info->bi_db_close ) {
579                         (*backends[i].bd_info->bi_db_close)( &backends[i] );
580                 }
581         }
582
583         if ( frontendDB->bd_info->bi_db_close ) {
584                 (*frontendDB->bd_info->bi_db_close)( frontendDB );
585         }
586
587 }
588
589 Backend *
590 select_backend(
591         struct berval * dn,
592         int manageDSAit,
593         int noSubs )
594 {
595         int             i, j;
596         ber_len_t       len, dnlen = dn->bv_len;
597         Backend         *be = NULL;
598
599         for ( i = 0; i < nbackends; i++ ) {
600                 if ( backends[i].be_nsuffix == NULL ) {
601                         continue;
602                 }
603
604                 for ( j = 0; !BER_BVISNULL( &backends[i].be_nsuffix[j] ); j++ )
605                 {
606                         if ( ( SLAP_GLUE_SUBORDINATE( &backends[i] ) )
607                                 && noSubs )
608                         {
609                                 continue;
610                         }
611
612                         len = backends[i].be_nsuffix[j].bv_len;
613
614                         if ( len > dnlen ) {
615                                 /* suffix is longer than DN */
616                                 continue;
617                         }
618                         
619                         /*
620                          * input DN is normalized, so the separator check
621                          * need not look at escaping
622                          */
623                         if ( len && len < dnlen &&
624                                 !DN_SEPARATOR( dn->bv_val[(dnlen-len)-1] ))
625                         {
626                                 continue;
627                         }
628
629                         if ( strcmp( backends[i].be_nsuffix[j].bv_val,
630                                 &dn->bv_val[dnlen-len] ) == 0 )
631                         {
632                                 if( be == NULL ) {
633                                         be = &backends[i];
634
635                                         if( manageDSAit && len == dnlen &&
636                                                 !SLAP_GLUE_SUBORDINATE( be ) ) {
637                                                 continue;
638                                         }
639                                 } else {
640                                         be = &backends[i];
641                                 }
642                                 return be;
643                         }
644                 }
645         }
646
647         return be;
648 }
649
650 int
651 be_issuffix(
652     Backend *be,
653     struct berval *bvsuffix )
654 {
655         int     i;
656
657         if ( be->be_nsuffix == NULL ) {
658                 return 0;
659         }
660
661         for ( i = 0; !BER_BVISNULL( &be->be_nsuffix[i] ); i++ ) {
662                 if ( bvmatch( &be->be_nsuffix[i], bvsuffix ) ) {
663                         return 1;
664                 }
665         }
666
667         return 0;
668 }
669
670 int
671 be_isroot_dn( Backend *be, struct berval *ndn )
672 {
673         if ( BER_BVISEMPTY( ndn ) || BER_BVISEMPTY( &be->be_rootndn ) ) {
674                 return 0;
675         }
676
677         return dn_match( &be->be_rootndn, ndn );
678 }
679
680 int
681 be_slurp_update( Operation *op )
682 {
683         return ( SLAP_SLURP_SHADOW( op->o_bd ) &&
684                 be_isupdate_dn( op->o_bd, &op->o_ndn ) );
685 }
686
687 int
688 be_shadow_update( Operation *op )
689 {
690         return ( SLAP_SYNC_SHADOW( op->o_bd ) ||
691                 ( SLAP_SHADOW( op->o_bd ) && be_isupdate_dn( op->o_bd, &op->o_ndn ) ) );
692 }
693
694 int
695 be_isupdate_dn( Backend *be, struct berval *ndn )
696 {
697         if ( BER_BVISEMPTY( ndn ) || BER_BVISEMPTY( &be->be_update_ndn ) ) {
698                 return 0;
699         }
700
701         return dn_match( &be->be_update_ndn, ndn );
702 }
703
704 struct berval *
705 be_root_dn( Backend *be )
706 {
707         return &be->be_rootdn;
708 }
709
710 int
711 be_isroot( Operation *op )
712 {
713         return be_isroot_dn( op->o_bd, &op->o_ndn );
714 }
715
716 int
717 be_isroot_pw( Operation *op )
718 {
719         int result;
720
721         if ( ! be_isroot_dn( op->o_bd, &op->o_req_ndn ) ) {
722                 return 0;
723         }
724
725         if ( BER_BVISEMPTY( &op->o_bd->be_rootpw ) ) {
726                 return 0;
727         }
728
729 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
730         ldap_pvt_thread_mutex_lock( &passwd_mutex );
731 #ifdef SLAPD_SPASSWD
732         lutil_passwd_sasl_conn = op->o_conn->c_sasl_authctx;
733 #endif
734 #endif
735
736         result = lutil_passwd( &op->o_bd->be_rootpw, &op->orb_cred, NULL, NULL );
737
738 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
739 #ifdef SLAPD_SPASSWD
740         lutil_passwd_sasl_conn = NULL;
741 #endif
742         ldap_pvt_thread_mutex_unlock( &passwd_mutex );
743 #endif
744
745         return result == 0;
746 }
747
748 int
749 be_entry_release_rw(
750         Operation *op,
751         Entry *e,
752         int rw )
753 {
754         if ( op->o_bd->be_release ) {
755                 /* free and release entry from backend */
756                 return op->o_bd->be_release( op, e, rw );
757         } else {
758                 /* free entry */
759                 entry_free( e );
760                 return 0;
761         }
762 }
763
764 int
765 backend_unbind( Operation *op, SlapReply *rs )
766 {
767         int             i;
768
769         for ( i = 0; i < nbackends; i++ ) {
770 #if defined( LDAP_SLAPI )
771                 if ( op->o_pb ) {
772                         int rc;
773                         if ( i == 0 ) slapi_int_pblock_set_operation( op->o_pb, op );
774                         slapi_pblock_set( op->o_pb, SLAPI_BACKEND, (void *)&backends[i] );
775                         rc = slapi_int_call_plugins( &backends[i],
776                                 SLAPI_PLUGIN_PRE_UNBIND_FN, (Slapi_PBlock *)op->o_pb );
777                         if ( rc < 0 ) {
778                                 /*
779                                  * A preoperation plugin failure will abort the
780                                  * entire operation.
781                                  */
782                                 Debug(LDAP_DEBUG_TRACE,
783                                         "do_bind: Unbind preoperation plugin failed\n",
784                                         0, 0, 0);
785                                 return 0;
786                         }
787                 }
788 #endif /* defined( LDAP_SLAPI ) */
789
790                 if ( backends[i].be_unbind ) {
791                         op->o_bd = &backends[i];
792                         (*backends[i].be_unbind)( op, rs );
793                 }
794
795 #if defined( LDAP_SLAPI )
796                 if ( op->o_pb != NULL && slapi_int_call_plugins( &backends[i],
797                         SLAPI_PLUGIN_POST_UNBIND_FN, (Slapi_PBlock *)op->o_pb ) < 0 )
798                 {
799                         Debug(LDAP_DEBUG_TRACE,
800                                 "do_unbind: Unbind postoperation plugins failed\n",
801                                 0, 0, 0);
802                 }
803 #endif /* defined( LDAP_SLAPI ) */
804         }
805
806         return 0;
807 }
808
809 int
810 backend_connection_init(
811         Connection   *conn )
812 {
813         int     i;
814
815         for ( i = 0; i < nbackends; i++ ) {
816                 if ( backends[i].be_connection_init ) {
817                         (*backends[i].be_connection_init)( &backends[i], conn);
818                 }
819         }
820
821         return 0;
822 }
823
824 int
825 backend_connection_destroy(
826         Connection   *conn )
827 {
828         int     i;
829
830         for ( i = 0; i < nbackends; i++ ) {
831                 if ( backends[i].be_connection_destroy ) {
832                         (*backends[i].be_connection_destroy)( &backends[i], conn);
833                 }
834         }
835
836         return 0;
837 }
838
839 static int
840 backend_check_controls(
841         Operation *op,
842         SlapReply *rs )
843 {
844         LDAPControl **ctrls = op->o_ctrls;
845         rs->sr_err = LDAP_SUCCESS;
846
847         if( ctrls ) {
848                 for( ; *ctrls != NULL ; ctrls++ ) {
849                         if(
850 #ifdef SLAP_CONTROL_AVAILABILITY_KLUDGE
851                                 /* KLUDGE: ldctl_iscritical munged by controls.c:get_ctrls()
852                                  * to ensure this check is enabled/disabled appropriately.
853                                  */
854                                 (*ctrls)->ldctl_iscritical &&
855 #endif
856                                 !ldap_charray_inlist( op->o_bd->be_controls,
857                                 (*ctrls)->ldctl_oid ) )
858                         {
859                                 /* Per RFC 2251 (and LDAPBIS discussions), if the control
860                                  * is recognized and appropriate for the operation (which
861                                  * we've already verified), then the server should make
862                                  * use of the control when performing the operation.
863                                  * 
864                                  * Here we find that operation extended by the control
865                                  * is not unavailable in a particular context, hence the
866                                  * return of unwillingToPerform.
867                                  */
868                                 rs->sr_text = "control unavailable in context";
869                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
870                                 break;
871                         }
872                 }
873         }
874
875         return rs->sr_err;
876 }
877
878 int
879 backend_check_restrictions(
880         Operation *op,
881         SlapReply *rs,
882         struct berval *opdata )
883 {
884         slap_mask_t restrictops;
885         slap_mask_t requires;
886         slap_mask_t opflag;
887         slap_mask_t exopflag = 0;
888         slap_ssf_set_t *ssf;
889         int updateop = 0;
890         int starttls = 0;
891         int session = 0;
892
893         if( op->o_bd ) {
894                 if ( backend_check_controls( op, rs ) != LDAP_SUCCESS ) {
895                         return rs->sr_err;
896                 }
897
898                 restrictops = op->o_bd->be_restrictops;
899                 requires = op->o_bd->be_requires;
900                 ssf = &op->o_bd->be_ssf_set;
901
902         } else {
903                 restrictops = frontendDB->be_restrictops;
904                 requires = frontendDB->be_requires;
905                 ssf = &frontendDB->be_ssf_set;
906         }
907
908         switch( op->o_tag ) {
909         case LDAP_REQ_ADD:
910                 opflag = SLAP_RESTRICT_OP_ADD;
911                 updateop++;
912                 break;
913         case LDAP_REQ_BIND:
914                 opflag = SLAP_RESTRICT_OP_BIND;
915                 session++;
916                 break;
917         case LDAP_REQ_COMPARE:
918                 opflag = SLAP_RESTRICT_OP_COMPARE;
919                 break;
920         case LDAP_REQ_DELETE:
921                 updateop++;
922                 opflag = SLAP_RESTRICT_OP_DELETE;
923                 break;
924         case LDAP_REQ_EXTENDED:
925                 opflag = SLAP_RESTRICT_OP_EXTENDED;
926
927                 if( !opdata ) {
928                         /* treat unspecified as a modify */
929                         opflag = SLAP_RESTRICT_OP_MODIFY;
930                         updateop++;
931                         break;
932                 }
933
934                 if( bvmatch( opdata, &slap_EXOP_START_TLS ) ) {
935                         session++;
936                         starttls++;
937                         exopflag = SLAP_RESTRICT_EXOP_START_TLS;
938                         break;
939                 }
940
941                 if( bvmatch( opdata, &slap_EXOP_WHOAMI ) ) {
942                         exopflag = SLAP_RESTRICT_EXOP_WHOAMI;
943                         break;
944                 }
945
946                 if ( bvmatch( opdata, &slap_EXOP_CANCEL ) ) {
947                         exopflag = SLAP_RESTRICT_EXOP_CANCEL;
948                         break;
949                 }
950
951                 if ( bvmatch( opdata, &slap_EXOP_MODIFY_PASSWD ) ) {
952                         exopflag = SLAP_RESTRICT_EXOP_MODIFY_PASSWD;
953                         updateop++;
954                         break;
955                 }
956
957                 /* treat everything else as a modify */
958                 opflag = SLAP_RESTRICT_OP_MODIFY;
959                 updateop++;
960                 break;
961
962         case LDAP_REQ_MODIFY:
963                 updateop++;
964                 opflag = SLAP_RESTRICT_OP_MODIFY;
965                 break;
966         case LDAP_REQ_RENAME:
967                 updateop++;
968                 opflag = SLAP_RESTRICT_OP_RENAME;
969                 break;
970         case LDAP_REQ_SEARCH:
971                 opflag = SLAP_RESTRICT_OP_SEARCH;
972                 break;
973         case LDAP_REQ_UNBIND:
974                 session++;
975                 opflag = 0;
976                 break;
977         default:
978                 rs->sr_text = "restrict operations internal error";
979                 rs->sr_err = LDAP_OTHER;
980                 return rs->sr_err;
981         }
982
983         if ( !starttls ) {
984                 /* these checks don't apply to StartTLS */
985
986                 rs->sr_err = LDAP_CONFIDENTIALITY_REQUIRED;
987                 if( op->o_transport_ssf < ssf->sss_transport ) {
988                         rs->sr_text = op->o_transport_ssf
989                                 ? "stronger transport confidentiality required"
990                                 : "transport confidentiality required";
991                         return rs->sr_err;
992                 }
993
994                 if( op->o_tls_ssf < ssf->sss_tls ) {
995                         rs->sr_text = op->o_tls_ssf
996                                 ? "stronger TLS confidentiality required"
997                                 : "TLS confidentiality required";
998                         return rs->sr_err;
999                 }
1000
1001
1002                 if( op->o_tag == LDAP_REQ_BIND && opdata == NULL ) {
1003                         /* simple bind specific check */
1004                         if( op->o_ssf < ssf->sss_simple_bind ) {
1005                                 rs->sr_text = op->o_ssf
1006                                         ? "stronger confidentiality required"
1007                                         : "confidentiality required";
1008                                 return rs->sr_err;
1009                         }
1010                 }
1011
1012                 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
1013                         /* these checks don't apply to SASL bind */
1014
1015                         if( op->o_sasl_ssf < ssf->sss_sasl ) {
1016                                 rs->sr_text = op->o_sasl_ssf
1017                                         ? "stronger SASL confidentiality required"
1018                                         : "SASL confidentiality required";
1019                                 return rs->sr_err;
1020                         }
1021
1022                         if( op->o_ssf < ssf->sss_ssf ) {
1023                                 rs->sr_text = op->o_ssf
1024                                         ? "stronger confidentiality required"
1025                                         : "confidentiality required";
1026                                 return rs->sr_err;
1027                         }
1028                 }
1029
1030                 if( updateop ) {
1031                         if( op->o_transport_ssf < ssf->sss_update_transport ) {
1032                                 rs->sr_text = op->o_transport_ssf
1033                                         ? "stronger transport confidentiality required for update"
1034                                         : "transport confidentiality required for update";
1035                                 return rs->sr_err;
1036                         }
1037
1038                         if( op->o_tls_ssf < ssf->sss_update_tls ) {
1039                                 rs->sr_text = op->o_tls_ssf
1040                                         ? "stronger TLS confidentiality required for update"
1041                                         : "TLS confidentiality required for update";
1042                                 return rs->sr_err;
1043                         }
1044
1045                         if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
1046                                 rs->sr_text = op->o_sasl_ssf
1047                                         ? "stronger SASL confidentiality required for update"
1048                                         : "SASL confidentiality required for update";
1049                                 return rs->sr_err;
1050                         }
1051
1052                         if( op->o_ssf < ssf->sss_update_ssf ) {
1053                                 rs->sr_text = op->o_ssf
1054                                         ? "stronger confidentiality required for update"
1055                                         : "confidentiality required for update";
1056                                 return rs->sr_err;
1057                         }
1058
1059                         if( !( global_allows & SLAP_ALLOW_UPDATE_ANON ) &&
1060                                 BER_BVISEMPTY( &op->o_ndn ) )
1061                         {
1062                                 rs->sr_text = "modifications require authentication";
1063                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1064                                 return rs->sr_err;
1065                         }
1066
1067 #ifdef SLAP_X_LISTENER_MOD
1068                         if ( op->o_conn->c_listener && ! ( op->o_conn->c_listener->sl_perms & ( !BER_BVISEMPTY( &op->o_ndn ) ? S_IWUSR : S_IWOTH ) ) ) {
1069                                 /* no "w" mode means readonly */
1070                                 rs->sr_text = "modifications not allowed on this listener";
1071                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1072                                 return rs->sr_err;
1073                         }
1074 #endif /* SLAP_X_LISTENER_MOD */
1075                 }
1076         }
1077
1078         if ( !session ) {
1079                 /* these checks don't apply to Bind, StartTLS, or Unbind */
1080
1081                 if( requires & SLAP_REQUIRE_STRONG ) {
1082                         /* should check mechanism */
1083                         if( ( op->o_transport_ssf < ssf->sss_transport
1084                                 && op->o_authtype == LDAP_AUTH_SIMPLE )
1085                                 || BER_BVISEMPTY( &op->o_dn ) )
1086                         {
1087                                 rs->sr_text = "strong(er) authentication required";
1088                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1089                                 return rs->sr_err;
1090                         }
1091                 }
1092
1093                 if( requires & SLAP_REQUIRE_SASL ) {
1094                         if( op->o_authtype != LDAP_AUTH_SASL || BER_BVISEMPTY( &op->o_dn ) ) {
1095                                 rs->sr_text = "SASL authentication required";
1096                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1097                                 return rs->sr_err;
1098                         }
1099                 }
1100                         
1101                 if( requires & SLAP_REQUIRE_AUTHC ) {
1102                         if( BER_BVISEMPTY( &op->o_dn ) ) {
1103                                 rs->sr_text = "authentication required";
1104                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1105                                 return rs->sr_err;
1106                         }
1107                 }
1108
1109                 if( requires & SLAP_REQUIRE_BIND ) {
1110                         int version;
1111                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
1112                         version = op->o_conn->c_protocol;
1113                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
1114
1115                         if( !version ) {
1116                                 /* no bind has occurred */
1117                                 rs->sr_text = "BIND required";
1118                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1119                                 return rs->sr_err;
1120                         }
1121                 }
1122
1123                 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
1124                         if( op->o_protocol < LDAP_VERSION3 ) {
1125                                 /* no bind has occurred */
1126                                 rs->sr_text = "operation restricted to LDAPv3 clients";
1127                                 rs->sr_err = LDAP_OPERATIONS_ERROR;
1128                                 return rs->sr_err;
1129                         }
1130                 }
1131
1132 #ifdef SLAP_X_LISTENER_MOD
1133                 if ( !starttls && BER_BVISEMPTY( &op->o_dn ) ) {
1134                         if ( op->o_conn->c_listener &&
1135                                 !( op->o_conn->c_listener->sl_perms & S_IXOTH ))
1136                 {
1137                                 /* no "x" mode means bind required */
1138                                 rs->sr_text = "bind required on this listener";
1139                                 rs->sr_err = LDAP_STRONG_AUTH_REQUIRED;
1140                                 return rs->sr_err;
1141                         }
1142                 }
1143
1144                 if ( !starttls && !updateop ) {
1145                         if ( op->o_conn->c_listener &&
1146                                 !( op->o_conn->c_listener->sl_perms &
1147                                         ( !BER_BVISEMPTY( &op->o_dn ) ? S_IRUSR : S_IROTH )))
1148                         {
1149                                 /* no "r" mode means no read */
1150                                 rs->sr_text = "read not allowed on this listener";
1151                                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1152                                 return rs->sr_err;
1153                         }
1154                 }
1155 #endif /* SLAP_X_LISTENER_MOD */
1156
1157         }
1158
1159         if( ( restrictops & opflag )
1160                         || ( exopflag && ( restrictops & exopflag ) ) ) {
1161                 if( ( restrictops & SLAP_RESTRICT_OP_MASK) == SLAP_RESTRICT_OP_READS ) {
1162                         rs->sr_text = "read operations restricted";
1163                 } else if ( restrictops & exopflag ) {
1164                         rs->sr_text = "extended operation restricted";
1165                 } else {
1166                         rs->sr_text = "operation restricted";
1167                 }
1168                 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
1169                 return rs->sr_err;
1170         }
1171
1172         rs->sr_err = LDAP_SUCCESS;
1173         return rs->sr_err;
1174 }
1175
1176 int backend_check_referrals( Operation *op, SlapReply *rs )
1177 {
1178         rs->sr_err = LDAP_SUCCESS;
1179
1180         if( op->o_bd->be_chk_referrals ) {
1181                 rs->sr_err = op->o_bd->be_chk_referrals( op, rs );
1182
1183                 if( rs->sr_err != LDAP_SUCCESS && rs->sr_err != LDAP_REFERRAL ) {
1184                         send_ldap_result( op, rs );
1185                 }
1186         }
1187
1188         return rs->sr_err;
1189 }
1190
1191 int
1192 be_entry_get_rw(
1193         Operation *op,
1194         struct berval *ndn,
1195         ObjectClass *oc,
1196         AttributeDescription *at,
1197         int rw,
1198         Entry **e )
1199 {
1200         int rc;
1201
1202         *e = NULL;
1203
1204         if (op->o_bd == NULL) {
1205                 rc = LDAP_NO_SUCH_OBJECT;
1206         } else if ( op->o_bd->be_fetch ) {
1207                 rc = ( op->o_bd->be_fetch )( op, ndn,
1208                         oc, at, rw, e );
1209         } else {
1210                 rc = LDAP_UNWILLING_TO_PERFORM;
1211         }
1212         return rc;
1213 }
1214
1215 int 
1216 backend_group(
1217         Operation *op,
1218         Entry   *target,
1219         struct berval *gr_ndn,
1220         struct berval *op_ndn,
1221         ObjectClass *group_oc,
1222         AttributeDescription *group_at )
1223 {
1224         Entry *e;
1225         Attribute *a;
1226         int rc;
1227         GroupAssertion *g;
1228         Backend *be = op->o_bd;
1229
1230         if ( op->o_abandon ) return SLAPD_ABANDON;
1231
1232         op->o_bd = select_backend( gr_ndn, 0, 0 );
1233
1234         for ( g = op->o_groups; g; g = g->ga_next ) {
1235                 if ( g->ga_be != op->o_bd || g->ga_oc != group_oc ||
1236                         g->ga_at != group_at || g->ga_len != gr_ndn->bv_len )
1237                 {
1238                         continue;
1239                 }
1240                 if ( strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0 ) {
1241                         break;
1242                 }
1243         }
1244
1245         if ( g ) {
1246                 rc = g->ga_res;
1247                 goto done;
1248         }
1249
1250         if ( target && dn_match( &target->e_nname, gr_ndn ) ) {
1251                 e = target;
1252                 rc = 0;
1253         } else {
1254                 rc = be_entry_get_rw( op, gr_ndn, group_oc, group_at, 0, &e );
1255         }
1256         if ( e ) {
1257 #ifdef LDAP_SLAPI
1258                 if ( op->o_pb != NULL ) {
1259                         init_group_pblock( op, target, e, op_ndn, group_at );
1260
1261                         rc = call_group_preop_plugins( op );
1262                         if ( rc == LDAP_SUCCESS ) {
1263                                 goto done;
1264                         }
1265                 }
1266 #endif /* LDAP_SLAPI */
1267
1268                 a = attr_find( e->e_attrs, group_at );
1269                 if ( a ) {
1270                         /* If the attribute is a subtype of labeledURI, treat this as
1271                          * a dynamic group ala groupOfURLs
1272                          */
1273                         if (is_at_subtype( group_at->ad_type,
1274                                 slap_schema.si_ad_labeledURI->ad_type ) )
1275                         {
1276                                 int i;
1277                                 LDAPURLDesc *ludp;
1278                                 struct berval bv, nbase;
1279                                 Filter *filter;
1280                                 Entry *user;
1281                                 Backend *b2 = op->o_bd;
1282
1283                                 if ( target && dn_match( &target->e_nname, op_ndn ) ) {
1284                                         user = target;
1285                                 } else {
1286                                         op->o_bd = select_backend( op_ndn, 0, 0 );
1287                                         rc = be_entry_get_rw(op, op_ndn, NULL, NULL, 0, &user );
1288                                 }
1289                                 
1290                                 if ( rc == 0 ) {
1291                                         rc = 1;
1292                                         for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) {
1293                                                 if ( ldap_url_parse( a->a_vals[i].bv_val, &ludp ) !=
1294                                                         LDAP_URL_SUCCESS )
1295                                                 {
1296                                                         continue;
1297                                                 }
1298                                                 BER_BVZERO( &nbase );
1299                                                 /* host part must be empty */
1300                                                 /* attrs and extensions parts must be empty */
1301                                                 if ( ( ludp->lud_host && *ludp->lud_host ) ||
1302                                                         ludp->lud_attrs || ludp->lud_exts )
1303                                                 {
1304                                                         goto loopit;
1305                                                 }
1306                                                 ber_str2bv( ludp->lud_dn, 0, 0, &bv );
1307                                                 if ( dnNormalize( 0, NULL, NULL, &bv, &nbase,
1308                                                         op->o_tmpmemctx ) != LDAP_SUCCESS )
1309                                                 {
1310                                                         goto loopit;
1311                                                 }
1312                                                 switch ( ludp->lud_scope ) {
1313                                                 case LDAP_SCOPE_BASE:
1314                                                         if ( !dn_match( &nbase, op_ndn ) ) {
1315                                                                 goto loopit;
1316                                                         }
1317                                                         break;
1318                                                 case LDAP_SCOPE_ONELEVEL:
1319                                                         dnParent( op_ndn, &bv );
1320                                                         if ( !dn_match( &nbase, &bv ) ) {
1321                                                                 goto loopit;
1322                                                         }
1323                                                         break;
1324                                                 case LDAP_SCOPE_SUBTREE:
1325                                                         if ( !dnIsSuffix( op_ndn, &nbase ) ) {
1326                                                                 goto loopit;
1327                                                         }
1328                                                         break;
1329 #ifdef LDAP_SCOPE_SUBORDINATE
1330                                                 case LDAP_SCOPE_SUBORDINATE:
1331                                                         if ( dn_match( &nbase, op_ndn ) ||
1332                                                                 !dnIsSuffix( op_ndn, &nbase ) )
1333                                                         {
1334                                                                 goto loopit;
1335                                                         }
1336 #endif
1337                                                 }
1338                                                 filter = str2filter_x( op, ludp->lud_filter );
1339                                                 if ( filter ) {
1340                                                         if ( test_filter( NULL, user, filter ) ==
1341                                                                 LDAP_COMPARE_TRUE )
1342                                                         {
1343                                                                 rc = 0;
1344                                                         }
1345                                                         filter_free_x( op, filter );
1346                                                 }
1347 loopit:
1348                                                 ldap_free_urldesc( ludp );
1349                                                 if ( !BER_BVISNULL( &nbase ) ) {
1350                                                         op->o_tmpfree( nbase.bv_val, op->o_tmpmemctx );
1351                                                 }
1352                                                 if ( rc == 0 ) break;
1353                                         }
1354                                         if ( user != target ) {
1355                                                 be_entry_release_r( op, user );
1356                                         }
1357                                 }
1358                                 op->o_bd = b2;
1359                         } else {
1360                                 rc = value_find_ex( group_at,
1361                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
1362                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
1363                                 a->a_nvals, op_ndn, op->o_tmpmemctx );
1364                         }
1365                 } else {
1366                         rc = LDAP_NO_SUCH_ATTRIBUTE;
1367                 }
1368                 if (e != target ) {
1369                         be_entry_release_r( op, e );
1370                 }
1371         } else {
1372                 rc = LDAP_NO_SUCH_OBJECT;
1373         }
1374
1375 #ifdef LDAP_SLAPI
1376         if ( op->o_pb ) call_group_postop_plugins( op );
1377 #endif /* LDAP_SLAPI */
1378
1379         if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache ) {
1380                 g = op->o_tmpalloc( sizeof( GroupAssertion ) + gr_ndn->bv_len,
1381                         op->o_tmpmemctx );
1382                 g->ga_be = op->o_bd;
1383                 g->ga_oc = group_oc;
1384                 g->ga_at = group_at;
1385                 g->ga_res = rc;
1386                 g->ga_len = gr_ndn->bv_len;
1387                 strcpy( g->ga_ndn, gr_ndn->bv_val );
1388                 g->ga_next = op->o_groups;
1389                 op->o_groups = g;
1390         }
1391 done:
1392         op->o_bd = be;
1393         return rc;
1394 }
1395
1396 #ifdef LDAP_SLAPI
1397 static int backend_compute_output_attr(computed_attr_context *c, Slapi_Attr *a, Slapi_Entry *e)
1398 {
1399         BerVarray v;
1400         int rc;
1401         BerVarray *vals = (BerVarray *)c->cac_private;
1402         Operation *op = NULL;
1403         int i, j;
1404
1405         slapi_pblock_get( c->cac_pb, SLAPI_OPERATION, &op );
1406         if ( op == NULL ) {
1407                 return 1;
1408         }
1409
1410         if ( op->o_conn && access_allowed( op,
1411                 e, a->a_desc, NULL, ACL_AUTH,
1412                 &c->cac_acl_state ) == 0 ) {
1413                 return 1;
1414         }
1415
1416         for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) ;
1417                         
1418         v = op->o_tmpalloc( sizeof(struct berval) * (i+1),
1419                 op->o_tmpmemctx );
1420         for ( i = 0, j = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ ) {
1421                 if ( op->o_conn && access_allowed( op,
1422                         e, a->a_desc,
1423                         &a->a_nvals[i],
1424                         ACL_AUTH, &c->cac_acl_state ) == 0 ) {
1425                         continue;
1426                 }
1427                 ber_dupbv_x( &v[j],
1428                         &a->a_nvals[i], op->o_tmpmemctx );
1429                 if ( !BER_BVISNULL( &v[j] ) ) {
1430                         j++;
1431                 }
1432         }
1433
1434         if ( j == 0 ) {
1435                 op->o_tmpfree( v, op->o_tmpmemctx );
1436                 *vals = NULL;
1437                 rc = 1;
1438         } else {
1439                 BER_BVZERO( &v[j] );
1440                 *vals = v;
1441                 rc = 0;
1442         }
1443
1444         return rc;
1445 }
1446 #endif /* LDAP_SLAPI */
1447
1448 int 
1449 backend_attribute(
1450         Operation *op,
1451         Entry   *target,
1452         struct berval   *edn,
1453         AttributeDescription *entry_at,
1454         BerVarray *vals,
1455         slap_access_t access )
1456 {
1457         Entry                   *e = NULL;
1458         Attribute               *a = NULL;
1459         int                     freeattr = 0, i, j, rc = LDAP_SUCCESS;
1460         AccessControlState      acl_state = ACL_STATE_INIT;
1461         Backend                 *be = op->o_bd;
1462
1463         op->o_bd = select_backend( edn, 0, 0 );
1464
1465         if ( target && dn_match( &target->e_nname, edn ) ) {
1466                 e = target;
1467
1468         } else {
1469                 rc = be_entry_get_rw( op, edn, NULL, entry_at, 0, &e );
1470         } 
1471
1472         if ( e ) {
1473                 a = attr_find( e->e_attrs, entry_at );
1474                 if ( a == NULL ) {
1475                         SlapReply       rs = { 0 };
1476                         AttributeName   anlist[ 2 ];
1477
1478                         anlist[ 0 ].an_name = entry_at->ad_cname;
1479                         anlist[ 0 ].an_desc = entry_at;
1480                         BER_BVZERO( &anlist[ 1 ].an_name );
1481                         rs.sr_attrs = anlist;
1482                         
1483                         /* NOTE: backend_operational() is also called
1484                          * when returning results, so it's supposed
1485                          * to do no harm to entries */
1486                         rs.sr_entry = e;
1487                         rc = backend_operational( op, &rs );
1488                         rs.sr_entry = NULL;
1489  
1490                         if ( rc == LDAP_SUCCESS ) {
1491                                 if ( rs.sr_operational_attrs ) {
1492                                         freeattr = 1;
1493                                         a = rs.sr_operational_attrs;
1494
1495                                 } else {
1496                                         rc = LDAP_NO_SUCH_ATTRIBUTE;
1497                                 }
1498                         }
1499                 }
1500
1501                 if ( a ) {
1502                         BerVarray v;
1503
1504                         if ( op->o_conn && access > ACL_NONE && access_allowed( op,
1505                                 e, entry_at, NULL, access,
1506                                 &acl_state ) == 0 ) {
1507                                 rc = LDAP_INSUFFICIENT_ACCESS;
1508                                 goto freeit;
1509                         }
1510
1511                         for ( i = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ )
1512                                 ;
1513                         
1514                         v = op->o_tmpalloc( sizeof(struct berval) * ( i + 1 ),
1515                                 op->o_tmpmemctx );
1516                         for ( i = 0,j = 0; !BER_BVISNULL( &a->a_vals[i] ); i++ )
1517                         {
1518                                 if ( op->o_conn && access > ACL_NONE && 
1519                                                 access_allowed( op, e,
1520                                                         entry_at,
1521                                                         &a->a_nvals[i],
1522                                                         access,
1523                                                         &acl_state ) == 0 )
1524                                 {
1525                                         continue;
1526                                 }
1527                                 ber_dupbv_x( &v[j], &a->a_nvals[i],
1528                                                 op->o_tmpmemctx );
1529                                 if ( !BER_BVISNULL( &v[j] ) ) {
1530                                         j++;
1531                                 }
1532                         }
1533                         if ( j == 0 ) {
1534                                 op->o_tmpfree( v, op->o_tmpmemctx );
1535                                 *vals = NULL;
1536                                 rc = LDAP_INSUFFICIENT_ACCESS;
1537
1538                         } else {
1539                                 BER_BVZERO( &v[j] );
1540                                 *vals = v;
1541                                 rc = LDAP_SUCCESS;
1542                         }
1543                 }
1544 #ifdef LDAP_SLAPI
1545                 else if ( op->o_pb ) {
1546                         /* try any computed attributes */
1547                         computed_attr_context   ctx;
1548
1549                         slapi_int_pblock_set_operation( op->o_pb, op );
1550
1551                         ctx.cac_pb = op->o_pb;
1552                         ctx.cac_attrs = NULL;
1553                         ctx.cac_userattrs = 0;
1554                         ctx.cac_opattrs = 0;
1555                         ctx.cac_acl_state = acl_state;
1556                         ctx.cac_private = (void *)vals;
1557
1558                         rc = compute_evaluator( &ctx, entry_at->ad_cname.bv_val, e, backend_compute_output_attr );
1559                         if ( rc == 1 ) {
1560                                 rc = LDAP_INSUFFICIENT_ACCESS;
1561
1562                         } else {
1563                                 rc = LDAP_SUCCESS;
1564                         }
1565                 }
1566 #endif /* LDAP_SLAPI */
1567 freeit:         if ( e != target ) {
1568                         be_entry_release_r( op, e );
1569                 }
1570                 if ( freeattr ) {
1571                         attr_free( a );
1572                 }
1573         }
1574
1575         op->o_bd = be;
1576         return rc;
1577 }
1578
1579 #ifdef LDAP_SLAPI
1580 static int backend_compute_output_attr_access(computed_attr_context *c, Slapi_Attr *a, Slapi_Entry *e)
1581 {
1582         struct berval   *nval = (struct berval *)c->cac_private;
1583         Operation       *op = NULL;
1584
1585         slapi_pblock_get( c->cac_pb, SLAPI_OPERATION, &op );
1586         if ( op == NULL ) {
1587                 return 1;
1588         }
1589
1590         return access_allowed( op, e, a->a_desc, nval, ACL_AUTH, NULL ) == 0;
1591 }
1592 #endif /* LDAP_SLAPI */
1593
1594 int 
1595 backend_access(
1596         Operation               *op,
1597         Entry                   *target,
1598         struct berval           *edn,
1599         AttributeDescription    *entry_at,
1600         struct berval           *nval,
1601         slap_access_t           access,
1602         slap_mask_t             *mask )
1603 {
1604         Entry           *e = NULL;
1605         int             rc = LDAP_INSUFFICIENT_ACCESS;
1606         Backend         *be = op->o_bd;
1607
1608         /* pedantic */
1609         assert( op );
1610         assert( op->o_conn );
1611         assert( edn );
1612         assert( access > ACL_NONE );
1613
1614         op->o_bd = select_backend( edn, 0, 0 );
1615
1616         if ( target && dn_match( &target->e_nname, edn ) ) {
1617                 e = target;
1618
1619         } else {
1620                 rc = be_entry_get_rw( op, edn, NULL, entry_at, 0, &e );
1621         } 
1622
1623         if ( e ) {
1624                 Attribute       *a = NULL;
1625                 int             freeattr = 0;
1626
1627                 if ( entry_at == NULL ) {
1628                         entry_at = slap_schema.si_ad_entry;
1629                 }
1630
1631                 if ( entry_at == slap_schema.si_ad_entry || entry_at == slap_schema.si_ad_children )
1632                 {
1633                         if ( access_allowed_mask( op, e, entry_at,
1634                                         NULL, access, NULL, mask ) == 0 )
1635                         {
1636                                 rc = LDAP_INSUFFICIENT_ACCESS;
1637
1638                         } else {
1639                                 rc = LDAP_SUCCESS;
1640                         }
1641
1642                 } else {
1643                         a = attr_find( e->e_attrs, entry_at );
1644                         if ( a == NULL ) {
1645                                 SlapReply       rs = { 0 };
1646                                 AttributeName   anlist[ 2 ];
1647
1648                                 anlist[ 0 ].an_name = entry_at->ad_cname;
1649                                 anlist[ 0 ].an_desc = entry_at;
1650                                 BER_BVZERO( &anlist[ 1 ].an_name );
1651                                 rs.sr_attrs = anlist;
1652                         
1653                                 rs.sr_attr_flags = slap_attr_flags( rs.sr_attrs );
1654
1655                                 /* NOTE: backend_operational() is also called
1656                                  * when returning results, so it's supposed
1657                                  * to do no harm to entries */
1658                                 rs.sr_entry = e;
1659                                 rc = backend_operational( op, &rs );
1660                                 rs.sr_entry = NULL;
1661
1662                                 if ( rc == LDAP_SUCCESS ) {
1663                                         if ( rs.sr_operational_attrs ) {
1664                                                 freeattr = 1;
1665                                                 a = rs.sr_operational_attrs;
1666
1667                                         } else {
1668                                                 rc = LDAP_NO_SUCH_OBJECT;
1669                                         }
1670                                 }
1671                         }
1672
1673                         if ( a ) {
1674                                 if ( access_allowed_mask( op, e, entry_at,
1675                                                 nval, access, NULL, mask ) == 0 )
1676                                 {
1677                                         rc = LDAP_INSUFFICIENT_ACCESS;
1678                                         goto freeit;
1679                                 }
1680                                 rc = LDAP_SUCCESS;
1681                         }
1682 #ifdef LDAP_SLAPI
1683                         else if ( op->o_pb ) {
1684                                 /* try any computed attributes */
1685                                 computed_attr_context   ctx;
1686
1687                                 slapi_int_pblock_set_operation( op->o_pb, op );
1688
1689                                 ctx.cac_pb = op->o_pb;
1690                                 ctx.cac_attrs = NULL;
1691                                 ctx.cac_userattrs = 0;
1692                                 ctx.cac_opattrs = 0;
1693                                 ctx.cac_private = (void *)nval;
1694
1695                                 rc = compute_evaluator( &ctx, entry_at->ad_cname.bv_val, e, backend_compute_output_attr_access );
1696                                 if ( rc == 1 ) {
1697                                         rc = LDAP_INSUFFICIENT_ACCESS;
1698
1699                                 } else {
1700                                         rc = LDAP_SUCCESS;
1701                                 }
1702                         }
1703 #endif /* LDAP_SLAPI */
1704                 }
1705 freeit:         if ( e != target ) {
1706                         be_entry_release_r( op, e );
1707                 }
1708                 if ( freeattr ) {
1709                         attr_free( a );
1710                 }
1711         }
1712
1713         op->o_bd = be;
1714         return rc;
1715 }
1716
1717 int backend_operational(
1718         Operation *op,
1719         SlapReply *rs )
1720 {
1721         Attribute       **ap;
1722         int             rc = 0;
1723         BackendDB       *be_orig;
1724
1725         for ( ap = &rs->sr_operational_attrs; *ap; ap = &(*ap)->a_next )
1726                 /* just count them */ ;
1727
1728         /*
1729          * If operational attributes (allegedly) are required, 
1730          * and the backend supports specific operational attributes, 
1731          * add them to the attribute list
1732          */
1733         if ( SLAP_OPATTRS( rs->sr_attr_flags ) || ( rs->sr_attrs &&
1734                 ad_inlist( slap_schema.si_ad_entryDN, rs->sr_attrs )))
1735         {
1736                 *ap = slap_operational_entryDN( rs->sr_entry );
1737                 ap = &(*ap)->a_next;
1738         }
1739
1740         if ( SLAP_OPATTRS( rs->sr_attr_flags ) || ( rs->sr_attrs &&
1741                 ad_inlist( slap_schema.si_ad_subschemaSubentry, rs->sr_attrs )))
1742         {
1743                 *ap = slap_operational_subschemaSubentry( op->o_bd );
1744                 ap = &(*ap)->a_next;
1745         }
1746
1747         /* Let the overlays have a chance at this */
1748         be_orig = op->o_bd;
1749         if ( SLAP_ISOVERLAY( be_orig ))
1750                 op->o_bd = select_backend( be_orig->be_nsuffix, 0, 0 );
1751
1752         if (( SLAP_OPATTRS( rs->sr_attr_flags ) || rs->sr_attrs ) &&
1753                 op->o_bd && op->o_bd->be_operational != NULL )
1754         {
1755                 Attribute       *a;
1756                 
1757                 a = rs->sr_operational_attrs;
1758                 rs->sr_operational_attrs = NULL;
1759                 rc = op->o_bd->be_operational( op, rs );
1760                 *ap = rs->sr_operational_attrs;
1761                 if ( a != NULL ) {
1762                         rs->sr_operational_attrs = a;
1763                 }
1764
1765                 for ( ; *ap; ap = &(*ap)->a_next )
1766                         /* just count them */ ;
1767         }
1768         op->o_bd = be_orig;
1769
1770         return rc;
1771 }
1772
1773 #ifdef LDAP_SLAPI
1774 static void init_group_pblock( Operation *op, Entry *target,
1775         Entry *e, struct berval *op_ndn, AttributeDescription *group_at )
1776 {
1777         slapi_int_pblock_set_operation( op->o_pb, op );
1778
1779         slapi_pblock_set( op->o_pb,
1780                 SLAPI_X_GROUP_ENTRY, (void *)e );
1781         slapi_pblock_set( op->o_pb,
1782                 SLAPI_X_GROUP_OPERATION_DN, (void *)op_ndn->bv_val );
1783         slapi_pblock_set( op->o_pb,
1784                 SLAPI_X_GROUP_ATTRIBUTE, (void *)group_at->ad_cname.bv_val );
1785         slapi_pblock_set( op->o_pb,
1786                 SLAPI_X_GROUP_TARGET_ENTRY, (void *)target );
1787 }
1788
1789 static int call_group_preop_plugins( Operation *op )
1790 {
1791         int rc;
1792
1793         rc = slapi_int_call_plugins( op->o_bd,
1794                 SLAPI_X_PLUGIN_PRE_GROUP_FN, op->o_pb );
1795         if ( rc < 0 ) {
1796                 if (( slapi_pblock_get( op->o_pb, SLAPI_RESULT_CODE,
1797                         (void *)&rc ) != 0 ) || rc == LDAP_SUCCESS )
1798                 {
1799                         rc = LDAP_NO_SUCH_ATTRIBUTE;
1800                 }
1801         } else {
1802                 rc = LDAP_SUCCESS;
1803         }
1804
1805         return rc;
1806 }
1807
1808 static void call_group_postop_plugins( Operation *op )
1809 {
1810         (void) slapi_int_call_plugins( op->o_bd, SLAPI_X_PLUGIN_POST_GROUP_FN, op->o_pb );
1811 }
1812 #endif /* LDAP_SLAPI */
1813