2 * collectd - src/ipc.c, based on src/memcached.c
3 * Copyright (C) 2010 Andres J. Diaz <ajdiaz@connectical.com>
4 * Copyright (C) 2010 Manuel L. Sanmartin <manuel.luis@gmail.com>
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 * Andres J. Diaz <ajdiaz@connectical.com>
22 * Manuel L. Sanmartin <manuel.luis@gmail>
25 /* Many of this code is based on busybox ipc implementation, which is:
26 * (C) Rodney Radford <rradford@mindspring.com> and distributed under GPLv2.
32 #include "configfile.h"
35 /* X/OPEN tells us to use <sys/{types,ipc,sem}.h> for semctl() */
36 /* X/OPEN tells us to use <sys/{types,ipc,msg}.h> for msgctl() */
37 /* X/OPEN tells us to use <sys/{types,ipc,shm}.h> for shmctl() */
38 # include <sys/types.h>
44 /* For older kernels the same holds for the defines below */
55 ulong shm_tot; /* total allocated shm */
56 ulong shm_rss; /* total resident shm */
57 ulong shm_swp; /* total swapped shm */
68 /* The last arg of semctl is a union semun, but where is it defined?
69 X/OPEN tells us to define it ourselves, but until recently
70 Linux include files would also define it. */
71 # if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED)
72 /* union semun is defined by including <sys/sem.h> */
74 /* according to X/OPEN we have to define it ourselves */
78 unsigned short *array;
79 struct seminfo *__buf;
82 static long pagesize_g;
83 /* #endif KERNEL_LINUX */
85 # include <sys/ipc_info.h>
86 /* #endif KERNEL_AIX */
88 # error "No applicable input method."
91 __attribute__ ((nonnull(1)))
92 static void ipc_submit_g (const char *plugin_instance,
94 const char *type_instance,
95 gauge_t value) /* {{{ */
98 value_list_t vl = VALUE_LIST_INIT;
100 values[0].gauge = value;
104 sstrncpy (vl.host, hostname_g, sizeof (vl.host));
105 sstrncpy (vl.plugin, "ipc", sizeof (vl.plugin));
106 sstrncpy (vl.plugin_instance, plugin_instance, sizeof (vl.plugin_instance));
107 sstrncpy (vl.type, type, sizeof (vl.type));
108 if (type_instance != NULL)
109 sstrncpy (vl.type_instance, type_instance, sizeof (vl.type_instance));
111 plugin_dispatch_values (&vl);
115 static int ipc_read_sem (void) /* {{{ */
117 struct seminfo seminfo;
121 arg.array = (void *) &seminfo;
123 status = semctl (/* id = */ 0, /* num = */ 0, SEM_INFO, arg);
127 ERROR("ipc plugin: semctl(2) failed: %s. "
128 "Maybe the kernel is not configured for semaphores?",
129 sstrerror (errno, errbuf, sizeof (errbuf)));
133 ipc_submit_g("sem", "count", "arrays", seminfo.semusz);
134 ipc_submit_g("sem", "count", "total", seminfo.semaem);
137 } /* }}} int ipc_read_sem */
139 static int ipc_read_shm (void) /* {{{ */
141 struct shm_info shm_info;
144 status = shmctl (/* id = */ 0, SHM_INFO, (void *) &shm_info);
148 ERROR("ipc plugin: shmctl(2) failed: %s. "
149 "Maybe the kernel is not configured for shared memory?",
150 sstrerror (errno, errbuf, sizeof (errbuf)));
154 ipc_submit_g("shm", "segments", NULL, shm_info.used_ids);
155 ipc_submit_g("shm", "bytes", "total", shm_info.shm_tot * pagesize_g);
156 ipc_submit_g("shm", "bytes", "rss", shm_info.shm_rss * pagesize_g);
157 ipc_submit_g("shm", "bytes", "swapped", shm_info.shm_swp * pagesize_g);
160 /* }}} int ipc_read_shm */
162 static int ipc_read_msg (void) /* {{{ */
164 struct msginfo msginfo;
166 if ( msgctl(0, MSG_INFO, (struct msqid_ds *) (void *) &msginfo) < 0 )
168 ERROR("Kernel is not configured for message queues");
171 ipc_submit_g("msg", "count", "queues", msginfo.msgmni);
172 ipc_submit_g("msg", "count", "headers", msginfo.msgmap);
173 ipc_submit_g("msg", "count", "space", msginfo.msgtql);
177 /* }}} int ipc_read_msg */
179 static int ipc_init (void) /* {{{ */
181 pagesize_g = sysconf(_SC_PAGESIZE);
185 /* #endif KERNEL_LINUX */
188 static caddr_t ipc_get_info (cid_t cid, int cmd, int version, int stsize, int *nmemb) /* {{{ */
193 if (get_ipc_info(cid, cmd, version, buff, &size) < 0)
195 if (errno != ENOSPC) {
197 WARNING ("ipc plugin: get_ipc_info: %s",
198 sstrerror (errno, errbuf, sizeof (errbuf)));
207 ERROR ("ipc plugin: ipc_get_info: missmatch struct size and buffer size");
211 *nmemb = size / stsize;
213 buff = (caddr_t)malloc (size);
215 ERROR ("ipc plugin: ipc_get_info malloc failed.");
219 if (get_ipc_info(cid, cmd, version, buff, &size) < 0)
222 WARNING ("ipc plugin: get_ipc_info: %s",
223 sstrerror (errno, errbuf, sizeof (errbuf)));
231 static int ipc_read_sem (void) /* {{{ */
233 ipcinfo_sem_t *ipcinfo_sem;
234 unsigned short sem_nsems=0;
235 unsigned short sems=0;
238 ipcinfo_sem = (ipcinfo_sem_t *)ipc_get_info(0,
239 GET_IPCINFO_SEM_ALL, IPCINFO_SEM_VERSION, sizeof(ipcinfo_sem_t), &n);
240 if (ipcinfo_sem == NULL)
243 for (i=0; i<n; i++) {
244 sem_nsems += ipcinfo_sem[i].sem_nsems;
249 ipc_submit_g("sem", "count", "arrays", sem_nsems);
250 ipc_submit_g("sem", "count", "total", sems);
253 } /* }}} int ipc_read_sem */
255 static int ipc_read_shm (void) /* {{{ */
257 ipcinfo_shm_t *ipcinfo_shm;
259 unsigned int shm_segments=0;
260 size64_t shm_bytes=0;
263 ipcinfo_shm = (ipcinfo_shm_t *)ipc_get_info(0,
264 GET_IPCINFO_SHM_ALL, IPCINFO_SHM_VERSION, sizeof(ipcinfo_shm_t), &n);
265 if (ipcinfo_shm == NULL)
268 for (i=0, pshm=ipcinfo_shm; i<n; i++, pshm++) {
270 shm_bytes += pshm->shm_segsz;
274 ipc_submit_g("shm", "segments", NULL, shm_segments);
275 ipc_submit_g("shm", "bytes", "total", shm_bytes);
279 /* }}} int ipc_read_shm */
281 static int ipc_read_msg (void) /* {{{ */
283 ipcinfo_msg_t *ipcinfo_msg;
284 uint32_t msg_used_space=0;
285 uint32_t msg_alloc_queues=0;
286 msgqnum32_t msg_qnum=0;
289 ipcinfo_msg = (ipcinfo_msg_t *)ipc_get_info(0,
290 GET_IPCINFO_MSG_ALL, IPCINFO_MSG_VERSION, sizeof(ipcinfo_msg_t), &n);
291 if (ipcinfo_msg == NULL)
294 for (i=0; i<n; i++) {
296 msg_used_space += ipcinfo_msg[i].msg_cbytes;
297 msg_qnum += ipcinfo_msg[i].msg_qnum;
301 ipc_submit_g("msg", "count", "queues", msg_alloc_queues);
302 ipc_submit_g("msg", "count", "headers", msg_qnum);
303 ipc_submit_g("msg", "count", "space", msg_used_space);
308 #endif /* KERNEL_AIX */
310 static int ipc_read (void) /* {{{ */
321 void module_register (void) /* {{{ */
324 plugin_register_init ("ipc", ipc_init);
326 plugin_register_read ("ipc", ipc_read);
330 /* vim: set sw=2 sts=2 et fdm=marker : */