Merge branch 'collectd-5.6'
[collectd.git] / src / users.c
1 /**
2  * collectd - src/users.c
3  * Copyright (C) 2005-2007  Sebastian Harl
4  * Copyright (C) 2005       Niki W. Waibel
5  * Copyright (C) 2005-2007  Florian octo Forster
6  * Copyright (C) 2008       Oleg King
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by the
10  * Free Software Foundation; only version 2 of the license is applicable.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  *
21  * Authors:
22  *   Sebastian Harl <sh at tokkee.org>
23  *   Niki W. Waibel <niki.waibel at newlogic.com>
24  *   Florian octo Forster <octo at collectd.org>
25  *   Oleg King <king2 at kaluga.ru>
26  **/
27
28 #include "collectd.h"
29
30 #include "common.h"
31 #include "plugin.h"
32
33 #if HAVE_STATGRAB_H
34 # include <statgrab.h>
35 #endif /* HAVE_STATGRAB_H */
36
37 #if HAVE_UTMPX_H
38 # include <utmpx.h>
39 /* #endif HAVE_UTMPX_H */
40
41 #elif HAVE_UTMP_H
42 # include <utmp.h>
43 /* #endif HAVE_UTMP_H */
44 #endif
45
46 static void users_submit (gauge_t value)
47 {
48         value_list_t vl = VALUE_LIST_INIT;
49
50         vl.values = &(value_t) { .gauge = value };
51         vl.values_len = 1;
52         sstrncpy (vl.plugin, "users", sizeof (vl.plugin));
53         sstrncpy (vl.type, "users", sizeof (vl.plugin));
54
55         plugin_dispatch_values (&vl);
56 } /* void users_submit */
57
58 static int users_read (void)
59 {
60 #if HAVE_GETUTXENT
61         unsigned int users = 0;
62         struct utmpx *entry = NULL;
63
64         /* according to the *utent(3) man page none of the functions sets errno
65            in case of an error, so we cannot do any error-checking here */
66         setutxent();
67
68         while (NULL != (entry = getutxent())) {
69                 if (USER_PROCESS == entry->ut_type) {
70                         ++users;
71                 }
72         }
73         endutxent();
74
75         users_submit (users);
76 /* #endif HAVE_GETUTXENT */
77
78 #elif HAVE_GETUTENT
79         unsigned int users = 0;
80         struct utmp *entry = NULL;
81
82         /* according to the *utent(3) man page none of the functions sets errno
83            in case of an error, so we cannot do any error-checking here */
84         setutent();
85
86         while (NULL != (entry = getutent())) {
87                 if (USER_PROCESS == entry->ut_type) {
88                         ++users;
89                 }
90         }
91         endutent();
92
93         users_submit (users);
94 /* #endif HAVE_GETUTENT */
95
96 #elif HAVE_LIBSTATGRAB
97         sg_user_stats *us;
98
99 # if HAVE_LIBSTATGRAB_0_90
100         size_t num_entries;
101         us = sg_get_user_stats (&num_entries);
102 # else
103         us = sg_get_user_stats ();
104 # endif
105         if (us == NULL)
106                 return (-1);
107
108         users_submit ((gauge_t)
109 # if HAVE_LIBSTATGRAB_0_90
110                       num_entries);
111 # else
112                       us->num_entries);
113 # endif
114 /* #endif HAVE_LIBSTATGRAB */
115
116 #else
117 # error "No applicable input method."
118 #endif
119
120         return (0);
121 } /* int users_read */
122
123 void module_register (void)
124 {
125         plugin_register_read ("users", users_read);
126 } /* void module_register(void) */