3 * Copyright (C) 2007 Peter Holik
4 * Copyright (C) 2011 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; either version 2 of the License, or (at your
9 * option) any later version.
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.
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
21 * Peter Holik <peter at holik.at>
28 #include "utils_ignorelist.h"
31 #error "No applicable input method."
35 * (Module-)Global variables
37 static const char *config_keys[] = {"Irq", "IgnoreSelected"};
38 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
40 static ignorelist_t *ignorelist;
45 static int irq_config(const char *key, const char *value) {
46 if (ignorelist == NULL)
47 ignorelist = ignorelist_create(/* invert = */ 1);
49 if (strcasecmp(key, "Irq") == 0) {
50 ignorelist_add(ignorelist, value);
51 } else if (strcasecmp(key, "IgnoreSelected") == 0) {
55 ignorelist_set_invert(ignorelist, invert);
63 static void irq_submit(const char *irq_name, derive_t value) {
64 value_list_t vl = VALUE_LIST_INIT;
66 if (ignorelist_match(ignorelist, irq_name) != 0)
69 vl.values = &(value_t){.derive = value};
71 sstrncpy(vl.plugin, "irq", sizeof(vl.plugin));
72 sstrncpy(vl.type, "irq", sizeof(vl.type));
73 sstrncpy(vl.type_instance, irq_name, sizeof(vl.type_instance));
75 plugin_dispatch_values(&vl);
76 } /* void irq_submit */
78 static int irq_read(void) {
87 * 0: 2574 1 3 2 IO-APIC-edge timer
88 * 1: 102553 158669 218062 70587 IO-APIC-edge i8042
89 * 8: 0 0 0 1 IO-APIC-edge rtc0
91 fh = fopen("/proc/interrupts", "r");
93 ERROR("irq plugin: fopen (/proc/interrupts): %s", STRERRNO);
97 /* Get CPU count from the first line */
98 if (fgets(buffer, sizeof(buffer), fh) != NULL) {
99 cpu_count = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
101 ERROR("irq plugin: unable to get CPU count from first line "
102 "of /proc/interrupts");
107 while (fgets(buffer, sizeof(buffer), fh) != NULL) {
113 int irq_values_to_parse;
115 fields_num = strsplit(buffer, fields, STATIC_ARRAY_SIZE(fields));
119 /* Parse this many numeric fields, skip the rest
120 * (+1 because first there is a name of irq in each line) */
121 if (fields_num >= cpu_count + 1)
122 irq_values_to_parse = cpu_count;
124 irq_values_to_parse = fields_num - 1;
126 /* First field is irq name and colon */
127 irq_name = fields[0];
128 irq_name_len = strlen(irq_name);
129 if (irq_name_len < 2)
132 /* Check if irq name ends with colon.
133 * Otherwise it's a header. */
134 if (irq_name[irq_name_len - 1] != ':')
137 /* Is it the the ARM fast interrupt (FIQ)? */
138 if (irq_name_len == 4 && (strncmp(irq_name, "FIQ:", 4) == 0))
141 irq_name[irq_name_len - 1] = 0;
145 for (i = 1; i <= irq_values_to_parse; i++) {
150 status = parse_value(fields[i], &v, DS_TYPE_DERIVE);
154 irq_value += v.derive;
157 /* No valid fields -> do not submit anything. */
161 irq_submit(irq_name, irq_value);
169 void module_register(void) {
170 plugin_register_config("irq", irq_config, config_keys, config_keys_num);
171 plugin_register_read("irq", irq_read);
172 } /* void module_register */