]> git.ipfire.org Git - thirdparty/glibc.git/blame - nscd/nscd_stat.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / nscd / nscd_stat.c
CommitLineData
b168057a 1/* Copyright (c) 1998-2015 Free Software Foundation, Inc.
d67281a7
UD
2 This file is part of the GNU C Library.
3 Contributed by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>, 1998.
4
5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
d67281a7
UD
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
d67281a7 14
41bdb6e2 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
d67281a7 18
67479a70
UD
19#include <errno.h>
20#include <error.h>
a95a08b4 21#include <inttypes.h>
67479a70 22#include <langinfo.h>
d67281a7
UD
23#include <stdio.h>
24#include <stdlib.h>
67479a70 25#include <string.h>
0b20008e 26#include <sys/socket.h>
d67281a7 27#include <unistd.h>
4360eafd 28#include <libintl.h>
67479a70 29
d67281a7 30#include "nscd.h"
67479a70 31#include "dbg_log.h"
74a30a58
UD
32#include "selinux.h"
33#ifdef HAVE_SELINUX
34# include <selinux/selinux.h>
35# include <selinux/avc.h>
36#endif /* HAVE_SELINUX */
37
67479a70
UD
38
39/* We use this to make sure the receiver is the same. */
40static const char compilation[21] = __DATE__ " " __TIME__;
41
42/* Statistic data for one database. */
43struct dbstat
44{
45 int enabled;
46 int check_file;
d13a3c57
UD
47 int shared;
48 int persistent;
67479a70
UD
49 size_t module;
50
51 unsigned long int postimeout;
52 unsigned long int negtimeout;
53
a95a08b4
UD
54 size_t nentries;
55 size_t maxnentries;
56 size_t maxnsearched;
57 size_t datasize;
58 size_t dataused;
c86e6aec 59
a95a08b4
UD
60 uintmax_t poshit;
61 uintmax_t neghit;
62 uintmax_t posmiss;
63 uintmax_t negmiss;
c86e6aec 64
a95a08b4
UD
65 uintmax_t rdlockdelayed;
66 uintmax_t wrlockdelayed;
67
68 uintmax_t addfailed;
67479a70
UD
69};
70
71/* Record for transmitting statistics. */
72struct statdata
73{
74 char version[sizeof (compilation)];
75 int debug_level;
c86e6aec 76 time_t runtime;
a16e3585 77 unsigned long int client_queued;
4630012f
UD
78 int nthreads;
79 int max_nthreads;
80 int paranoia;
81 time_t restart_interval;
d55d558b 82 unsigned int reload_count;
67479a70
UD
83 int ndbs;
84 struct dbstat dbs[lastdb];
74a30a58
UD
85#ifdef HAVE_SELINUX
86 struct avc_cache_stats cstats;
87#endif /* HAVE_SELINUX */
67479a70
UD
88};
89
d67281a7
UD
90
91void
a95a08b4 92send_stats (int fd, struct database_dyn dbs[lastdb])
d67281a7 93{
67479a70
UD
94 struct statdata data;
95 int cnt;
96
97 memcpy (data.version, compilation, sizeof (compilation));
98 data.debug_level = debug_level;
c86e6aec 99 data.runtime = time (NULL) - start_time;
a16e3585 100 data.client_queued = client_queued;
4630012f
UD
101 data.nthreads = nthreads;
102 data.max_nthreads = max_nthreads;
103 data.paranoia = paranoia;
104 data.restart_interval = restart_interval;
d55d558b 105 data.reload_count = reload_count;
67479a70
UD
106 data.ndbs = lastdb;
107
108 for (cnt = 0; cnt < lastdb; ++cnt)
109 {
aadd7d9d 110 memset (&data.dbs[cnt], 0, sizeof (data.dbs[cnt]));
67479a70
UD
111 data.dbs[cnt].enabled = dbs[cnt].enabled;
112 data.dbs[cnt].check_file = dbs[cnt].check_file;
d13a3c57
UD
113 data.dbs[cnt].shared = dbs[cnt].shared;
114 data.dbs[cnt].persistent = dbs[cnt].persistent;
67479a70
UD
115 data.dbs[cnt].postimeout = dbs[cnt].postimeout;
116 data.dbs[cnt].negtimeout = dbs[cnt].negtimeout;
aadd7d9d
UD
117 if (dbs[cnt].head != NULL)
118 {
119 data.dbs[cnt].module = dbs[cnt].head->module;
120 data.dbs[cnt].poshit = dbs[cnt].head->poshit;
121 data.dbs[cnt].neghit = dbs[cnt].head->neghit;
122 data.dbs[cnt].posmiss = dbs[cnt].head->posmiss;
123 data.dbs[cnt].negmiss = dbs[cnt].head->negmiss;
124 data.dbs[cnt].nentries = dbs[cnt].head->nentries;
125 data.dbs[cnt].maxnentries = dbs[cnt].head->maxnentries;
126 data.dbs[cnt].datasize = dbs[cnt].head->data_size;
127 data.dbs[cnt].dataused = dbs[cnt].head->first_free;
128 data.dbs[cnt].maxnsearched = dbs[cnt].head->maxnsearched;
129 data.dbs[cnt].rdlockdelayed = dbs[cnt].head->rdlockdelayed;
130 data.dbs[cnt].wrlockdelayed = dbs[cnt].head->wrlockdelayed;
131 data.dbs[cnt].addfailed = dbs[cnt].head->addfailed;
132 }
67479a70 133 }
d67281a7 134
74a30a58
UD
135 if (selinux_enabled)
136 nscd_avc_cache_stats (&data.cstats);
137
2c210d1e
UD
138 if (TEMP_FAILURE_RETRY (send (fd, &data, sizeof (data), MSG_NOSIGNAL))
139 != sizeof (data))
d67281a7 140 {
67479a70
UD
141 char buf[256];
142 dbg_log (_("cannot write statistics: %s"),
143 strerror_r (errno, buf, sizeof (buf)));
d67281a7 144 }
67479a70
UD
145}
146
147
148int
149receive_print_stats (void)
150{
151 struct statdata data;
152 request_header req;
153 ssize_t nbytes;
154 int fd;
155 int i;
a12ce44f 156 uid_t uid = getuid ();
bb6e8ca3
UD
157 const char *yesstr = _("yes");
158 const char *nostr = _("no");
a12ce44f
UD
159
160 /* Find out whether there is another user but root allowed to
161 request statistics. */
162 if (uid != 0)
163 {
164 /* User specified? */
165 if(stat_user == NULL || stat_uid != uid)
166 {
167 if (stat_user != NULL)
168 error (EXIT_FAILURE, 0,
169 _("Only root or %s is allowed to use this option!"),
170 stat_user);
171 else
172 error (EXIT_FAILURE, 0,
173 _("Only root is allowed to use this option!"));
174 }
175 }
d67281a7 176
67479a70
UD
177 /* Open a socket to the running nscd. */
178 fd = nscd_open_socket ();
179 if (fd == -1)
180 error (EXIT_FAILURE, 0, _("nscd not running!\n"));
181
182 /* Send the request. */
d67281a7
UD
183 req.version = NSCD_VERSION;
184 req.type = GETSTAT;
185 req.key_len = 0;
2c210d1e
UD
186 nbytes = TEMP_FAILURE_RETRY (send (fd, &req, sizeof (request_header),
187 MSG_NOSIGNAL));
d67281a7
UD
188 if (nbytes != sizeof (request_header))
189 {
67479a70
UD
190 int err = errno;
191 close (fd);
192 error (EXIT_FAILURE, err, _("write incomplete"));
d67281a7
UD
193 }
194
67479a70
UD
195 /* Read as much data as we expect. */
196 if (TEMP_FAILURE_RETRY (read (fd, &data, sizeof (data))) != sizeof (data)
197 || (memcmp (data.version, compilation, sizeof (compilation)) != 0
198 /* Yes, this is an assignment! */
c86e6aec 199 && (errno = EINVAL)))
d67281a7 200 {
67479a70
UD
201 /* Not the right version. */
202 int err = errno;
203 close (fd);
204 error (EXIT_FAILURE, err, _("cannot read statistics data"));
d67281a7
UD
205 }
206
67479a70
UD
207 printf (_("nscd configuration:\n\n%15d server debug level\n"),
208 data.debug_level);
209
c86e6aec
UD
210 /* We know that we can simply subtract time_t values. */
211 unsigned long int diff = data.runtime;
212 unsigned int ndays = 0;
213 unsigned int nhours = 0;
214 unsigned int nmins = 0;
215 if (diff > 24 * 60 * 60)
216 {
217 ndays = diff / (24 * 60 * 60);
218 diff %= 24 * 60 * 60;
219 }
220 if (diff > 60 * 60)
221 {
222 nhours = diff / (60 * 60);
223 diff %= 60 * 60;
224 }
225 if (diff > 60)
226 {
227 nmins = diff / 60;
228 diff %= 60;
229 }
230 if (ndays != 0)
231 printf (_("%3ud %2uh %2um %2lus server runtime\n"),
232 ndays, nhours, nmins, diff);
233 else if (nhours != 0)
234 printf (_(" %2uh %2um %2lus server runtime\n"), nhours, nmins, diff);
235 else if (nmins != 0)
236 printf (_(" %2um %2lus server runtime\n"), nmins, diff);
237 else
238 printf (_(" %2lus server runtime\n"), diff);
239
27e82856
UD
240 printf (_("%15d current number of threads\n"
241 "%15d maximum number of threads\n"
242 "%15lu number of times clients had to wait\n"
4401d759 243 "%15s paranoia mode enabled\n"
d55d558b
UD
244 "%15lu restart internal\n"
245 "%15u reload count\n"),
4630012f
UD
246 data.nthreads, data.max_nthreads, data.client_queued,
247 data.paranoia ? yesstr : nostr,
d55d558b 248 (unsigned long int) data.restart_interval, data.reload_count);
a16e3585 249
67479a70
UD
250 for (i = 0; i < lastdb; ++i)
251 {
252 unsigned long int hit = data.dbs[i].poshit + data.dbs[i].neghit;
253 unsigned long int all = hit + data.dbs[i].posmiss + data.dbs[i].negmiss;
27e82856
UD
254 const char *enabled = data.dbs[i].enabled ? yesstr : nostr;
255 const char *check_file = data.dbs[i].check_file ? yesstr : nostr;
256 const char *shared = data.dbs[i].shared ? yesstr : nostr;
257 const char *persistent = data.dbs[i].persistent ? yesstr : nostr;
67479a70
UD
258
259 if (enabled[0] == '\0')
260 /* The locale does not provide this information so we have to
261 translate it ourself. Since we should avoid short translation
262 terms we artifically increase the length. */
4401d759 263 enabled = data.dbs[i].enabled ? yesstr : nostr;
67479a70 264 if (check_file[0] == '\0')
4401d759 265 check_file = data.dbs[i].check_file ? yesstr : nostr;
d13a3c57 266 if (shared[0] == '\0')
4401d759 267 shared = data.dbs[i].shared ? yesstr : nostr;
d13a3c57 268 if (persistent[0] == '\0')
4401d759 269 persistent = data.dbs[i].persistent ? yesstr : nostr;
67479a70
UD
270
271 if (all == 0)
272 /* If nothing happened so far report a 0% hit rate. */
273 all = 1;
274
275 printf (_("\n%s cache:\n\n"
276 "%15s cache is enabled\n"
d13a3c57
UD
277 "%15s cache is persistent\n"
278 "%15s cache is shared\n"
a95a08b4
UD
279 "%15zu suggested size\n"
280 "%15zu total data pool size\n"
281 "%15zu used data pool size\n"
c86e6aec
UD
282 "%15lu seconds time to live for positive entries\n"
283 "%15lu seconds time to live for negative entries\n"
a95a08b4
UD
284 "%15" PRIuMAX " cache hits on positive entries\n"
285 "%15" PRIuMAX " cache hits on negative entries\n"
286 "%15" PRIuMAX " cache misses on positive entries\n"
287 "%15" PRIuMAX " cache misses on negative entries\n"
c86e6aec 288 "%15lu%% cache hit rate\n"
a95a08b4
UD
289 "%15zu current number of cached values\n"
290 "%15zu maximum number of cached values\n"
291 "%15zu maximum chain length searched\n"
292 "%15" PRIuMAX " number of delays on rdlock\n"
293 "%15" PRIuMAX " number of delays on wrlock\n"
294 "%15" PRIuMAX " memory allocations failed\n"
67479a70 295 "%15s check /etc/%s for changes\n"),
d13a3c57 296 dbnames[i], enabled, persistent, shared,
67479a70 297 data.dbs[i].module,
a95a08b4 298 data.dbs[i].datasize, data.dbs[i].dataused,
67479a70
UD
299 data.dbs[i].postimeout, data.dbs[i].negtimeout,
300 data.dbs[i].poshit, data.dbs[i].neghit,
301 data.dbs[i].posmiss, data.dbs[i].negmiss,
302 (100 * hit) / all,
c86e6aec
UD
303 data.dbs[i].nentries, data.dbs[i].maxnentries,
304 data.dbs[i].maxnsearched,
305 data.dbs[i].rdlockdelayed,
a95a08b4
UD
306 data.dbs[i].wrlockdelayed,
307 data.dbs[i].addfailed, check_file, dbnames[i]);
67479a70
UD
308 }
309
74a30a58
UD
310 if (selinux_enabled)
311 nscd_avc_print_stats (&data.cstats);
312
67479a70
UD
313 close (fd);
314
315 exit (0);
d67281a7 316}