Code

src/filter_chain.c: Actually abort default targets when one signals `stop'.
[collectd.git] / src / filter_chain.c
1 /**
2  * collectd - src/filter_chain.h
3  * Copyright (C) 2008  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
22 /*
23  * First tell the compiler to stick to the C99 and POSIX standards as close as
24  * possible.
25  */
26 #ifndef __STRICT_ANSI__ /* {{{ */
27 # define __STRICT_ANSI__
28 #endif
30 #ifndef _ISOC99_SOURCE
31 # define _ISOC99_SOURCE
32 #endif
34 #ifdef _POSIX_C_SOURCE
35 # undef _POSIX_C_SOURCE
36 #endif
37 #define _POSIX_C_SOURCE 200112L
39 #if 0
40 /* Single UNIX needed for strdup. */
41 #ifdef _XOPEN_SOURCE
42 # undef _XOPEN_SOURCE
43 #endif
44 #define _XOPEN_SOURCE 500
45 #endif
47 #ifndef _REENTRANT
48 # define _REENTRANT
49 #endif
51 #ifndef _THREAD_SAFE
52 # define _THREAD_SAFE
53 #endif
55 #ifdef _GNU_SOURCE
56 # undef _GNU_SOURCE
57 #endif
58 /* }}} */
60 #include "collectd.h"
61 #include "configfile.h"
62 #include "plugin.h"
63 #include "common.h"
64 #include "filter_chain.h"
66 /*
67  * Data types
68  */
69 /* List of matches, used in fc_rule_t and for the global `match_list_head'
70  * variable. */
71 struct fc_match_s;
72 typedef struct fc_match_s fc_match_t; /* {{{ */
73 struct fc_match_s
74 {
75   char name[DATA_MAX_NAME_LEN];
76   match_proc_t proc;
77   void *user_data;
78   fc_match_t *next;
79 }; /* }}} */
81 /* List of targets, used in fc_rule_t and for the global `target_list_head'
82  * variable. */
83 struct fc_target_s;
84 typedef struct fc_target_s fc_target_t; /* {{{ */
85 struct fc_target_s
86 {
87   char name[DATA_MAX_NAME_LEN];
88   void *user_data;
89   target_proc_t proc;
90   fc_target_t *next;
91 }; /* }}} */
93 /* List of rules, used in fc_chain_t */
94 struct fc_rule_s;
95 typedef struct fc_rule_s fc_rule_t; /* {{{ */
96 struct fc_rule_s
97 {
98   char name[DATA_MAX_NAME_LEN];
99   fc_match_t  *matches;
100   fc_target_t *targets;
101   fc_rule_t *next;
102 }; /* }}} */
104 /* List of chains, used for `chain_list_head' */
105 struct fc_chain_s;
106 typedef struct fc_chain_s fc_chain_t; /* {{{ */
107 struct fc_chain_s
109   char name[DATA_MAX_NAME_LEN];
110   fc_rule_t   *rules;
111   fc_target_t *targets;
112   fc_chain_t  *next;
113 }; /* }}} */
115 /*
116  * Global variables
117  */
118 static fc_match_t  *match_list_head;
119 static fc_target_t *target_list_head;
120 static fc_chain_t  *chain_list_head;
122 /*
123  * Private functions
124  */
125 static void fc_free_matches (fc_match_t *m) /* {{{ */
127   if (m == NULL)
128     return;
130   if (m->proc.destroy != NULL)
131     (*m->proc.destroy) (&m->user_data);
132   else if (m->user_data != NULL)
133   {
134     ERROR ("Filter sybsystem: fc_free_matches: There is user data, but no "
135         "destroy functions has been specified. "
136         "Memory will probably be lost!");
137   }
139   if (m->next != NULL)
140     fc_free_matches (m->next);
142   free (m);
143 } /* }}} void fc_free_matches */
145 static void fc_free_targets (fc_target_t *t) /* {{{ */
147   if (t == NULL)
148     return;
150   if (t->proc.destroy != NULL)
151     (*t->proc.destroy) (&t->user_data);
152   else if (t->user_data != NULL)
153   {
154     ERROR ("Filter sybsystem: fc_free_targets: There is user data, but no "
155         "destroy functions has been specified. "
156         "Memory will probably be lost!");
157   }
159   if (t->next != NULL)
160     fc_free_targets (t->next);
162   free (t);
163 } /* }}} void fc_free_targets */
165 static void fc_free_rules (fc_rule_t *r) /* {{{ */
167   if (r == NULL)
168     return;
170   fc_free_matches (r->matches);
171   fc_free_targets (r->targets);
173   if (r->next != NULL)
174     fc_free_rules (r->next);
176   free (r);
177 } /* }}} void fc_free_rules */
179 static void fc_free_chains (fc_chain_t *c) /* {{{ */
181   if (c == NULL)
182     return;
184   fc_free_rules (c->rules);
185   fc_free_targets (c->targets);
187   if (c->next != NULL)
188     fc_free_chains (c->next);
190   free (c);
191 } /* }}} void fc_free_chains */
193 static char *fc_strdup (const char *orig) /* {{{ */
195   size_t sz;
196   char *dest;
198   if (orig == NULL)
199     return (NULL);
201   sz = strlen (orig) + 1;
202   dest = (char *) malloc (sz);
203   if (dest == NULL)
204     return (NULL);
206   memcpy (dest, orig, sz);
208   return (dest);
209 } /* }}} char *fc_strdup */
211 /*
212  * Configuration.
213  *
214  * The configuration looks somewhat like this:
215  *
216  *  <Chain "main">
217  *    <Rule>
218  *      <Match "regex">
219  *        Plugin "^mysql$"
220  *        Type "^mysql_command$"
221  *        TypeInstance "^show_"
222  *      </Match>
223  *      <Target "drop">
224  *      </Target>
225  *    </Rule>
226  *
227  *    <Target "write">
228  *      Plugin "rrdtool"
229  *    </Target>
230  *  </Chain>
231  */
232 static int fc_config_add_match (fc_match_t **matches_head, /* {{{ */
233     oconfig_item_t *ci)
235   fc_match_t *m;
236   fc_match_t *ptr;
237   int status;
239   if ((ci->values_num != 1)
240       || (ci->values[0].type != OCONFIG_TYPE_STRING))
241   {
242     WARNING ("Filter subsystem: `Match' blocks require "
243         "exactly one string argument.");
244     return (-1);
245   }
247   ptr = match_list_head;
248   while (ptr != NULL)
249   {
250     if (strcasecmp (ptr->name, ci->values[0].value.string) == 0)
251       break;
252     ptr = ptr->next;
253   }
255   if (ptr == NULL)
256   {
257     WARNING ("Filter subsystem: Cannot find a \"%s\" match. "
258         "Did you load the appropriate plugin?",
259         ci->values[0].value.string);
260     return (-1);
261   }
263   m = (fc_match_t *) malloc (sizeof (*m));
264   if (m == NULL)
265   {
266     ERROR ("fc_config_add_match: malloc failed.");
267     return (-1);
268   }
269   memset (m, 0, sizeof (*m));
271   sstrncpy (m->name, ptr->name, sizeof (m->name));
272   memcpy (&m->proc, &ptr->proc, sizeof (m->proc));
273   assert (m->proc.create != NULL);
274   m->user_data = NULL;
275   m->next = NULL;
277   status = (*m->proc.create) (ci, &m->user_data);
278   if (status != 0)
279   {
280     WARNING ("Filter subsystem: Failed to create a %s match.",
281         m->name);
282     fc_free_matches (m);
283     return (-1);
284   }
285   
286   if (*matches_head != NULL)
287   {
288     ptr = *matches_head;
289     while (ptr->next != NULL)
290       ptr = ptr->next;
292     ptr->next = m;
293   }
294   else
295   {
296     *matches_head = m;
297   }
299   return (0);
300 } /* }}} int fc_config_add_match */
302 static int fc_config_add_target (fc_target_t **targets_head, /* {{{ */
303     oconfig_item_t *ci)
305   fc_target_t *t;
306   fc_target_t *ptr;
307   int status;
309   if ((ci->values_num != 1)
310       || (ci->values[0].type != OCONFIG_TYPE_STRING))
311   {
312     WARNING ("Filter subsystem: `Target' blocks require "
313         "exactly one string argument.");
314     return (-1);
315   }
317   ptr = target_list_head;
318   while (ptr != NULL)
319   {
320     if (strcasecmp (ptr->name, ci->values[0].value.string) == 0)
321       break;
322     ptr = ptr->next;
323   }
325   if (ptr == NULL)
326   {
327     WARNING ("Filter subsystem: Cannot find a \"%s\" target. "
328         "Did you load the appropriate plugin?",
329         ci->values[0].value.string);
330     return (-1);
331   }
333   t = (fc_target_t *) malloc (sizeof (*t));
334   if (t == NULL)
335   {
336     ERROR ("fc_config_add_match: malloc failed.");
337     return (-1);
338   }
339   memset (t, 0, sizeof (*t));
341   sstrncpy (t->name, ptr->name, sizeof (t->name));
342   memcpy (&t->proc, &ptr->proc, sizeof (t->proc));
343   t->user_data = NULL;
344   t->next = NULL;
346   if (t->proc.create != NULL)
347   {
348     status = (*t->proc.create) (ci, &t->user_data);
349     if (status != 0)
350     {
351       WARNING ("Filter subsystem: Failed to create a %s match.",
352           t->name);
353       fc_free_targets (t);
354       return (-1);
355     }
356   }
357   else
358   {
359     t->user_data = NULL;
360   }
361   
362   if (*targets_head != NULL)
363   {
364     ptr = *targets_head;
365     while (ptr->next != NULL)
366       ptr = ptr->next;
368     ptr->next = t;
369   }
370   else
371   {
372     *targets_head = t;
373   }
375   return (0);
376 } /* }}} int fc_config_add_target */
378 static int fc_config_add_rule (fc_chain_t *chain, /* {{{ */
379     oconfig_item_t *ci)
381   fc_rule_t *rule;
382   char rule_name[2*DATA_MAX_NAME_LEN] = "Unnamed rule";
383   int status = 0;
384   int i;
386   if (ci->values_num > 1)
387   {
388     WARNING ("Filter subsystem: `Rule' blocks have at most one argument.");
389     return (-1);
390   }
391   else if ((ci->values_num == 1)
392       && (ci->values[0].type != OCONFIG_TYPE_STRING))
393   {
394     WARNING ("Filter subsystem: `Rule' blocks expect one string argument "
395         "or no argument at all.");
396     return (-1);
397   }
399   rule = (fc_rule_t *) malloc (sizeof (*rule));
400   if (rule == NULL)
401   {
402     ERROR ("fc_config_add_rule: malloc failed.");
403     return (-1);
404   }
405   memset (rule, 0, sizeof (*rule));
406   rule->next = NULL;
408   if (ci->values_num == 1)
409   {
410     sstrncpy (rule->name, ci->values[0].value.string, sizeof (rule->name));
411     ssnprintf (rule_name, sizeof (rule_name), "Rule \"%s\"",
412         ci->values[0].value.string);
413   }
415   for (i = 0; i < ci->children_num; i++)
416   {
417     oconfig_item_t *option = ci->children + i;
418     status = 0;
420     if (strcasecmp ("Match", option->key) == 0)
421       status = fc_config_add_match (&rule->matches, option);
422     else if (strcasecmp ("Target", option->key) == 0)
423       status = fc_config_add_target (&rule->targets, option);
424     else
425     {
426       WARNING ("Filter subsystem: %s: Option `%s' not allowed "
427           "inside a <Rule> block.", rule_name, option->key);
428       status = -1;
429     }
431     if (status != 0)
432       break;
433   } /* for (ci->children) */
435   /* Additional sanity checking. */
436   while (status == 0)
437   {
438     if (rule->targets == NULL)
439     {
440       WARNING ("Filter subsystem: %s: No target has been specified.",
441           rule_name);
442       status = -1;
443       break;
444     }
446     break;
447   } /* while (status == 0) */
449   if (status != 0)
450   {
451     fc_free_rules (rule);
452     return (-1);
453   }
455   if (chain->rules != NULL)
456   {
457     fc_rule_t *ptr;
459     ptr = chain->rules;
460     while (ptr->next != NULL)
461       ptr = ptr->next;
463     ptr->next = rule;
464   }
465   else
466   {
467     chain->rules = rule;
468   }
470   return (0);
471 } /* }}} int fc_config_add_rule */
473 static int fc_config_add_chain (const oconfig_item_t *ci) /* {{{ */
475   fc_chain_t *chain;
476   int status = 0;
477   int i;
479   if ((ci->values_num != 1)
480       || (ci->values[0].type != OCONFIG_TYPE_STRING))
481   {
482     WARNING ("Filter subsystem: <Chain> blocks require exactly one "
483         "string argument.");
484     return (-1);
485   }
487   chain = (fc_chain_t *) malloc (sizeof (*chain));
488   if (chain == NULL)
489   {
490     ERROR ("fc_config_add_chain: malloc failed.");
491     return (-1);
492   }
493   memset (chain, 0, sizeof (*chain));
494   sstrncpy (chain->name, ci->values[0].value.string, sizeof (chain->name));
495   chain->rules = NULL;
496   chain->targets = NULL;
497   chain->next = NULL;
499   for (i = 0; i < ci->children_num; i++)
500   {
501     oconfig_item_t *option = ci->children + i;
502     status = 0;
504     if (strcasecmp ("Rule", option->key) == 0)
505       status = fc_config_add_rule (chain, option);
506     else if (strcasecmp ("Target", option->key) == 0)
507       status = fc_config_add_target (&chain->targets, option);
508     else
509     {
510       WARNING ("Filter subsystem: Chain %s: Option `%s' not allowed "
511           "inside a <Chain> block.", chain->name, option->key);
512       status = -1;
513     }
515     if (status != 0)
516       break;
517   } /* for (ci->children) */
519   /* Additional sanity checking. */
520   while (status == 0)
521   {
522     if (chain->targets == NULL)
523     {
524       WARNING ("Filter subsystem: Chain %s: No default target has been "
525           "specified. Please make sure that there is a <Target> block within "
526           "the <Chain> block!", chain->name);
527       status = -1;
528       break;
529     }
531     break;
532   } /* while (status == 0) */
534   if (status != 0)
535   {
536     fc_free_chains (chain);
537     return (-1);
538   }
540   if (chain_list_head != NULL)
541   {
542     fc_chain_t *ptr;
544     ptr = chain_list_head;
545     while (ptr->next != NULL)
546       ptr = ptr->next;
548     ptr->next = chain;
549   }
550   else
551   {
552     chain_list_head = chain;
553   }
555   return (0);
556 } /* }}} int fc_config_add_chain */
558 int fc_process_chain (const data_set_t *ds, value_list_t *vl, /* {{{ */
559     fc_chain_t *chain)
561   fc_rule_t *rule;
562   fc_target_t *target;
563   int status;
565   if (chain == NULL)
566     return (-1);
568   DEBUG ("fc_process_chain (chain = %s);", chain->name);
570   status = FC_ACTION_CONTINUE;
572   for (rule = chain->rules; rule != NULL; rule = rule->next)
573   {
574     fc_match_t *match;
576     if (rule->name[0] != 0)
577     {
578       DEBUG ("fc_process_chain: Testing the `%s' rule.", rule->name);
579     }
581     /* N. B.: rule->matches may be NULL. */
582     for (match = rule->matches; match != NULL; match = match->next)
583     {
584       status = (*match->proc.match) (ds, vl, /* meta = */ NULL,
585           &match->user_data);
586       if (status < 0)
587       {
588         WARNING ("fc_process_chain: A match failed.");
589         break;
590       }
591       else if (status != FC_MATCH_MATCHES)
592         break;
593     }
595     /* for-loop has been aborted: Either error or no match. */
596     if (match != NULL)
597       continue;
599     if (rule->name[0] != 0)
600     {
601       DEBUG ("fc_process_chain: Rule `%s' matches.", rule->name);
602     }
604     for (target = rule->targets; target != NULL; target = target->next)
605     {
606       /* If we get here, all matches have matched the value. Execute the
607        * target. */
608       status = (*target->proc.invoke) (ds, vl, /* meta = */ NULL,
609           &target->user_data);
610       if (status < 0)
611       {
612         WARNING ("fc_process_chain: A target failed.");
613         continue;
614       }
615       else if (status == FC_ACTION_CONTINUE)
616         continue;
617       else if (status == FC_ACTION_STOP)
618         break;
619       else
620       {
621         WARNING ("fc_process_chain: Unknown target return value: %i", status);
622       }
623     }
625     if (status == FC_ACTION_STOP)
626     {
627       if (rule->name[0] != 0)
628       {
629         DEBUG ("fc_process_chain: Rule `%s' signaled the stop condition.",
630             rule->name);
631       }
632       break;
633     }
634   } /* for (rule) */
636   /* for-loop has been aborted: A target returned `FC_ACTION_STOP' */
637   if (rule != NULL)
638     return (0);
640   DEBUG ("fc_process_chain (%s): Executing the default targets.",
641       chain->name);
643   for (target = chain->targets; target != NULL; target = target->next)
644   {
645     /* If we get here, all matches have matched the value. Execute the
646      * target. */
647     status = (*target->proc.invoke) (ds, vl, /* meta = */ NULL,
648         &target->user_data);
649     if (status < 0)
650     {
651       WARNING ("fc_process_chain (%s): The default target failed.",
652           chain->name);
653     }
654     else if (status == FC_ACTION_CONTINUE)
655       continue;
656     else if (status == FC_ACTION_STOP)
657       break;
658     else
659     {
660       WARNING ("fc_process_chain (%s): Unknown return value "
661           "from target `%s': %i",
662           chain->name, target->name, status);
663     }
664   }
666   if (target != NULL)
667   {
668     DEBUG ("fc_process_chain (%s): Default target `%s' signaled "
669         "the stop condition.",
670         chain->name, target->name);
671   }
673   return (0);
674 } /* }}} int fc_process_chain */
676 /*
677  * Built-in target "jump"
678  *
679  * Prefix `bit' like `_b_uilt-_i_n _t_arget'
680  */
681 static int fc_bit_jump_create (const oconfig_item_t *ci, /* {{{ */
682     void **user_data)
684   oconfig_item_t *ci_chain;
686   if (ci->children_num != 1)
687   {
688     ERROR ("Filter subsystem: The built-in target `jump' needs exactly "
689         "one `Chain' argument!");
690     return (-1);
691   }
693   ci_chain = ci->children;
694   if (strcasecmp ("Chain", ci_chain->key) != 0)
695   {
696     ERROR ("Filter subsystem: The built-in target `jump' does not "
697         "support the configuration option `%s'.",
698         ci_chain->key);
699     return (-1);
700   }
702   if ((ci_chain->values_num != 1)
703       || (ci_chain->values[0].type != OCONFIG_TYPE_STRING))
704   {
705     ERROR ("Filter subsystem: Built-in target `jump': The `Chain' option "
706         "needs exactly one string argument.");
707     return (-1);
708   }
710   *user_data = fc_strdup (ci_chain->values[0].value.string);
711   if (*user_data == NULL)
712   {
713     ERROR ("fc_bit_jump_create: fc_strdup failed.");
714     return (-1);
715   }
717   return (0);
718 } /* }}} int fc_bit_jump_create */
720 static int fc_bit_jump_destroy (void **user_data) /* {{{ */
722   if (user_data != NULL)
723   {
724     free (*user_data);
725     *user_data = NULL;
726   }
728   return (0);
729 } /* }}} int fc_bit_jump_destroy */
731 static int fc_bit_jump_invoke (const data_set_t *ds, /* {{{ */
732     value_list_t *vl, notification_meta_t **meta, void **user_data)
734   char *chain_name;
735   fc_chain_t *chain;
736   int status;
738   chain_name = *user_data;
740   for (chain = chain_list_head; chain != NULL; chain = chain->next)
741     if (strcasecmp (chain_name, chain->name) == 0)
742       break;
744   if (chain == NULL)
745   {
746     ERROR ("Filter subsystem: Built-in target `jump': There is no chain "
747         "named `%s'.", chain_name);
748     return (-1);
749   }
751   status = fc_process_chain (ds, vl, chain);
752   if (status < 0)
753     return (status);
755   return (FC_ACTION_CONTINUE);
756 } /* }}} int fc_bit_jump_invoke */
758 static int fc_bit_stop_invoke (const data_set_t *ds, /* {{{ */
759     value_list_t *vl, notification_meta_t **meta, void **user_data)
761   return (FC_ACTION_STOP);
762 } /* }}} int fc_bit_stop_invoke */
764 static int fc_bit_write_create (const oconfig_item_t *ci, /* {{{ */
765     void **user_data)
767   int i;
769   char **plugin_list;
770   size_t plugin_list_len;
772   plugin_list = NULL;
773   plugin_list_len = 0;
775   for (i = 0; i < ci->children_num; i++)
776   {
777     oconfig_item_t *child = ci->children + i;
778     char **temp;
779     int j;
781     if (strcasecmp ("Plugin", child->key) != 0)
782     {
783       ERROR ("Filter subsystem: The built-in target `write' does not "
784           "support the configuration option `%s'.",
785           child->key);
786       continue;
787     }
789     for (j = 0; j < child->values_num; j++)
790     {
791       if (child->values[j].type != OCONFIG_TYPE_STRING)
792       {
793         ERROR ("Filter subsystem: Built-in target `write': "
794             "The `Plugin' option accepts only string arguments.");
795         continue;
796       }
798       temp = (char **) realloc (plugin_list, (plugin_list_len + 2)
799           * (sizeof (*plugin_list)));
800       if (temp == NULL)
801       {
802         ERROR ("fc_bit_write_create: realloc failed.");
803         continue;
804       }
805       plugin_list = temp;
807       plugin_list[plugin_list_len] = fc_strdup (child->values[j].value.string);
808       if (plugin_list[plugin_list_len] == NULL)
809       {
810         ERROR ("fc_bit_write_create: fc_strdup failed.");
811         continue;
812       }
813       plugin_list_len++;
814       plugin_list[plugin_list_len] = NULL;
815     } /* for (j = 0; j < child->values_num; j++) */
816   } /* for (i = 0; i < ci->children_num; i++) */
818   *user_data = plugin_list;
820   return (0);
821 } /* }}} int fc_bit_write_create */
823 static int fc_bit_write_destroy (void **user_data) /* {{{ */
825   char **plugin_list;
826   size_t i;
828   if ((user_data == NULL) || (*user_data == NULL))
829     return (0);
831   plugin_list = *user_data;
833   for (i = 0; plugin_list[i] != NULL; i++)
834     free (plugin_list[i]);
835   free (plugin_list);
837   return (0);
838 } /* }}} int fc_bit_write_destroy */
840 static int fc_bit_write_invoke (const data_set_t *ds, /* {{{ */
841     value_list_t *vl, notification_meta_t **meta, void **user_data)
843   char **plugin_list;
844   int status;
846   plugin_list = NULL;
847   if (user_data != NULL)
848     plugin_list = *user_data;
850   if ((plugin_list == NULL) || (plugin_list[0] == NULL))
851   {
852     status = plugin_write (/* plugin = */ NULL, ds, vl);
853     if (status != 0)
854     {
855       INFO ("Filter subsystem: Built-in target `write': Dispatching value to "
856           "all write plugins failed with status %i.", status);
857     }
858   }
859   else
860   {
861     size_t i;
863     for (i = 0; plugin_list[i] != NULL; i++)
864     {
865       status = plugin_write (plugin_list[i], ds, vl);
866       if (status != 0)
867       {
868         INFO ("Filter subsystem: Built-in target `write': Dispatching value to "
869             "the `%s' plugin failed with status %i.", plugin_list[i], status);
870       }
871     } /* for (i = 0; plugin_list[i] != NULL; i++) */
872   }
874   return (FC_ACTION_CONTINUE);
875 } /* }}} int fc_bit_write_invoke */
877 static int fc_init_once (void) /* {{{ */
879   static int done = 0;
880   target_proc_t tproc;
882   if (done != 0)
883     return (0);
885   memset (&tproc, 0, sizeof (tproc));
886   tproc.create  = fc_bit_jump_create;
887   tproc.destroy = fc_bit_jump_destroy;
888   tproc.invoke  = fc_bit_jump_invoke;
889   fc_register_target ("jump", tproc);
891   memset (&tproc, 0, sizeof (tproc));
892   tproc.create  = NULL;
893   tproc.destroy = NULL;
894   tproc.invoke  = fc_bit_stop_invoke;
895   fc_register_target ("stop", tproc);
897   memset (&tproc, 0, sizeof (tproc));
898   tproc.create  = fc_bit_write_create;
899   tproc.destroy = fc_bit_write_destroy;
900   tproc.invoke  = fc_bit_write_invoke;
901   fc_register_target ("write", tproc);
903   done++;
904   return (0);
905 } /* }}} int fc_init_once */
907 /*
908  * Public functions
909  */
910 /* Add a match to list of available matches. */
911 int fc_register_match (const char *name, match_proc_t proc) /* {{{ */
913   fc_match_t *m;
915   DEBUG ("fc_register_match (%s);", name);
917   m = (fc_match_t *) malloc (sizeof (*m));
918   if (m == NULL)
919     return (-ENOMEM);
920   memset (m, 0, sizeof (*m));
922   sstrncpy (m->name, name, sizeof (m->name));
923   memcpy (&m->proc, &proc, sizeof (m->proc));
924   m->next = NULL;
926   if (match_list_head == NULL)
927   {
928     match_list_head = m;
929   }
930   else
931   {
932     fc_match_t *ptr;
934     ptr = match_list_head;
935     while (ptr->next != NULL)
936       ptr = ptr->next;
938     ptr->next = m;
939   }
941   return (0);
942 } /* }}} int fc_register_match */
944 /* Add a target to list of available targets. */
945 int fc_register_target (const char *name, target_proc_t proc) /* {{{ */
947   fc_target_t *t;
949   DEBUG ("fc_register_target (%s);", name);
951   t = (fc_target_t *) malloc (sizeof (*t));
952   if (t == NULL)
953     return (-ENOMEM);
954   memset (t, 0, sizeof (*t));
956   sstrncpy (t->name, name, sizeof (t->name));
957   memcpy (&t->proc, &proc, sizeof (t->proc));
958   t->next = NULL;
960   if (target_list_head == NULL)
961   {
962     target_list_head = t;
963   }
964   else
965   {
966     fc_target_t *ptr;
968     ptr = target_list_head;
969     while (ptr->next != NULL)
970       ptr = ptr->next;
972     ptr->next = t;
973   }
975   return (0);
976 } /* }}} int fc_register_target */
978 /* Iterate over all rules in the chain and execute all targets for which all
979  * matches match. */
980 int fc_process (const data_set_t *ds, value_list_t *vl) /* {{{ */
982   fc_chain_t *chain;
984   for (chain = chain_list_head; chain != NULL; chain = chain->next)
985     if (strcasecmp ("Main", chain->name) == 0)
986       break;
988   if (chain != NULL)
989     return (fc_process_chain (ds, vl, chain));
991   return (fc_bit_write_invoke (ds, vl,
992         /* meta = */ NULL, /* user_data = */ NULL));
993 } /* }}} int fc_process */
995 int fc_configure (const oconfig_item_t *ci) /* {{{ */
997   fc_init_once ();
999   if (ci == NULL)
1000     return (-EINVAL);
1002   if (strcasecmp ("Chain", ci->key) == 0)
1003     return (fc_config_add_chain (ci));
1005   WARNING ("Filter subsystem: Unknown top level config option `%s'.",
1006       ci->key);
1008   return (-1);
1009 } /* }}} int fc_configure */
1011 /* vim: set sw=2 sts=2 et fdm=marker : */