2 * collectd - src/powerdns.c
3 * Copyright (C) 2007-2008 C-Ware, Inc.
4 * Copyright (C) 2008 Florian Forster
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; only version 2 of the License is applicable.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Luke Heberling <lukeh at c-ware.com>
21 * Florian Forster <octo at collectd.org>
24 * Queries a PowerDNS control socket for statistics
30 #include "configfile.h"
31 #include "utils_llist.h"
39 #include <sys/types.h>
40 #include <sys/socket.h>
44 # define UNIX_PATH_MAX sizeof (((struct sockaddr_un *)0)->sun_path)
46 #define FUNC_ERROR(func) do { char errbuf[1024]; ERROR ("powerdns plugin: %s failed: %s", func, sstrerror (errno, errbuf, sizeof (errbuf))); } while (0)
48 #define SERVER_SOCKET LOCALSTATEDIR"/run/pdns.controlsocket"
49 #define SERVER_COMMAND "SHOW * \n"
51 #define RECURSOR_SOCKET LOCALSTATEDIR"/run/pdns_recursor.controlsocket"
52 #define RECURSOR_COMMAND "get noerror-answers nxdomain-answers " \
53 "servfail-answers sys-msec user-msec qa-latency cache-entries cache-hits " \
54 "cache-misses questions\n"
57 typedef struct list_item_s list_item_t;
66 int (*func) (list_item_t *item);
73 struct sockaddr_un sockaddr;
77 struct statname_lookup_s
83 typedef struct statname_lookup_s statname_lookup_t;
85 /* Description of statistics returned by the recursor: {{{
86 all-outqueries counts the number of outgoing UDP queries since starting
87 answers0-1 counts the number of queries answered within 1 millisecond
88 answers100-1000 counts the number of queries answered within 1 second
89 answers10-100 counts the number of queries answered within 100 milliseconds
90 answers1-10 counts the number of queries answered within 10 milliseconds
91 answers-slow counts the number of queries answered after 1 second
92 cache-entries shows the number of entries in the cache
93 cache-hits counts the number of cache hits since starting
94 cache-misses counts the number of cache misses since starting
95 chain-resends number of queries chained to existing outstanding query
96 client-parse-errors counts number of client packets that could not be parsed
97 concurrent-queries shows the number of MThreads currently running
98 dlg-only-drops number of records dropped because of delegation only setting
99 negcache-entries shows the number of entries in the Negative answer cache
100 noerror-answers counts the number of times it answered NOERROR since starting
101 nsspeeds-entries shows the number of entries in the NS speeds map
102 nsset-invalidations number of times an nsset was dropped because it no longer worked
103 nxdomain-answers counts the number of times it answered NXDOMAIN since starting
104 outgoing-timeouts counts the number of timeouts on outgoing UDP queries since starting
105 qa-latency shows the current latency average
106 questions counts all End-user initiated queries with the RD bit set
107 resource-limits counts number of queries that could not be performed because of resource limits
108 server-parse-errors counts number of server replied packets that could not be parsed
109 servfail-answers counts the number of times it answered SERVFAIL since starting
110 spoof-prevents number of times PowerDNS considered itself spoofed, and dropped the data
111 sys-msec number of CPU milliseconds spent in 'system' mode
112 tcp-client-overflow number of times an IP address was denied TCP access because it already had too many connections
113 tcp-outqueries counts the number of outgoing TCP queries since starting
114 tcp-questions counts all incoming TCP queries (since starting)
115 throttled-out counts the number of throttled outgoing UDP queries since starting
116 throttle-entries shows the number of entries in the throttle map
117 unauthorized-tcp number of TCP questions denied because of allow-from restrictions
118 unauthorized-udp number of UDP questions denied because of allow-from restrictions
119 unexpected-packets number of answers from remote servers that were unexpected (might point to spoofing)
120 uptime number of seconds process has been running (since 3.1.5)
121 user-msec number of CPU milliseconds spent in 'user' mode
124 const char* const default_server_fields[] = /* {{{ */
133 "recursing-questions",
139 int default_server_fields_num = STATIC_ARRAY_SIZE (default_server_fields);
141 statname_lookup_t lookup_table[] = /* {{{ */
143 /*********************
144 * Server statistics *
145 *********************/
147 {"recursing-questions", "dns_question", "recurse"},
148 {"tcp-queries", "dns_question", "tcp"},
149 {"udp-queries", "dns_question", "udp"},
150 {"rd-queries", "dns_question", "rd"},
153 {"recursing-answers", "dns_answer", "recurse"},
154 {"tcp-answers", "dns_answer", "tcp"},
155 {"udp-answers", "dns_answer", "udp"},
156 {"recursion-unanswered", "dns_answer", "recursion-unanswered"},
157 {"udp-answers-bytes", "total_bytes", "udp-answers-bytes"},
160 {"packetcache-hit", "cache_result", "packet-hit"},
161 {"packetcache-miss", "cache_result", "packet-miss"},
162 {"packetcache-size", "cache_size", "packet"},
163 {"key-cache-size", "cache_size", "key"},
164 {"meta-cache-size", "cache_size", "meta"},
165 {"signature-cache-size", "cache_size", "signature"},
166 {"query-cache-hit", "cache_result", "query-hit"},
167 {"query-cache-miss", "cache_result", "query-miss"},
170 {"latency", "latency", NULL},
173 {"dnsupdate-answers", "dns_answer", "dnsupdate-answer"},
174 {"dnsupdate-changes", "dns_question", "dnsupdate-changes"},
175 {"dnsupdate-queries", "dns_question", "dnsupdate-queries"},
176 {"dnsupdate-refused", "dns_answer", "dnsupdate-refused"},
179 {"corrupt-packets", "ipt_packets", "corrupt"},
180 {"deferred-cache-inserts", "counter", "cache-deferred_insert"},
181 {"deferred-cache-lookup", "counter", "cache-deferred_lookup"},
182 {"qsize-a", "cache_size", "answers"},
183 {"qsize-q", "cache_size", "questions"},
184 {"servfail-packets", "ipt_packets", "servfail"},
185 {"timedout-packets", "ipt_packets", "timeout"},
186 {"udp4-answers", "dns_answer", "udp4"},
187 {"udp4-queries", "dns_question", "queries-udp4"},
188 {"udp6-answers", "dns_answer", "udp6"},
189 {"udp6-queries", "dns_question", "queries-udp6"},
190 {"security-status", "dns_question", "security-status"},
191 {"udp-do-queries", "dns_question", "udp-do_queries"},
192 {"signatures", "counter", "signatures"},
194 /***********************
195 * Recursor statistics *
196 ***********************/
197 /* Answers by return code */
198 {"noerror-answers", "dns_rcode", "NOERROR"},
199 {"nxdomain-answers", "dns_rcode", "NXDOMAIN"},
200 {"servfail-answers", "dns_rcode", "SERVFAIL"},
202 /* CPU utilization */
203 {"sys-msec", "cpu", "system"},
204 {"user-msec", "cpu", "user"},
206 /* Question-to-answer latency */
207 {"qa-latency", "latency", NULL},
210 {"cache-entries", "cache_size", NULL},
211 {"cache-hits", "cache_result", "hit"},
212 {"cache-misses", "cache_result", "miss"},
214 /* Total number of questions.. */
215 {"questions", "dns_qtype", "total"},
217 /* All the other stuff.. */
218 {"all-outqueries", "dns_question", "outgoing"},
219 {"answers0-1", "dns_answer", "0_1"},
220 {"answers1-10", "dns_answer", "1_10"},
221 {"answers10-100", "dns_answer", "10_100"},
222 {"answers100-1000", "dns_answer", "100_1000"},
223 {"answers-slow", "dns_answer", "slow"},
224 {"chain-resends", "dns_question", "chained"},
225 {"client-parse-errors", "counter", "drops-client_parse_error"},
226 {"concurrent-queries", "dns_question", "concurrent"},
227 {"dlg-only-drops", "counter", "drops-delegation_only"},
228 {"negcache-entries", "cache_size", "negative"},
229 {"nsspeeds-entries", "gauge", "entries-ns_speeds"},
230 {"nsset-invalidations", "counter", "ns_set_invalidation"},
231 {"outgoing-timeouts", "counter", "drops-timeout_outgoing"},
232 {"resource-limits", "counter", "drops-resource_limit"},
233 {"server-parse-errors", "counter", "drops-server_parse_error"},
234 {"spoof-prevents", "counter", "drops-spoofed"},
235 {"tcp-client-overflow", "counter", "denied-client_overflow_tcp"},
236 {"tcp-outqueries", "dns_question", "outgoing-tcp"},
237 {"tcp-questions", "dns_question", "incoming-tcp"},
238 {"throttled-out", "dns_question", "outgoing-throttled"},
239 {"throttle-entries", "gauge", "entries-throttle"},
240 {"unauthorized-tcp", "counter", "denied-unauthorized_tcp"},
241 {"unauthorized-udp", "counter", "denied-unauthorized_udp"},
242 {"unexpected-packets", "dns_answer", "unexpected"},
243 {"uptime", "uptime", NULL}
245 int lookup_table_length = STATIC_ARRAY_SIZE (lookup_table);
247 static llist_t *list = NULL;
249 #define PDNS_LOCAL_SOCKPATH LOCALSTATEDIR"/run/"PACKAGE_NAME"-powerdns"
250 static char *local_sockpath = NULL;
252 /* TODO: Do this before 4.4:
254 * - Complete list of known pdns -> collectd mappings.
255 * - Update the collectd.conf(5) manpage.
260 /* <http://doc.powerdns.com/recursor-stats.html> */
261 static void submit (const char *plugin_instance, /* {{{ */
262 const char *pdns_type, const char *value)
264 value_list_t vl = VALUE_LIST_INIT;
267 const char *type = NULL;
268 const char *type_instance = NULL;
269 const data_set_t *ds;
273 for (i = 0; i < lookup_table_length; i++)
274 if (strcmp (lookup_table[i].name, pdns_type) == 0)
277 if (i >= lookup_table_length)
279 INFO ("powerdns plugin: submit: Not found in lookup table: %s = %s;",
284 if (lookup_table[i].type == NULL)
287 type = lookup_table[i].type;
288 type_instance = lookup_table[i].type_instance;
290 ds = plugin_get_ds (type);
293 ERROR ("powerdns plugin: The lookup table returned type `%s', "
294 "but I cannot find it via `plugin_get_ds'.",
301 ERROR ("powerdns plugin: type `%s' has %i data sources, "
302 "but I can only handle one.",
307 if (0 != parse_value (value, &values[0], ds->ds[0].type))
309 ERROR ("powerdns plugin: Cannot convert `%s' "
310 "to a number.", value);
316 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
317 sstrncpy (vl.plugin, "powerdns", sizeof (vl.plugin));
318 sstrncpy (vl.type, type, sizeof (vl.type));
319 if (type_instance != NULL)
320 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
321 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
323 plugin_dispatch_values (&vl);
324 } /* }}} static void submit */
326 static int powerdns_get_data_dgram (list_item_t *item, /* {{{ */
328 size_t *ret_buffer_size)
335 size_t buffer_size = 0;
337 struct sockaddr_un sa_unix;
339 struct timeval stv_timeout;
340 cdtime_t cdt_timeout;
342 sd = socket (PF_UNIX, item->socktype, 0);
345 FUNC_ERROR ("socket");
349 memset (&sa_unix, 0, sizeof (sa_unix));
350 sa_unix.sun_family = AF_UNIX;
351 sstrncpy (sa_unix.sun_path,
352 (local_sockpath != NULL) ? local_sockpath : PDNS_LOCAL_SOCKPATH,
353 sizeof (sa_unix.sun_path));
355 status = unlink (sa_unix.sun_path);
356 if ((status != 0) && (errno != ENOENT))
358 FUNC_ERROR ("unlink");
365 /* We need to bind to a specific path, because this is a datagram socket
366 * and otherwise the daemon cannot answer. */
367 status = bind (sd, (struct sockaddr *) &sa_unix, sizeof (sa_unix));
374 /* Make the socket writeable by the daemon.. */
375 status = chmod (sa_unix.sun_path, 0666);
378 FUNC_ERROR ("chmod");
382 cdt_timeout = plugin_get_interval () * 3 / 4;
383 if (cdt_timeout < TIME_T_TO_CDTIME_T (2))
384 cdt_timeout = TIME_T_TO_CDTIME_T (2);
386 CDTIME_T_TO_TIMEVAL (cdt_timeout, &stv_timeout);
388 status = setsockopt (sd, SOL_SOCKET, SO_RCVTIMEO, &stv_timeout, sizeof (stv_timeout));
391 FUNC_ERROR ("setsockopt");
395 status = connect (sd, (struct sockaddr *) &item->sockaddr,
396 sizeof (item->sockaddr));
399 FUNC_ERROR ("connect");
403 status = send (sd, item->command, strlen (item->command), 0);
410 status = recv (sd, temp, sizeof (temp), /* flags = */ 0);
416 buffer_size = status + 1;
421 unlink (sa_unix.sun_path);
426 assert (buffer_size > 0);
427 buffer = (char *) malloc (buffer_size);
430 FUNC_ERROR ("malloc");
434 memcpy (buffer, temp, buffer_size - 1);
435 buffer[buffer_size - 1] = 0;
437 *ret_buffer = buffer;
438 *ret_buffer_size = buffer_size;
441 } /* }}} int powerdns_get_data_dgram */
443 static int powerdns_get_data_stream (list_item_t *item, /* {{{ */
445 size_t *ret_buffer_size)
452 size_t buffer_size = 0;
454 sd = socket (PF_UNIX, item->socktype, 0);
457 FUNC_ERROR ("socket");
461 struct timeval timeout;
464 status = setsockopt (sd, SOL_SOCKET, SO_RCVTIMEO, &timeout, sizeof (timeout));
466 status = connect (sd, (struct sockaddr *) &item->sockaddr,
467 sizeof (item->sockaddr));
470 FUNC_ERROR ("connect");
475 /* strlen + 1, because we need to send the terminating NULL byte, too. */
476 status = send (sd, item->command, strlen (item->command) + 1,
489 status = recv (sd, temp, sizeof (temp), /* flags = */ 0);
495 else if (status == 0)
498 buffer_new = (char *) realloc (buffer, buffer_size + status + 1);
499 if (buffer_new == NULL)
501 FUNC_ERROR ("realloc");
507 memcpy (buffer + buffer_size, temp, status);
508 buffer_size += status;
509 buffer[buffer_size] = 0;
520 assert (status == 0);
521 *ret_buffer = buffer;
522 *ret_buffer_size = buffer_size;
526 } /* }}} int powerdns_get_data_stream */
528 static int powerdns_get_data (list_item_t *item, char **ret_buffer,
529 size_t *ret_buffer_size)
531 if (item->socktype == SOCK_DGRAM)
532 return (powerdns_get_data_dgram (item, ret_buffer, ret_buffer_size));
533 else if (item->socktype == SOCK_STREAM)
534 return (powerdns_get_data_stream (item, ret_buffer, ret_buffer_size));
537 ERROR ("powerdns plugin: Unknown socket type: %i", (int) item->socktype);
540 } /* int powerdns_get_data */
542 static int powerdns_read_server (list_item_t *item) /* {{{ */
545 size_t buffer_size = 0;
554 const char* const *fields;
557 if (item->command == NULL)
558 item->command = strdup (SERVER_COMMAND);
559 if (item->command == NULL)
561 ERROR ("powerdns plugin: strdup failed.");
565 status = powerdns_get_data (item, &buffer, &buffer_size);
569 if (item->fields_num != 0)
571 fields = (const char* const *) item->fields;
572 fields_num = item->fields_num;
576 fields = default_server_fields;
577 fields_num = default_server_fields_num;
580 assert (fields != NULL);
581 assert (fields_num > 0);
583 /* corrupt-packets=0,deferred-cache-inserts=0,deferred-cache-lookup=0,latency=0,packetcache-hit=0,packetcache-miss=0,packetcache-size=0,qsize-q=0,query-cache-hit=0,query-cache-miss=0,recursing-answers=0,recursing-questions=0,servfail-packets=0,tcp-answers=0,tcp-queries=0,timedout-packets=0,udp-answers=0,udp-queries=0,udp4-answers=0,udp4-queries=0,udp6-answers=0,udp6-queries=0, */
586 while ((key = strtok_r (dummy, ",", &saveptr)) != NULL)
592 value = strchr (key, '=');
599 if (value[0] == '\0')
602 /* Check if this item was requested. */
603 for (i = 0; i < fields_num; i++)
604 if (strcasecmp (key, fields[i]) == 0)
609 submit (item->instance, key, value);
610 } /* while (strtok_r) */
615 } /* }}} int powerdns_read_server */
618 * powerdns_update_recursor_command
620 * Creates a string that holds the command to be sent to the recursor. This
621 * string is stores in the `command' member of the `list_item_t' passed to the
622 * function. This function is called by `powerdns_read_recursor'.
624 static int powerdns_update_recursor_command (list_item_t *li) /* {{{ */
632 if (li->fields_num < 1)
634 sstrncpy (buffer, RECURSOR_COMMAND, sizeof (buffer));
638 sstrncpy (buffer, "get ", sizeof (buffer));
639 status = strjoin (&buffer[strlen("get ")], sizeof (buffer) - strlen ("get "),
640 li->fields, li->fields_num,
641 /* seperator = */ " ");
644 ERROR ("powerdns plugin: strjoin failed.");
647 buffer[sizeof (buffer) - 1] = 0;
648 int i = strlen (buffer);
649 if (i < sizeof (buffer) - 2)
657 buffer[sizeof (buffer) - 1] = 0;
658 li->command = strdup (buffer);
659 if (li->command == NULL)
661 ERROR ("powerdns plugin: strdup failed.");
666 } /* }}} int powerdns_update_recursor_command */
668 static int powerdns_read_recursor (list_item_t *item) /* {{{ */
671 size_t buffer_size = 0;
682 if (item->command == NULL)
684 status = powerdns_update_recursor_command (item);
687 ERROR ("powerdns plugin: powerdns_update_recursor_command failed.");
691 DEBUG ("powerdns plugin: powerdns_read_recursor: item->command = %s;",
694 assert (item->command != NULL);
696 status = powerdns_get_data (item, &buffer, &buffer_size);
699 ERROR ("powerdns plugin: powerdns_get_data failed.");
703 keys_list = strdup (item->command);
704 if (keys_list == NULL)
706 FUNC_ERROR ("strdup");
712 value_saveptr = NULL;
714 /* Skip the `get' at the beginning */
715 strtok_r (keys_list, " \t", &key_saveptr);
718 while ((value = strtok_r (dummy, " \t\n\r", &value_saveptr)) != NULL)
722 key = strtok_r (NULL, " \t", &key_saveptr);
726 submit (item->instance, key, value);
727 } /* while (strtok_r) */
733 } /* }}} int powerdns_read_recursor */
735 static int powerdns_config_add_string (const char *name, /* {{{ */
739 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
741 WARNING ("powerdns plugin: `%s' needs exactly one string argument.",
747 *dest = strdup (ci->values[0].value.string);
752 } /* }}} int powerdns_config_add_string */
754 static int powerdns_config_add_collect (list_item_t *li, /* {{{ */
760 if (ci->values_num < 1)
762 WARNING ("powerdns plugin: The `Collect' option needs "
763 "at least one argument.");
767 for (i = 0; i < ci->values_num; i++)
768 if (ci->values[i].type != OCONFIG_TYPE_STRING)
770 WARNING ("powerdns plugin: Only string arguments are allowed to "
771 "the `Collect' option.");
775 temp = (char **) realloc (li->fields,
776 sizeof (char *) * (li->fields_num + ci->values_num));
779 WARNING ("powerdns plugin: realloc failed.");
784 for (i = 0; i < ci->values_num; i++)
786 li->fields[li->fields_num] = strdup (ci->values[i].value.string);
787 if (li->fields[li->fields_num] == NULL)
789 WARNING ("powerdns plugin: strdup failed.");
795 /* Invalidate a previously computed command */
799 } /* }}} int powerdns_config_add_collect */
801 static int powerdns_config_add_server (oconfig_item_t *ci) /* {{{ */
809 if ((ci->values_num != 1) || (ci->values[0].type != OCONFIG_TYPE_STRING))
811 WARNING ("powerdns plugin: `%s' needs exactly one string argument.",
816 item = (list_item_t *) malloc (sizeof (list_item_t));
819 ERROR ("powerdns plugin: malloc failed.");
822 memset (item, '\0', sizeof (list_item_t));
824 item->instance = strdup (ci->values[0].value.string);
825 if (item->instance == NULL)
827 ERROR ("powerdns plugin: strdup failed.");
833 * Set default values for the members of list_item_t
835 if (strcasecmp ("Server", ci->key) == 0)
837 item->server_type = SRV_AUTHORITATIVE;
838 item->func = powerdns_read_server;
839 item->socktype = SOCK_STREAM;
840 socket_temp = strdup (SERVER_SOCKET);
842 else if (strcasecmp ("Recursor", ci->key) == 0)
844 item->server_type = SRV_RECURSOR;
845 item->func = powerdns_read_recursor;
846 item->socktype = SOCK_DGRAM;
847 socket_temp = strdup (RECURSOR_SOCKET);
851 /* We must never get here.. */
857 for (i = 0; i < ci->children_num; i++)
859 oconfig_item_t *option = ci->children + i;
861 if (strcasecmp ("Collect", option->key) == 0)
862 status = powerdns_config_add_collect (item, option);
863 else if (strcasecmp ("Socket", option->key) == 0)
864 status = powerdns_config_add_string ("Socket", &socket_temp, option);
867 ERROR ("powerdns plugin: Option `%s' not allowed here.", option->key);
879 if (socket_temp == NULL)
881 ERROR ("powerdns plugin: socket_temp == NULL.");
886 item->sockaddr.sun_family = AF_UNIX;
887 sstrncpy (item->sockaddr.sun_path, socket_temp,
888 sizeof (item->sockaddr.sun_path));
890 e = llentry_create (item->instance, item);
893 ERROR ("powerdns plugin: llentry_create failed.");
897 llist_append (list, e);
908 DEBUG ("powerdns plugin: Add server: instance = %s;", item->instance);
911 } /* }}} int powerdns_config_add_server */
913 static int powerdns_config (oconfig_item_t *ci) /* {{{ */
917 DEBUG ("powerdns plugin: powerdns_config (ci = %p);", (void *) ci);
921 list = llist_create ();
925 ERROR ("powerdns plugin: `llist_create' failed.");
930 for (i = 0; i < ci->children_num; i++)
932 oconfig_item_t *option = ci->children + i;
934 if ((strcasecmp ("Server", option->key) == 0)
935 || (strcasecmp ("Recursor", option->key) == 0))
936 powerdns_config_add_server (option);
937 else if (strcasecmp ("LocalSocket", option->key) == 0)
939 if ((option->values_num != 1) || (option->values[0].type != OCONFIG_TYPE_STRING))
941 WARNING ("powerdns plugin: `%s' needs exactly one string argument.", option->key);
945 char *temp = strdup (option->values[0].value.string);
948 sfree (local_sockpath);
949 local_sockpath = temp;
954 ERROR ("powerdns plugin: Option `%s' not allowed here.", option->key);
956 } /* for (i = 0; i < ci->children_num; i++) */
959 } /* }}} int powerdns_config */
961 static int powerdns_read (void)
965 for (e = llist_head (list); e != NULL; e = e->next)
967 list_item_t *item = e->value;
972 } /* static int powerdns_read */
974 static int powerdns_shutdown (void)
981 for (e = llist_head (list); e != NULL; e = e->next)
983 list_item_t *item = (list_item_t *) e->value;
986 sfree (item->instance);
987 sfree (item->command);
991 llist_destroy (list);
995 } /* static int powerdns_shutdown */
997 void module_register (void)
999 plugin_register_complex_config ("powerdns", powerdns_config);
1000 plugin_register_read ("powerdns", powerdns_read);
1001 plugin_register_shutdown ("powerdns", powerdns_shutdown );
1002 } /* void module_register */
1004 /* vim: set sw=2 sts=2 ts=8 fdm=marker : */