]> arthur.barton.de Git - netdata.git/blob - src/proc_interrupts.c
improvements identified via static code analysis with cppcheck
[netdata.git] / src / proc_interrupts.c
1 #include "common.h"
2
3 #define MAX_INTERRUPT_NAME 50
4
5 struct interrupt {
6     int used;
7     char *id;
8     char name[MAX_INTERRUPT_NAME + 1];
9     unsigned long long total;
10     unsigned long long value[];
11 };
12
13 // since each interrupt is variable in size
14 // we use this to calculate its record size
15 #define recordsize(cpus) (sizeof(struct interrupt) + (cpus * sizeof(unsigned long long)))
16
17 // given a base, get a pointer to each record
18 #define irrindex(base, line, cpus) ((struct interrupt *)&((char *)(base))[line * recordsize(cpus)])
19
20 static inline struct interrupt *get_interrupts_array(int lines, int cpus) {
21     static struct interrupt *irrs = NULL;
22     static int allocated = 0;
23
24     if(unlikely(lines > allocated)) {
25         irrs = (struct interrupt *)reallocz(irrs, lines * recordsize(cpus));
26         allocated = lines;
27     }
28
29     return irrs;
30 }
31
32 int do_proc_interrupts(int update_every, unsigned long long dt) {
33     (void)dt;
34
35     static procfile *ff = NULL;
36     static int cpus = -1, do_per_core = -1;
37     struct interrupt *irrs = NULL;
38
39     if(unlikely(do_per_core == -1))
40         do_per_core = config_get_boolean("plugin:proc:/proc/interrupts", "interrupts per core", 1);
41
42     if(unlikely(!ff)) {
43         char filename[FILENAME_MAX + 1];
44         snprintfz(filename, FILENAME_MAX, "%s%s", global_host_prefix, "/proc/interrupts");
45         ff = procfile_open(config_get("plugin:proc:/proc/interrupts", "filename to monitor", filename), " \t", PROCFILE_FLAG_DEFAULT);
46     }
47     if(unlikely(!ff))
48         return 1;
49
50     ff = procfile_readall(ff);
51     if(unlikely(!ff))
52         return 0; // we return 0, so that we will retry to open it next time
53
54     uint32_t lines = procfile_lines(ff), l;
55     uint32_t words = procfile_linewords(ff, 0);
56
57     if(unlikely(!lines)) {
58         error("Cannot read /proc/interrupts, zero lines reported.");
59         return 1;
60     }
61
62     // find how many CPUs are there
63     if(unlikely(cpus == -1)) {
64         uint32_t w;
65         cpus = 0;
66         for(w = 0; w < words ; w++) {
67             if(unlikely(strncmp(procfile_lineword(ff, 0, w), "CPU", 3) == 0))
68                 cpus++;
69         }
70     }
71
72     if(unlikely(!cpus)) {
73         error("PLUGIN: PROC_INTERRUPTS: Cannot find the number of CPUs in /proc/interrupts");
74         return 1;
75     }
76
77     // allocate the size we need;
78     irrs = get_interrupts_array(lines, cpus);
79     irrs[0].used = 0;
80
81     // loop through all lines
82     for(l = 1; l < lines ;l++) {
83         struct interrupt *irr = irrindex(irrs, l, cpus);
84         irr->used = 0;
85         irr->total = 0;
86
87         words = procfile_linewords(ff, l);
88         if(unlikely(!words)) continue;
89
90         irr->id = procfile_lineword(ff, l, 0);
91         if(unlikely(!irr->id || !irr->id[0])) continue;
92
93         int idlen = strlen(irr->id);
94         if(unlikely(irr->id[idlen - 1] == ':'))
95             irr->id[idlen - 1] = '\0';
96
97         int c;
98         for(c = 0; c < cpus ;c++) {
99             if(unlikely((c + 1) < (int)words))
100                 irr->value[c] = strtoull(procfile_lineword(ff, l, (uint32_t)(c + 1)), NULL, 10);
101             else
102                 irr->value[c] = 0;
103
104             irr->total += irr->value[c];
105         }
106
107         if(unlikely(isdigit(irr->id[0]) && (uint32_t)(cpus + 2) < words)) {
108             strncpyz(irr->name, procfile_lineword(ff, l, words - 1), MAX_INTERRUPT_NAME);
109             int nlen = strlen(irr->name);
110             if(unlikely(nlen < (MAX_INTERRUPT_NAME-1))) {
111                 irr->name[nlen] = '_';
112                 strncpyz(&irr->name[nlen + 1], irr->id, MAX_INTERRUPT_NAME - nlen);
113             }
114         }
115         else {
116             strncpyz(irr->name, irr->id, MAX_INTERRUPT_NAME);
117         }
118
119         irr->used = 1;
120     }
121
122     RRDSET *st;
123
124     // --------------------------------------------------------------------
125
126     st = rrdset_find_bytype("system", "interrupts");
127     if(unlikely(!st)) {
128         st = rrdset_create("system", "interrupts", NULL, "interrupts", NULL, "System interrupts", "interrupts/s", 1000, update_every, RRDSET_TYPE_STACKED);
129
130         for(l = 0; l < lines ;l++) {
131             struct interrupt *irr = irrindex(irrs, l, cpus);
132             if(unlikely(!irr->used)) continue;
133             rrddim_add(st, irr->id, irr->name, 1, 1, RRDDIM_INCREMENTAL);
134         }
135     }
136     else rrdset_next(st);
137
138     for(l = 0; l < lines ;l++) {
139         struct interrupt *irr = irrindex(irrs, l, cpus);
140         if(unlikely(!irr->used)) continue;
141         rrddim_set(st, irr->id, irr->total);
142     }
143     rrdset_done(st);
144
145     if(likely(do_per_core)) {
146         int c;
147
148         for(c = 0; c < cpus ; c++) {
149             char id[50+1];
150             snprintfz(id, 50, "cpu%d_interrupts", c);
151
152             st = rrdset_find_bytype("cpu", id);
153             if(unlikely(!st)) {
154                 char title[100+1];
155                 snprintfz(title, 100, "CPU%d Interrupts", c);
156                 st = rrdset_create("cpu", id, NULL, "interrupts", "cpu.interrupts", title, "interrupts/s", 1100 + c, update_every, RRDSET_TYPE_STACKED);
157
158                 for(l = 0; l < lines ;l++) {
159                     struct interrupt *irr = irrindex(irrs, l, cpus);
160                     if(unlikely(!irr->used)) continue;
161                     rrddim_add(st, irr->id, irr->name, 1, 1, RRDDIM_INCREMENTAL);
162                 }
163             }
164             else rrdset_next(st);
165
166             for(l = 0; l < lines ;l++) {
167                 struct interrupt *irr = irrindex(irrs, l, cpus);
168                 if(unlikely(!irr->used)) continue;
169                 rrddim_set(st, irr->id, irr->value[c]);
170             }
171             rrdset_done(st);
172         }
173     }
174
175     return 0;
176 }