]> git.sur5r.net Git - openldap/blob - servers/slapd/backend.c
Make sure we have a separator when doing suffix matching
[openldap] / servers / slapd / backend.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /* backend.c - routines for dealing with back-end databases */
7
8
9 #include "portable.h"
10
11 #include <stdio.h>
12
13 #include <ac/string.h>
14 #include <ac/socket.h>
15
16 #include <sys/stat.h>
17
18 #include "slap.h"
19 #include "lutil.h"
20
21 #ifdef SLAPD_BDB
22 #include "back-bdb/external.h"
23 #endif
24 #ifdef SLAPD_DNSSRV
25 #include "back-dnssrv/external.h"
26 #endif
27 #ifdef SLAPD_LDAP
28 #include "back-ldap/external.h"
29 #endif
30 #ifdef SLAPD_LDBM
31 #include "back-ldbm/external.h"
32 #endif
33 #ifdef SLAPD_PASSWD
34 #include "back-passwd/external.h"
35 #endif
36 #ifdef SLAPD_PERL
37 #include "back-perl/external.h"
38 #endif
39 #ifdef SLAPD_SHELL
40 #include "back-shell/external.h"
41 #endif
42 #ifdef SLAPD_TCL
43 #include "back-tcl/external.h"
44 #endif
45 #ifdef SLAPD_SQL
46 #include "back-sql/external.h"
47 #endif
48 #ifdef SLAPD_PRIVATE
49 #include "private/external.h"
50 #endif
51
52 static BackendInfo binfo[] = {
53 #if defined(SLAPD_BDB) && !defined(SLAPD_BDB_DYNAMIC)
54         {"bdb", bdb_initialize},
55 #endif
56 #if defined(SLAPD_DNSSRV) && !defined(SLAPD_DNSSRV_DYNAMIC)
57         {"dnssrv",      dnssrv_back_initialize},
58 #endif
59 #if defined(SLAPD_LDAP) && !defined(SLAPD_LDAP_DYNAMIC)
60         {"ldap",        ldap_back_initialize},
61 #endif
62 #if defined(SLAPD_LDBM) && !defined(SLAPD_LDBM_DYNAMIC)
63         {"ldbm",        ldbm_back_initialize},
64 #endif
65 #if defined(SLAPD_PASSWD) && !defined(SLAPD_PASSWD_DYNAMIC)
66         {"passwd",      passwd_back_initialize},
67 #endif
68 #if defined(SLAPD_PERL) && !defined(SLAPD_PERL_DYNAMIC)
69         {"perl",        perl_back_initialize},
70 #endif
71 #if defined(SLAPD_SHELL) && !defined(SLAPD_SHELL_DYNAMIC)
72         {"shell",       shell_back_initialize},
73 #endif
74 #if defined(SLAPD_TCL) && !defined(SLAPD_TCL_DYNAMIC)
75         {"tcl",         tcl_back_initialize},
76 #endif
77 #if defined(SLAPD_SQL) && !defined(SLAPD_SQL_DYNAMIC)
78         {"sql",         sql_back_initialize},
79 #endif
80         /* for any private backend */
81 #if defined(SLAPD_PRIVATE) && !defined(SLAPD_PRIVATE_DYNAMIC)
82         {"private",     private_back_initialize},
83 #endif
84         {NULL}
85 };
86
87 int                     nBackendInfo = 0;
88 BackendInfo     *backendInfo = NULL;
89
90 int                     nBackendDB = 0; 
91 BackendDB       *backendDB = NULL;
92
93 int backend_init(void)
94 {
95         int rc = -1;
96
97         if((nBackendInfo != 0) || (backendInfo != NULL)) {
98                 /* already initialized */
99 #ifdef NEW_LOGGING
100                 LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
101                            "backend_init:  backend already initialized\n" ));
102 #else
103                 Debug( LDAP_DEBUG_ANY,
104                         "backend_init: already initialized.\n", 0, 0, 0 );
105 #endif
106                 return -1;
107         }
108
109         for( ;
110                 binfo[nBackendInfo].bi_type != NULL;
111                 nBackendInfo++ )
112         {
113                 rc = binfo[nBackendInfo].bi_init( &binfo[nBackendInfo] );
114
115                 if(rc != 0) {
116 #ifdef NEW_LOGGING
117                         LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
118                                    "backend_init:  initialized for type \"%s\"\n",
119                                    binfo[nBackendInfo].bi_type ));
120 #else
121                         Debug( LDAP_DEBUG_ANY,
122                                 "backend_init: initialized for type \"%s\"\n",
123                                         binfo[nBackendInfo].bi_type, 0, 0 );
124 #endif
125                         /* destroy those we've already inited */
126                         for( nBackendInfo--;
127                                 nBackendInfo >= 0 ;
128                                 nBackendInfo-- )
129                         { 
130                                 if ( binfo[nBackendInfo].bi_destroy ) {
131                                         binfo[nBackendInfo].bi_destroy(
132                                                 &binfo[nBackendInfo] );
133                                 }
134                         }
135                         return rc;
136                 }
137         }
138
139         if ( nBackendInfo > 0) {
140                 backendInfo = binfo;
141                 return 0;
142         }
143
144 #ifdef SLAPD_MODULES    
145         return 0;
146 #else
147
148 #ifdef NEW_LOGGING
149         LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
150                    "backend_init: failed\n" ));
151 #else
152         Debug( LDAP_DEBUG_ANY,
153                 "backend_init: failed\n",
154                 0, 0, 0 );
155 #endif
156
157         return rc;
158 #endif /* SLAPD_MODULES */
159 }
160
161 int backend_add(BackendInfo *aBackendInfo)
162 {
163    int rc = 0;
164
165    if ((rc = aBackendInfo->bi_init(aBackendInfo)) != 0) {
166 #ifdef NEW_LOGGING
167        LDAP_LOG(( "backend", LDAP_LEVEL_ERR,
168                   "backend_add:  initialization for type \"%s\" failed\n",
169                   aBackendInfo->bi_type ));
170 #else
171       Debug( LDAP_DEBUG_ANY,
172              "backend_add: initialization for type \"%s\" failed\n",
173              aBackendInfo->bi_type, 0, 0 );
174 #endif
175       return rc;
176    }
177
178    /* now add the backend type to the Backend Info List */
179    {
180       BackendInfo *newBackendInfo = 0;
181
182       /* if backendInfo == binfo no deallocation of old backendInfo */
183       if (backendInfo == binfo) {
184          newBackendInfo = ch_calloc(nBackendInfo + 1, sizeof(BackendInfo));
185          AC_MEMCPY(newBackendInfo, backendInfo, sizeof(BackendInfo) * 
186                 nBackendInfo);
187       } else {
188          newBackendInfo = ch_realloc(backendInfo, sizeof(BackendInfo) * 
189                                      (nBackendInfo + 1));
190       }
191       AC_MEMCPY(&newBackendInfo[nBackendInfo], aBackendInfo, 
192              sizeof(BackendInfo));
193       backendInfo = newBackendInfo;
194       nBackendInfo++;
195
196       return 0;
197    }        
198 }
199
200 int backend_startup(Backend *be)
201 {
202         int i;
203         int rc = 0;
204
205         if( ! ( nBackendDB > 0 ) ) {
206                 /* no databases */
207 #ifdef NEW_LOGGING
208                 LDAP_LOG(( "backend", LDAP_LEVEL_INFO,
209                            "backend_startup: %d databases to startup. \n",
210                            nBackendDB ));
211 #else
212                 Debug( LDAP_DEBUG_ANY,
213                         "backend_startup: %d databases to startup.\n",
214                         nBackendDB, 0, 0 );
215 #endif
216                 return 1;
217         }
218
219         if(be != NULL) {
220                 /* startup a specific backend database */
221 #ifdef NEW_LOGGING
222                 LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
223                            "backend_startup:  starting \"%s\"\n",
224                            be->be_suffix[0] ));
225 #else
226                 Debug( LDAP_DEBUG_TRACE,
227                         "backend_startup: starting \"%s\"\n",
228                         be->be_suffix[0], 0, 0 );
229 #endif
230
231                 if ( be->bd_info->bi_open ) {
232                         rc = be->bd_info->bi_open( be->bd_info );
233                 }
234
235                 if(rc != 0) {
236 #ifdef NEW_LOGGING
237                         LDAP_LOG(( "backend", LDAP_LEVEL_CRIT,
238                                    "backend_startup: bi_open failed!\n" ));
239 #else
240                         Debug( LDAP_DEBUG_ANY,
241                                 "backend_startup: bi_open failed!\n",
242                                 0, 0, 0 );
243 #endif
244
245                         return rc;
246                 }
247
248                 if ( be->bd_info->bi_db_open ) {
249                         rc = be->bd_info->bi_db_open( be );
250                 }
251
252                 if(rc != 0) {
253 #ifdef NEW_LOGGING
254                         LDAP_LOG(( "backend", LDAP_LEVEL_CRIT,
255                                    "backend_startup: bi_db_open failed!\n" ));
256 #else
257                         Debug( LDAP_DEBUG_ANY,
258                                 "backend_startup: bi_db_open failed!\n",
259                                 0, 0, 0 );
260 #endif
261                         return rc;
262                 }
263
264                 return rc;
265         }
266
267         /* open each backend type */
268         for( i = 0; i < nBackendInfo; i++ ) {
269                 if( backendInfo[i].bi_nDB == 0) {
270                         /* no database of this type, don't open */
271                         continue;
272                 }
273
274                 if( backendInfo[i].bi_open ) {
275                         rc = backendInfo[i].bi_open(
276                                 &backendInfo[i] );
277                 }
278
279                 if(rc != 0) {
280 #ifdef NEW_LOGGING
281                         LDAP_LOG(( "backend", LDAP_LEVEL_CRIT,
282                                    "backend_startup: bi_open %d failed!\n", i ));
283 #else
284                         Debug( LDAP_DEBUG_ANY,
285                                 "backend_startup: bi_open %d failed!\n",
286                                 i, 0, 0 );
287 #endif
288                         return rc;
289                 }
290         }
291
292         /* open each backend database */
293         for( i = 0; i < nBackendDB; i++ ) {
294                 /* append global access controls */
295                 acl_append( &backendDB[i].be_acl, global_acl );
296
297                 if ( backendDB[i].bd_info->bi_db_open ) {
298                         rc = backendDB[i].bd_info->bi_db_open(
299                                 &backendDB[i] );
300                 }
301
302                 if(rc != 0) {
303 #ifdef NEW_LOGGING
304                         LDAP_LOG(( "backend", LDAP_LEVEL_CRIT,
305                                    "backend_startup: bi_db_open %d failed!\n", i ));
306 #else
307                         Debug( LDAP_DEBUG_ANY,
308                                 "backend_startup: bi_db_open %d failed!\n",
309                                 i, 0, 0 );
310 #endif
311                         return rc;
312                 }
313         }
314
315         return rc;
316 }
317
318 int backend_num( Backend *be )
319 {
320         int i;
321
322         if( be == NULL ) return -1;
323
324         for( i = 0; i < nBackendDB; i++ ) {
325                 if( be == &backendDB[i] ) return i;
326         }
327         return -1;
328 }
329
330 int backend_shutdown( Backend *be )
331 {
332         int i;
333         int rc = 0;
334
335         if( be != NULL ) {
336                 /* shutdown a specific backend database */
337
338                 if ( be->bd_info->bi_nDB == 0 ) {
339                         /* no database of this type, we never opened it */
340                         return 0;
341                 }
342
343                 if ( be->bd_info->bi_db_close ) {
344                         be->bd_info->bi_db_close( be );
345                 }
346
347                 if( be->bd_info->bi_close ) {
348                         be->bd_info->bi_close( be->bd_info );
349                 }
350
351                 return 0;
352         }
353
354         /* close each backend database */
355         for( i = 0; i < nBackendDB; i++ ) {
356                 if ( backendDB[i].bd_info->bi_db_close ) {
357                         backendDB[i].bd_info->bi_db_close(
358                                 &backendDB[i] );
359                 }
360
361                 if(rc != 0) {
362 #ifdef NEW_LOGGING
363                         LDAP_LOG(( "backend", LDAP_LEVEL_NOTICE,
364                                    "backend_shutdown: bi_close %s failed!\n",
365                                    backendDB[i].be_type ));
366 #else
367                         Debug( LDAP_DEBUG_ANY,
368                                 "backend_close: bi_close %s failed!\n",
369                                 backendDB[i].be_type, 0, 0 );
370 #endif
371                 }
372         }
373
374         /* close each backend type */
375         for( i = 0; i < nBackendInfo; i++ ) {
376                 if( backendInfo[i].bi_nDB == 0 ) {
377                         /* no database of this type */
378                         continue;
379                 }
380
381                 if( backendInfo[i].bi_close ) {
382                         backendInfo[i].bi_close(
383                                 &backendInfo[i] );
384                 }
385         }
386
387         return 0;
388 }
389
390 int backend_destroy(void)
391 {
392         int i;
393
394         /* destroy each backend database */
395         for( i = 0; i < nBackendDB; i++ ) {
396                 if ( backendDB[i].bd_info->bi_db_destroy ) {
397                         backendDB[i].bd_info->bi_db_destroy(
398                                 &backendDB[i] );
399                 }
400         }
401
402         /* destroy each backend type */
403         for( i = 0; i < nBackendInfo; i++ ) {
404                 if( backendInfo[i].bi_destroy ) {
405                         backendInfo[i].bi_destroy(
406                                 &backendInfo[i] );
407                 }
408         }
409
410 #ifdef SLAPD_MODULES
411         if (backendInfo != binfo) {
412            free(backendInfo);
413         }
414 #endif /* SLAPD_MODULES */
415
416         nBackendInfo = 0;
417         backendInfo = NULL;
418
419         return 0;
420 }
421
422 BackendInfo* backend_info(const char *type)
423 {
424         int i;
425
426         /* search for the backend type */
427         for( i = 0; i < nBackendInfo; i++ ) {
428                 if( strcasecmp(backendInfo[i].bi_type, type) == 0 ) {
429                         return &backendInfo[i];
430                 }
431         }
432
433         return NULL;
434 }
435
436
437 BackendDB *
438 backend_db_init(
439     const char  *type
440 )
441 {
442         Backend *be;
443         BackendInfo *bi = backend_info(type);
444         int     rc = 0;
445
446         if( bi == NULL ) {
447                 fprintf( stderr, "Unrecognized database type (%s)\n", type );
448                 return NULL;
449         }
450
451         backendDB = (BackendDB *) ch_realloc(
452                         (char *) backendDB,
453                     (nBackendDB + 1) * sizeof(Backend) );
454
455         memset( &backendDB[nbackends], '\0', sizeof(Backend) );
456
457         be = &backends[nbackends++];
458
459         be->bd_info = bi;
460         be->be_sizelimit = defsize;
461         be->be_timelimit = deftime;
462         be->be_dfltaccess = global_default_access;
463
464         be->be_restrictops = global_restrictops;
465         be->be_requires = global_requires;
466
467         /* assign a default depth limit for alias deref */
468         be->be_max_deref_depth = SLAPD_DEFAULT_MAXDEREFDEPTH; 
469
470         if(bi->bi_db_init) {
471                 rc = bi->bi_db_init( be );
472         }
473
474         if(rc != 0) {
475                 fprintf( stderr, "database init failed (%s)\n", type );
476                 nbackends--;
477                 return NULL;
478         }
479
480         bi->bi_nDB++;
481         return( be );
482 }
483
484 void
485 be_db_close( void )
486 {
487         int     i;
488
489         for ( i = 0; i < nbackends; i++ ) {
490                 if ( backends[i].bd_info->bi_db_close ) {
491                         (*backends[i].bd_info->bi_db_close)( &backends[i] );
492                 }
493         }
494 }
495
496 Backend *
497 select_backend(
498         const char * dn,
499         int manageDSAit )
500 {
501         int     i, j, len, dnlen;
502         Backend *be = NULL;
503
504         dnlen = strlen( dn );
505         for ( i = 0; i < nbackends; i++ ) {
506                 for ( j = 0; backends[i].be_nsuffix != NULL &&
507                     backends[i].be_nsuffix[j] != NULL; j++ )
508                 {
509                         len = strlen( backends[i].be_nsuffix[j] );
510
511                         if ( len > dnlen ) {
512                                 /* suffix is longer than DN */
513                                 continue;
514                         }
515
516                         if ( len < dnlen && DN_SEPARATOR( dn[(dnlen-len)-1] ) ) {
517                                 /* make sure we have a separator */
518                                 continue;
519                         }
520
521                         if ( strcmp( backends[i].be_nsuffix[j], &dn[dnlen-len] ) == 0 ) {
522                                 if( be == NULL ) {
523                                         be = &backends[i];
524
525                                         if( manageDSAit && len == dnlen ) {
526                                                 continue;
527                                         }
528                                 } else {
529                                         be = &backends[i];
530                                 }
531                                 return be;
532                         }
533                 }
534         }
535
536         return be;
537 }
538
539 int
540 be_issuffix(
541     Backend     *be,
542     const char  *suffix
543 )
544 {
545         int     i;
546
547         for ( i = 0; be->be_nsuffix != NULL && be->be_nsuffix[i] != NULL; i++ ) {
548                 if ( strcmp( be->be_nsuffix[i], suffix ) == 0 ) {
549                         return( 1 );
550                 }
551         }
552
553         return( 0 );
554 }
555
556 int
557 be_isroot( Backend *be, const char *ndn )
558 {
559         int rc;
560
561         if ( ndn == NULL || *ndn == '\0' ) {
562                 return( 0 );
563         }
564
565         if ( be->be_root_ndn == NULL || *be->be_root_ndn == '\0' ) {
566                 return( 0 );
567         }
568
569         rc = strcmp( be->be_root_ndn, ndn ) ? 0 : 1;
570
571         return(rc);
572 }
573
574 char *
575 be_root_dn( Backend *be )
576 {
577         if ( be->be_root_dn == NULL ) {
578                 return( "" );
579         }
580
581         return be->be_root_dn;
582 }
583
584 int
585 be_isroot_pw( Backend *be,
586         Connection *conn,
587         const char *ndn,
588         struct berval *cred )
589 {
590         int result;
591
592         if ( ! be_isroot( be, ndn ) ) {
593                 return 0;
594         }
595
596         if( be->be_root_pw.bv_len == 0 ) {
597                 return 0;
598         }
599
600 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
601         ldap_pvt_thread_mutex_lock( &passwd_mutex );
602 #ifdef SLAPD_SPASSWD
603         lutil_passwd_sasl_conn = conn->c_sasl_context;
604 #endif
605 #endif
606
607         result = lutil_passwd( &be->be_root_pw, cred, NULL );
608
609 #if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
610 #ifdef SLAPD_SPASSWD
611         lutil_passwd_sasl_conn = NULL;
612 #endif
613         ldap_pvt_thread_mutex_unlock( &passwd_mutex );
614 #endif
615
616         return result == 0;
617 }
618
619 int
620 be_entry_release_rw(
621         BackendDB *be,
622         Connection *conn,
623         Operation *op,
624         Entry *e,
625         int rw )
626 {
627         if ( be->be_release ) {
628                 /* free and release entry from backend */
629                 return be->be_release( be, conn, op, e, rw );
630         } else {
631                 /* free entry */
632                 entry_free( e );
633                 return 0;
634         }
635 }
636
637 int
638 backend_unbind(
639         Connection   *conn,
640         Operation    *op
641 )
642 {
643         int     i;
644
645         for ( i = 0; i < nbackends; i++ ) {
646                 if ( backends[i].be_unbind ) {
647                         (*backends[i].be_unbind)( &backends[i], conn, op );
648                 }
649         }
650
651         return 0;
652 }
653
654 int
655 backend_connection_init(
656         Connection   *conn
657 )
658 {
659         int     i;
660
661         for ( i = 0; i < nbackends; i++ ) {
662                 if ( backends[i].be_connection_init ) {
663                         (*backends[i].be_connection_init)( &backends[i], conn);
664                 }
665         }
666
667         return 0;
668 }
669
670 int
671 backend_connection_destroy(
672         Connection   *conn
673 )
674 {
675         int     i;
676
677         for ( i = 0; i < nbackends; i++ ) {
678                 if ( backends[i].be_connection_destroy ) {
679                         (*backends[i].be_connection_destroy)( &backends[i], conn);
680                 }
681         }
682
683         return 0;
684 }
685
686 static int
687 backend_check_controls(
688         Backend *be,
689         Connection *conn,
690         Operation *op,
691         const char **text )
692 {
693         LDAPControl **ctrls;
694         ctrls = op->o_ctrls;
695         if( ctrls == NULL ) {
696                 return LDAP_SUCCESS;
697         }
698
699         for( ; *ctrls != NULL ; ctrls++ ) {
700                 if( (*ctrls)->ldctl_iscritical &&
701                         !charray_inlist( be->be_controls, (*ctrls)->ldctl_oid ) )
702                 {
703                         *text = "control unavailable in NamingContext";
704                         return LDAP_UNAVAILABLE_CRITICAL_EXTENSION;
705                 }
706         }
707
708         return LDAP_SUCCESS;
709 }
710
711 int
712 backend_check_restrictions(
713         Backend *be,
714         Connection *conn,
715         Operation *op,
716         const void *opdata,
717         const char **text )
718 {
719         int rc;
720         slap_mask_t restrictops;
721         slap_mask_t requires;
722         slap_mask_t opflag;
723         slap_ssf_set_t *ssf;
724         int updateop = 0;
725
726         if( be ) {
727                 rc = backend_check_controls( be, conn, op, text );
728
729                 if( rc != LDAP_SUCCESS ) {
730                         return rc;
731                 }
732
733                 restrictops = be->be_restrictops;
734                 requires = be->be_requires;
735                 ssf = &be->be_ssf_set;
736
737         } else {
738                 restrictops = global_restrictops;
739                 requires = global_requires;
740                 ssf = &global_ssf_set;
741         }
742
743         switch( op->o_tag ) {
744         case LDAP_REQ_ADD:
745                 opflag = SLAP_RESTRICT_OP_ADD;
746                 updateop++;
747                 break;
748         case LDAP_REQ_BIND:
749                 opflag = SLAP_RESTRICT_OP_BIND;
750                 break;
751         case LDAP_REQ_COMPARE:
752                 opflag = SLAP_RESTRICT_OP_COMPARE;
753                 break;
754         case LDAP_REQ_DELETE:
755                 updateop++;
756                 opflag = SLAP_RESTRICT_OP_DELETE;
757                 break;
758         case LDAP_REQ_EXTENDED:
759                 opflag = SLAP_RESTRICT_OP_EXTENDED;
760                 break;
761         case LDAP_REQ_MODIFY:
762                 updateop++;
763                 opflag = SLAP_RESTRICT_OP_MODIFY;
764                 break;
765         case LDAP_REQ_RENAME:
766                 updateop++;
767                 opflag = SLAP_RESTRICT_OP_RENAME;
768                 break;
769         case LDAP_REQ_SEARCH:
770                 opflag = SLAP_RESTRICT_OP_SEARCH;
771                 break;
772         case LDAP_REQ_UNBIND:
773                 opflag = 0;
774                 break;
775         default:
776                 *text = "restrict operations internal error";
777                 return LDAP_OTHER;
778         }
779
780         if ( op->o_tag != LDAP_REQ_EXTENDED
781                 || strcmp( (const char *) opdata, LDAP_EXOP_START_TLS ) )
782         {
783                 /* these checks don't apply to StartTLS */
784
785                 if( op->o_tag == LDAP_REQ_EXTENDED ) {
786                         /* threat other extended operations as update ops */
787                         updateop++;
788                 }
789
790                 if( op->o_transport_ssf < ssf->sss_transport ) {
791                         *text = "transport confidentiality required";
792                         return LDAP_CONFIDENTIALITY_REQUIRED;
793                 }
794
795                 if( op->o_tls_ssf < ssf->sss_tls ) {
796                         *text = "TLS confidentiality required";
797                         return LDAP_CONFIDENTIALITY_REQUIRED;
798                 }
799
800                 if( op->o_tag != LDAP_REQ_BIND || opdata == NULL ) {
801                         /* these checks don't apply to SASL bind */
802
803                         if( op->o_sasl_ssf < ssf->sss_sasl ) {
804                                 *text = "SASL confidentiality required";
805                                 return LDAP_CONFIDENTIALITY_REQUIRED;
806                         }
807
808                         if( op->o_ssf < ssf->sss_ssf ) {
809                                 *text = "confidentiality required";
810                                 return LDAP_CONFIDENTIALITY_REQUIRED;
811                         }
812                 }
813
814                 if( updateop ) {
815                         if( op->o_transport_ssf < ssf->sss_update_transport ) {
816                                 *text = "transport update confidentiality required";
817                                 return LDAP_CONFIDENTIALITY_REQUIRED;
818                         }
819
820                         if( op->o_tls_ssf < ssf->sss_update_tls ) {
821                                 *text = "TLS update confidentiality required";
822                                 return LDAP_CONFIDENTIALITY_REQUIRED;
823                         }
824
825                         if( op->o_sasl_ssf < ssf->sss_update_sasl ) {
826                                 *text = "SASL update confidentiality required";
827                                 return LDAP_CONFIDENTIALITY_REQUIRED;
828                         }
829
830                         if( op->o_ssf < ssf->sss_update_ssf ) {
831                                 *text = "update confidentiality required";
832                                 return LDAP_CONFIDENTIALITY_REQUIRED;
833                         }
834                 }
835         }
836
837         if ( op->o_tag != LDAP_REQ_BIND && ( op->o_tag != LDAP_REQ_EXTENDED ||
838                 strcmp( (const char *) opdata, LDAP_EXOP_START_TLS ) ) )
839         {
840                 /* these checks don't apply to Bind or StartTLS */
841
842                 if( requires & SLAP_REQUIRE_STRONG ) {
843                         /* should check mechanism */
844                         if( op->o_authmech == NULL ||
845                                 op->o_dn == NULL || *op->o_dn == '\0' )
846                         {
847                                 *text = "strong authentication required";
848                                 return LDAP_STRONG_AUTH_REQUIRED;
849                         }
850                 }
851
852                 if( requires & SLAP_REQUIRE_SASL ) {
853                         if( op->o_authmech == NULL ||
854                                 op->o_dn == NULL || *op->o_dn == '\0' )
855                         {
856                                 *text = "SASL authentication required";
857                                 return LDAP_STRONG_AUTH_REQUIRED;
858                         }
859                 }
860                         
861                 if( requires & SLAP_REQUIRE_AUTHC ) {
862                         if( op->o_dn == NULL || *op->o_dn == '\0' ) {
863                                 *text = "authentication required";
864                                 return LDAP_UNWILLING_TO_PERFORM;
865                         }
866                 }
867
868                 if( requires & SLAP_REQUIRE_BIND ) {
869                         int version;
870                         ldap_pvt_thread_mutex_lock( &conn->c_mutex );
871                         version = conn->c_protocol;
872                         ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
873
874                         if( !version ) {
875                                 /* no bind has occurred */
876                                 *text = "BIND required";
877                                 return LDAP_OPERATIONS_ERROR;
878                         }
879                 }
880
881                 if( requires & SLAP_REQUIRE_LDAP_V3 ) {
882                         if( op->o_protocol < LDAP_VERSION3 ) {
883                                 /* no bind has occurred */
884                                 *text = "operation restricted to LDAPv3 clients";
885                                 return LDAP_OPERATIONS_ERROR;
886                         }
887                 }
888         }
889
890         if( restrictops & opflag ) {
891                 if( restrictops == SLAP_RESTRICT_OP_READS ) {
892                         *text = "read operations restricted";
893                 } else {
894                         *text = "operation restricted";
895                 }
896                 return LDAP_UNWILLING_TO_PERFORM;
897         }
898
899         return LDAP_SUCCESS;
900 }
901
902 int backend_check_referrals(
903         Backend *be,
904         Connection *conn,
905         Operation *op,
906         const char *dn,
907         const char *ndn )
908 {
909         int rc = LDAP_SUCCESS;
910
911         if( be->be_chk_referrals ) {
912                 const char *text;
913
914                 rc = be->be_chk_referrals( be,
915                         conn, op, dn, ndn, &text );
916
917                 if( rc != LDAP_SUCCESS && rc != LDAP_REFERRAL ) {
918                         send_ldap_result( conn, op, rc,
919                                 NULL, text, NULL, NULL );
920                 }
921         }
922
923         return rc;
924 }
925
926 int 
927 backend_group(
928         Backend *be,
929         Connection *conn,
930         Operation *op,
931         Entry   *target,
932         const char      *gr_ndn,
933         const char      *op_ndn,
934         ObjectClass *group_oc,
935         AttributeDescription *group_at
936 )
937 {
938         if( strcmp( target->e_ndn, gr_ndn ) != 0 ) {
939                 /* we won't attempt to send it to a different backend */
940                 
941                 be = select_backend(gr_ndn, 0);
942
943                 if (be == NULL) {
944                         return LDAP_NO_SUCH_OBJECT;
945                 }
946         } 
947
948         if( be->be_group ) {
949                 return be->be_group( be, conn, op,
950                         target, gr_ndn, op_ndn,
951                         group_oc, group_at );
952         }
953
954         return LDAP_UNWILLING_TO_PERFORM;
955 }
956
957 int 
958 backend_attribute(
959         Backend *be,
960         Connection *conn,
961         Operation *op,
962         Entry   *target,
963         const char      *e_ndn,
964         AttributeDescription *entry_at,
965         struct berval ***vals
966 )
967 {
968         if( target == NULL || strcmp( target->e_ndn, e_ndn ) != 0 ) {
969                 /* we won't attempt to send it to a different backend */
970                 
971                 be = select_backend(e_ndn, 0);
972
973                 if (be == NULL) {
974                         return LDAP_NO_SUCH_OBJECT;
975                 }
976         } 
977
978         if( be->be_attribute ) {
979                 return be->be_attribute( be, conn, op, target, e_ndn,
980                         entry_at, vals );
981         }
982
983         return LDAP_UNWILLING_TO_PERFORM;
984 }
985
986 Attribute *backend_operational(
987         Backend *be,
988         Connection *conn,
989         Operation *op,
990         Entry *e )
991 {
992         Attribute *a = NULL;
993
994 #ifdef SLAPD_SCHEMA_DN
995         a = ch_malloc( sizeof( Attribute ) );
996         a->a_desc = ad_dup( slap_schema.si_ad_subschemaSubentry );
997
998         /* Should be backend specific */
999         a->a_vals = ch_malloc( 2 * sizeof( struct berval * ) );
1000         a->a_vals[0] = ber_bvstrdup( SLAPD_SCHEMA_DN );
1001         a->a_vals[1] = NULL;
1002
1003         a->a_next = NULL;
1004 #endif
1005
1006         return a;
1007 }