]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/database.c
add restrictedOperation to databases; modification to come soon
[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-2004 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
27 #include "slap.h"
28 #include "back-monitor.h"
29
30 #if defined(LDAP_SLAPI)
31 #include "slapi.h"
32 static int monitor_back_add_plugin( Backend *be, Entry *e );
33 #endif /* defined(LDAP_SLAPI) */
34
35 #if defined(SLAPD_LDAP) 
36 #include "../back-ldap/back-ldap.h"
37 #endif /* defined(SLAPD_LDAP) */
38
39 static struct restrict_ops_t {
40         struct berval   op;
41         unsigned int    tag;
42 } restrict_ops[] = {
43         { BER_BVC( "add" ),                     SLAP_RESTRICT_OP_ADD },
44         { BER_BVC( "bind" ),                    SLAP_RESTRICT_OP_BIND },
45         { BER_BVC( "compare" ),                 SLAP_RESTRICT_OP_COMPARE },
46         { BER_BVC( "delete" ),                  SLAP_RESTRICT_OP_DELETE },
47         { BER_BVC( "extended" ),                SLAP_RESTRICT_OP_EXTENDED },
48         { BER_BVC( "modify" ),                  SLAP_RESTRICT_OP_MODIFY },
49         { BER_BVC( "rename" ),                  SLAP_RESTRICT_OP_RENAME },
50         { BER_BVC( "search" ),                  SLAP_RESTRICT_OP_SEARCH },
51         { BER_BVNULL,                           0 }
52 }, restrict_exops[] = {
53         { BER_BVC( LDAP_EXOP_START_TLS ),       SLAP_RESTRICT_EXOP_START_TLS },
54         { BER_BVC( LDAP_EXOP_MODIFY_PASSWD ),   SLAP_RESTRICT_EXOP_MODIFY_PASSWD },
55         { BER_BVC( LDAP_EXOP_X_WHO_AM_I ),      SLAP_RESTRICT_EXOP_WHOAMI },
56         { BER_BVC( LDAP_EXOP_X_CANCEL ),        SLAP_RESTRICT_EXOP_CANCEL },
57         { BER_BVNULL,                           0 }
58 };
59
60 static int
61 init_readOnly( struct monitorinfo *mi, Entry *e, slap_mask_t restrictops )
62 {
63         struct berval   *tf = ( ( restrictops & SLAP_RESTRICT_OP_MASK ) == SLAP_RESTRICT_OP_WRITES ) ?
64                 (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv;
65
66         return attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
67 }
68
69 static int
70 init_restrictedOperation( struct monitorinfo *mi, Entry *e, slap_mask_t restrictops )
71 {
72         int     i, rc;
73
74         for ( i = 0; restrict_ops[ i ].op.bv_val; i++ ) {
75                 if ( restrictops & restrict_ops[ i ].tag ) {
76                         rc = attr_merge_one( e, mi->mi_ad_restrictedOperation,
77                                         &restrict_ops[ i ].op, &restrict_ops[ i ].op );
78                         if ( rc ) {
79                                 return rc;
80                         }
81                 }
82         }
83
84         for ( i = 0; restrict_exops[ i ].op.bv_val; i++ ) {
85                 if ( restrictops & restrict_exops[ i ].tag ) {
86                         rc = attr_merge_one( e, mi->mi_ad_restrictedOperation,
87                                         &restrict_exops[ i ].op, &restrict_exops[ i ].op );
88                         if ( rc ) {
89                                 return rc;
90                         }
91                 }
92         }
93
94         return LDAP_SUCCESS;
95 }
96
97 int
98 monitor_subsys_database_init(
99         BackendDB       *be
100 )
101 {
102         struct monitorinfo      *mi;
103         Entry                   *e, *e_database, *e_tmp;
104         int                     i;
105         struct monitorentrypriv *mp;
106
107         assert( be != NULL );
108
109         mi = ( struct monitorinfo * )be->be_private;
110
111         if ( monitor_cache_get( mi, 
112                                 &monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn, 
113                                 &e_database ) ) {
114 #ifdef NEW_LOGGING
115                 LDAP_LOG( OPERATION, CRIT,
116                         "monitor_subsys_database_init: "
117                         "unable to get entry '%s'\n",
118                         monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0, 0 );
119 #else
120                 Debug( LDAP_DEBUG_ANY,
121                         "monitor_subsys_database_init: "
122                         "unable to get entry '%s'\n%s%s",
123                         monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 
124                         "", "" );
125 #endif
126                 return( -1 );
127         }
128
129         (void)init_readOnly( mi, e_database, global_restrictops );
130         (void)init_restrictedOperation( mi, e_database, global_restrictops );
131
132         e_tmp = NULL;
133         for ( i = nBackendDB; i--; ) {
134                 char            buf[ BACKMONITOR_BUFSIZE ];
135                 int             j;
136                 slap_overinfo   *oi = NULL;
137                 BackendInfo     *bi;
138
139                 be = &backendDB[i];
140
141                 bi = be->bd_info;
142
143                 if ( strcmp( be->bd_info->bi_type, "over" ) == 0 ) {
144                         oi = (slap_overinfo *)be->bd_info;
145                         bi = oi->oi_orig;
146                 }
147
148                 /* Subordinates are not exposed as their own naming context */
149                 if ( SLAP_GLUE_SUBORDINATE( be ) ) {
150                         continue;
151                 }
152
153                 snprintf( buf, sizeof( buf ),
154                                 "dn: cn=Database %d,%s\n"
155                                 "objectClass: %s\n"
156                                 "structuralObjectClass: %s\n"
157                                 "cn: Database %d\n"
158                                 "description: This object contains the type of the database.\n"
159                                 "%s: %s\n"
160                                 "createTimestamp: %s\n"
161                                 "modifyTimestamp: %s\n",
162                                 i,
163                                 monitor_subsys[SLAPD_MONITOR_DATABASE].mss_dn.bv_val,
164                                 mi->mi_oc_monitoredObject->soc_cname.bv_val,
165                                 mi->mi_oc_monitoredObject->soc_cname.bv_val,
166                                 i,
167                                 mi->mi_ad_monitoredInfo->ad_cname.bv_val,
168                                 bi->bi_type,
169                                 mi->mi_startTime.bv_val,
170                                 mi->mi_startTime.bv_val );
171                 
172                 e = str2entry( buf );
173                 if ( e == NULL ) {
174 #ifdef NEW_LOGGING
175                         LDAP_LOG( OPERATION, CRIT,
176                                 "monitor_subsys_database_init: "
177                                 "unable to create entry 'cn=Database %d,%s'\n",
178                                 i, monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0 );
179 #else
180                         Debug( LDAP_DEBUG_ANY,
181                                 "monitor_subsys_database_init: "
182                                 "unable to create entry 'cn=Database %d,%s'\n%s",
183                                 i, 
184                                 monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val,
185                                 "" );
186 #endif
187                         return( -1 );
188                 }
189                 
190                 if ( SLAP_MONITOR(be) ) {
191                         attr_merge( e, slap_schema.si_ad_monitorContext,
192                                         be->be_suffix, be->be_nsuffix );
193                         attr_merge( e_database, slap_schema.si_ad_monitorContext,
194                                         be->be_suffix, be->be_nsuffix );
195                 } else {
196                         attr_merge( e, slap_schema.si_ad_namingContexts,
197                                         be->be_suffix, be->be_nsuffix );
198                         attr_merge( e_database, slap_schema.si_ad_namingContexts,
199                                         be->be_suffix, be->be_nsuffix );
200                 }
201
202                 (void)init_readOnly( mi, e, be->be_restrictops );
203                 (void)init_restrictedOperation( mi, e, be->be_restrictops );
204
205                 if ( oi != NULL ) {
206                         slap_overinst *on = oi->oi_list;
207
208                         for ( ; on; on = on->on_next ) {
209                                 struct berval           bv;
210                                 slap_overinst           *on2;
211                                 
212                                 bv.bv_val = on->on_bi.bi_type;
213                                 bv.bv_len = strlen( bv.bv_val );
214                                 attr_merge_normalize_one( e, mi->mi_ad_monitorOverlay,
215                                                 &bv, NULL );
216
217                                 for ( on2 = overlay_next( NULL ), j = 0; on2; on2 = overlay_next( on2 ), j++ ) {
218                                         if ( on2->on_bi.bi_type == on->on_bi.bi_type ) {
219                                                 break;
220                                         }
221                                 }
222                                 assert( on2 );
223
224                                 snprintf( buf, sizeof( buf ), 
225                                         "cn=Overlay %d,%s", 
226                                         j, monitor_subsys[SLAPD_MONITOR_OVERLAY].mss_dn.bv_val );
227                                 bv.bv_val = buf;
228                                 bv.bv_len = strlen( buf );
229                                 attr_merge_normalize_one( e, mi->mi_ad_seeAlso,
230                                                 &bv, NULL );
231                         }
232                 }
233
234 #if defined(SLAPD_LDAP) 
235                 if ( strcmp( bi->bi_type, "ldap" ) == 0 ) {
236                         struct ldapinfo         *li = (struct ldapinfo *)be->be_private;
237                         struct berval           bv;
238
239                         bv.bv_val = li->url;
240                         bv.bv_len = strlen( bv.bv_val );
241                         attr_merge_normalize_one( e, mi->mi_ad_labeledURI,
242                                         &bv, NULL );
243                 }
244 #endif /* defined(SLAPD_LDAP) */
245
246                 for ( j = nBackendInfo; j--; ) {
247                         if ( backendInfo[ j ].bi_type == bi->bi_type ) {
248                                 struct berval           bv;
249
250                                 snprintf( buf, sizeof( buf ), 
251                                         "cn=Backend %d,%s", 
252                                         j, monitor_subsys[SLAPD_MONITOR_BACKEND].mss_dn.bv_val );
253                                 bv.bv_val = buf;
254                                 bv.bv_len = strlen( buf );
255                                 attr_merge_normalize_one( e, mi->mi_ad_seeAlso,
256                                                 &bv, NULL );
257                                 break;
258                         }
259                 }
260                 /* we must find it! */
261                 assert( j >= 0 );
262
263                 mp = ( struct monitorentrypriv * )ch_calloc( sizeof( struct monitorentrypriv ), 1 );
264                 e->e_private = ( void * )mp;
265                 mp->mp_next = e_tmp;
266                 mp->mp_children = NULL;
267                 mp->mp_info = &monitor_subsys[SLAPD_MONITOR_DATABASE];
268                 mp->mp_flags = monitor_subsys[SLAPD_MONITOR_DATABASE].mss_flags
269                         | MONITOR_F_SUB;
270
271                 if ( monitor_cache_add( mi, e ) ) {
272 #ifdef NEW_LOGGING
273                         LDAP_LOG( OPERATION, CRIT,
274                                 "monitor_subsys_database_init: "
275                                 "unable to add entry 'cn=Database %d,%s'\n",
276                                 i, monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val, 0 );
277 #else
278                         Debug( LDAP_DEBUG_ANY,
279                                 "monitor_subsys_database_init: "
280                                 "unable to add entry 'cn=Database %d,%s'\n",
281                                 i, 
282                                 monitor_subsys[SLAPD_MONITOR_DATABASE].mss_ndn.bv_val,
283                                 0 );
284 #endif
285                         return( -1 );
286                 }
287
288 #if defined(LDAP_SLAPI)
289                 monitor_back_add_plugin( be, e );
290 #endif /* defined(LDAP_SLAPI) */
291
292                 e_tmp = e;
293         }
294         
295         mp = ( struct monitorentrypriv * )e_database->e_private;
296         mp->mp_children = e_tmp;
297
298         monitor_cache_release( mi, e_database );
299
300         return( 0 );
301 }
302
303 int
304 monitor_subsys_database_modify(
305         Operation       *op,
306         Entry           *e
307 )
308 {
309         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
310         int rc = LDAP_OTHER;
311         Attribute *save_attrs;
312         Modifications *modlist = op->oq_modify.rs_modlist;
313         Modifications *ml;
314         Backend *be;
315         int gotval = 1, i, n, cur;
316         
317         i = sscanf( e->e_nname.bv_val, "cn=database %d,", &n );
318         if ( i != 1 )
319                 return LDAP_UNWILLING_TO_PERFORM;
320
321         if ( n < 0 || n >= nBackendDB )
322                 return LDAP_NO_SUCH_OBJECT;
323
324         be = &backendDB[n];
325         if ( SLAP_MONITOR(be) )
326                 return LDAP_UNWILLING_TO_PERFORM;
327                 
328         cur = (be->be_restrictops & SLAP_RESTRICT_OP_WRITES) ? 1 : 0;
329
330         save_attrs = e->e_attrs;
331         e->e_attrs = attrs_dup( e->e_attrs );
332
333         for ( ml=modlist; ml; ml=ml->sml_next ) {
334                 Modification *mod = &ml->sml_mod;
335
336                 if ( mod->sm_desc == mi->mi_ad_readOnly ) {
337                         int val = -1;
338
339                         if ( mod->sm_values ) {
340                                 /* single-valued */
341                                 if ( !BER_BVISNULL(&mod->sm_values[1]) ) {
342                                         rc = LDAP_CONSTRAINT_VIOLATION;
343                                         break;
344                                 }
345                                 if ( bvmatch( &slap_true_bv, mod->sm_values )) {
346                                         val = 1;
347                                 } else if ( bvmatch( &slap_false_bv, mod->sm_values )) {
348                                         val = 0;
349                                 }
350                         }
351                         switch( mod->sm_op ) {
352                         case LDAP_MOD_DELETE:
353                                 if ( val < 0 || val == cur ) {
354                                         gotval--;
355                                         cur = -1;
356                                 } else {
357                                         rc = LDAP_NO_SUCH_ATTRIBUTE;
358                                 }
359                                 break;
360                         case LDAP_MOD_REPLACE:
361                                 gotval--;
362                                 cur = -1;
363                                 /* FALLTHRU */
364                         case LDAP_MOD_ADD:
365                                 if ( val < 0 ) {
366                                         rc = LDAP_INVALID_SYNTAX;
367                                 } else {
368                                         gotval++;
369                                         cur = val;
370                                 }
371                                 break;
372                         default:
373                                 rc = LDAP_OTHER;
374                                 break;
375                         }
376                         if ( rc ) {
377                                 break;
378                         }
379
380                 } else if ( mod->sm_desc == mi->mi_ad_restrictedOperation ) {
381                         /* TODO */
382
383                 } else if ( is_at_operational( mod->sm_desc->ad_type )) {
384                 /* accept all operational attributes */
385                         attr_delete( &e->e_attrs, mod->sm_desc );
386                         rc = attr_merge( e, mod->sm_desc, mod->sm_values,
387                                 mod->sm_nvalues );
388                         if ( rc ) {
389                                 rc = LDAP_OTHER;
390                                 break;
391                         }
392
393                 } else {
394                         rc = LDAP_UNWILLING_TO_PERFORM;
395                         break;
396                 }
397         }
398
399         if ( gotval == 1 && cur >= 0 ) {
400                 struct berval *tf;
401                 tf = cur ? (struct berval *)&slap_true_bv : (struct berval *)&slap_false_bv;
402                 attr_delete( &e->e_attrs, mi->mi_ad_readOnly );
403                 rc = attr_merge_one( e, mi->mi_ad_readOnly, tf, tf );
404                 if ( rc == LDAP_SUCCESS ) {
405                         if ( cur ) {
406                                 be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
407                         } else {
408                                 be->be_restrictops &= ~SLAP_RESTRICT_OP_WRITES;
409                         }
410                 } else {
411                         rc = LDAP_OTHER;
412                 }
413         } else {
414                 rc = LDAP_CONSTRAINT_VIOLATION;
415         }
416         if ( rc == LDAP_SUCCESS ) {
417                 attrs_free( save_attrs );
418         } else {
419                 Attribute *tmp = e->e_attrs;
420                 e->e_attrs = save_attrs;
421                 attrs_free( tmp );
422         }
423         return rc;
424 }
425
426 #if defined(LDAP_SLAPI)
427 static int
428 monitor_back_add_plugin( Backend *be, Entry *e_database )
429 {
430         Slapi_PBlock            *pCurrentPB; 
431         int                     i, rc = LDAP_SUCCESS;
432         struct monitorinfo      *mi = ( struct monitorinfo * )be->be_private;
433
434         if ( slapi_int_pblock_get_first( be, &pCurrentPB ) != LDAP_SUCCESS ) {
435                 /*
436                  * LDAP_OTHER is returned if no plugins are installed
437                  */
438                 rc = LDAP_OTHER;
439                 goto done;
440         }
441
442         i = 0;
443         do {
444                 Slapi_PluginDesc        *srchdesc;
445                 char                    buf[ BACKMONITOR_BUFSIZE ];
446                 struct berval           bv;
447
448                 rc = slapi_pblock_get( pCurrentPB, SLAPI_PLUGIN_DESCRIPTION,
449                                 &srchdesc );
450                 if ( rc != LDAP_SUCCESS ) {
451                         goto done;
452                 }
453
454                 snprintf( buf, sizeof(buf),
455                                 "plugin %d name: %s; "
456                                 "vendor: %s; "
457                                 "version: %s; "
458                                 "description: %s", 
459                                 i,
460                                 srchdesc->spd_id,
461                                 srchdesc->spd_vendor,
462                                 srchdesc->spd_version,
463                                 srchdesc->spd_description );
464
465                 bv.bv_val = buf;
466                 bv.bv_len = strlen( buf );
467                 attr_merge_normalize_one( e_database,
468                                 mi->mi_ad_monitoredInfo, &bv, NULL );
469
470                 i++;
471
472         } while ( ( slapi_int_pblock_get_next( &pCurrentPB ) == LDAP_SUCCESS )
473                         && ( pCurrentPB != NULL ) );
474
475 done:
476         return rc;
477 }
478 #endif /* defined(LDAP_SLAPI) */