]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/log.c
ab379e9222d8c8bec6d3a11ff7d6e18dba8bd297
[openldap] / servers / slapd / back-monitor / log.c
1 /* log.c - deal with log subsystem */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
8  * 
9  * This work has beed deveolped for the OpenLDAP Foundation 
10  * in the hope that it may be useful to the Open Source community, 
11  * but WITHOUT ANY WARRANTY.
12  * 
13  * Permission is granted to anyone to use this software for any purpose
14  * on any computer system, and to alter it and redistribute it, subject
15  * to the following restrictions:
16  * 
17  * 1. The author and SysNet s.n.c. are not responsible for the consequences
18  *    of use of this software, no matter how awful, even if they arise from
19  *    flaws in it.
20  * 
21  * 2. The origin of this software must not be misrepresented, either by
22  *    explicit claim or by omission.  Since few users ever read sources,
23  *    credits should appear in the documentation.
24  * 
25  * 3. Altered versions must be plainly marked as such, and must not be
26  *    misrepresented as being the original software.  Since few users
27  *    ever read sources, credits should appear in the documentation.
28  *    SysNet s.n.c. cannot be responsible for the consequences of the
29  *    alterations.
30  * 
31  * 4. This notice may not be removed or altered.
32  */
33
34 #include "portable.h"
35
36 #include <stdio.h>
37
38 #include <ac/string.h>
39
40 #include "slap.h"
41 #include "lutil.h"
42 #include "ldif.h"
43 #include "back-monitor.h"
44
45 /*
46  * log mutex
47  */
48 ldap_pvt_thread_mutex_t         monitor_log_mutex;
49
50 static struct {
51         int i;
52         const char *s;
53 } int_2_level[] = {
54         { LDAP_DEBUG_TRACE,     "Trace" },
55         { LDAP_DEBUG_PACKETS,   "Packets" },
56         { LDAP_DEBUG_ARGS,      "Args" },
57         { LDAP_DEBUG_CONNS,     "Conns" },
58         { LDAP_DEBUG_BER,       "BER" },
59         { LDAP_DEBUG_FILTER,    "Filter" },
60         { LDAP_DEBUG_CONFIG,    "Config" },     /* useless */
61         { LDAP_DEBUG_ACL,       "ACL" },
62         { LDAP_DEBUG_STATS,     "Stats" },
63         { LDAP_DEBUG_STATS2,    "Stats2" },
64         { LDAP_DEBUG_SHELL,     "Shell" },
65         { LDAP_DEBUG_PARSE,     "Parse" },
66         { LDAP_DEBUG_CACHE,     "Cache" },
67         { LDAP_DEBUG_INDEX,     "Index" },
68         { 0,                    NULL }
69 };
70
71 static int loglevel2int( const char *str );
72 static const char * int2loglevel( int n );
73
74 static int add_values( Entry *e, Modification *mod, int *newlevel );
75 static int delete_values( Entry *e, Modification *mod, int *newlevel );
76 static int replace_values( Entry *e, Modification *mod, int *newlevel );
77
78 /*
79  * initializes log subentry
80  */
81 int
82 monitor_subsys_log_init(
83         BackendDB       *be
84 )
85 {
86         struct monitorinfo      *mi;
87         Entry                   *e;
88         int                     i;
89         struct berval           bv[2];
90
91         ldap_pvt_thread_mutex_init( &monitor_log_mutex );
92
93         mi = ( struct monitorinfo * )be->be_private;
94
95         if ( monitor_cache_get( mi, &monitor_subsys[SLAPD_MONITOR_LOG].mss_ndn, 
96                                 &e ) ) {
97 #ifdef NEW_LOGGING
98                 LDAP_LOG(( "operation", LDAP_LEVEL_CRIT,
99                         "monitor_subsys_log_init: "
100                         "unable to get entry '%s'\n",
101                         monitor_subsys[SLAPD_MONITOR_LOG].mss_ndn.bv_val ));
102 #else
103                 Debug( LDAP_DEBUG_ANY,
104                         "monitor_subsys_log_init: "
105                         "unable to get entry '%s'\n%s%s",
106                         monitor_subsys[SLAPD_MONITOR_LOG].mss_ndn.bv_val, 
107                         "", "" );
108 #endif
109                 return( -1 );
110         }
111
112         bv[1].bv_val = NULL;
113
114         /* initialize the debug level */
115         for ( i = 0; int_2_level[ i ].i != 0; i++ ) {
116                 if ( int_2_level[ i ].i & ldap_syslog ) {
117                         bv[0].bv_val = ( char * )int_2_level[ i ].s;
118                         bv[0].bv_len = strlen( bv[0].bv_val );
119
120                         attr_merge( e, monitor_ad_desc, bv );
121                 }
122         }
123
124         monitor_cache_release( mi, e );
125
126         return( 0 );
127 }
128
129 int 
130 monitor_subsys_log_modify( 
131         struct monitorinfo      *mi,
132         Entry                   *e,
133         Modifications           *modlist
134 )
135 {
136         int             rc = LDAP_OTHER;
137         int             newlevel = ldap_syslog;
138         Attribute       *save_attrs;
139         Modifications   *ml;
140
141         ldap_pvt_thread_mutex_lock( &monitor_log_mutex );
142
143         save_attrs = e->e_attrs;
144         e->e_attrs = attrs_dup( e->e_attrs );
145
146         for ( ml = modlist; ml != NULL; ml = ml->sml_next ) {
147                 Modification    *mod = &ml->sml_mod;
148
149                 /*
150                  * accept all operational attributes
151                  */
152                 if ( is_at_operational( mod->sm_desc->ad_type ) ) {
153                         ( void ) attr_delete( &e->e_attrs, mod->sm_desc );
154                         rc = attr_merge( e, mod->sm_desc, mod->sm_bvalues );
155                         if ( rc != 0 ) {
156                                 rc = LDAP_OTHER;
157                                 break;
158                         }
159                         continue;
160
161                 /*
162                  * only the monitor description attribute can be modified
163                  */
164                 } else if ( mod->sm_desc != monitor_ad_desc ) {
165                         rc = LDAP_UNWILLING_TO_PERFORM;
166                         break;
167                 }
168
169                 switch ( mod->sm_op ) {
170                 case LDAP_MOD_ADD:
171                         rc = add_values( e, mod, &newlevel );
172                         break;
173                         
174                 case LDAP_MOD_DELETE:
175                         rc = delete_values( e, mod, &newlevel );
176                         break;
177
178                 case LDAP_MOD_REPLACE:
179                         rc = replace_values( e, mod, &newlevel );
180                         break;
181
182                 default:
183                         rc = LDAP_OPERATIONS_ERROR;
184                         break;
185                 }
186
187                 if ( rc != LDAP_SUCCESS ) {
188                         break;
189                 }
190         }
191
192         /* set the new debug level */
193         if ( rc == LDAP_SUCCESS ) {
194                 const char *text;
195                 static char textbuf[1024];
196
197 #if 0   /* need op */
198                 /* check for abandon */
199                 if ( op->o_abandon ) {
200                         rc = SLAPD_ABANDON;
201
202                         goto cleanup;
203                 }
204                 ldap_pvt_thread_mutex_unlock( &op->o_abandonmutex );
205 #endif
206
207                 /* check that the entry still obeys the schema */
208                 rc = entry_schema_check( be_monitor, e, save_attrs, 
209                                 &text, textbuf, sizeof( textbuf ) );
210                 if ( rc != LDAP_SUCCESS ) {
211                         goto cleanup;
212                 }
213
214                 /*
215                  * Do we need to protect this with a mutex?
216                  */
217                 ldap_syslog = newlevel;
218
219 #if 0   /* debug rather than log */
220                 slap_debug = newlevel;
221                 lutil_set_debug_level( "slapd", slap_debug );
222                 ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
223                 ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
224                 ldif_debug = slap_debug;
225 #endif
226         }
227
228 cleanup:;
229         if ( rc == LDAP_SUCCESS ) {
230                 attrs_free( save_attrs );
231
232         } else {
233                 attrs_free( e->e_attrs );
234                 e->e_attrs = save_attrs;
235         }
236         
237         ldap_pvt_thread_mutex_unlock( &monitor_log_mutex );
238
239         return( rc );
240 }
241
242 static int
243 loglevel2int( const char *str )
244 {
245         int             i;
246         
247         for ( i = 0; int_2_level[ i ].i != 0; i++ ) {
248                 if ( strcasecmp( str, int_2_level[ i ].s ) == 0 ) {
249                         return int_2_level[ i ].i;
250                 }
251         }
252
253         return 0;
254 }
255
256 static const char *
257 int2loglevel( int n )
258 {
259         int             i;
260         
261         for ( i = 0; int_2_level[ i ].i != 0; i++ ) {
262                 if ( int_2_level[ i ].i == n ) {
263                         return int_2_level[ i ].s;
264                 }
265         }
266
267         return NULL;
268 }
269
270 static int
271 check_constraints( Modification *mod, int *newlevel )
272 {
273         int             i;
274
275         for ( i = 0; mod->sm_bvalues && mod->sm_bvalues[i].bv_val != NULL; i++ ) {
276                 int l;
277                 const char *s;
278                 ber_len_t len;
279                 
280                 l = loglevel2int( mod->sm_bvalues[i].bv_val );
281                 if ( !l ) {
282                         return LDAP_CONSTRAINT_VIOLATION;
283                 }
284
285                 s = int2loglevel( l );
286                 len = strlen( s );
287                 assert( len == mod->sm_bvalues[i].bv_len );
288                 
289                 AC_MEMCPY( mod->sm_bvalues[i].bv_val, s, len );
290
291                 *newlevel |= l;
292         }
293
294         return LDAP_SUCCESS;
295 }       
296
297 static int 
298 add_values( Entry *e, Modification *mod, int *newlevel )
299 {
300         Attribute       *a;
301         int             i, rc;
302         MatchingRule    *mr = mod->sm_desc->ad_type->sat_equality;
303
304         rc = check_constraints( mod, newlevel );
305         if ( rc != LDAP_SUCCESS ) {
306                 return rc;
307         }
308
309         a = attr_find( e->e_attrs, mod->sm_desc );
310
311         if ( a != NULL ) {
312                 
313                 /* "description" SHOULD have appropriate rules ... */
314                 if ( mr == NULL || !mr->smr_match ) {
315                         return LDAP_INAPPROPRIATE_MATCHING;
316                 }
317
318                 for ( i = 0; mod->sm_bvalues[i].bv_val != NULL; i++ ) {
319                         int rc;
320                         int j;
321                         const char *text = NULL;
322                         struct berval asserted;
323
324                         rc = value_normalize( mod->sm_desc,
325                                         SLAP_MR_EQUALITY,
326                                         &mod->sm_bvalues[i],
327                                         &asserted,
328                                         &text );
329
330                         if ( rc != LDAP_SUCCESS ) {
331                                 return rc;
332                         }
333
334                         for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) {
335                                 int match;
336                                 int rc = value_match( &match, mod->sm_desc, mr,
337                                                 SLAP_MR_VALUE_SYNTAX_MATCH,
338                                                 &a->a_vals[j], &asserted, &text );
339
340                                 if ( rc == LDAP_SUCCESS && match == 0 ) {
341                                         free( asserted.bv_val );
342                                         return LDAP_TYPE_OR_VALUE_EXISTS;
343                                 }
344                         }
345
346                         free( asserted.bv_val );
347                 }
348         }
349
350         /* no - add them */
351         if ( attr_merge( e, mod->sm_desc, mod->sm_bvalues ) != 0 ) {
352                 /* this should return result of attr_merge */
353                 return LDAP_OTHER;
354         }
355
356         return LDAP_SUCCESS;
357 }
358
359 static int
360 delete_values( Entry *e, Modification *mod, int *newlevel )
361 {
362         int             i, j, k, found, rc, nl = 0;
363         Attribute       *a;
364         MatchingRule    *mr = mod->sm_desc->ad_type->sat_equality;
365
366         rc = check_constraints( mod, &nl );
367         if ( rc != LDAP_SUCCESS ) {
368                 return rc;
369         }
370
371         *newlevel &= ~nl;
372
373         /* delete the entire attribute */
374         if ( mod->sm_bvalues == NULL ) {
375                 int rc = attr_delete( &e->e_attrs, mod->sm_desc );
376
377                 if ( rc ) {
378                         rc = LDAP_NO_SUCH_ATTRIBUTE;
379                 } else {
380                         *newlevel = 0;
381                         rc = LDAP_SUCCESS;
382                 }
383                 return rc;
384         }
385
386         if ( mr == NULL || !mr->smr_match ) {
387                 /* disallow specific attributes from being deleted if
388                  * no equality rule */
389                 return LDAP_INAPPROPRIATE_MATCHING;
390         }
391
392         /* delete specific values - find the attribute first */
393         if ( (a = attr_find( e->e_attrs, mod->sm_desc )) == NULL ) {
394                 return( LDAP_NO_SUCH_ATTRIBUTE );
395         }
396
397         /* find each value to delete */
398         for ( i = 0; mod->sm_bvalues[i].bv_val != NULL; i++ ) {
399                 int rc;
400                 const char *text = NULL;
401
402                 struct berval asserted;
403
404                 rc = value_normalize( mod->sm_desc,
405                                 SLAP_MR_EQUALITY,
406                                 &mod->sm_bvalues[i],
407                                 &asserted,
408                                 &text );
409
410                 if( rc != LDAP_SUCCESS ) return rc;
411
412                 found = 0;
413                 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) {
414                         int match;
415                         int rc = value_match( &match, mod->sm_desc, mr,
416                                         SLAP_MR_VALUE_SYNTAX_MATCH,
417                                         &a->a_vals[j], &asserted, &text );
418
419                         if( rc == LDAP_SUCCESS && match != 0 ) {
420                                 continue;
421                         }
422
423                         /* found a matching value */
424                         found = 1;
425
426                         /* delete it */
427                         free( a->a_vals[j].bv_val );
428                         for ( k = j + 1; a->a_vals[k].bv_val != NULL; k++ ) {
429                                 a->a_vals[k - 1] = a->a_vals[k];
430                         }
431                         a->a_vals[k - 1].bv_val = NULL;
432
433                         break;
434                 }
435
436                 free( asserted.bv_val );
437
438                 /* looked through them all w/o finding it */
439                 if ( ! found ) {
440                         return LDAP_NO_SUCH_ATTRIBUTE;
441                 }
442         }
443
444         /* if no values remain, delete the entire attribute */
445         if ( a->a_vals[0].bv_val == NULL ) {
446                 /* should already be zero */
447                 *newlevel = 0;
448                 
449                 if ( attr_delete( &e->e_attrs, mod->sm_desc ) ) {
450                         return LDAP_NO_SUCH_ATTRIBUTE;
451                 }
452         }
453
454         return LDAP_SUCCESS;
455 }
456
457 static int
458 replace_values( Entry *e, Modification *mod, int *newlevel )
459 {
460         int rc;
461
462         *newlevel = 0;
463         rc = check_constraints( mod, newlevel );
464         if ( rc != LDAP_SUCCESS ) {
465                 return rc;
466         }
467
468         rc = attr_delete( &e->e_attrs, mod->sm_desc );
469
470         if ( rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_ATTRIBUTE ) {
471                 return rc;
472         }
473
474         if ( mod->sm_bvalues != NULL &&
475                 attr_merge( e, mod->sm_desc, mod->sm_bvalues ) != 0 ) {
476                 return LDAP_OTHER;
477         }
478
479         return LDAP_SUCCESS;
480 }
481