2 * collectd - src/thermal.c
3 * Copyright (C) 2008 Michał Mirosław
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.
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.
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
19 * Michał Mirosław <mirq-linux at rere.qmqm.pl>
26 #include "utils_ignorelist.h"
29 #error "This module is for Linux only."
32 static const char *config_keys[] = {"Device", "IgnoreSelected",
35 static const char *const dirname_sysfs = "/sys/class/thermal";
36 static const char *const dirname_procfs = "/proc/acpi/thermal_zone";
38 static _Bool force_procfs = 0;
39 static ignorelist_t *device_list;
41 enum dev_type { TEMP = 0, COOLING_DEV };
43 static void thermal_submit(const char *plugin_instance, enum dev_type dt,
45 value_list_t vl = VALUE_LIST_INIT;
50 sstrncpy(vl.plugin, "thermal", sizeof(vl.plugin));
51 if (plugin_instance != NULL)
52 sstrncpy(vl.plugin_instance, plugin_instance, sizeof(vl.plugin_instance));
53 sstrncpy(vl.type, (dt == TEMP) ? "temperature" : "gauge", sizeof(vl.type));
55 plugin_dispatch_values(&vl);
58 static int thermal_sysfs_device_read(const char __attribute__((unused)) * dir,
60 void __attribute__((unused)) * user_data) {
61 char filename[PATH_MAX];
65 if (device_list && ignorelist_match(device_list, name))
68 snprintf(filename, sizeof(filename), "%s/%s/temp", dirname_sysfs, name);
69 if (parse_value_file(filename, &value, DS_TYPE_GAUGE) == 0) {
70 value.gauge /= 1000.0;
71 thermal_submit(name, TEMP, value);
75 snprintf(filename, sizeof(filename), "%s/%s/cur_state", dirname_sysfs, name);
76 if (parse_value_file(filename, &value, DS_TYPE_GAUGE) == 0) {
77 thermal_submit(name, COOLING_DEV, value);
81 return success ? 0 : -1;
84 static int thermal_procfs_device_read(const char __attribute__((unused)) * dir,
86 void __attribute__((unused)) *
88 const char str_temp[] = "temperature:";
93 if (device_list && ignorelist_match(device_list, name))
97 * rechot ~ # cat /proc/acpi/thermal_zone/THRM/temperature
101 len = snprintf(filename, sizeof(filename), "%s/%s/temperature",
102 dirname_procfs, name);
103 if ((len < 0) || ((size_t)len >= sizeof(filename)))
106 len = (ssize_t)read_file_contents(filename, data, sizeof(data));
107 if ((len > 0) && ((size_t)len > sizeof(str_temp)) && (data[--len] == '\n') &&
108 (!strncmp(data, str_temp, sizeof(str_temp) - 1))) {
113 if (data[--len] == 'C') {
116 } else if (data[len] == 'F') {
119 } else if (data[len] == 'K') {
125 while (len > 0 && data[--len] == ' ')
129 while (len > 0 && data[--len] != ' ')
134 temp = (strtod(data + len, &endptr) + add) * factor;
136 if (endptr != data + len && errno == 0) {
137 thermal_submit(name, TEMP, (value_t){.gauge = temp});
145 static int thermal_config(const char *key, const char *value) {
146 if (device_list == NULL)
147 device_list = ignorelist_create(1);
149 if (strcasecmp(key, "Device") == 0) {
150 if (ignorelist_add(device_list, value)) {
151 ERROR("thermal plugin: "
152 "Cannot add value to ignorelist.");
155 } else if (strcasecmp(key, "IgnoreSelected") == 0) {
156 ignorelist_set_invert(device_list, 1);
158 ignorelist_set_invert(device_list, 0);
159 } else if (strcasecmp(key, "ForceUseProcfs") == 0) {
170 static int thermal_sysfs_read(void) {
171 return walk_directory(dirname_sysfs, thermal_sysfs_device_read, NULL, 0);
174 static int thermal_procfs_read(void) {
175 return walk_directory(dirname_procfs, thermal_procfs_device_read, NULL, 0);
178 static int thermal_init(void) {
181 if (!force_procfs && access(dirname_sysfs, R_OK | X_OK) == 0) {
182 ret = plugin_register_read("thermal", thermal_sysfs_read);
183 } else if (access(dirname_procfs, R_OK | X_OK) == 0) {
184 ret = plugin_register_read("thermal", thermal_procfs_read);
190 static int thermal_shutdown(void) {
191 ignorelist_free(device_list);
196 void module_register(void) {
197 plugin_register_config("thermal", thermal_config, config_keys,
198 STATIC_ARRAY_SIZE(config_keys));
199 plugin_register_init("thermal", thermal_init);
200 plugin_register_shutdown("thermal", thermal_shutdown);