]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/database.c
coverity scan, fix typo
[openldap] / servers / slapd / back-monitor / database.c
1 /* database.c - deals with database subsystem */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2001-2007 The OpenLDAP Foundation.
6  * Portions Copyright 2001-2003 Pierangelo Masarati.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Pierangelo Masarati for inclusion
19  * in OpenLDAP Software.
20  */
21
22 #include "portable.h"
23
24 #include <stdio.h>
25 #include <ac/string.h>
26 #include <ac/unistd.h>
27
28 #include "slap.h"
29 #include "back-monitor.h"
30
31 #if defined(LDAP_SLAPI)
32 #include "slapi.h"
33 static int monitor_back_add_plugin( monitor_info_t *mi, Backend *be, Entry *e );
34 #endif /* defined(LDAP_SLAPI) */
35
36 /* for PATH_MAX on some systems (e.g. Solaris) */
37 #ifdef HAVE_LIMITS_H
38 #include <limits.h>
39 #endif /* HAVE_LIMITS_H */
40 #ifndef PATH_MAX
41 #define PATH_MAX        4095
42 #endif /* ! PATH_MAX */
43
44 static int
45 monitor_subsys_database_modify(
46         Operation       *op,
47         SlapReply       *rs,
48         Entry           *e );
49
50 static struct restricted_ops_t {
51         struct berval   op;
52         unsigned int    tag;
53 } restricted_ops[] = {
54         { BER_BVC( "add" ),                     SLAP_RESTRICT_OP_ADD },
55         { BER_BVC( "bind" ),                    SLAP_RESTRICT_OP_BIND },
56         { BER_BVC( "compare" ),                 SLAP_RESTRICT_OP_COMPARE },
57         { BER_BVC( "delete" ),                  SLAP_RESTRICT_OP_DELETE },
58         { BER_BVC( "extended" ),                SLAP_RESTRICT_OP_EXTENDED },
59         { BER_BVC( "modify" ),                  SLAP_RESTRICT_OP_MODIFY },
60         { BER_BVC( "rename" ),                  SLAP_RESTRICT_OP_RENAME },
61         { BER_BVC( "search" ),                  SLAP_RESTRICT_OP_SEARCH },
62         { BER_BVNULL,                           0 }
63 }, restricted_exops[] = {
64         { BER_BVC( LDAP_EXOP_START_TLS ),       SLAP_RESTRICT_EXOP_START_TLS },
65         { BER_BVC( LDAP_EXOP_MODIFY_PASSWD ),   SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
66         { BER_BVC( LDAP_EXOP_WHO_AM_I ),        SLAP_RESTRICT_EXOP_WHOAMI },
67         { BER_BVC( LDAP_EXOP_CANCEL ),  SLAP_RESTRICT_EXOP_CANCEL },
68         { BER_BVNULL,                           0 }
69 };
70
71 static int
72 init_readOnly( monitor_info_t *mi, Entry *e, slap_mask_t restrictops )
73 {
74         struct berval   *tf = ( ( restrictops & SLAP_RESTRICT_OP_MASK ) == SLAP_RESTRICT_OP_WRITES ) ?
75                 (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv;
76
77         return attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
78 }
79
80 static int
81 init_restrictedOperation( monitor_info_t *mi, Entry *e, slap_mask_t restrictops )
82 {
83         int     i, rc;
84
85         for ( i = 0; restricted_ops[ i ].op.bv_val; i++ ) {
86                 if ( restrictops & restricted_ops[ i ].tag ) {
87                         rc = attr_merge_one( e, mi->mi_ad_restrictedOperation,
88                                         &restricted_ops[ i ].op,
89                                         &restricted_ops[ i ].op );
90                         if ( rc ) {
91                                 return rc;
92                         }
93                 }
94         }
95
96         for ( i = 0; restricted_exops[ i ].op.bv_val; i++ ) {
97                 if ( restrictops & restricted_exops[ i ].tag ) {
98                         rc = attr_merge_one( e, mi->mi_ad_restrictedOperation,
99                                         &restricted_exops[ i ].op,
100                                         &restricted_exops[ i ].op );
101                         if ( rc ) {
102                                 return rc;
103                         }
104                 }
105         }
106
107         return LDAP_SUCCESS;
108 }
109
110 static int
111 monitor_subsys_database_init_one(
112         monitor_info_t          *mi,
113         BackendDB               *be,
114         monitor_subsys_t        *ms,
115         monitor_subsys_t        *ms_backend,
116         monitor_subsys_t        *ms_overlay,
117         struct berval           *rdn,
118         Entry                   *e_database,
119         Entry                   ***epp )
120 {
121         char                    buf[ BACKMONITOR_BUFSIZE ];
122         int                     j;
123         slap_overinfo           *oi = NULL;
124         BackendInfo             *bi, *bi2;
125         Entry                   *e;
126         monitor_entry_t         *mp;
127         char                    *rdnval = strchr( rdn->bv_val, '=' ) + 1;
128         struct berval           bv;
129
130         bi = be->bd_info;
131
132         if ( overlay_is_over( be ) ) {
133                 oi = (slap_overinfo *)be->bd_info->bi_private;
134                 bi = oi->oi_orig;
135         }
136
137         /* Subordinates are not exposed as their own naming context */
138         if ( SLAP_GLUE_SUBORDINATE( be ) ) {
139                 return 0;
140         }
141
142         e = monitor_entry_stub( &ms->mss_dn, &ms->mss_ndn, rdn,
143                 mi->mi_oc_monitoredObject, mi, NULL, NULL );
144
145         if ( e == NULL ) {
146                 Debug( LDAP_DEBUG_ANY,
147                         "monitor_subsys_database_init: "
148                         "unable to create entry \"%s,%s\"\n",
149                         rdn->bv_val, ms->mss_dn.bv_val, 0 );
150                 return( -1 );
151         }
152
153         ber_str2bv( bi->bi_type, 0, 0, &bv );
154         attr_merge_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
155         attr_merge_one( e, mi->mi_ad_monitorIsShadow,
156                 SLAP_SHADOW( be ) ? (struct berval *)&slap_true_bv :
157                         (struct berval *)&slap_false_bv, NULL );
158
159         if ( SLAP_MONITOR( be ) ) {
160                 attr_merge( e, slap_schema.si_ad_monitorContext,
161                                 be->be_suffix, be->be_nsuffix );
162                 attr_merge( e_database, slap_schema.si_ad_monitorContext,
163                                 be->be_suffix, be->be_nsuffix );
164
165         } else {
166                 if ( be->be_suffix == NULL ) {
167                         Debug( LDAP_DEBUG_ANY,
168                                 "monitor_subsys_database_init: "
169                                 "missing suffix for %s\n",
170                                 rdnval, 0, 0 );
171                         return -1;
172                 }
173                 attr_merge( e, slap_schema.si_ad_namingContexts,
174                                 be->be_suffix, be->be_nsuffix );
175                 attr_merge( e_database, slap_schema.si_ad_namingContexts,
176                                 be->be_suffix, be->be_nsuffix );
177         }
178
179         (void)init_readOnly( mi, e, be->be_restrictops );
180         (void)init_restrictedOperation( mi, e, be->be_restrictops );
181
182         if ( SLAP_SHADOW( be ) && be->be_update_refs ) {
183                 attr_merge_normalize( e, mi->mi_ad_monitorUpdateRef,
184                                 be->be_update_refs, NULL );
185         }
186
187         if ( oi != NULL ) {
188                 slap_overinst   *on = oi->oi_list,
189                                 *on1 = on;
190
191                 for ( ; on; on = on->on_next ) {
192                         slap_overinst           *on2;
193
194                         for ( on2 = on1; on2 != on; on2 = on2->on_next ) {
195                                 if ( on2->on_bi.bi_type == on->on_bi.bi_type ) {
196                                         break;
197                                 }
198                         }
199
200                         if ( on2 != on ) {
201                                 break;
202                         }
203                         
204                         ber_str2bv( on->on_bi.bi_type, 0, 0, &bv );
205                         attr_merge_normalize_one( e, mi->mi_ad_monitorOverlay,
206                                         &bv, NULL );
207
208                         /* find the overlay number, j */
209                         for ( on2 = overlay_next( NULL ), j = 0; on2; on2 = overlay_next( on2 ), j++ ) {
210                                 if ( on2->on_bi.bi_type == on->on_bi.bi_type ) {
211                                         break;
212                                 }
213                         }
214                         assert( on2 != NULL );
215
216                         snprintf( buf, sizeof( buf ), 
217                                 "cn=Overlay %d,%s", 
218                                 j, ms_overlay->mss_dn.bv_val );
219                         ber_str2bv( buf, 0, 0, &bv );
220                         attr_merge_normalize_one( e,
221                                         slap_schema.si_ad_seeAlso,
222                                         &bv, NULL );
223                 }
224         }
225
226         j = -1;
227         LDAP_STAILQ_FOREACH( bi2, &backendInfo, bi_next ) {
228                 j++;
229                 if ( bi2->bi_type == bi->bi_type ) {
230                         snprintf( buf, sizeof( buf ), 
231                                 "cn=Backend %d,%s", 
232                                 j, ms_backend->mss_dn.bv_val );
233                         bv.bv_val = buf;
234                         bv.bv_len = strlen( buf );
235                         attr_merge_normalize_one( e,
236                                         slap_schema.si_ad_seeAlso,
237                                         &bv, NULL );
238                         break;
239                 }
240         }
241         /* we must find it! */
242         assert( j >= 0 );
243
244         mp = monitor_entrypriv_create();
245         if ( mp == NULL ) {
246                 return -1;
247         }
248         e->e_private = ( void * )mp;
249         mp->mp_info = ms;
250         mp->mp_flags = ms->mss_flags
251                 | MONITOR_F_SUB;
252
253         if ( monitor_cache_add( mi, e ) ) {
254                 Debug( LDAP_DEBUG_ANY,
255                         "monitor_subsys_database_init: "
256                         "unable to add entry \"%s,%s\"\n",
257                         rdn->bv_val, ms->mss_dn.bv_val, 0 );
258                 return( -1 );
259         }
260
261 #if defined(LDAP_SLAPI)
262         monitor_back_add_plugin( mi, be, e );
263 #endif /* defined(LDAP_SLAPI) */
264
265         if ( oi != NULL ) {
266                 Entry           **ep_overlay = &mp->mp_children;
267                 monitor_entry_t *mp_overlay;
268                 slap_overinst   *on = oi->oi_list;
269                 int             o;
270
271                 for ( o = 0; on; o++, on = on->on_next ) {
272                         Entry                   *e_overlay;
273                         slap_overinst           *on2;
274
275                         /* find the overlay number, j */
276                         for ( on2 = overlay_next( NULL ), j = 0; on2; on2 = overlay_next( on2 ), j++ ) {
277                                 if ( on2->on_bi.bi_type == on->on_bi.bi_type ) {
278                                         break;
279                                 }
280                         }
281                         assert( on2 != NULL );
282
283                         bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Overlay %d", o );
284                         bv.bv_val = buf;
285
286                         e_overlay = monitor_entry_stub( &e->e_name, &e->e_nname, &bv,
287                                 mi->mi_oc_monitoredObject, mi, NULL, NULL );
288
289                         if ( e_overlay == NULL ) {
290                                 Debug( LDAP_DEBUG_ANY,
291                                         "monitor_subsys_database_init: "
292                                         "unable to create entry "
293                                         "\"cn=Overlay %d,%s,%s\"\n",
294                                         o, rdn->bv_val, ms->mss_dn.bv_val );
295                                 return( -1 );
296                         }
297                         ber_str2bv( on->on_bi.bi_type, 0, 0, &bv );
298                         attr_merge_one( e_overlay, mi->mi_ad_monitoredInfo, &bv, NULL );
299
300                         bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Overlay %d,%s",
301                                 j, ms_overlay->mss_dn.bv_val );
302                         bv.bv_val = buf;
303                         attr_merge_normalize_one( e_overlay, slap_schema.si_ad_seeAlso,
304                                 &bv, NULL );
305
306                         if ( SLAP_MONITOR( be ) ) {
307                                 attr_merge( e_overlay, slap_schema.si_ad_monitorContext,
308                                                 be->be_suffix, be->be_nsuffix );
309
310                         } else {
311                                 attr_merge( e_overlay, slap_schema.si_ad_namingContexts,
312                                                 be->be_suffix, be->be_nsuffix );
313                         }
314
315                         mp_overlay = monitor_entrypriv_create();
316                         if ( mp_overlay == NULL ) {
317                                 return -1;
318                         }
319                         e_overlay->e_private = ( void * )mp_overlay;
320                         mp_overlay->mp_info = ms;
321                         mp_overlay->mp_flags = ms->mss_flags
322                                 | MONITOR_F_SUB;
323         
324                         if ( monitor_cache_add( mi, e_overlay ) ) {
325                                 Debug( LDAP_DEBUG_ANY,
326                                         "monitor_subsys_database_init: "
327                                         "unable to add entry "
328                                         "\"cn=Overlay %d,%s,%s\"\n",
329                                         o, rdn->bv_val, ms->mss_dn.bv_val );
330                                 return( -1 );
331                         }
332
333                         *ep_overlay = e_overlay;
334                         ep_overlay = &mp_overlay->mp_next;
335                 }
336         }
337
338         **epp = e;
339         *epp = &mp->mp_next;
340
341         return 0;
342 }
343
344 int
345 monitor_back_register_database(
346         BackendDB               *be )
347 {
348         monitor_info_t          *mi;
349         Entry                   *e_database, **ep;
350         int                     i, rc;
351         monitor_entry_t         *mp;
352         monitor_subsys_t        *ms_backend,
353                                 *ms_database,
354                                 *ms_overlay;
355         struct berval           bv;
356         char                    buf[ BACKMONITOR_BUFSIZE ];
357
358         assert( be_monitor != NULL );
359
360         if ( !monitor_subsys_is_opened() ) {
361                 return monitor_back_register_database_limbo( be );
362         }
363
364         mi = ( monitor_info_t * )be_monitor->be_private;
365
366         ms_backend = monitor_back_get_subsys( SLAPD_MONITOR_BACKEND_NAME );
367         if ( ms_backend == NULL ) {
368                 Debug( LDAP_DEBUG_ANY,
369                         "monitor_back_register_database: "
370                         "unable to get "
371                         "\"" SLAPD_MONITOR_BACKEND_NAME "\" "
372                         "subsystem\n",
373                         0, 0, 0 );
374                 return -1;
375         }
376
377         ms_database = monitor_back_get_subsys( SLAPD_MONITOR_DATABASE_NAME );
378         if ( ms_database == NULL ) {
379                 Debug( LDAP_DEBUG_ANY,
380                         "monitor_back_register_database: "
381                         "unable to get "
382                         "\"" SLAPD_MONITOR_DATABASE_NAME "\" "
383                         "subsystem\n",
384                         0, 0, 0 );
385                 return -1;
386         }
387
388         ms_overlay = monitor_back_get_subsys( SLAPD_MONITOR_OVERLAY_NAME );
389         if ( ms_overlay == NULL ) {
390                 Debug( LDAP_DEBUG_ANY,
391                         "monitor_back_register_database: "
392                         "unable to get "
393                         "\"" SLAPD_MONITOR_OVERLAY_NAME "\" "
394                         "subsystem\n",
395                         0, 0, 0 );
396                 return -1;
397         }
398
399         if ( monitor_cache_get( mi, &ms_database->mss_ndn, &e_database ) ) {
400                 Debug( LDAP_DEBUG_ANY,
401                         "monitor_subsys_database_init: "
402                         "unable to get entry \"%s\"\n",
403                         ms_database->mss_ndn.bv_val, 0, 0 );
404                 return( -1 );
405         }
406
407         mp = ( monitor_entry_t * )e_database->e_private;
408         for ( i = -1, ep = &mp->mp_children; *ep; i++ ) {
409                 Attribute       *a;
410
411                 a = attr_find( (*ep)->e_attrs, slap_schema.si_ad_namingContexts );
412                 if ( a ) {
413                         int             j, k;
414
415                         for ( j = 0; !BER_BVISNULL( &a->a_nvals[ j ] ); j++ ) {
416                                 for ( k = 0; !BER_BVISNULL( &be->be_nsuffix[ k ] ); k++ ) {
417                                         if ( dn_match( &a->a_nvals[ j ], &be->be_nsuffix[ k ] ) ) {
418                                                 rc = 0;
419                                                 goto done;
420                                         }
421                                 }
422                         }
423                 }
424
425                 mp = ( monitor_entry_t * )(*ep)->e_private;
426
427                 assert( mp != NULL );
428                 ep = &mp->mp_next;
429         }
430
431         bv.bv_val = buf;
432         bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Database %d", i );
433         if ( bv.bv_len >= sizeof( buf ) ) {
434                 rc = -1;
435                 goto done;
436         }
437         
438         rc = monitor_subsys_database_init_one( mi, be,
439                 ms_database, ms_backend, ms_overlay, &bv, e_database, &ep );
440         if ( rc != 0 ) {
441                 goto done;
442         }
443
444 done:;
445         monitor_cache_release( mi, e_database );
446
447         return rc;
448 }
449
450 int
451 monitor_subsys_database_init(
452         BackendDB               *be,
453         monitor_subsys_t        *ms )
454 {
455         monitor_info_t          *mi;
456         Entry                   *e_database, **ep;
457         int                     i, rc;
458         monitor_entry_t         *mp;
459         monitor_subsys_t        *ms_backend,
460                                 *ms_overlay;
461         struct berval           bv;
462
463         assert( be != NULL );
464
465         ms->mss_modify = monitor_subsys_database_modify;
466
467         mi = ( monitor_info_t * )be->be_private;
468
469         ms_backend = monitor_back_get_subsys( SLAPD_MONITOR_BACKEND_NAME );
470         if ( ms_backend == NULL ) {
471                 Debug( LDAP_DEBUG_ANY,
472                         "monitor_subsys_database_init: "
473                         "unable to get "
474                         "\"" SLAPD_MONITOR_BACKEND_NAME "\" "
475                         "subsystem\n",
476                         0, 0, 0 );
477                 return -1;
478         }
479
480         ms_overlay = monitor_back_get_subsys( SLAPD_MONITOR_OVERLAY_NAME );
481         if ( ms_overlay == NULL ) {
482                 Debug( LDAP_DEBUG_ANY,
483                         "monitor_subsys_database_init: "
484                         "unable to get "
485                         "\"" SLAPD_MONITOR_OVERLAY_NAME "\" "
486                         "subsystem\n",
487                         0, 0, 0 );
488                 return -1;
489         }
490
491         if ( monitor_cache_get( mi, &ms->mss_ndn, &e_database ) ) {
492                 Debug( LDAP_DEBUG_ANY,
493                         "monitor_subsys_database_init: "
494                         "unable to get entry \"%s\"\n",
495                         ms->mss_ndn.bv_val, 0, 0 );
496                 return( -1 );
497         }
498
499         (void)init_readOnly( mi, e_database, frontendDB->be_restrictops );
500         (void)init_restrictedOperation( mi, e_database, frontendDB->be_restrictops );
501
502         mp = ( monitor_entry_t * )e_database->e_private;
503         mp->mp_children = NULL;
504         ep = &mp->mp_children;
505
506         BER_BVSTR( &bv, "cn=Frontend" );
507         rc = monitor_subsys_database_init_one( mi, frontendDB,
508                 ms, ms_backend, ms_overlay, &bv, e_database, &ep );
509         if ( rc != 0 ) {
510                 return rc;
511         }
512
513         i = -1;
514         LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
515                 char            buf[ BACKMONITOR_BUFSIZE ];
516
517                 bv.bv_val = buf;
518                 bv.bv_len = snprintf( buf, sizeof( buf ), "cn=Database %d", ++i );
519                 if ( bv.bv_len >= sizeof( buf ) ) {
520                         return -1;
521                 }
522                 
523                 rc = monitor_subsys_database_init_one( mi, be,
524                         ms, ms_backend, ms_overlay, &bv, e_database, &ep );
525                 if ( rc != 0 ) {
526                         return rc;
527                 }
528         }
529         
530         monitor_cache_release( mi, e_database );
531
532         return( 0 );
533 }
534
535 /*
536  * v: array of values
537  * cur: must not contain the tags corresponding to the values in v
538  * delta: will contain the tags corresponding to the values in v
539  */
540 static int
541 value_mask( BerVarray v, slap_mask_t cur, slap_mask_t *delta )
542 {
543         for ( ; !BER_BVISNULL( v ); v++ ) {
544                 struct restricted_ops_t         *rops;
545                 int                             i;
546
547                 if ( OID_LEADCHAR( v->bv_val[ 0 ] ) ) {
548                         rops = restricted_exops;
549
550                 } else {
551                         rops = restricted_ops;
552                 }
553
554                 for ( i = 0; !BER_BVISNULL( &rops[ i ].op ); i++ ) {
555                         if ( ber_bvstrcasecmp( v, &rops[ i ].op ) != 0 ) {
556                                 continue;
557                         }
558
559                         if ( rops[ i ].tag & *delta ) {
560                                 return LDAP_OTHER;
561                         }
562
563                         if ( rops[ i ].tag & cur ) {
564                                 return LDAP_OTHER;
565                         }
566
567                         cur |= rops[ i ].tag;
568                         *delta |= rops[ i ].tag;
569
570                         break;
571                 }
572
573                 if ( BER_BVISNULL( &rops[ i ].op ) ) {
574                         return LDAP_INVALID_SYNTAX;
575                 }
576         }
577
578         return LDAP_SUCCESS;
579 }
580
581 static int
582 monitor_subsys_database_modify(
583         Operation       *op,
584         SlapReply       *rs,
585         Entry           *e )
586 {
587         monitor_info_t  *mi = (monitor_info_t *)op->o_bd->be_private;
588         int             rc = LDAP_OTHER;
589         Attribute       *save_attrs, *a;
590         Modifications   *ml;
591         Backend         *be;
592         int             ro_gotval = 1, i, n;
593         slap_mask_t     rp_add = 0, rp_delete = 0, rp_cur;
594         struct berval   *tf;
595         
596         i = sscanf( e->e_nname.bv_val, "cn=database %d,", &n );
597         if ( i != 1 ) {
598                 return SLAP_CB_CONTINUE;
599         }
600
601         if ( n < 0 || n >= nBackendDB ) {
602                 rs->sr_text = "invalid database index";
603                 return ( rs->sr_err = LDAP_NO_SUCH_OBJECT );
604         }
605
606         LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
607                 if ( n == 0 ) {
608                         break;
609                 }
610                 n--;
611         }
612         /* do not allow some changes on back-monitor (needs work)... */
613         if ( SLAP_MONITOR( be ) ) {
614                 rs->sr_text = "no modifications allowed to monitor database entry";
615                 return ( rs->sr_err = LDAP_UNWILLING_TO_PERFORM );
616         }
617                 
618         rp_cur = be->be_restrictops;
619
620         save_attrs = e->e_attrs;
621         e->e_attrs = attrs_dup( e->e_attrs );
622
623         for ( ml = op->orm_modlist; ml; ml = ml->sml_next ) {
624                 Modification *mod = &ml->sml_mod;
625
626                 if ( mod->sm_desc == mi->mi_ad_readOnly ) {
627                         int     val = -1;
628
629                         if ( mod->sm_values ) {
630                                 if ( !BER_BVISNULL( &mod->sm_values[ 1 ] ) ) {
631                                         rs->sr_text = "attempting to modify multiple values of single-valued attribute";
632                                         rc = rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
633                                         goto done;
634                                 }
635
636                                 if ( bvmatch( &slap_true_bv, mod->sm_values )) {
637                                         val = 1;
638
639                                 } else if ( bvmatch( &slap_false_bv, mod->sm_values )) {
640                                         val = 0;
641
642                                 } else {
643                                         assert( 0 );
644                                         rc = rs->sr_err = LDAP_INVALID_SYNTAX;
645                                         goto done;
646                                 }
647                         }
648
649                         switch ( mod->sm_op ) {
650                         case LDAP_MOD_DELETE:
651                                 if ( ro_gotval < 1 ) {
652                                         rc = rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
653                                         goto done;
654                                 }
655                                 ro_gotval--;
656
657                                 if ( val == 0 && ( rp_cur & SLAP_RESTRICT_OP_WRITES ) == SLAP_RESTRICT_OP_WRITES ) {
658                                         rc = rs->sr_err = LDAP_NO_SUCH_ATTRIBUTE;
659                                         goto done;
660                                 }
661                                 
662                                 if ( val == 1 && ( rp_cur & SLAP_RESTRICT_OP_WRITES ) != SLAP_RESTRICT_OP_WRITES ) {
663                                         rc = rs->sr_err = LDAP_NO_SUCH_ATTRIBUTE;
664                                         goto done;
665                                 }
666                                 
667                                 break;
668
669                         case LDAP_MOD_REPLACE:
670                                 ro_gotval = 0;
671                                 /* fall thru */
672
673                         case LDAP_MOD_ADD:
674                                 if ( ro_gotval > 0 ) {
675                                         rc = rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
676                                         goto done;
677                                 }
678                                 ro_gotval++;
679
680                                 if ( val == 1 ) {
681                                         rp_add |= (~rp_cur) & SLAP_RESTRICT_OP_WRITES;
682                                         rp_cur |= SLAP_RESTRICT_OP_WRITES;
683                                         rp_delete &= ~SLAP_RESTRICT_OP_WRITES;
684                                         
685                                 } else if ( val == 0 ) {
686                                         rp_delete |= rp_cur & SLAP_RESTRICT_OP_WRITES;
687                                         rp_cur &= ~SLAP_RESTRICT_OP_WRITES;
688                                         rp_add &= ~SLAP_RESTRICT_OP_WRITES;
689                                 }
690                                 break;
691
692                         default:
693                                 rc = rs->sr_err = LDAP_OTHER;
694                                 goto done;
695                         }
696
697                 } else if ( mod->sm_desc == mi->mi_ad_restrictedOperation ) {
698                         slap_mask_t     mask = 0;
699
700                         switch ( mod->sm_op ) {
701                         case LDAP_MOD_DELETE:
702                                 if ( mod->sm_values == NULL ) {
703                                         rp_delete = rp_cur;
704                                         rp_cur = 0;
705                                         rp_add = 0;
706                                         break;
707                                 }
708                                 rc = value_mask( mod->sm_values, ~rp_cur, &mask );
709                                 if ( rc == LDAP_SUCCESS ) {
710                                         rp_delete |= mask;
711                                         rp_add &= ~mask;
712                                         rp_cur &= ~mask;
713
714                                 } else if ( rc == LDAP_OTHER ) {
715                                         rc = LDAP_NO_SUCH_ATTRIBUTE;
716                                 }
717                                 break;
718
719                         case LDAP_MOD_REPLACE:
720                                 rp_delete = rp_cur;
721                                 rp_cur = 0;
722                                 rp_add = 0;
723                                 /* fall thru */
724
725                         case LDAP_MOD_ADD:
726                                 rc = value_mask( mod->sm_values, rp_cur, &mask );
727                                 if ( rc == LDAP_SUCCESS ) {
728                                         rp_add |= mask;
729                                         rp_cur |= mask;
730                                         rp_delete &= ~mask;
731
732                                 } else if ( rc == LDAP_OTHER ) {
733                                         rc = rs->sr_err = LDAP_TYPE_OR_VALUE_EXISTS;
734                                 }
735                                 break;
736
737                         default:
738                                 rc = rs->sr_err = LDAP_OTHER;
739                                 break;
740                         }
741
742                         if ( rc != LDAP_SUCCESS ) {
743                                 goto done;
744                         }
745
746                 } else if ( is_at_operational( mod->sm_desc->ad_type )) {
747                 /* accept all operational attributes */
748                         attr_delete( &e->e_attrs, mod->sm_desc );
749                         rc = attr_merge( e, mod->sm_desc, mod->sm_values,
750                                 mod->sm_nvalues );
751                         if ( rc ) {
752                                 rc = rs->sr_err = LDAP_OTHER;
753                                 break;
754                         }
755
756                 } else {
757                         rc = rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
758                         break;
759                 }
760         }
761
762         /* sanity checks: */
763         if ( ro_gotval < 1 ) {
764                 rc = rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
765                 goto done;
766         }
767
768         if ( ( rp_cur & SLAP_RESTRICT_OP_EXTENDED ) && ( rp_cur & SLAP_RESTRICT_EXOP_MASK ) ) {
769                 rc = rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
770                 goto done;
771         }
772
773         if ( rp_delete & rp_add ) {
774                 rc = rs->sr_err = LDAP_OTHER;
775                 goto done;
776         }
777
778         /* check current value of readOnly */
779         if ( ( rp_cur & SLAP_RESTRICT_OP_WRITES ) == SLAP_RESTRICT_OP_WRITES ) {
780                 tf = (struct berval *)&slap_true_bv;
781
782         } else {
783                 tf = (struct berval *)&slap_false_bv;
784         }
785
786         a = attr_find( e->e_attrs, mi->mi_ad_readOnly );
787         if ( a == NULL ) {
788                 rc = LDAP_OTHER;
789                 goto done;
790         }
791
792         if ( !bvmatch( &a->a_vals[ 0 ], tf ) ) {
793                 attr_delete( &e->e_attrs, mi->mi_ad_readOnly );
794                 rc = attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
795         }
796
797         if ( rc == LDAP_SUCCESS ) {
798                 if ( rp_delete ) {
799                         if ( rp_delete == be->be_restrictops ) {
800                                 attr_delete( &e->e_attrs, mi->mi_ad_restrictedOperation );
801
802                         } else {
803                                 a = attr_find( e->e_attrs, mi->mi_ad_restrictedOperation );
804                                 if ( a == NULL ) {
805                                         rc = rs->sr_err = LDAP_OTHER;
806                                         goto done;
807                                 }
808
809                                 for ( i = 0; !BER_BVISNULL( &restricted_ops[ i ].op ); i++ ) {
810                                         if ( rp_delete & restricted_ops[ i ].tag ) {
811                                                 int     j;
812                                         
813                                                 for ( j = 0; !BER_BVISNULL( &a->a_nvals[ j ] ); j++ ) {
814                                                         int             k;
815
816                                                         if ( !bvmatch( &a->a_nvals[ j ], &restricted_ops[ i ].op ) ) {
817                                                                 continue;
818                                                         }
819
820                                                         ch_free( a->a_vals[ j ].bv_val );
821                                                         ch_free( a->a_nvals[ j ].bv_val );
822
823                                                         for ( k = j + 1; !BER_BVISNULL( &a->a_nvals[ k ] ); k++ ) {
824                                                                 a->a_vals[ k - 1 ] = a->a_vals[ k ];
825                                                                 a->a_nvals[ k - 1 ] = a->a_nvals[ k ];
826                                                         }
827         
828                                                         BER_BVZERO( &a->a_vals[ k - 1 ] );
829                                                         BER_BVZERO( &a->a_nvals[ k - 1 ] );
830                                                 }
831                                         }
832                                 }
833                                 
834                                 for ( i = 0; !BER_BVISNULL( &restricted_exops[ i ].op ); i++ ) {
835                                         if ( rp_delete & restricted_exops[ i ].tag ) {
836                                                 int     j;
837                                         
838                                                 for ( j = 0; !BER_BVISNULL( &a->a_nvals[ j ] ); j++ ) {
839                                                         int             k;
840
841                                                         if ( !bvmatch( &a->a_nvals[ j ], &restricted_exops[ i ].op ) ) {
842                                                                 continue;
843                                                         }
844
845                                                         ch_free( a->a_vals[ j ].bv_val );
846                                                         ch_free( a->a_nvals[ j ].bv_val );
847
848                                                         for ( k = j + 1; !BER_BVISNULL( &a->a_nvals[ k ] ); k++ ) {
849                                                                 a->a_vals[ k - 1 ] = a->a_vals[ k ];
850                                                                 a->a_nvals[ k - 1 ] = a->a_nvals[ k ];
851                                                         }
852         
853                                                         BER_BVZERO( &a->a_vals[ k - 1 ] );
854                                                         BER_BVZERO( &a->a_nvals[ k - 1 ] );
855                                                 }
856                                         }
857                                 }
858                         }
859                 }
860
861                 if ( rp_add ) {
862                         for ( i = 0; !BER_BVISNULL( &restricted_ops[ i ].op ); i++ ) {
863                                 if ( rp_add & restricted_ops[ i ].tag ) {
864                                         attr_merge_one( e, mi->mi_ad_restrictedOperation,
865                                                         &restricted_ops[ i ].op,
866                                                         &restricted_ops[ i ].op );
867                                 }
868                         }
869
870                         for ( i = 0; !BER_BVISNULL( &restricted_exops[ i ].op ); i++ ) {
871                                 if ( rp_add & restricted_exops[ i ].tag ) {
872                                         attr_merge_one( e, mi->mi_ad_restrictedOperation,
873                                                         &restricted_exops[ i ].op,
874                                                         &restricted_exops[ i ].op );
875                                 }
876                         }
877                 }
878         }
879
880         be->be_restrictops = rp_cur;
881
882 done:;
883         if ( rc == LDAP_SUCCESS ) {
884                 attrs_free( save_attrs );
885                 rc = SLAP_CB_CONTINUE;
886
887         } else {
888                 Attribute *tmp = e->e_attrs;
889                 e->e_attrs = save_attrs;
890                 attrs_free( tmp );
891         }
892         return rc;
893 }
894
895 #if defined(LDAP_SLAPI)
896 static int
897 monitor_back_add_plugin( monitor_info_t *mi, Backend *be, Entry *e_database )
898 {
899         Slapi_PBlock    *pCurrentPB; 
900         int             i, rc = LDAP_SUCCESS;
901
902         if ( slapi_int_pblock_get_first( be, &pCurrentPB ) != LDAP_SUCCESS ) {
903                 /*
904                  * LDAP_OTHER is returned if no plugins are installed
905                  */
906                 rc = LDAP_OTHER;
907                 goto done;
908         }
909
910         i = 0;
911         do {
912                 Slapi_PluginDesc        *srchdesc;
913                 char                    buf[ BACKMONITOR_BUFSIZE ];
914                 struct berval           bv;
915
916                 rc = slapi_pblock_get( pCurrentPB, SLAPI_PLUGIN_DESCRIPTION,
917                                 &srchdesc );
918                 if ( rc != LDAP_SUCCESS ) {
919                         goto done;
920                 }
921
922                 snprintf( buf, sizeof(buf),
923                                 "plugin %d name: %s; "
924                                 "vendor: %s; "
925                                 "version: %s; "
926                                 "description: %s", 
927                                 i,
928                                 srchdesc->spd_id,
929                                 srchdesc->spd_vendor,
930                                 srchdesc->spd_version,
931                                 srchdesc->spd_description );
932
933                 ber_str2bv( buf, 0, 0, &bv );
934                 attr_merge_normalize_one( e_database,
935                                 mi->mi_ad_monitoredInfo, &bv, NULL );
936
937                 i++;
938
939         } while ( ( slapi_int_pblock_get_next( &pCurrentPB ) == LDAP_SUCCESS )
940                         && ( pCurrentPB != NULL ) );
941
942 done:
943         return rc;
944 }
945 #endif /* defined(LDAP_SLAPI) */