2 * collectd - src/modbus.c
3 * Copyright (C) 2010,2011 noris network AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation; only version 2.1 of the License is
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 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 * Florian Forster <octo at noris.net>
26 #include "configfile.h"
30 #include <modbus/modbus.h>
32 #ifndef LIBMODBUS_VERSION_CHECK
33 /* Assume version 2.0.3 */
34 # define LEGACY_LIBMODBUS 1
36 /* Assume version 2.9.2 */
39 #ifndef MODBUS_TCP_DEFAULT_PORT
40 # ifdef MODBUS_TCP_PORT
41 # define MODBUS_TCP_DEFAULT_PORT MODBUS_TCP_PORT
43 # define MODBUS_TCP_DEFAULT_PORT 502
50 * RegisterCmd ReadHolding
60 * # Device "/dev/ttyUSB0"
66 * Instance "foobar" # optional
75 enum mb_register_type_e /* {{{ */
83 enum mb_mreg_type_e /* {{{ */
88 typedef enum mb_register_type_e mb_register_type_t;
89 typedef enum mb_mreg_type_e mb_mreg_type_t;
91 /* TCP or RTU depending on what is specified in host config block */
92 enum mb_conntype_e /* {{{ */
97 typedef enum mb_conntype_e mb_conntype_t;
100 typedef struct mb_data_s mb_data_t;
101 struct mb_data_s /* {{{ */
105 mb_register_type_t register_type;
106 mb_mreg_type_t modbus_register_type;
107 char type[DATA_MAX_NAME_LEN];
108 char instance[DATA_MAX_NAME_LEN];
113 struct mb_slave_s /* {{{ */
116 char instance[DATA_MAX_NAME_LEN];
119 typedef struct mb_slave_s mb_slave_t;
121 struct mb_host_s /* {{{ */
123 char host[DATA_MAX_NAME_LEN];
124 char node[NI_MAXHOST]; /* TCP hostname or RTU serial device */
125 /* char service[NI_MAXSERV]; */
126 int port; /* for Modbus/TCP */
127 int baudrate; /* for Modbus/RTU */
128 mb_conntype_t conntype;
135 modbus_param_t connection;
137 modbus_t *connection;
141 typedef struct mb_host_s mb_host_t;
143 struct mb_data_group_s;
144 typedef struct mb_data_group_s mb_data_group_t;
145 struct mb_data_group_s /* {{{ */
147 mb_data_t *registers;
148 size_t registers_num;
150 mb_data_group_t *next;
156 static mb_data_t *data_definitions = NULL;
161 static mb_data_t *data_get_by_name (mb_data_t *src, /* {{{ */
169 for (ptr = src; ptr != NULL; ptr = ptr->next)
170 if (strcasecmp (ptr->name, name) == 0)
174 } /* }}} mb_data_t *data_get_by_name */
176 static int data_append (mb_data_t **dst, mb_data_t *src) /* {{{ */
180 if ((dst == NULL) || (src == NULL))
191 while (ptr->next != NULL)
197 } /* }}} int data_append */
199 /* Copy a single mb_data_t and append it to another list. */
200 static int data_copy (mb_data_t **dst, const mb_data_t *src) /* {{{ */
205 if ((dst == NULL) || (src == NULL))
208 tmp = malloc (sizeof (*tmp));
211 memcpy (tmp, src, sizeof (*tmp));
215 tmp->name = strdup (src->name);
216 if (tmp->name == NULL)
222 status = data_append (dst, tmp);
231 } /* }}} int data_copy */
233 /* Lookup a single mb_data_t instance, copy it and append the copy to another
235 static int data_copy_by_name (mb_data_t **dst, mb_data_t *src, /* {{{ */
240 if ((dst == NULL) || (src == NULL) || (name == NULL))
243 ptr = data_get_by_name (src, name);
247 return (data_copy (dst, ptr));
248 } /* }}} int data_copy_by_name */
252 static int mb_submit (mb_host_t *host, mb_slave_t *slave, /* {{{ */
253 mb_data_t *data, value_t value)
255 value_list_t vl = VALUE_LIST_INIT;
257 if ((host == NULL) || (slave == NULL) || (data == NULL))
260 if (host->interval <= 0)
261 host->interval = plugin_get_interval ();
263 if (slave->instance[0] == 0)
264 ssnprintf (slave->instance, sizeof (slave->instance), "slave_%i",
269 vl.interval = host->interval;
270 sstrncpy (vl.host, host->host, sizeof (vl.host));
271 sstrncpy (vl.plugin, "modbus", sizeof (vl.plugin));
272 sstrncpy (vl.plugin_instance, slave->instance, sizeof (vl.plugin_instance));
273 sstrncpy (vl.type, data->type, sizeof (vl.type));
274 sstrncpy (vl.type_instance, data->instance, sizeof (vl.type_instance));
276 return (plugin_dispatch_values (&vl));
277 } /* }}} int mb_submit */
279 static float mb_register_to_float (uint16_t hi, uint16_t lo) /* {{{ */
288 #if BYTE_ORDER == LITTLE_ENDIAN
290 conv.b[0] = lo & 0x00ff;
291 conv.b[1] = (lo >> 8) & 0x00ff;
292 conv.b[2] = hi & 0x00ff;
293 conv.b[3] = (hi >> 8) & 0x00ff;
295 conv.b[3] = lo & 0x00ff;
296 conv.b[2] = (lo >> 8) & 0x00ff;
297 conv.b[1] = hi & 0x00ff;
298 conv.b[0] = (hi >> 8) & 0x00ff;
302 } /* }}} float mb_register_to_float */
306 static int mb_init_connection (mb_host_t *host) /* {{{ */
313 modbus_set_debug (&host->connection, 1);
315 /* We'll do the error handling ourselves. */
316 modbus_set_error_handling (&host->connection, NOP_ON_ERROR);
318 if (host->conntype == MBCONN_TCP)
320 if ((host->port < 1) || (host->port > 65535))
321 host->port = MODBUS_TCP_DEFAULT_PORT;
323 DEBUG ("Modbus plugin: Trying to connect to \"%s\", port %i.",
324 host->node, host->port);
326 modbus_init_tcp (&host->connection,
327 /* host = */ host->node,
328 /* port = */ host->port);
330 else /* MBCONN_RTU */
332 DEBUG ("Modbus plugin: Trying to connect to \"%s\".", host->node);
334 modbus_init_rtu (&host->connection,
335 /* device = */ host->node,
336 /* baudrate = */ host->baudrate,
340 status = modbus_connect (&host->connection);
343 ERROR ("Modbus plugin: modbus_connect (%s, %i) failed with status %i.",
344 host->node, host->port ? host->port : host->baudrate, status);
348 host->is_connected = 1;
350 } /* }}} int mb_init_connection */
351 /* #endif LEGACY_LIBMODBUS */
353 #else /* if !LEGACY_LIBMODBUS */
355 static int mb_init_connection (mb_host_t *host) /* {{{ */
362 if (host->connection != NULL)
365 if (host->conntype == MBCONN_TCP)
367 if ((host->port < 1) || (host->port > 65535))
368 host->port = MODBUS_TCP_DEFAULT_PORT;
370 DEBUG ("Modbus plugin: Trying to connect to \"%s\", port %i.",
371 host->node, host->port);
373 host->connection = modbus_new_tcp (host->node, host->port);
374 if (host->connection == NULL)
376 ERROR ("Modbus plugin: Creating new Modbus/TCP object failed.");
382 DEBUG ("Modbus plugin: Trying to connect to \"%s\", baudrate %i.",
383 host->node, host->baudrate);
385 host->connection = modbus_new_rtu (host->node, host->baudrate, 'N', 8, 1);
386 if (host->connection == NULL)
388 ERROR ("Modbus plugin: Creating new Modbus/RTU object failed.");
393 modbus_set_debug (host->connection, 1);
395 /* We'll do the error handling ourselves. */
396 modbus_set_error_recovery (host->connection, 0);
398 status = modbus_connect (host->connection);
401 ERROR ("Modbus plugin: modbus_connect (%s, %i) failed with status %i.",
402 host->node, host->port ? host->port : host->baudrate, status);
403 modbus_free (host->connection);
404 host->connection = NULL;
409 } /* }}} int mb_init_connection */
410 #endif /* !LEGACY_LIBMODBUS */
412 #define CAST_TO_VALUE_T(ds,vt,raw) do { \
413 if ((ds)->ds[0].type == DS_TYPE_COUNTER) \
414 (vt).counter = (counter_t) (raw); \
415 else if ((ds)->ds[0].type == DS_TYPE_GAUGE) \
416 (vt).gauge = (gauge_t) (raw); \
417 else if ((ds)->ds[0].type == DS_TYPE_DERIVE) \
418 (vt).derive = (derive_t) (raw); \
419 else /* if (ds->ds[0].type == DS_TYPE_ABSOLUTE) */ \
420 (vt).absolute = (absolute_t) (raw); \
423 static int mb_read_data (mb_host_t *host, mb_slave_t *slave, /* {{{ */
428 const data_set_t *ds;
431 if ((host == NULL) || (slave == NULL) || (data == NULL))
434 ds = plugin_get_ds (data->type);
437 ERROR ("Modbus plugin: Type \"%s\" is not defined.", data->type);
443 ERROR ("Modbus plugin: The type \"%s\" has %zu data sources. "
444 "I can only handle data sets with only one data source.",
445 data->type, ds->ds_num);
449 if ((ds->ds[0].type != DS_TYPE_GAUGE)
450 && (data->register_type != REG_TYPE_INT32)
451 && (data->register_type != REG_TYPE_UINT32))
453 NOTICE ("Modbus plugin: The data source of type \"%s\" is %s, not gauge. "
454 "This will most likely result in problems, because the register type "
455 "is not UINT32.", data->type, DS_TYPE_TO_STRING (ds->ds[0].type));
458 memset (values, 0, sizeof (values));
459 if ((data->register_type == REG_TYPE_INT32)
460 || (data->register_type == REG_TYPE_UINT32)
461 || (data->register_type == REG_TYPE_FLOAT))
466 if (host->connection == NULL)
470 else if (host->conntype == MBCONN_TCP)
472 struct sockaddr sockaddr;
473 socklen_t saddrlen = sizeof (sockaddr);
475 status = getpeername (modbus_get_socket (host->connection),
476 &sockaddr, &saddrlen);
481 if ((status == EBADF) || (status == ENOTSOCK) || (status == ENOTCONN))
483 status = mb_init_connection (host);
486 ERROR ("Modbus plugin: mb_init_connection (%s/%s) failed. ",
487 host->host, host->node);
488 host->is_connected = 0;
489 host->connection = NULL;
493 else if (status != 0)
496 modbus_close (&host->connection);
498 modbus_close (host->connection);
499 modbus_free (host->connection);
504 /* Version 2.0.3: Pass the connection struct as a pointer and pass the slave
505 * id to each call of "read_holding_registers". */
506 # define modbus_read_registers(ctx, addr, nb, dest) \
507 read_holding_registers (&(ctx), slave->id, (addr), (nb), (dest))
508 #else /* if !LEGACY_LIBMODBUS */
509 /* Version 2.9.2: Set the slave id once before querying the registers. */
510 status = modbus_set_slave (host->connection, slave->id);
513 ERROR ("Modbus plugin: modbus_set_slave (%i) failed with status %i.",
518 if (data->modbus_register_type == MREG_INPUT){
519 status = modbus_read_input_registers (host->connection,
520 /* start_addr = */ data->register_base,
521 /* num_registers = */ values_num, /* buffer = */ values);
524 status = modbus_read_registers (host->connection,
525 /* start_addr = */ data->register_base,
526 /* num_registers = */ values_num, /* buffer = */ values);
528 if (status != values_num)
530 ERROR ("Modbus plugin: modbus read function (%s/%s) failed. "
531 " status = %i, values_num = %i. Giving up.",
532 host->host, host->node, status, values_num);
534 modbus_close (&host->connection);
536 modbus_close (host->connection);
537 modbus_free (host->connection);
539 host->connection = NULL;
543 DEBUG ("Modbus plugin: mb_read_data: Success! "
544 "modbus_read_registers returned with status %i.", status);
546 if (data->register_type == REG_TYPE_FLOAT)
551 float_value = mb_register_to_float (values[0], values[1]);
552 DEBUG ("Modbus plugin: mb_read_data: "
553 "Returned float value is %g", (double) float_value);
555 CAST_TO_VALUE_T (ds, vt, float_value);
556 mb_submit (host, slave, data, vt);
558 else if (data->register_type == REG_TYPE_INT32)
567 v.u32 = (((uint32_t) values[0]) << 16)
568 | ((uint32_t) values[1]);
569 DEBUG ("Modbus plugin: mb_read_data: "
570 "Returned int32 value is %"PRIi32, v.i32);
572 CAST_TO_VALUE_T (ds, vt, v.i32);
573 mb_submit (host, slave, data, vt);
575 else if (data->register_type == REG_TYPE_INT16)
586 DEBUG ("Modbus plugin: mb_read_data: "
587 "Returned int16 value is %"PRIi16, v.i16);
589 CAST_TO_VALUE_T (ds, vt, v.i16);
590 mb_submit (host, slave, data, vt);
592 else if (data->register_type == REG_TYPE_UINT32)
597 v32 = (((uint32_t) values[0]) << 16)
598 | ((uint32_t) values[1]);
599 DEBUG ("Modbus plugin: mb_read_data: "
600 "Returned uint32 value is %"PRIu32, v32);
602 CAST_TO_VALUE_T (ds, vt, v32);
603 mb_submit (host, slave, data, vt);
605 else /* if (data->register_type == REG_TYPE_UINT16) */
609 DEBUG ("Modbus plugin: mb_read_data: "
610 "Returned uint16 value is %"PRIu16, values[0]);
612 CAST_TO_VALUE_T (ds, vt, values[0]);
613 mb_submit (host, slave, data, vt);
617 } /* }}} int mb_read_data */
619 static int mb_read_slave (mb_host_t *host, mb_slave_t *slave) /* {{{ */
625 if ((host == NULL) || (slave == NULL))
629 for (data = slave->collect; data != NULL; data = data->next)
631 status = mb_read_data (host, slave, data);
640 } /* }}} int mb_read_slave */
642 static int mb_read (user_data_t *user_data) /* {{{ */
649 if ((user_data == NULL) || (user_data->data == NULL))
652 host = user_data->data;
655 for (i = 0; i < host->slaves_num; i++)
657 status = mb_read_slave (host, host->slaves + i);
666 } /* }}} int mb_read */
670 static void data_free_one (mb_data_t *data) /* {{{ */
677 } /* }}} void data_free_one */
679 static void data_free_all (mb_data_t *data) /* {{{ */
687 data_free_one (data);
689 data_free_all (next);
690 } /* }}} void data_free_all */
692 static void slaves_free_all (mb_slave_t *slaves, size_t slaves_num) /* {{{ */
699 for (i = 0; i < slaves_num; i++)
700 data_free_all (slaves[i].collect);
702 } /* }}} void slaves_free_all */
704 static void host_free (void *void_host) /* {{{ */
706 mb_host_t *host = void_host;
711 slaves_free_all (host->slaves, host->slaves_num);
713 } /* }}} void host_free */
715 /* Config functions */
717 static int mb_config_add_data (oconfig_item_t *ci) /* {{{ */
723 memset (&data, 0, sizeof (data));
725 data.register_type = REG_TYPE_UINT16;
728 status = cf_util_get_string (ci, &data.name);
732 for (i = 0; i < ci->children_num; i++)
734 oconfig_item_t *child = ci->children + i;
736 if (strcasecmp ("Type", child->key) == 0)
737 status = cf_util_get_string_buffer (child,
738 data.type, sizeof (data.type));
739 else if (strcasecmp ("Instance", child->key) == 0)
740 status = cf_util_get_string_buffer (child,
741 data.instance, sizeof (data.instance));
742 else if (strcasecmp ("RegisterBase", child->key) == 0)
743 status = cf_util_get_int (child, &data.register_base);
744 else if (strcasecmp ("RegisterType", child->key) == 0)
747 status = cf_util_get_string_buffer (child, tmp, sizeof (tmp));
750 else if (strcasecmp ("Int16", tmp) == 0)
751 data.register_type = REG_TYPE_INT16;
752 else if (strcasecmp ("Int32", tmp) == 0)
753 data.register_type = REG_TYPE_INT32;
754 else if (strcasecmp ("Uint16", tmp) == 0)
755 data.register_type = REG_TYPE_UINT16;
756 else if (strcasecmp ("Uint32", tmp) == 0)
757 data.register_type = REG_TYPE_UINT32;
758 else if (strcasecmp ("Float", tmp) == 0)
759 data.register_type = REG_TYPE_FLOAT;
762 ERROR ("Modbus plugin: The register type \"%s\" is unknown.", tmp);
766 else if (strcasecmp ("RegisterCmd", child->key) == 0)
769 ERROR("Modbus plugin: RegisterCmd parameter can not be used "
770 "with your libmodbus version");
773 status = cf_util_get_string_buffer (child, tmp, sizeof (tmp));
776 else if (strcasecmp ("ReadHolding", tmp) == 0)
777 data.modbus_register_type = MREG_HOLDING;
778 else if (strcasecmp ("ReadInput", tmp) == 0)
779 data.modbus_register_type = MREG_INPUT;
782 ERROR ("Modbus plugin: The modbus_register_type \"%s\" is unknown.",
790 ERROR ("Modbus plugin: Unknown configuration option: %s", child->key);
796 } /* for (i = 0; i < ci->children_num; i++) */
798 assert (data.name != NULL);
799 if (data.type[0] == 0)
801 ERROR ("Modbus plugin: Data block \"%s\": No type has been specified.",
807 data_copy (&data_definitions, &data);
812 } /* }}} int mb_config_add_data */
814 static int mb_config_set_host_address (mb_host_t *host, /* {{{ */
817 struct addrinfo *ai_list;
818 struct addrinfo *ai_ptr;
819 struct addrinfo ai_hints;
822 if ((host == NULL) || (address == NULL))
825 memset (&ai_hints, 0, sizeof (ai_hints));
827 ai_hints.ai_flags |= AI_ADDRCONFIG;
829 /* XXX: libmodbus can only handle IPv4 addresses. */
830 ai_hints.ai_family = AF_INET;
831 ai_hints.ai_addr = NULL;
832 ai_hints.ai_canonname = NULL;
833 ai_hints.ai_next = NULL;
836 status = getaddrinfo (address, /* service = */ NULL,
837 &ai_hints, &ai_list);
841 ERROR ("Modbus plugin: getaddrinfo failed: %s",
842 (status == EAI_SYSTEM)
843 ? sstrerror (errno, errbuf, sizeof (errbuf))
844 : gai_strerror (status));
848 for (ai_ptr = ai_list; ai_ptr != NULL; ai_ptr = ai_ptr->ai_next)
850 status = getnameinfo (ai_ptr->ai_addr, ai_ptr->ai_addrlen,
851 host->node, sizeof (host->node),
852 /* service = */ NULL, /* length = */ 0,
853 /* flags = */ NI_NUMERICHOST);
858 freeaddrinfo (ai_list);
861 ERROR ("Modbus plugin: Unable to translate node name: \"%s\"", address);
862 else /* if (status == 0) */
864 DEBUG ("Modbus plugin: mb_config_set_host_address: %s -> %s",
865 address, host->node);
869 } /* }}} int mb_config_set_host_address */
871 static int mb_config_add_slave (mb_host_t *host, oconfig_item_t *ci) /* {{{ */
877 if ((host == NULL) || (ci == NULL))
880 slave = realloc (host->slaves, sizeof (*slave) * (host->slaves_num + 1));
883 host->slaves = slave;
884 slave = host->slaves + host->slaves_num;
885 memset (slave, 0, sizeof (*slave));
886 slave->collect = NULL;
888 status = cf_util_get_int (ci, &slave->id);
892 for (i = 0; i < ci->children_num; i++)
894 oconfig_item_t *child = ci->children + i;
896 if (strcasecmp ("Instance", child->key) == 0)
897 status = cf_util_get_string_buffer (child,
898 slave->instance, sizeof (slave->instance));
899 else if (strcasecmp ("Collect", child->key) == 0)
902 status = cf_util_get_string_buffer (child, buffer, sizeof (buffer));
904 data_copy_by_name (&slave->collect, data_definitions, buffer);
905 status = 0; /* continue after failure. */
909 ERROR ("Modbus plugin: Unknown configuration option: %s", child->key);
917 if ((status == 0) && (slave->collect == NULL))
925 else /* if (status != 0) */
926 data_free_all (slave->collect);
929 } /* }}} int mb_config_add_slave */
931 static int mb_config_add_host (oconfig_item_t *ci) /* {{{ */
937 host = malloc (sizeof (*host));
940 memset (host, 0, sizeof (*host));
943 status = cf_util_get_string_buffer (ci, host->host, sizeof (host->host));
946 if (host->host[0] == 0)
949 for (i = 0; i < ci->children_num; i++)
951 oconfig_item_t *child = ci->children + i;
954 if (strcasecmp ("Address", child->key) == 0)
956 char buffer[NI_MAXHOST];
957 status = cf_util_get_string_buffer (child, buffer, sizeof (buffer));
959 status = mb_config_set_host_address (host, buffer);
961 host->conntype = MBCONN_TCP;
963 else if (strcasecmp ("Port", child->key) == 0)
965 host->port = cf_util_get_port_number (child);
969 else if (strcasecmp ("Device", child->key) == 0)
971 status = cf_util_get_string_buffer (child, host->node, sizeof (host->node));
973 host->conntype = MBCONN_RTU;
975 else if (strcasecmp ("Baudrate", child->key) == 0)
976 status = cf_util_get_int(child, &host->baudrate);
977 else if (strcasecmp ("Interval", child->key) == 0)
978 status = cf_util_get_cdtime (child, &host->interval);
979 else if (strcasecmp ("Slave", child->key) == 0)
980 /* Don't set status: Gracefully continue if a slave fails. */
981 mb_config_add_slave (host, child);
984 ERROR ("Modbus plugin: Unknown configuration option: %s", child->key);
990 } /* for (i = 0; i < ci->children_num; i++) */
992 assert (host->host[0] != 0);
993 if (host->node[0] == 0)
995 ERROR ("Modbus plugin: Data block \"%s\": No address or device has been specified.",
999 if (host->conntype == MBCONN_RTU && !host->baudrate)
1001 ERROR ("Modbus plugin: Data block \"%s\": No serial baudrate has been specified.",
1005 if ((host->conntype == MBCONN_TCP && host->baudrate) ||
1006 (host->conntype == MBCONN_RTU && host->port))
1008 ERROR ("Modbus plugin: Data block \"%s\": You've mixed up RTU and TCP options.",
1019 ud.free_func = host_free;
1021 ssnprintf (name, sizeof (name), "modbus-%s", host->host);
1023 plugin_register_complex_read (/* group = */ NULL, name,
1024 /* callback = */ mb_read,
1025 /* interval = */ host->interval,
1034 } /* }}} int mb_config_add_host */
1036 static int mb_config (oconfig_item_t *ci) /* {{{ */
1043 for (i = 0; i < ci->children_num; i++)
1045 oconfig_item_t *child = ci->children + i;
1047 if (strcasecmp ("Data", child->key) == 0)
1048 mb_config_add_data (child);
1049 else if (strcasecmp ("Host", child->key) == 0)
1050 mb_config_add_host (child);
1052 ERROR ("Modbus plugin: Unknown configuration option: %s", child->key);
1056 } /* }}} int mb_config */
1060 static int mb_shutdown (void) /* {{{ */
1062 data_free_all (data_definitions);
1063 data_definitions = NULL;
1066 } /* }}} int mb_shutdown */
1068 void module_register (void)
1070 plugin_register_complex_config ("modbus", mb_config);
1071 plugin_register_shutdown ("modbus", mb_shutdown);
1072 } /* void module_register */
1074 /* vim: set sw=2 sts=2 et fdm=marker : */