]> git.sur5r.net Git - openldap/blob - servers/slapd/slapi/slapi_overlay.c
Centralize SLAPI initialization into slapi_over_config()
[openldap] / servers / slapd / slapi / slapi_overlay.c
1 /* slapi_overlay.c - SLAPI overlay */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2001-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 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Luke Howard for inclusion
18  * in OpenLDAP Software.
19  */
20
21 #include "portable.h"
22
23 #include <stdio.h>
24
25 #include <ac/string.h>
26 #include <ac/socket.h>
27
28 #include "slap.h"
29 #include "slapi.h"
30
31 #ifdef LDAP_SLAPI
32
33 static slap_overinst slapi;
34 static int slapi_over_initialized = 0;
35
36 static int slapi_over_response( Operation *op, SlapReply *rs );
37 static int slapi_over_cleanup( Operation *op, SlapReply *rs );
38
39 static Slapi_PBlock *
40 slapi_over_pblock_new( Operation *op, SlapReply *rs )
41 {
42         Slapi_PBlock            *pb;
43
44         pb = slapi_pblock_new();
45         pb->pb_op = op;
46         pb->pb_conn = op->o_conn;
47         pb->pb_rs = rs;
48         pb->pb_intop = 0;
49
50         PBLOCK_ASSERT_OP( pb, op->o_tag );
51
52         return pb;
53 }
54
55 static int
56 slapi_op_internal_p( Operation *op, SlapReply *rs, slap_callback *cb )
57 {
58         int                     internal_op = 0;
59         Slapi_PBlock            *pb = NULL;
60         slap_callback           *pcb;
61
62         /*
63          * Abstraction violating check for SLAPI internal operations
64          * allows pblock to remain consistent when invoking internal
65          * op plugins
66          */
67         for ( pcb = op->o_callback; pcb != NULL; pcb = pcb->sc_next ) {
68                 if ( pcb->sc_response == slapi_int_response ) {
69                         pb = (Slapi_PBlock *)pcb->sc_private;
70                         PBLOCK_ASSERT_INTOP( pb, 0 );
71                         internal_op = 1;
72                         break;
73                 }
74         }
75
76         if ( cb != NULL ) {
77                 if ( pb == NULL ) {
78                         pb = slapi_over_pblock_new( op, rs );
79                 }
80
81                 cb->sc_response = slapi_over_response;
82                 cb->sc_cleanup = slapi_over_cleanup;
83                 cb->sc_private = pb;
84                 cb->sc_next = op->o_callback;
85                 op->o_callback = cb;
86         }
87
88         return internal_op;
89 }
90
91 static int
92 slapi_over_compute_output(
93         computed_attr_context *c,
94         Slapi_Attr *attribute,
95         Slapi_Entry *entry
96 )
97 {
98         Attribute               **a;
99         AttributeDescription    *desc;
100         SlapReply               *rs = (SlapReply *)c->cac_private;
101
102         if ( c == NULL || attribute == NULL || entry == NULL ) {
103                 return 0;
104         }
105
106         assert( rs->sr_entry == entry );
107
108         desc = attribute->a_desc;
109
110         if ( rs->sr_attrs == NULL ) {
111                 /* All attrs request, skip operational attributes */
112                 if ( is_at_operational( desc->ad_type ) ) {
113                         return 0;
114                 }
115         } else {
116                 /* Specific attributes requested */
117                 if ( is_at_operational( desc->ad_type ) ) {
118                         if ( !SLAP_OPATTRS( rs->sr_attr_flags ) &&
119                              !ad_inlist( desc, rs->sr_attrs ) ) {
120                                 return 0;
121                         }
122                 } else {
123                         if ( !SLAP_USERATTRS( rs->sr_attr_flags ) &&
124                              !ad_inlist( desc, rs->sr_attrs ) ) {
125                                 return 0;
126                         }
127                 }
128         }
129
130         /* XXX perhaps we should check for existing attributes and merge */
131         for ( a = &rs->sr_operational_attrs; *a != NULL; a = &(*a)->a_next )
132                 ;
133
134         *a = slapi_attr_dup( attribute );
135
136         return 0;
137 }
138
139 static int
140 slapi_over_aux_operational( Operation *op, SlapReply *rs )
141 {
142         /* Support for computed attribute plugins */
143         computed_attr_context    ctx;
144         AttributeName           *anp;
145
146         if ( slapi_op_internal_p( op, rs, NULL ) ) {
147                 return SLAP_CB_CONTINUE;
148         }
149
150         ctx.cac_pb = slapi_over_pblock_new( op, rs );
151         ctx.cac_op = op;
152         ctx.cac_private = rs;
153
154         if ( rs->sr_entry != NULL ) {
155                 /*
156                  * For each client requested attribute, call the plugins.
157                  */
158                 if ( rs->sr_attrs != NULL ) {
159                         for ( anp = rs->sr_attrs; anp->an_name.bv_val != NULL; anp++ ) {
160                                 if ( compute_evaluator( &ctx, anp->an_name.bv_val,
161                                         rs->sr_entry, slapi_over_compute_output ) == 1 ) {
162                                         break;
163                                 }
164                         }
165                 } else {
166                         /*
167                          * Technically we shouldn't be returning operational attributes
168                          * when the user requested only user attributes. We'll let the
169                          * plugin decide whether to be naughty or not.
170                          */
171                         compute_evaluator( &ctx, "*", rs->sr_entry, slapi_over_compute_output );
172                 }
173         }
174
175         slapi_pblock_destroy( ctx.cac_pb );
176
177         return SLAP_CB_CONTINUE;
178 }
179
180 /*
181  * We need this function to call frontendDB (global) plugins before
182  * database plugins, if we are invoked by a slap_callback.
183  */
184 static int
185 slapi_over_call_plugins( Slapi_PBlock *pb, int type )
186 {
187         int                     rc = 1; /* means no plugins called */
188         Operation               *op;
189
190         PBLOCK_ASSERT_OP( pb, 0 );
191         op = pb->pb_op;
192
193         if ( op->o_bd != frontendDB ) {
194                 rc = slapi_int_call_plugins( frontendDB, type, pb );
195         }
196         if ( rc >= 0 ) {
197                 rc = slapi_int_call_plugins( op->o_bd, type, pb );
198         }
199
200         return rc;
201 }
202
203 static int
204 slapi_over_search( Operation *op, SlapReply *rs, int type )
205 {
206         int                     rc;
207         Slapi_PBlock            *pb;
208
209         assert( rs->sr_type == REP_SEARCH || rs->sr_type == REP_SEARCHREF );
210
211         /* create a new pblock to not trample on result controls */
212         pb = slapi_over_pblock_new( op, rs );
213
214         rc = slapi_over_call_plugins( pb, type );
215         if ( rc >= 0 ) /* 1 means no plugins called */
216                 rc = SLAP_CB_CONTINUE;
217         else
218                 rc = LDAP_SUCCESS; /* confusing: don't abort, but don't send */
219
220         slapi_pblock_destroy(pb);
221
222         return rc;
223 }
224
225 /*
226  * Call pre- and post-result plugins
227  */
228 static int
229 slapi_over_result( Operation *op, SlapReply *rs, int type )
230 {
231         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
232
233         assert( rs->sr_type == REP_RESULT );
234
235         slapi_over_call_plugins( pb, type );
236
237         return SLAP_CB_CONTINUE;
238 }
239
240
241 static int
242 slapi_op_bind_callback( Operation *op, SlapReply *rs, int prc )
243 {
244         switch ( prc ) {
245         case SLAPI_BIND_SUCCESS:
246                 /* Continue with backend processing */
247                 break;
248         case SLAPI_BIND_FAIL:
249                 /* Failure, frontend (that's us) sends result */
250                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
251                 send_ldap_result( op, rs );
252                 return rs->sr_err;
253                 break;
254         case SLAPI_BIND_ANONYMOUS: /* undocumented */
255         default: /* plugin sent result or no plugins called */
256                 BER_BVZERO( &op->orb_edn );
257
258                 if ( rs->sr_err == LDAP_SUCCESS ) {
259                         /*
260                          * Plugin will have called slapi_pblock_set(LDAP_CONN_DN) which
261                          * will have set conn->c_dn and conn->c_ndn
262                          */
263                         if ( BER_BVISNULL( &op->o_conn->c_ndn ) && prc == 1 ) {
264                                 /* No plugins were called; continue processing */
265                                 return LDAP_SUCCESS;
266                         }
267                         ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex );
268                         if ( !BER_BVISEMPTY( &op->o_conn->c_ndn ) ) {
269                                 ber_len_t max = sockbuf_max_incoming_auth;
270                                 ber_sockbuf_ctrl( op->o_conn->c_sb,
271                                         LBER_SB_OPT_SET_MAX_INCOMING, &max );
272                         }
273                         ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex );
274
275                         /* log authorization identity */
276                         Statslog( LDAP_DEBUG_STATS,
277                                 "%s BIND dn=\"%s\" mech=%s (SLAPI) ssf=0\n",
278                                 op->o_log_prefix,
279                                 BER_BVISNULL( &op->o_conn->c_dn )
280                                         ? "<empty>" : op->o_conn->c_dn.bv_val,
281                                 op->orb_tmp_mech.bv_val, 0, 0 );
282
283                         return -1;
284                 }
285                 break;
286         }
287
288         return rs->sr_err;
289 }
290
291 static int
292 slapi_op_search_callback( Operation *op, SlapReply *rs, int prc )
293 {
294         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
295
296         /* check preoperation result code */
297         if ( prc < 0 ) {
298                 return rs->sr_err;
299         }
300
301         rs->sr_err = LDAP_SUCCESS;
302
303         if ( slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, pb ) == 0 ) {
304                 /*
305                  * The plugin can set the SLAPI_SEARCH_FILTER.
306                  * SLAPI_SEARCH_STRFILER is not normative.
307                  */
308                 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
309                 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
310         }
311
312         return LDAP_SUCCESS;
313 }
314
315 struct slapi_op_info {
316         int soi_preop;                  /* preoperation plugin parameter */
317         int soi_postop;                 /* postoperation plugin parameter */
318         int soi_internal_preop;         /* internal preoperation plugin parameter */
319         int soi_internal_postop;        /* internal postoperation plugin parameter */
320         int (*soi_callback)(Operation *, SlapReply *, int); /* preoperation result handler */
321 } slapi_op_dispatch_table[] = {
322         {
323                 SLAPI_PLUGIN_PRE_BIND_FN,
324                 SLAPI_PLUGIN_POST_BIND_FN,
325                 0,
326                 0,
327                 slapi_op_bind_callback
328         },
329         {
330                 SLAPI_PLUGIN_PRE_UNBIND_FN,
331                 SLAPI_PLUGIN_POST_UNBIND_FN,
332                 0,
333                 0,
334                 NULL
335         },
336         {
337                 SLAPI_PLUGIN_PRE_SEARCH_FN,
338                 SLAPI_PLUGIN_POST_SEARCH_FN,
339                 0,
340                 0,
341                 slapi_op_search_callback
342         },
343         {
344                 SLAPI_PLUGIN_PRE_COMPARE_FN,
345                 SLAPI_PLUGIN_POST_COMPARE_FN,
346                 0,
347                 0,
348                 NULL
349         },
350         {
351                 SLAPI_PLUGIN_PRE_MODIFY_FN,
352                 SLAPI_PLUGIN_POST_MODIFY_FN,
353                 SLAPI_PLUGIN_INTERNAL_PRE_MODIFY_FN,
354                 SLAPI_PLUGIN_INTERNAL_POST_MODIFY_FN,
355                 NULL
356         },
357         {
358                 SLAPI_PLUGIN_PRE_MODRDN_FN,
359                 SLAPI_PLUGIN_POST_MODRDN_FN,
360                 SLAPI_PLUGIN_INTERNAL_PRE_MODRDN_FN,
361                 SLAPI_PLUGIN_INTERNAL_POST_MODRDN_FN,
362                 NULL
363         },
364         {
365                 SLAPI_PLUGIN_PRE_ADD_FN,
366                 SLAPI_PLUGIN_POST_ADD_FN,
367                 SLAPI_PLUGIN_INTERNAL_PRE_ADD_FN,
368                 SLAPI_PLUGIN_INTERNAL_POST_ADD_FN,
369                 NULL
370         },
371         {
372                 SLAPI_PLUGIN_PRE_DELETE_FN,
373                 SLAPI_PLUGIN_POST_DELETE_FN,
374                 SLAPI_PLUGIN_INTERNAL_PRE_DELETE_FN,
375                 SLAPI_PLUGIN_INTERNAL_POST_DELETE_FN,
376                 NULL
377         },
378         {
379                 SLAPI_PLUGIN_PRE_ABANDON_FN,
380                 SLAPI_PLUGIN_POST_ABANDON_FN,
381                 0,
382                 0,
383                 NULL
384         },
385         {
386                 0,
387                 0,
388                 0,
389                 0,
390                 NULL
391         }
392 };
393
394 slap_operation_t
395 slapi_tag2op( ber_tag_t tag )
396 {
397         slap_operation_t op;
398
399         switch ( tag ) {
400         case LDAP_REQ_BIND:
401                 op = op_bind;
402                 break;
403         case LDAP_REQ_ADD:
404                 op = op_add;
405                 break;
406         case LDAP_REQ_DELETE:
407                 op = op_delete;
408                 break;
409         case LDAP_REQ_MODRDN:
410                 op = op_modrdn;
411                 break;
412         case LDAP_REQ_MODIFY:
413                 op = op_modify;
414                 break;
415         case LDAP_REQ_COMPARE:
416                 op = op_compare;
417                 break;
418         case LDAP_REQ_SEARCH:
419                 op = op_search;
420                 break;
421         case LDAP_REQ_UNBIND:
422                 op = op_unbind;
423                 break;
424         default:
425                 op = op_last;
426                 break;
427         }
428
429         return op;
430 }
431
432 /* Add SLAPI_RESCONTROLS to rs->sr_ctrls, with care, because
433  * rs->sr_ctrls could be allocated on the stack */
434 static int
435 slapi_over_merge_controls( Operation *op, SlapReply *rs )
436 {
437         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
438         LDAPControl             **ctrls = NULL;
439         LDAPControl             **slapi_ctrls = NULL;
440         size_t                  n_slapi_ctrls = 0;
441         size_t                  n_rs_ctrls = 0;
442         size_t                  i;
443
444         slapi_pblock_get( pb, SLAPI_RESCONTROLS, (void **)&slapi_ctrls );
445
446         n_slapi_ctrls = slapi_int_count_controls( slapi_ctrls );
447         n_rs_ctrls = slapi_int_count_controls( rs->sr_ctrls );
448
449         slapi_pblock_set( pb, SLAPI_X_OLD_RESCONTROLS, (void *)rs->sr_ctrls );
450
451         if ( n_slapi_ctrls == 0 )
452                 return LDAP_SUCCESS; /* no SLAPI controls */
453
454         ctrls = (LDAPControl **) op->o_tmpalloc(
455                 ( n_slapi_ctrls + n_rs_ctrls + 1 ) * sizeof(LDAPControl *),
456                 op->o_tmpmemctx );
457
458         for ( i = 0; i < n_slapi_ctrls; i++ ) {
459                 ctrls[i] = slapi_ctrls[i];
460         }
461         if ( rs->sr_ctrls != NULL ) {
462                 for ( i = 0; i < n_rs_ctrls; i++ ) {
463                         ctrls[n_slapi_ctrls + i] = rs->sr_ctrls[i];
464                 }
465         }
466         ctrls[n_slapi_ctrls + n_rs_ctrls] = NULL;
467
468         rs->sr_ctrls = ctrls;
469
470         return LDAP_SUCCESS;
471 }
472
473 static int
474 slapi_over_unmerge_controls( Operation *op, SlapReply *rs )
475 {
476         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
477         LDAPControl             **rs_ctrls = NULL;
478
479         slapi_pblock_get( pb, SLAPI_X_OLD_RESCONTROLS, (void **)&rs_ctrls );
480
481         if ( rs->sr_ctrls == NULL || rs->sr_ctrls == rs_ctrls ) {
482                 /* no copying done */
483                 return LDAP_SUCCESS;
484         }
485
486         op->o_tmpfree( rs->sr_ctrls, op->o_tmpmemctx );
487         rs->sr_ctrls = rs_ctrls;
488
489         return LDAP_SUCCESS;
490 }
491
492 static int
493 slapi_over_response( Operation *op, SlapReply *rs )
494 {
495         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
496         int                     rc = SLAP_CB_CONTINUE;
497
498         if ( pb->pb_intop == 0 ) {
499                 switch ( rs->sr_type ) {
500                 case REP_RESULT:
501                         rc = slapi_over_result( op, rs, SLAPI_PLUGIN_PRE_RESULT_FN );
502                         break;
503                 case REP_SEARCH:
504                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_PRE_ENTRY_FN );
505                         break;
506                 case REP_SEARCHREF:
507                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_PRE_REFERRAL_FN );
508                         break;
509                 default:
510                         break;
511                 }
512         }
513
514         slapi_over_merge_controls( op, rs );
515
516         return rc;
517 }
518
519 static int
520 slapi_over_cleanup( Operation *op, SlapReply *rs )
521 {
522         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
523         int                     rc = SLAP_CB_CONTINUE;
524
525         slapi_over_unmerge_controls( op, rs );
526
527         if ( pb->pb_intop == 0 ) {
528                 switch ( rs->sr_type ) {
529                 case REP_RESULT:
530                         rc = slapi_over_result( op, rs, SLAPI_PLUGIN_POST_RESULT_FN );
531                         break;
532                 case REP_SEARCH:
533                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_POST_ENTRY_FN );
534                         break;
535                 case REP_SEARCHREF:
536                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_POST_REFERRAL_FN );
537                         break;
538                 default:
539                         break;
540                 }
541         }
542
543         return rc;
544 }
545
546 static int
547 slapi_op_func( Operation *op, SlapReply *rs )
548 {
549         Slapi_PBlock            *pb;
550         slap_operation_t        which;
551         struct slapi_op_info    *opinfo;
552         int                     rc;
553         slap_overinfo           *oi;
554         slap_overinst           *on;
555         slap_callback           cb;
556         int                     internal_op;
557         int                     preop_type, postop_type;
558         BackendDB               *be;
559
560         if ( !slapi_plugins_used )
561                 return SLAP_CB_CONTINUE;
562
563         /*
564          * Find the SLAPI operation information for this LDAP
565          * operation; this will contain the preop and postop
566          * plugin types, as well as optional callbacks for
567          * setting up the SLAPI environment.
568          */
569         which = slapi_tag2op( op->o_tag );
570         if ( which >= op_last ) {
571                 /* invalid operation, but let someone else deal with it */
572                 return SLAP_CB_CONTINUE;
573         }
574
575         opinfo = &slapi_op_dispatch_table[which];
576         if ( opinfo == NULL ) {
577                 /* no SLAPI plugin types for this operation */
578                 return SLAP_CB_CONTINUE;
579         }
580
581         internal_op = slapi_op_internal_p( op, rs, &cb );
582
583         if ( internal_op ) {
584                 preop_type = opinfo->soi_internal_preop;
585                 postop_type = opinfo->soi_internal_postop;
586         } else {
587                 preop_type = opinfo->soi_preop;
588                 postop_type = opinfo->soi_postop;
589         }
590
591         if ( preop_type == 0 ) {
592                 /* no SLAPI plugin types for this operation */
593                 pb = NULL;
594                 rc = SLAP_CB_CONTINUE;
595                 goto cleanup;
596         }
597
598         pb = SLAPI_OPERATION_PBLOCK( op );
599
600         /* cache backend so we call correct postop plugins */
601         be = pb->pb_op->o_bd;
602
603         rc = slapi_int_call_plugins( be, preop_type, pb );
604
605         /*
606          * soi_callback is responsible for examining the result code
607          * of the preoperation plugin and determining whether to
608          * abort. This is needed because of special SLAPI behaviour
609          e with bind preoperation plugins.
610          *
611          * The soi_callback function is also used to reset any values
612          * returned from the preoperation plugin before calling the
613          * backend (for the success case).
614          */
615         if ( opinfo->soi_callback == NULL ) {
616                 /* default behaviour is preop plugin can abort operation */
617                 if ( rc < 0 ) {
618                         rc = rs->sr_err;
619                         goto cleanup;
620                 }
621         } else {
622                 rc = (opinfo->soi_callback)( op, rs, rc );
623                 if ( rc )
624                         goto cleanup;
625         }
626
627         /*
628          * Call actual backend (or next overlay in stack). We need to
629          * do this rather than returning SLAP_CB_CONTINUE and calling
630          * postoperation plugins in a response handler to match the
631          * behaviour of SLAPI in OpenLDAP 2.2, where postoperation
632          * plugins are called after the backend has completely
633          * finished processing the operation.
634          */
635         on = (slap_overinst *)op->o_bd->bd_info;
636         oi = on->on_info;
637
638         rc = overlay_op_walk( op, rs, which, oi, on->on_next );
639
640         /*
641          * Call postoperation plugins
642          */
643         slapi_int_call_plugins( be, postop_type, pb );
644
645 cleanup:
646         if ( !internal_op ) {
647                 slapi_pblock_destroy(pb);
648                 cb.sc_private = NULL;
649         }
650
651         op->o_callback = cb.sc_next;
652
653         return rc;
654 }
655
656 static int
657 slapi_over_extended( Operation *op, SlapReply *rs )
658 {
659         Slapi_PBlock    *pb;
660         SLAPI_FUNC      callback;
661         int             rc;
662         int             internal_op;
663         slap_callback   cb;
664
665         slapi_int_get_extop_plugin( &op->ore_reqoid, &callback );
666         if ( callback == NULL ) {
667                 return SLAP_CB_CONTINUE;
668         }
669
670         internal_op = slapi_op_internal_p( op, rs, &cb );
671         if ( internal_op ) {
672                 return SLAP_CB_CONTINUE;
673         }
674
675         pb = SLAPI_OPERATION_PBLOCK( op );
676
677         rc = (*callback)( pb );
678         if ( rc == SLAPI_PLUGIN_EXTENDED_SENT_RESULT ) {
679                 slapi_pblock_destroy( pb );
680                 return rc;
681         } else if ( rc == SLAPI_PLUGIN_EXTENDED_NOT_HANDLED ) {
682                 slapi_pblock_destroy( pb );
683                 return SLAP_CB_CONTINUE;
684         }
685
686         assert( rs->sr_rspoid != NULL );
687
688         send_ldap_extended( op, rs );
689
690 #if 0
691         slapi_ch_free_string( (char **)&rs->sr_rspoid );
692 #endif
693
694         if ( rs->sr_rspdata != NULL )
695                 ber_bvfree( rs->sr_rspdata );
696
697         slapi_pblock_destroy( pb );
698
699         return rs->sr_err;
700 }
701
702 static int
703 slapi_over_access_allowed(
704         Operation               *op,
705         Entry                   *e,
706         AttributeDescription    *desc,
707         struct berval           *val,
708         slap_access_t           access,
709         AccessControlState      *state,
710         slap_mask_t             *maskp )
711 {
712         int                     rc;
713         Slapi_PBlock            *pb;
714         slap_callback           cb;
715         int                     internal_op;
716         SlapReply               rs = { REP_RESULT };
717
718         internal_op = slapi_op_internal_p( op, &rs, &cb );
719
720         cb.sc_response = NULL;
721         cb.sc_cleanup = NULL;
722
723         pb = SLAPI_OPERATION_PBLOCK( op );
724
725         rc = slapi_int_access_allowed( op, e, desc, val, access, state );
726         if ( rc ) {
727                 rc = SLAP_CB_CONTINUE;
728         }
729
730         op->o_callback = cb.sc_next;
731
732         if ( !internal_op )
733                 slapi_pblock_destroy( pb );
734
735         return rc;
736 }
737
738 static int
739 slapi_over_acl_group(
740         Operation               *op,
741         Entry                   *target,
742         struct berval           *gr_ndn,
743         struct berval           *op_ndn,
744         ObjectClass             *group_oc,
745         AttributeDescription    *group_at )
746 {
747         Slapi_Entry             *e;
748         int                     rc;
749         Slapi_PBlock            *pb;
750         BackendDB               *be = op->o_bd;
751         GroupAssertion          *g;
752         SlapReply               rs = { REP_RESULT };
753
754         op->o_bd = select_backend( gr_ndn, 0, 0 );
755
756         for ( g = op->o_groups; g; g = g->ga_next ) {
757                 if ( g->ga_be != op->o_bd || g->ga_oc != group_oc ||
758                         g->ga_at != group_at || g->ga_len != gr_ndn->bv_len )
759                 {
760                         continue;
761                 }
762                 if ( strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0 ) {
763                         break;
764                 }
765         }
766         if ( g != NULL ) {
767                 rc = g->ga_res;
768                 goto done;
769         }
770
771         if ( target != NULL && dn_match( &target->e_nname, gr_ndn ) ) {
772                 e = target;
773                 rc = 0;
774         } else {
775                 rc = be_entry_get_rw( op, gr_ndn, group_oc, group_at, 0, &e );
776         }
777         if ( e != NULL ) {
778                 int                     internal_op;
779                 slap_callback           cb;
780
781                 internal_op = slapi_op_internal_p( op, &rs, &cb );
782
783                 cb.sc_response = NULL;
784                 cb.sc_cleanup = NULL;
785
786                 pb = SLAPI_OPERATION_PBLOCK( op );
787
788                 slapi_pblock_set( pb, SLAPI_X_GROUP_ENTRY,        (void *)e );
789                 slapi_pblock_set( pb, SLAPI_X_GROUP_OPERATION_DN, (void *)op_ndn->bv_val );
790                 slapi_pblock_set( pb, SLAPI_X_GROUP_ATTRIBUTE,    (void *)group_at->ad_cname.bv_val );
791                 slapi_pblock_set( pb, SLAPI_X_GROUP_TARGET_ENTRY, (void *)target );
792
793                 rc = slapi_over_call_plugins( pb, SLAPI_X_PLUGIN_PRE_GROUP_FN );
794                 if ( rc >= 0 ) /* 1 means no plugins called */
795                         rc = SLAP_CB_CONTINUE;
796                 else
797                         rc = pb->pb_rs->sr_err;
798
799                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_ENTRY );
800                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_OPERATION_DN );
801                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_ATTRIBUTE );
802                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_TARGET_ENTRY );
803
804                 if ( !internal_op )
805                         slapi_pblock_destroy( pb );
806
807                 if ( e != target ) {
808                         be_entry_release_r( op, e );
809                 }
810         } else {
811                 rc = LDAP_NO_SUCH_OBJECT; /* return SLAP_CB_CONTINUE for correctness? */
812         }
813
814         if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache &&
815              rc != SLAP_CB_CONTINUE ) {
816                 g = op->o_tmpalloc( sizeof( GroupAssertion ) + gr_ndn->bv_len,
817                         op->o_tmpmemctx );
818                 g->ga_be = op->o_bd;
819                 g->ga_oc = group_oc;
820                 g->ga_at = group_at;
821                 g->ga_res = rc;
822                 g->ga_len = gr_ndn->bv_len;
823                 strcpy( g->ga_ndn, gr_ndn->bv_val );
824                 g->ga_next = op->o_groups;
825                 op->o_groups = g;
826         }
827         /*
828          * XXX don't call POST_GROUP_FN, I have no idea what the point of
829          * that plugin function was anyway
830          */
831 done:
832         op->o_bd = be;
833         return rc;
834 }
835
836 static int
837 slapi_over_init()
838 {
839         memset( &slapi, 0, sizeof(slapi) );
840
841         slapi.on_bi.bi_type = SLAPI_OVERLAY_NAME;
842
843         slapi.on_bi.bi_op_bind          = slapi_op_func;
844         slapi.on_bi.bi_op_unbind        = slapi_op_func;
845         slapi.on_bi.bi_op_search        = slapi_op_func;
846         slapi.on_bi.bi_op_compare       = slapi_op_func;
847         slapi.on_bi.bi_op_modify        = slapi_op_func;
848         slapi.on_bi.bi_op_modrdn        = slapi_op_func;
849         slapi.on_bi.bi_op_add           = slapi_op_func;
850         slapi.on_bi.bi_op_delete        = slapi_op_func;
851         slapi.on_bi.bi_op_abandon       = slapi_op_func;
852         slapi.on_bi.bi_op_cancel        = slapi_op_func;
853
854         slapi.on_bi.bi_extended         = slapi_over_extended;
855         slapi.on_bi.bi_access_allowed   = slapi_over_access_allowed;
856         slapi.on_bi.bi_operational      = slapi_over_aux_operational;
857         slapi.on_bi.bi_acl_group        = slapi_over_acl_group;
858
859         return overlay_register( &slapi );
860 }
861
862 int slapi_over_is_inst( BackendDB *be )
863 {
864         return overlay_is_inst( be, SLAPI_OVERLAY_NAME );
865 }
866
867 int slapi_over_config( BackendDB *be )
868 {
869         if ( slapi_over_initialized == 0 ) {
870                 int rc;
871
872                 /* do global initializaiton */
873                 ldap_pvt_thread_mutex_init( &slapi_hn_mutex );
874                 ldap_pvt_thread_mutex_init( &slapi_time_mutex );
875                 ldap_pvt_thread_mutex_init( &slapi_printmessage_mutex );
876
877                 slapi_log_file = slapi_ch_strdup( LDAP_RUNDIR LDAP_DIRSEP "errors" );
878
879                 rc = slapi_int_init_object_extensions();
880                 if ( rc != 0 )
881                         return rc;
882
883                 rc = slapi_over_init();
884                 if ( rc != 0 )
885                         return rc;
886
887                 slapi_over_initialized = 1;
888         }
889
890         return overlay_config( be, SLAPI_OVERLAY_NAME );
891 }
892
893 #endif /* LDAP_SLAPI */