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