]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/log.c
Happy new year
[openldap] / servers / slapd / back-monitor / log.c
1 /* log.c - deal with log subsystem */
2 /*
3  * Copyright 1998-2003 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, CRIT,
99                         "monitor_subsys_log_init: "
100                         "unable to get entry '%s'\n",
101                         monitor_subsys[SLAPD_MONITOR_LOG].mss_ndn.bv_val, 0, 0 );
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_OTHER;
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 #endif
205
206                 /* check that the entry still obeys the schema */
207                 rc = entry_schema_check( be_monitor, e, save_attrs, 
208                                 &text, textbuf, sizeof( textbuf ) );
209                 if ( rc != LDAP_SUCCESS ) {
210                         goto cleanup;
211                 }
212
213                 /*
214                  * Do we need to protect this with a mutex?
215                  */
216                 ldap_syslog = newlevel;
217
218 #if 0   /* debug rather than log */
219                 slap_debug = newlevel;
220                 lutil_set_debug_level( "slapd", slap_debug );
221                 ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
222                 ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
223                 ldif_debug = slap_debug;
224 #endif
225         }
226
227 cleanup:;
228         if ( rc == LDAP_SUCCESS ) {
229                 attrs_free( save_attrs );
230
231         } else {
232                 attrs_free( e->e_attrs );
233                 e->e_attrs = save_attrs;
234         }
235         
236         ldap_pvt_thread_mutex_unlock( &monitor_log_mutex );
237
238         return( rc );
239 }
240
241 static int
242 loglevel2int( const char *str )
243 {
244         int             i;
245         
246         for ( i = 0; int_2_level[ i ].i != 0; i++ ) {
247                 if ( strcasecmp( str, int_2_level[ i ].s ) == 0 ) {
248                         return int_2_level[ i ].i;
249                 }
250         }
251
252         return 0;
253 }
254
255 static const char *
256 int2loglevel( int n )
257 {
258         int             i;
259         
260         for ( i = 0; int_2_level[ i ].i != 0; i++ ) {
261                 if ( int_2_level[ i ].i == n ) {
262                         return int_2_level[ i ].s;
263                 }
264         }
265
266         return NULL;
267 }
268
269 static int
270 check_constraints( Modification *mod, int *newlevel )
271 {
272         int             i;
273
274         for ( i = 0; mod->sm_bvalues && mod->sm_bvalues[i].bv_val != NULL; i++ ) {
275                 int l;
276                 const char *s;
277                 ber_len_t len;
278                 
279                 l = loglevel2int( mod->sm_bvalues[i].bv_val );
280                 if ( !l ) {
281                         return LDAP_CONSTRAINT_VIOLATION;
282                 }
283
284                 s = int2loglevel( l );
285                 len = strlen( s );
286                 assert( len == mod->sm_bvalues[i].bv_len );
287                 
288                 AC_MEMCPY( mod->sm_bvalues[i].bv_val, s, len );
289
290                 *newlevel |= l;
291         }
292
293         return LDAP_SUCCESS;
294 }       
295
296 static int 
297 add_values( Entry *e, Modification *mod, int *newlevel )
298 {
299         Attribute       *a;
300         int             i, rc;
301         MatchingRule    *mr = mod->sm_desc->ad_type->sat_equality;
302
303         rc = check_constraints( mod, newlevel );
304         if ( rc != LDAP_SUCCESS ) {
305                 return rc;
306         }
307
308         a = attr_find( e->e_attrs, mod->sm_desc );
309
310         if ( a != NULL ) {
311                 
312                 /* "description" SHOULD have appropriate rules ... */
313                 if ( mr == NULL || !mr->smr_match ) {
314                         return LDAP_INAPPROPRIATE_MATCHING;
315                 }
316
317                 for ( i = 0; mod->sm_bvalues[i].bv_val != NULL; i++ ) {
318                         int rc;
319                         int j;
320                         const char *text = NULL;
321                         struct berval asserted;
322
323                         rc = value_normalize( mod->sm_desc,
324                                         SLAP_MR_EQUALITY,
325                                         &mod->sm_bvalues[i],
326                                         &asserted,
327                                         &text );
328
329                         if ( rc != LDAP_SUCCESS ) {
330                                 return rc;
331                         }
332
333                         for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) {
334                                 int match;
335                                 int rc = value_match( &match, mod->sm_desc, mr,
336                                                 SLAP_MR_VALUE_SYNTAX_MATCH,
337                                                 &a->a_vals[j], &asserted, &text );
338
339                                 if ( rc == LDAP_SUCCESS && match == 0 ) {
340                                         free( asserted.bv_val );
341                                         return LDAP_TYPE_OR_VALUE_EXISTS;
342                                 }
343                         }
344
345                         free( asserted.bv_val );
346                 }
347         }
348
349         /* no - add them */
350         if ( attr_merge( e, mod->sm_desc, mod->sm_bvalues ) != 0 ) {
351                 /* this should return result of attr_merge */
352                 return LDAP_OTHER;
353         }
354
355         return LDAP_SUCCESS;
356 }
357
358 static int
359 delete_values( Entry *e, Modification *mod, int *newlevel )
360 {
361         int             i, j, k, found, rc, nl = 0;
362         Attribute       *a;
363         MatchingRule    *mr = mod->sm_desc->ad_type->sat_equality;
364
365         rc = check_constraints( mod, &nl );
366         if ( rc != LDAP_SUCCESS ) {
367                 return rc;
368         }
369
370         *newlevel &= ~nl;
371
372         /* delete the entire attribute */
373         if ( mod->sm_bvalues == NULL ) {
374                 int rc = attr_delete( &e->e_attrs, mod->sm_desc );
375
376                 if ( rc ) {
377                         rc = LDAP_NO_SUCH_ATTRIBUTE;
378                 } else {
379                         *newlevel = 0;
380                         rc = LDAP_SUCCESS;
381                 }
382                 return rc;
383         }
384
385         if ( mr == NULL || !mr->smr_match ) {
386                 /* disallow specific attributes from being deleted if
387                  * no equality rule */
388                 return LDAP_INAPPROPRIATE_MATCHING;
389         }
390
391         /* delete specific values - find the attribute first */
392         if ( (a = attr_find( e->e_attrs, mod->sm_desc )) == NULL ) {
393                 return( LDAP_NO_SUCH_ATTRIBUTE );
394         }
395
396         /* find each value to delete */
397         for ( i = 0; mod->sm_bvalues[i].bv_val != NULL; i++ ) {
398                 int rc;
399                 const char *text = NULL;
400
401                 struct berval asserted;
402
403                 rc = value_normalize( mod->sm_desc,
404                                 SLAP_MR_EQUALITY,
405                                 &mod->sm_bvalues[i],
406                                 &asserted,
407                                 &text );
408
409                 if( rc != LDAP_SUCCESS ) return rc;
410
411                 found = 0;
412                 for ( j = 0; a->a_vals[j].bv_val != NULL; j++ ) {
413                         int match;
414                         int rc = value_match( &match, mod->sm_desc, mr,
415                                         SLAP_MR_VALUE_SYNTAX_MATCH,
416                                         &a->a_vals[j], &asserted, &text );
417
418                         if( rc == LDAP_SUCCESS && match != 0 ) {
419                                 continue;
420                         }
421
422                         /* found a matching value */
423                         found = 1;
424
425                         /* delete it */
426                         free( a->a_vals[j].bv_val );
427                         for ( k = j + 1; a->a_vals[k].bv_val != NULL; k++ ) {
428                                 a->a_vals[k - 1] = a->a_vals[k];
429                         }
430                         a->a_vals[k - 1].bv_val = NULL;
431
432                         break;
433                 }
434
435                 free( asserted.bv_val );
436
437                 /* looked through them all w/o finding it */
438                 if ( ! found ) {
439                         return LDAP_NO_SUCH_ATTRIBUTE;
440                 }
441         }
442
443         /* if no values remain, delete the entire attribute */
444         if ( a->a_vals[0].bv_val == NULL ) {
445                 /* should already be zero */
446                 *newlevel = 0;
447                 
448                 if ( attr_delete( &e->e_attrs, mod->sm_desc ) ) {
449                         return LDAP_NO_SUCH_ATTRIBUTE;
450                 }
451         }
452
453         return LDAP_SUCCESS;
454 }
455
456 static int
457 replace_values( Entry *e, Modification *mod, int *newlevel )
458 {
459         int rc;
460
461         *newlevel = 0;
462         rc = check_constraints( mod, newlevel );
463         if ( rc != LDAP_SUCCESS ) {
464                 return rc;
465         }
466
467         rc = attr_delete( &e->e_attrs, mod->sm_desc );
468
469         if ( rc != LDAP_SUCCESS && rc != LDAP_NO_SUCH_ATTRIBUTE ) {
470                 return rc;
471         }
472
473         if ( mod->sm_bvalues != NULL &&
474                 attr_merge( e, mod->sm_desc, mod->sm_bvalues ) != 0 ) {
475                 return LDAP_OTHER;
476         }
477
478         return LDAP_SUCCESS;
479 }
480