]> git.sur5r.net Git - openldap/blob - servers/slapd/slapi/slapi_overlay.c
Sync with HEAD
[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-2006 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 ( !be_match( 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 || rs->sr_type == REP_SASL || rs->sr_type == REP_EXTENDED );
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                                 BER_BVISNULL( &op->orb_tmp_mech )
282                                         ? "<empty>" : op->orb_tmp_mech.bv_val, 0, 0 );
283
284                         return -1;
285                 }
286                 break;
287         }
288
289         return rs->sr_err;
290 }
291
292 static int
293 slapi_op_search_callback( Operation *op, SlapReply *rs, int prc )
294 {
295         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
296
297         /* check preoperation result code */
298         if ( prc < 0 ) {
299                 return rs->sr_err;
300         }
301
302         rs->sr_err = LDAP_SUCCESS;
303
304         if ( slapi_int_call_plugins( op->o_bd, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, pb ) == 0 ) {
305                 /*
306                  * The plugin can set the SLAPI_SEARCH_FILTER.
307                  * SLAPI_SEARCH_STRFILER is not normative.
308                  */
309                 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
310                 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
311         }
312
313         return LDAP_SUCCESS;
314 }
315
316 struct slapi_op_info {
317         int soi_preop;                  /* preoperation plugin parameter */
318         int soi_postop;                 /* postoperation plugin parameter */
319         int soi_internal_preop;         /* internal preoperation plugin parameter */
320         int soi_internal_postop;        /* internal postoperation plugin parameter */
321         int (*soi_callback)(Operation *, SlapReply *, int); /* preoperation result handler */
322 } slapi_op_dispatch_table[] = {
323         {
324                 SLAPI_PLUGIN_PRE_BIND_FN,
325                 SLAPI_PLUGIN_POST_BIND_FN,
326                 0,
327                 0,
328                 slapi_op_bind_callback
329         },
330         {
331                 SLAPI_PLUGIN_PRE_UNBIND_FN,
332                 SLAPI_PLUGIN_POST_UNBIND_FN,
333                 0,
334                 0,
335                 NULL
336         },
337         {
338                 SLAPI_PLUGIN_PRE_SEARCH_FN,
339                 SLAPI_PLUGIN_POST_SEARCH_FN,
340                 0,
341                 0,
342                 slapi_op_search_callback
343         },
344         {
345                 SLAPI_PLUGIN_PRE_COMPARE_FN,
346                 SLAPI_PLUGIN_POST_COMPARE_FN,
347                 0,
348                 0,
349                 NULL
350         },
351         {
352                 SLAPI_PLUGIN_PRE_MODIFY_FN,
353                 SLAPI_PLUGIN_POST_MODIFY_FN,
354                 SLAPI_PLUGIN_INTERNAL_PRE_MODIFY_FN,
355                 SLAPI_PLUGIN_INTERNAL_POST_MODIFY_FN,
356                 NULL
357         },
358         {
359                 SLAPI_PLUGIN_PRE_MODRDN_FN,
360                 SLAPI_PLUGIN_POST_MODRDN_FN,
361                 SLAPI_PLUGIN_INTERNAL_PRE_MODRDN_FN,
362                 SLAPI_PLUGIN_INTERNAL_POST_MODRDN_FN,
363                 NULL
364         },
365         {
366                 SLAPI_PLUGIN_PRE_ADD_FN,
367                 SLAPI_PLUGIN_POST_ADD_FN,
368                 SLAPI_PLUGIN_INTERNAL_PRE_ADD_FN,
369                 SLAPI_PLUGIN_INTERNAL_POST_ADD_FN,
370                 NULL
371         },
372         {
373                 SLAPI_PLUGIN_PRE_DELETE_FN,
374                 SLAPI_PLUGIN_POST_DELETE_FN,
375                 SLAPI_PLUGIN_INTERNAL_PRE_DELETE_FN,
376                 SLAPI_PLUGIN_INTERNAL_POST_DELETE_FN,
377                 NULL
378         },
379         {
380                 SLAPI_PLUGIN_PRE_ABANDON_FN,
381                 SLAPI_PLUGIN_POST_ABANDON_FN,
382                 0,
383                 0,
384                 NULL
385         },
386         {
387                 0,
388                 0,
389                 0,
390                 0,
391                 NULL
392         }
393 };
394
395 slap_operation_t
396 slapi_tag2op( ber_tag_t tag )
397 {
398         slap_operation_t op;
399
400         switch ( tag ) {
401         case LDAP_REQ_BIND:
402                 op = op_bind;
403                 break;
404         case LDAP_REQ_ADD:
405                 op = op_add;
406                 break;
407         case LDAP_REQ_DELETE:
408                 op = op_delete;
409                 break;
410         case LDAP_REQ_MODRDN:
411                 op = op_modrdn;
412                 break;
413         case LDAP_REQ_MODIFY:
414                 op = op_modify;
415                 break;
416         case LDAP_REQ_COMPARE:
417                 op = op_compare;
418                 break;
419         case LDAP_REQ_SEARCH:
420                 op = op_search;
421                 break;
422         case LDAP_REQ_UNBIND:
423                 op = op_unbind;
424                 break;
425         default:
426                 op = op_last;
427                 break;
428         }
429
430         return op;
431 }
432
433 /* Add SLAPI_RESCONTROLS to rs->sr_ctrls, with care, because
434  * rs->sr_ctrls could be allocated on the stack */
435 static int
436 slapi_over_merge_controls( Operation *op, SlapReply *rs )
437 {
438         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
439         LDAPControl             **ctrls = NULL;
440         LDAPControl             **slapi_ctrls = NULL;
441         size_t                  n_slapi_ctrls = 0;
442         size_t                  n_rs_ctrls = 0;
443         size_t                  i;
444
445         slapi_pblock_get( pb, SLAPI_RESCONTROLS, (void **)&slapi_ctrls );
446
447         n_slapi_ctrls = slapi_int_count_controls( slapi_ctrls );
448         n_rs_ctrls = slapi_int_count_controls( rs->sr_ctrls );
449
450         slapi_pblock_set( pb, SLAPI_X_OLD_RESCONTROLS, (void *)rs->sr_ctrls );
451
452         if ( n_slapi_ctrls == 0 )
453                 return LDAP_SUCCESS; /* no SLAPI controls */
454
455         ctrls = (LDAPControl **) op->o_tmpalloc(
456                 ( n_slapi_ctrls + n_rs_ctrls + 1 ) * sizeof(LDAPControl *),
457                 op->o_tmpmemctx );
458
459         for ( i = 0; i < n_slapi_ctrls; i++ ) {
460                 ctrls[i] = slapi_ctrls[i];
461         }
462         if ( rs->sr_ctrls != NULL ) {
463                 for ( i = 0; i < n_rs_ctrls; i++ ) {
464                         ctrls[n_slapi_ctrls + i] = rs->sr_ctrls[i];
465                 }
466         }
467         ctrls[n_slapi_ctrls + n_rs_ctrls] = NULL;
468
469         rs->sr_ctrls = ctrls;
470
471         return LDAP_SUCCESS;
472 }
473
474 static int
475 slapi_over_unmerge_controls( Operation *op, SlapReply *rs )
476 {
477         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
478         LDAPControl             **rs_ctrls = NULL;
479
480         slapi_pblock_get( pb, SLAPI_X_OLD_RESCONTROLS, (void **)&rs_ctrls );
481
482         if ( rs_ctrls == NULL || rs->sr_ctrls == rs_ctrls ) {
483                 /* no copying done */
484                 return LDAP_SUCCESS;
485         }
486
487         op->o_tmpfree( rs->sr_ctrls, op->o_tmpmemctx );
488         rs->sr_ctrls = rs_ctrls;
489
490         return LDAP_SUCCESS;
491 }
492
493 static int
494 slapi_over_response( Operation *op, SlapReply *rs )
495 {
496         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
497         int                     rc = SLAP_CB_CONTINUE;
498
499         if ( pb->pb_intop == 0 ) {
500                 switch ( rs->sr_type ) {
501                 case REP_RESULT:
502                 case REP_SASL:
503                 case REP_EXTENDED:
504                         rc = slapi_over_result( op, rs, SLAPI_PLUGIN_PRE_RESULT_FN );
505                         break;
506                 case REP_SEARCH:
507                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_PRE_ENTRY_FN );
508                         break;
509                 case REP_SEARCHREF:
510                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_PRE_REFERRAL_FN );
511                         break;
512                 default:
513                         break;
514                 }
515         }
516
517         slapi_over_merge_controls( op, rs );
518
519         return rc;
520 }
521
522 static int
523 slapi_over_cleanup( Operation *op, SlapReply *rs )
524 {
525         Slapi_PBlock            *pb = SLAPI_OPERATION_PBLOCK( op );
526         int                     rc = SLAP_CB_CONTINUE;
527
528         slapi_over_unmerge_controls( op, rs );
529
530         if ( pb->pb_intop == 0 ) {
531                 switch ( rs->sr_type ) {
532                 case REP_RESULT:
533                 case REP_SASL:
534                 case REP_EXTENDED:
535                         rc = slapi_over_result( op, rs, SLAPI_PLUGIN_POST_RESULT_FN );
536                         break;
537                 case REP_SEARCH:
538                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_POST_ENTRY_FN );
539                         break;
540                 case REP_SEARCHREF:
541                         rc = slapi_over_search( op, rs, SLAPI_PLUGIN_POST_REFERRAL_FN );
542                         break;
543                 default:
544                         break;
545                 }
546         }
547
548         return rc;
549 }
550
551 static int
552 slapi_op_func( Operation *op, SlapReply *rs )
553 {
554         Slapi_PBlock            *pb;
555         slap_operation_t        which;
556         struct slapi_op_info    *opinfo;
557         int                     rc;
558         slap_overinfo           *oi;
559         slap_overinst           *on;
560         slap_callback           cb;
561         int                     internal_op;
562         int                     preop_type, postop_type;
563         BackendDB               *be;
564
565         if ( !slapi_plugins_used )
566                 return SLAP_CB_CONTINUE;
567
568         /*
569          * Find the SLAPI operation information for this LDAP
570          * operation; this will contain the preop and postop
571          * plugin types, as well as optional callbacks for
572          * setting up the SLAPI environment.
573          */
574         which = slapi_tag2op( op->o_tag );
575         if ( which >= op_last ) {
576                 /* invalid operation, but let someone else deal with it */
577                 return SLAP_CB_CONTINUE;
578         }
579
580         opinfo = &slapi_op_dispatch_table[which];
581         if ( opinfo == NULL ) {
582                 /* no SLAPI plugin types for this operation */
583                 return SLAP_CB_CONTINUE;
584         }
585
586         internal_op = slapi_op_internal_p( op, rs, &cb );
587
588         if ( internal_op ) {
589                 preop_type = opinfo->soi_internal_preop;
590                 postop_type = opinfo->soi_internal_postop;
591         } else {
592                 preop_type = opinfo->soi_preop;
593                 postop_type = opinfo->soi_postop;
594         }
595
596         if ( preop_type == 0 ) {
597                 /* no SLAPI plugin types for this operation */
598                 pb = NULL;
599                 rc = SLAP_CB_CONTINUE;
600                 goto cleanup;
601         }
602
603         pb = SLAPI_OPERATION_PBLOCK( op );
604
605         /* cache backend so we call correct postop plugins */
606         be = pb->pb_op->o_bd;
607
608         rc = slapi_int_call_plugins( be, preop_type, pb );
609
610         /*
611          * soi_callback is responsible for examining the result code
612          * of the preoperation plugin and determining whether to
613          * abort. This is needed because of special SLAPI behaviour
614          e with bind preoperation plugins.
615          *
616          * The soi_callback function is also used to reset any values
617          * returned from the preoperation plugin before calling the
618          * backend (for the success case).
619          */
620         if ( opinfo->soi_callback == NULL ) {
621                 /* default behaviour is preop plugin can abort operation */
622                 if ( rc < 0 ) {
623                         rc = rs->sr_err;
624                         goto cleanup;
625                 }
626         } else {
627                 rc = (opinfo->soi_callback)( op, rs, rc );
628                 if ( rc )
629                         goto cleanup;
630         }
631
632         /*
633          * Call actual backend (or next overlay in stack). We need to
634          * do this rather than returning SLAP_CB_CONTINUE and calling
635          * postoperation plugins in a response handler to match the
636          * behaviour of SLAPI in OpenLDAP 2.2, where postoperation
637          * plugins are called after the backend has completely
638          * finished processing the operation.
639          */
640         on = (slap_overinst *)op->o_bd->bd_info;
641         oi = on->on_info;
642
643         rc = overlay_op_walk( op, rs, which, oi, on->on_next );
644
645         /*
646          * Call postoperation plugins
647          */
648         slapi_int_call_plugins( be, postop_type, pb );
649
650 cleanup:
651         if ( !internal_op ) {
652                 slapi_pblock_destroy(pb);
653                 cb.sc_private = NULL;
654         }
655
656         op->o_callback = cb.sc_next;
657
658         return rc;
659 }
660
661 static int
662 slapi_over_extended( Operation *op, SlapReply *rs )
663 {
664         Slapi_PBlock    *pb;
665         SLAPI_FUNC      callback;
666         int             rc;
667         int             internal_op;
668         slap_callback   cb;
669
670         slapi_int_get_extop_plugin( &op->ore_reqoid, &callback );
671         if ( callback == NULL ) {
672                 return SLAP_CB_CONTINUE;
673         }
674
675         internal_op = slapi_op_internal_p( op, rs, &cb );
676         if ( internal_op ) {
677                 return SLAP_CB_CONTINUE;
678         }
679
680         pb = SLAPI_OPERATION_PBLOCK( op );
681
682         rc = (*callback)( pb );
683         if ( rc == SLAPI_PLUGIN_EXTENDED_SENT_RESULT ) {
684                 goto cleanup;
685         } else if ( rc == SLAPI_PLUGIN_EXTENDED_NOT_HANDLED ) {
686                 rc = SLAP_CB_CONTINUE;
687                 goto cleanup;
688         }
689
690         assert( rs->sr_rspoid != NULL );
691
692         send_ldap_extended( op, rs );
693
694 #if 0
695         slapi_ch_free_string( (char **)&rs->sr_rspoid );
696 #endif
697
698         if ( rs->sr_rspdata != NULL )
699                 ber_bvfree( rs->sr_rspdata );
700
701         rc = rs->sr_err;
702
703 cleanup:
704         slapi_pblock_destroy( pb );
705         op->o_callback = cb.sc_next;
706
707         return rc;
708 }
709
710 static int
711 slapi_over_access_allowed(
712         Operation               *op,
713         Entry                   *e,
714         AttributeDescription    *desc,
715         struct berval           *val,
716         slap_access_t           access,
717         AccessControlState      *state,
718         slap_mask_t             *maskp )
719 {
720         int                     rc;
721         Slapi_PBlock            *pb;
722         slap_callback           cb;
723         int                     internal_op;
724         SlapReply               rs = { REP_RESULT };
725
726         internal_op = slapi_op_internal_p( op, &rs, &cb );
727
728         cb.sc_response = NULL;
729         cb.sc_cleanup = NULL;
730
731         pb = SLAPI_OPERATION_PBLOCK( op );
732
733         rc = slapi_int_access_allowed( op, e, desc, val, access, state );
734         if ( rc ) {
735                 rc = SLAP_CB_CONTINUE;
736         }
737
738         if ( !internal_op ) {
739                 slapi_pblock_destroy( pb );
740         }
741
742         op->o_callback = cb.sc_next;
743
744         return rc;
745 }
746
747 static int
748 slapi_over_acl_group(
749         Operation               *op,
750         Entry                   *target,
751         struct berval           *gr_ndn,
752         struct berval           *op_ndn,
753         ObjectClass             *group_oc,
754         AttributeDescription    *group_at )
755 {
756         Slapi_Entry             *e;
757         int                     rc;
758         Slapi_PBlock            *pb;
759         BackendDB               *be = op->o_bd;
760         GroupAssertion          *g;
761         SlapReply               rs = { REP_RESULT };
762
763         op->o_bd = select_backend( gr_ndn, 0, 0 );
764
765         for ( g = op->o_groups; g; g = g->ga_next ) {
766                 if ( g->ga_be != op->o_bd || g->ga_oc != group_oc ||
767                         g->ga_at != group_at || g->ga_len != gr_ndn->bv_len )
768                 {
769                         continue;
770                 }
771                 if ( strcmp( g->ga_ndn, gr_ndn->bv_val ) == 0 ) {
772                         break;
773                 }
774         }
775         if ( g != NULL ) {
776                 rc = g->ga_res;
777                 goto done;
778         }
779
780         if ( target != NULL && dn_match( &target->e_nname, gr_ndn ) ) {
781                 e = target;
782                 rc = 0;
783         } else {
784                 rc = be_entry_get_rw( op, gr_ndn, group_oc, group_at, 0, &e );
785         }
786         if ( e != NULL ) {
787                 int                     internal_op;
788                 slap_callback           cb;
789
790                 internal_op = slapi_op_internal_p( op, &rs, &cb );
791
792                 cb.sc_response = NULL;
793                 cb.sc_cleanup = NULL;
794
795                 pb = SLAPI_OPERATION_PBLOCK( op );
796
797                 slapi_pblock_set( pb, SLAPI_X_GROUP_ENTRY,        (void *)e );
798                 slapi_pblock_set( pb, SLAPI_X_GROUP_OPERATION_DN, (void *)op_ndn->bv_val );
799                 slapi_pblock_set( pb, SLAPI_X_GROUP_ATTRIBUTE,    (void *)group_at->ad_cname.bv_val );
800                 slapi_pblock_set( pb, SLAPI_X_GROUP_TARGET_ENTRY, (void *)target );
801
802                 rc = slapi_over_call_plugins( pb, SLAPI_X_PLUGIN_PRE_GROUP_FN );
803                 if ( rc >= 0 ) /* 1 means no plugins called */
804                         rc = SLAP_CB_CONTINUE;
805                 else
806                         rc = pb->pb_rs->sr_err;
807
808                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_ENTRY );
809                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_OPERATION_DN );
810                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_ATTRIBUTE );
811                 slapi_pblock_delete_param( pb, SLAPI_X_GROUP_TARGET_ENTRY );
812
813                 if ( !internal_op )
814                         slapi_pblock_destroy( pb );
815
816                 if ( e != target ) {
817                         be_entry_release_r( op, e );
818                 }
819
820                 op->o_callback = cb.sc_next;
821         } else {
822                 rc = LDAP_NO_SUCH_OBJECT; /* return SLAP_CB_CONTINUE for correctness? */
823         }
824
825         if ( op->o_tag != LDAP_REQ_BIND && !op->o_do_not_cache &&
826              rc != SLAP_CB_CONTINUE ) {
827                 g = op->o_tmpalloc( sizeof( GroupAssertion ) + gr_ndn->bv_len,
828                         op->o_tmpmemctx );
829                 g->ga_be = op->o_bd;
830                 g->ga_oc = group_oc;
831                 g->ga_at = group_at;
832                 g->ga_res = rc;
833                 g->ga_len = gr_ndn->bv_len;
834                 strcpy( g->ga_ndn, gr_ndn->bv_val );
835                 g->ga_next = op->o_groups;
836                 op->o_groups = g;
837         }
838         /*
839          * XXX don't call POST_GROUP_FN, I have no idea what the point of
840          * that plugin function was anyway
841          */
842 done:
843         op->o_bd = be;
844         return rc;
845 }
846
847 static int
848 slapi_over_db_open( BackendDB *be )
849 {
850         Slapi_PBlock            *pb;
851         int                     rc;
852
853         pb = slapi_pblock_new();
854
855         rc = slapi_int_call_plugins( be, SLAPI_PLUGIN_START_FN, pb );
856
857         slapi_pblock_destroy( pb );
858
859         return rc;
860 }
861
862 static int
863 slapi_over_db_close( BackendDB *be )
864 {
865         Slapi_PBlock            *pb;
866         int                     rc;
867
868         pb = slapi_pblock_new();
869
870         rc = slapi_int_call_plugins( be, SLAPI_PLUGIN_CLOSE_FN, pb );
871
872         slapi_pblock_destroy( pb );
873
874         return rc;
875 }
876
877 static int
878 slapi_over_init()
879 {
880         memset( &slapi, 0, sizeof(slapi) );
881
882         slapi.on_bi.bi_type = SLAPI_OVERLAY_NAME;
883
884         slapi.on_bi.bi_op_bind          = slapi_op_func;
885         slapi.on_bi.bi_op_unbind        = slapi_op_func;
886         slapi.on_bi.bi_op_search        = slapi_op_func;
887         slapi.on_bi.bi_op_compare       = slapi_op_func;
888         slapi.on_bi.bi_op_modify        = slapi_op_func;
889         slapi.on_bi.bi_op_modrdn        = slapi_op_func;
890         slapi.on_bi.bi_op_add           = slapi_op_func;
891         slapi.on_bi.bi_op_delete        = slapi_op_func;
892         slapi.on_bi.bi_op_abandon       = slapi_op_func;
893         slapi.on_bi.bi_op_cancel        = slapi_op_func;
894
895         slapi.on_bi.bi_db_open          = slapi_over_db_open;
896         slapi.on_bi.bi_db_close         = slapi_over_db_close;
897
898         slapi.on_bi.bi_extended         = slapi_over_extended;
899         slapi.on_bi.bi_access_allowed   = slapi_over_access_allowed;
900         slapi.on_bi.bi_operational      = slapi_over_aux_operational;
901         slapi.on_bi.bi_acl_group        = slapi_over_acl_group;
902
903         return overlay_register( &slapi );
904 }
905
906 int slapi_over_is_inst( BackendDB *be )
907 {
908         return overlay_is_inst( be, SLAPI_OVERLAY_NAME );
909 }
910
911 int slapi_over_config( BackendDB *be )
912 {
913         if ( slapi_over_initialized == 0 ) {
914                 int rc;
915
916                 /* do global initializaiton */
917                 ldap_pvt_thread_mutex_init( &slapi_hn_mutex );
918                 ldap_pvt_thread_mutex_init( &slapi_time_mutex );
919                 ldap_pvt_thread_mutex_init( &slapi_printmessage_mutex );
920
921                 if ( slapi_log_file == NULL )
922                         slapi_log_file = slapi_ch_strdup( LDAP_RUNDIR LDAP_DIRSEP "errors" );
923
924                 rc = slapi_int_init_object_extensions();
925                 if ( rc != 0 )
926                         return rc;
927
928                 rc = slapi_over_init();
929                 if ( rc != 0 )
930                         return rc;
931
932                 slapi_over_initialized = 1;
933         }
934
935         return overlay_config( be, SLAPI_OVERLAY_NAME );
936 }
937
938 #endif /* LDAP_SLAPI */