24986b820a04fca868430a91f711bb24f5bcf45d
[collectd.git] / src / ipmi.c
1 /**
2  * collectd - src/ipmi.c
3  * Copyright (C) 2008-2009  Florian octo Forster
4  * Copyright (C) 2008       Peter Holik
5  * Copyright (C) 2009       Bruno PrĂ©mont
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at collectd.org>
22  *   Peter Holik <peter at holik.at>
23  *   Bruno PrĂ©mont <bonbons at linux-vserver.org>
24  **/
25
26 #include "collectd.h"
27
28 #include "common.h"
29 #include "plugin.h"
30 #include "utils_ignorelist.h"
31
32 #include <OpenIPMI/ipmiif.h>
33 #include <OpenIPMI/ipmi_err.h>
34 #include <OpenIPMI/ipmi_posix.h>
35 #include <OpenIPMI/ipmi_conn.h>
36 #include <OpenIPMI/ipmi_smi.h>
37
38 /*
39  * Private data types
40  */
41 struct c_ipmi_sensor_list_s;
42 typedef struct c_ipmi_sensor_list_s c_ipmi_sensor_list_t;
43
44 struct c_ipmi_sensor_list_s
45 {
46   ipmi_sensor_id_t sensor_id;
47   char sensor_name[DATA_MAX_NAME_LEN];
48   char sensor_type[DATA_MAX_NAME_LEN];
49   int sensor_not_present;
50   c_ipmi_sensor_list_t *next;
51 };
52
53 /*
54  * Module global variables
55  */
56 static pthread_mutex_t sensor_list_lock = PTHREAD_MUTEX_INITIALIZER;
57 static c_ipmi_sensor_list_t *sensor_list = NULL;
58
59 static int c_ipmi_init_in_progress = 0;
60 static int c_ipmi_active = 0;
61 static pthread_t thread_id = (pthread_t) 0;
62
63 static const char *config_keys[] =
64 {
65         "Sensor",
66         "IgnoreSelected",
67         "NotifySensorAdd",
68         "NotifySensorRemove",
69         "NotifySensorNotPresent"
70 };
71 static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
72
73 static ignorelist_t *ignorelist = NULL;
74
75 static int c_ipmi_nofiy_add = 0;
76 static int c_ipmi_nofiy_remove = 0;
77 static int c_ipmi_nofiy_notpresent = 0;
78
79 /*
80  * Misc private functions
81  */
82 static void c_ipmi_error (const char *func, int status)
83 {
84   char errbuf[4096] = { 0 };
85
86   if (IPMI_IS_OS_ERR (status))
87   {
88     sstrerror (IPMI_GET_OS_ERR (status), errbuf, sizeof (errbuf));
89   }
90   else if (IPMI_IS_IPMI_ERR (status))
91   {
92     ipmi_get_error_string (IPMI_GET_IPMI_ERR (status), errbuf, sizeof (errbuf));
93   }
94
95   if (errbuf[0] == 0)
96   {
97     ssnprintf (errbuf, sizeof (errbuf), "Unknown error %#x", status);
98   }
99   errbuf[sizeof (errbuf) - 1] = 0;
100
101   ERROR ("ipmi plugin: %s failed: %s", func, errbuf);
102 } /* void c_ipmi_error */
103
104 /*
105  * Sensor handlers
106  */
107 /* Prototype for sensor_list_remove, so sensor_read_handler can call it. */
108 static int sensor_list_remove (ipmi_sensor_t *sensor);
109
110 static void sensor_read_handler (ipmi_sensor_t *sensor,
111     int err,
112     enum ipmi_value_present_e value_present,
113     unsigned int __attribute__((unused)) raw_value,
114     double value,
115     ipmi_states_t __attribute__((unused)) *states,
116     void *user_data)
117 {
118   value_list_t vl = VALUE_LIST_INIT;
119
120   c_ipmi_sensor_list_t *list_item = (c_ipmi_sensor_list_t *)user_data;
121
122   if (err != 0)
123   {
124     if ((err & 0xff) == IPMI_NOT_PRESENT_CC)
125     {
126       if (list_item->sensor_not_present == 0)
127       {
128         list_item->sensor_not_present = 1;
129
130         INFO ("ipmi plugin: sensor_read_handler: sensor %s "
131             "not present.", list_item->sensor_name);
132
133         if (c_ipmi_nofiy_notpresent)
134         {
135           notification_t n = { NOTIF_WARNING, cdtime (), "", "", "ipmi",
136             "", "", "", NULL };
137
138           sstrncpy (n.host, hostname_g, sizeof (n.host));
139           sstrncpy (n.type_instance, list_item->sensor_name,
140               sizeof (n.type_instance));
141           sstrncpy (n.type, list_item->sensor_type, sizeof (n.type));
142           ssnprintf (n.message, sizeof (n.message),
143               "sensor %s not present", list_item->sensor_name);
144
145           plugin_dispatch_notification (&n);
146         }
147       }
148     }
149     else if (IPMI_IS_IPMI_ERR(err) && IPMI_GET_IPMI_ERR(err) == IPMI_NOT_SUPPORTED_IN_PRESENT_STATE_CC)
150     {
151       INFO ("ipmi plugin: sensor_read_handler: Sensor %s not ready",
152           list_item->sensor_name);
153     }
154     else
155     {
156       if (IPMI_IS_IPMI_ERR(err))
157         INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
158             "because it failed with IPMI error %#x.",
159             list_item->sensor_name, IPMI_GET_IPMI_ERR(err));
160       else if (IPMI_IS_OS_ERR(err))
161         INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
162             "because it failed with OS error %#x.",
163             list_item->sensor_name, IPMI_GET_OS_ERR(err));
164       else if (IPMI_IS_RMCPP_ERR(err))
165         INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
166             "because it failed with RMCPP error %#x.",
167             list_item->sensor_name, IPMI_GET_RMCPP_ERR(err));
168       else if (IPMI_IS_SOL_ERR(err))
169         INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
170             "because it failed with RMCPP error %#x.",
171             list_item->sensor_name, IPMI_GET_SOL_ERR(err));
172       else
173         INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
174             "because it failed with error %#x. of class %#x",
175             list_item->sensor_name, err & 0xff, err & 0xffffff00);
176       sensor_list_remove (sensor);
177     }
178     return;
179   }
180   else if (list_item->sensor_not_present == 1)
181   {
182     list_item->sensor_not_present = 0;
183
184     INFO ("ipmi plugin: sensor_read_handler: sensor %s present.",
185         list_item->sensor_name);
186
187     if (c_ipmi_nofiy_notpresent)
188     {
189       notification_t n = { NOTIF_OKAY, cdtime (), "", "", "ipmi",
190         "", "", "", NULL };
191
192       sstrncpy (n.host, hostname_g, sizeof (n.host));
193       sstrncpy (n.type_instance, list_item->sensor_name,
194           sizeof (n.type_instance));
195       sstrncpy (n.type, list_item->sensor_type, sizeof (n.type));
196       ssnprintf (n.message, sizeof (n.message),
197           "sensor %s present", list_item->sensor_name);
198
199       plugin_dispatch_notification (&n);
200     }
201   }
202
203   if (value_present != IPMI_BOTH_VALUES_PRESENT)
204   {
205     INFO ("ipmi plugin: sensor_read_handler: Removing sensor %s, "
206         "because it provides %s. If you need this sensor, "
207         "please file a bug report.",
208         list_item->sensor_name,
209         (value_present == IPMI_RAW_VALUE_PRESENT)
210         ? "only the raw value"
211         : "no value");
212     sensor_list_remove (sensor);
213     return;
214   }
215
216   vl.values = &(value_t) { .gauge = value };
217   vl.values_len = 1;
218
219   sstrncpy (vl.plugin, "ipmi", sizeof (vl.plugin));
220   sstrncpy (vl.type, list_item->sensor_type, sizeof (vl.type));
221   sstrncpy (vl.type_instance, list_item->sensor_name, sizeof (vl.type_instance));
222
223   plugin_dispatch_values (&vl);
224 } /* void sensor_read_handler */
225
226 static int sensor_list_add (ipmi_sensor_t *sensor)
227 {
228   ipmi_sensor_id_t sensor_id;
229   c_ipmi_sensor_list_t *list_item;
230   c_ipmi_sensor_list_t *list_prev;
231
232   char buffer[DATA_MAX_NAME_LEN] = { 0 };
233   const char *entity_id_string;
234   char sensor_name[DATA_MAX_NAME_LEN];
235   char *sensor_name_ptr;
236   int sensor_type;
237   const char *type;
238   ipmi_entity_t *ent = ipmi_sensor_get_entity(sensor);
239
240   sensor_id = ipmi_sensor_convert_to_id (sensor);
241
242   ipmi_sensor_get_name (sensor, buffer, sizeof (buffer));
243   buffer[sizeof (buffer) - 1] = 0;
244
245   entity_id_string = ipmi_entity_get_entity_id_string (ent);
246
247   if (entity_id_string == NULL)
248     sstrncpy (sensor_name, buffer, sizeof (sensor_name));
249   else
250     ssnprintf (sensor_name, sizeof (sensor_name),
251         "%s %s", buffer, entity_id_string);
252
253   sstrncpy (buffer, sensor_name, sizeof (buffer));
254   sensor_name_ptr = strstr (buffer, ").");
255   if (sensor_name_ptr != NULL)
256   {
257     /* If name is something like "foo (123).bar",
258      * change that to "bar (123)".
259      * Both, sensor_name_ptr and sensor_id_ptr point to memory within the
260      * `buffer' array, which holds a copy of the current `sensor_name'. */
261     char *sensor_id_ptr;
262
263     /* `sensor_name_ptr' points to ").bar". */
264     sensor_name_ptr[1] = 0;
265     /* `buffer' holds "foo (123)\0bar\0". */
266     sensor_name_ptr += 2;
267     /* `sensor_name_ptr' now points to "bar". */
268
269     sensor_id_ptr = strstr (buffer, "(");
270     if (sensor_id_ptr != NULL)
271     {
272       /* `sensor_id_ptr' now points to "(123)". */
273       ssnprintf (sensor_name, sizeof (sensor_name),
274           "%s %s", sensor_name_ptr, sensor_id_ptr);
275     }
276     /* else: don't touch sensor_name. */
277   }
278   sensor_name_ptr = sensor_name;
279
280   /* Both `ignorelist' and `plugin_instance' may be NULL. */
281   if (ignorelist_match (ignorelist, sensor_name_ptr) != 0)
282     return (0);
283
284   /* FIXME: Use rate unit or base unit to scale the value */
285
286   sensor_type = ipmi_sensor_get_sensor_type (sensor);
287   switch (sensor_type)
288   {
289     case IPMI_SENSOR_TYPE_TEMPERATURE:
290       type = "temperature";
291       break;
292
293     case IPMI_SENSOR_TYPE_VOLTAGE:
294       type = "voltage";
295       break;
296
297     case IPMI_SENSOR_TYPE_CURRENT:
298       type = "current";
299       break;
300
301     case IPMI_SENSOR_TYPE_FAN:
302       type = "fanspeed";
303       break;
304
305     default:
306       {
307         const char *sensor_type_str;
308
309         sensor_type_str = ipmi_sensor_get_sensor_type_string (sensor);
310         INFO ("ipmi plugin: sensor_list_add: Ignore sensor %s, "
311             "because I don't know how to handle its type (%#x, %s). "
312             "If you need this sensor, please file a bug report.",
313             sensor_name_ptr, sensor_type, sensor_type_str);
314         return (-1);
315       }
316   } /* switch (sensor_type) */
317
318   pthread_mutex_lock (&sensor_list_lock);
319
320   list_prev = NULL;
321   for (list_item = sensor_list;
322       list_item != NULL;
323       list_item = list_item->next)
324   {
325     if (ipmi_cmp_sensor_id (sensor_id, list_item->sensor_id) == 0)
326       break;
327     list_prev = list_item;
328   } /* for (list_item) */
329
330   if (list_item != NULL)
331   {
332     pthread_mutex_unlock (&sensor_list_lock);
333     return (0);
334   }
335
336   list_item = (c_ipmi_sensor_list_t *) calloc (1, sizeof (c_ipmi_sensor_list_t));
337   if (list_item == NULL)
338   {
339     pthread_mutex_unlock (&sensor_list_lock);
340     return (-1);
341   }
342
343   list_item->sensor_id = ipmi_sensor_convert_to_id (sensor);
344
345   if (list_prev != NULL)
346     list_prev->next = list_item;
347   else
348     sensor_list = list_item;
349
350   sstrncpy (list_item->sensor_name, sensor_name_ptr,
351             sizeof (list_item->sensor_name));
352   sstrncpy (list_item->sensor_type, type, sizeof (list_item->sensor_type));
353
354   pthread_mutex_unlock (&sensor_list_lock);
355
356   if (c_ipmi_nofiy_add && (c_ipmi_init_in_progress == 0))
357   {
358     notification_t n = { NOTIF_OKAY, cdtime (), "", "", "ipmi",
359                          "", "", "", NULL };
360
361     sstrncpy (n.host, hostname_g, sizeof (n.host));
362     sstrncpy (n.type_instance, list_item->sensor_name,
363               sizeof (n.type_instance));
364     sstrncpy (n.type, list_item->sensor_type, sizeof (n.type));
365     ssnprintf (n.message, sizeof (n.message),
366               "sensor %s added", list_item->sensor_name);
367
368     plugin_dispatch_notification (&n);
369   }
370
371   return (0);
372 } /* int sensor_list_add */
373
374 static int sensor_list_remove (ipmi_sensor_t *sensor)
375 {
376   ipmi_sensor_id_t sensor_id;
377   c_ipmi_sensor_list_t *list_item;
378   c_ipmi_sensor_list_t *list_prev;
379
380   sensor_id = ipmi_sensor_convert_to_id (sensor);
381
382   pthread_mutex_lock (&sensor_list_lock);
383
384   list_prev = NULL;
385   for (list_item = sensor_list;
386       list_item != NULL;
387       list_item = list_item->next)
388   {
389     if (ipmi_cmp_sensor_id (sensor_id, list_item->sensor_id) == 0)
390       break;
391     list_prev = list_item;
392   } /* for (list_item) */
393
394   if (list_item == NULL)
395   {
396     pthread_mutex_unlock (&sensor_list_lock);
397     return (-1);
398   }
399
400   if (list_prev == NULL)
401     sensor_list = list_item->next;
402   else
403     list_prev->next = list_item->next;
404
405   list_prev = NULL;
406   list_item->next = NULL;
407
408   pthread_mutex_unlock (&sensor_list_lock);
409
410   if (c_ipmi_nofiy_remove && c_ipmi_active)
411   {
412     notification_t n = { NOTIF_WARNING, cdtime (), "", "",
413                          "ipmi", "", "", "", NULL };
414
415     sstrncpy (n.host, hostname_g, sizeof (n.host));
416     sstrncpy (n.type_instance, list_item->sensor_name,
417               sizeof (n.type_instance));
418     sstrncpy (n.type, list_item->sensor_type, sizeof (n.type));
419     ssnprintf (n.message, sizeof (n.message),
420               "sensor %s removed", list_item->sensor_name);
421
422     plugin_dispatch_notification (&n);
423   }
424
425   free (list_item);
426   return (0);
427 } /* int sensor_list_remove */
428
429 static int sensor_list_read_all (void)
430 {
431   pthread_mutex_lock (&sensor_list_lock);
432
433   for (c_ipmi_sensor_list_t *list_item = sensor_list;
434       list_item != NULL;
435       list_item = list_item->next)
436   {
437     ipmi_sensor_id_get_reading (list_item->sensor_id,
438         sensor_read_handler, /* user data = */ list_item);
439   } /* for (list_item) */
440
441   pthread_mutex_unlock (&sensor_list_lock);
442
443   return (0);
444 } /* int sensor_list_read_all */
445
446 static int sensor_list_remove_all (void)
447 {
448   c_ipmi_sensor_list_t *list_item;
449
450   pthread_mutex_lock (&sensor_list_lock);
451
452   list_item = sensor_list;
453   sensor_list = NULL;
454
455   pthread_mutex_unlock (&sensor_list_lock);
456
457   while (list_item != NULL)
458   {
459     c_ipmi_sensor_list_t *list_next = list_item->next;
460
461     free (list_item);
462
463     list_item = list_next;
464   } /* while (list_item) */
465
466   return (0);
467 } /* int sensor_list_remove_all */
468
469 /*
470  * Entity handlers
471  */
472 static void entity_sensor_update_handler (enum ipmi_update_e op,
473     ipmi_entity_t __attribute__((unused)) *entity,
474     ipmi_sensor_t *sensor,
475     void __attribute__((unused)) *user_data)
476 {
477   /* TODO: Ignore sensors we cannot read */
478
479   if ((op == IPMI_ADDED) || (op == IPMI_CHANGED))
480   {
481     /* Will check for duplicate entries.. */
482     sensor_list_add (sensor);
483   }
484   else if (op == IPMI_DELETED)
485   {
486     sensor_list_remove (sensor);
487   }
488 } /* void entity_sensor_update_handler */
489
490 /*
491  * Domain handlers
492  */
493 static void domain_entity_update_handler (enum ipmi_update_e op,
494     ipmi_domain_t __attribute__((unused)) *domain,
495     ipmi_entity_t *entity,
496     void __attribute__((unused)) *user_data)
497 {
498   int status;
499
500   if (op == IPMI_ADDED)
501   {
502     status = ipmi_entity_add_sensor_update_handler (entity,
503         entity_sensor_update_handler, /* user data = */ NULL);
504     if (status != 0)
505     {
506       c_ipmi_error ("ipmi_entity_add_sensor_update_handler", status);
507     }
508   }
509   else if (op == IPMI_DELETED)
510   {
511     status = ipmi_entity_remove_sensor_update_handler (entity,
512         entity_sensor_update_handler, /* user data = */ NULL);
513     if (status != 0)
514     {
515       c_ipmi_error ("ipmi_entity_remove_sensor_update_handler", status);
516     }
517   }
518 } /* void domain_entity_update_handler */
519
520 static void domain_connection_change_handler (ipmi_domain_t *domain,
521     int err,
522     unsigned int conn_num,
523     unsigned int port_num,
524     int still_connected,
525     void *user_data)
526 {
527   int status;
528
529   DEBUG ("domain_connection_change_handler (domain = %p, err = %i, "
530       "conn_num = %u, port_num = %u, still_connected = %i, "
531       "user_data = %p);\n",
532       (void *) domain, err, conn_num, port_num, still_connected, user_data);
533
534   status = ipmi_domain_add_entity_update_handler (domain,
535       domain_entity_update_handler, /* user data = */ NULL);
536   if (status != 0)
537   {
538     c_ipmi_error ("ipmi_domain_add_entity_update_handler", status);
539   }
540 } /* void domain_connection_change_handler */
541
542 static int thread_init (os_handler_t **ret_os_handler)
543 {
544   os_handler_t *os_handler;
545   ipmi_con_t *smi_connection = NULL;
546   ipmi_domain_id_t domain_id;
547   int status;
548
549   os_handler = ipmi_posix_thread_setup_os_handler (SIGIO);
550   if (os_handler == NULL)
551   {
552     ERROR ("ipmi plugin: ipmi_posix_thread_setup_os_handler failed.");
553     return (-1);
554   }
555
556   ipmi_init (os_handler);
557
558   status = ipmi_smi_setup_con (/* if_num = */ 0,
559       os_handler,
560       /* user data = */ NULL,
561       &smi_connection);
562   if (status != 0)
563   {
564     c_ipmi_error ("ipmi_smi_setup_con", status);
565     return (-1);
566   }
567
568   ipmi_open_option_t open_option[1] = {
569     [0] = {
570       .option = IPMI_OPEN_OPTION_ALL,
571       { .ival = 1 }
572     }
573   };
574
575   status = ipmi_open_domain ("mydomain", &smi_connection, /* num_con = */ 1,
576       domain_connection_change_handler, /* user data = */ NULL,
577       /* domain_fully_up_handler = */ NULL, /* user data = */ NULL,
578       open_option, sizeof (open_option) / sizeof (open_option[0]),
579       &domain_id);
580   if (status != 0)
581   {
582     c_ipmi_error ("ipmi_open_domain", status);
583     return (-1);
584   }
585
586   *ret_os_handler = os_handler;
587   return (0);
588 } /* int thread_init */
589
590 static void *thread_main (void __attribute__((unused)) *user_data)
591 {
592   int status;
593   os_handler_t *os_handler = NULL;
594
595   status = thread_init (&os_handler);
596   if (status != 0)
597   {
598     ERROR ("ipmi plugin: thread_init failed.\n");
599     return ((void *) -1);
600   }
601
602   while (c_ipmi_active != 0)
603   {
604     struct timeval tv = { 1, 0 };
605     os_handler->perform_one_op (os_handler, &tv);
606   }
607
608   ipmi_posix_thread_free_os_handler (os_handler);
609
610   return ((void *) 0);
611 } /* void *thread_main */
612
613 static int c_ipmi_config (const char *key, const char *value)
614 {
615   if (ignorelist == NULL)
616     ignorelist = ignorelist_create (/* invert = */ 1);
617   if (ignorelist == NULL)
618     return (1);
619
620   if (strcasecmp ("Sensor", key) == 0)
621   {
622     ignorelist_add (ignorelist, value);
623   }
624   else if (strcasecmp ("IgnoreSelected", key) == 0)
625   {
626     int invert = 1;
627     if (IS_TRUE (value))
628       invert = 0;
629     ignorelist_set_invert (ignorelist, invert);
630   }
631   else if (strcasecmp ("NotifySensorAdd", key) == 0)
632   {
633     if (IS_TRUE (value))
634       c_ipmi_nofiy_add = 1;
635   }
636   else if (strcasecmp ("NotifySensorRemove", key) == 0)
637   {
638     if (IS_TRUE (value))
639       c_ipmi_nofiy_remove = 1;
640   }
641   else if (strcasecmp ("NotifySensorNotPresent", key) == 0)
642   {
643     if (IS_TRUE (value))
644       c_ipmi_nofiy_notpresent = 1;
645   }
646   else
647   {
648     return (-1);
649   }
650
651   return (0);
652 } /* int c_ipmi_config */
653
654 static int c_ipmi_init (void)
655 {
656   int status;
657
658   /* Don't send `ADD' notifications during startup (~ 1 minute) */
659   time_t iv = CDTIME_T_TO_TIME_T (plugin_get_interval ());
660   c_ipmi_init_in_progress = 1 + (60 / iv);
661
662   c_ipmi_active = 1;
663
664   status = plugin_thread_create (&thread_id, /* attr = */ NULL, thread_main,
665       /* user data = */ NULL, "ipmi");
666   if (status != 0)
667   {
668     c_ipmi_active = 0;
669     thread_id = (pthread_t) 0;
670     ERROR ("ipmi plugin: pthread_create failed.");
671     return (-1);
672   }
673
674   return (0);
675 } /* int c_ipmi_init */
676
677 static int c_ipmi_read (void)
678 {
679   if ((c_ipmi_active == 0) || (thread_id == (pthread_t) 0))
680   {
681     INFO ("ipmi plugin: c_ipmi_read: I'm not active, returning false.");
682     return (-1);
683   }
684
685   sensor_list_read_all ();
686
687   if (c_ipmi_init_in_progress > 0)
688     c_ipmi_init_in_progress--;
689   else
690     c_ipmi_init_in_progress = 0;
691
692   return (0);
693 } /* int c_ipmi_read */
694
695 static int c_ipmi_shutdown (void)
696 {
697   c_ipmi_active = 0;
698
699   if (thread_id != (pthread_t) 0)
700   {
701     pthread_join (thread_id, NULL);
702     thread_id = (pthread_t) 0;
703   }
704
705   sensor_list_remove_all ();
706
707   return (0);
708 } /* int c_ipmi_shutdown */
709
710 void module_register (void)
711 {
712   plugin_register_config ("ipmi", c_ipmi_config,
713       config_keys, config_keys_num);
714   plugin_register_init ("ipmi", c_ipmi_init);
715   plugin_register_read ("ipmi", c_ipmi_read);
716   plugin_register_shutdown ("ipmi", c_ipmi_shutdown);
717 } /* void module_register */
718
719 /* vim: set sw=2 sts=2 ts=8 fdm=marker et : */