bufcache.c revision 1.27 1 1.27 christos /* $NetBSD: bufcache.c,v 1.27 2016/10/24 00:40:17 christos Exp $ */
2 1.1 simonb
3 1.1 simonb /*-
4 1.1 simonb * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.1 simonb * All rights reserved.
6 1.1 simonb *
7 1.1 simonb * This code is derived from software contributed to The NetBSD Foundation
8 1.1 simonb * by Simon Burge.
9 1.1 simonb *
10 1.1 simonb * Redistribution and use in source and binary forms, with or without
11 1.1 simonb * modification, are permitted provided that the following conditions
12 1.1 simonb * are met:
13 1.1 simonb * 1. Redistributions of source code must retain the above copyright
14 1.1 simonb * notice, this list of conditions and the following disclaimer.
15 1.1 simonb * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 simonb * notice, this list of conditions and the following disclaimer in the
17 1.1 simonb * documentation and/or other materials provided with the distribution.
18 1.1 simonb *
19 1.1 simonb * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 simonb * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 simonb * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 simonb * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 simonb * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 simonb * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 simonb * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 simonb * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 simonb * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 simonb * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 simonb * POSSIBILITY OF SUCH DAMAGE.
30 1.1 simonb */
31 1.1 simonb
32 1.1 simonb #include <sys/cdefs.h>
33 1.1 simonb #ifndef lint
34 1.27 christos __RCSID("$NetBSD: bufcache.c,v 1.27 2016/10/24 00:40:17 christos Exp $");
35 1.1 simonb #endif /* not lint */
36 1.1 simonb
37 1.1 simonb #include <sys/param.h>
38 1.1 simonb #include <sys/buf.h>
39 1.1 simonb #include <sys/mount.h>
40 1.9 simonb #include <sys/sysctl.h>
41 1.1 simonb #include <sys/vnode.h>
42 1.1 simonb
43 1.9 simonb #include <uvm/uvm_extern.h>
44 1.9 simonb
45 1.1 simonb #include <err.h>
46 1.9 simonb #include <errno.h>
47 1.18 simonb #include <inttypes.h>
48 1.11 simonb #include <math.h>
49 1.1 simonb #include <stdlib.h>
50 1.9 simonb #include <string.h>
51 1.2 mrg #include <unistd.h>
52 1.21 ad #include <stdbool.h>
53 1.1 simonb
54 1.15 pk #include <miscfs/specfs/specdev.h>
55 1.15 pk
56 1.1 simonb #include "systat.h"
57 1.1 simonb #include "extern.h"
58 1.1 simonb
59 1.1 simonb #define VCACHE_SIZE 50
60 1.18 simonb #define PAGEINFO_ROWS 5
61 1.1 simonb
62 1.1 simonb struct vcache {
63 1.1 simonb int vc_age;
64 1.1 simonb struct vnode *vc_addr;
65 1.1 simonb struct vnode vc_node;
66 1.1 simonb };
67 1.1 simonb
68 1.1 simonb struct ml_entry {
69 1.15 pk u_int ml_count;
70 1.15 pk u_long ml_size;
71 1.15 pk u_long ml_valid;
72 1.1 simonb struct mount *ml_addr;
73 1.15 pk LIST_ENTRY(ml_entry) ml_entries;
74 1.1 simonb struct mount ml_mount;
75 1.1 simonb };
76 1.1 simonb
77 1.1 simonb static struct vcache vcache[VCACHE_SIZE];
78 1.1 simonb static LIST_HEAD(mount_list, ml_entry) mount_list;
79 1.1 simonb
80 1.23 christos static uint64_t bufmem;
81 1.17 martin static u_int nbuf, pgwidth, kbwidth;
82 1.9 simonb static struct uvmexp_sysctl uvmexp;
83 1.1 simonb
84 1.8 ad static void vc_init(void);
85 1.8 ad static void ml_init(void);
86 1.8 ad static struct vnode *vc_lookup(struct vnode *);
87 1.8 ad static struct mount *ml_lookup(struct mount *, int, int);
88 1.11 simonb static void fetchuvmexp(void);
89 1.1 simonb
90 1.1 simonb
91 1.1 simonb WINDOW *
92 1.8 ad openbufcache(void)
93 1.1 simonb {
94 1.1 simonb
95 1.13 dsl return (subwin(stdscr, -1, 0, 5, 0));
96 1.1 simonb }
97 1.1 simonb
98 1.1 simonb void
99 1.8 ad closebufcache(WINDOW *w)
100 1.1 simonb {
101 1.1 simonb
102 1.1 simonb if (w == NULL)
103 1.1 simonb return;
104 1.1 simonb wclear(w);
105 1.1 simonb wrefresh(w);
106 1.1 simonb delwin(w);
107 1.1 simonb ml_init(); /* Clear out mount list */
108 1.1 simonb }
109 1.1 simonb
110 1.1 simonb void
111 1.8 ad labelbufcache(void)
112 1.1 simonb {
113 1.18 simonb int i;
114 1.18 simonb
115 1.18 simonb for (i = 0; i <= PAGEINFO_ROWS; i++) {
116 1.18 simonb wmove(wnd, i, 0);
117 1.18 simonb wclrtoeol(wnd);
118 1.18 simonb }
119 1.18 simonb mvwaddstr(wnd, PAGEINFO_ROWS + 1, 0, "File System Bufs used"
120 1.18 simonb " % kB in use % Bufsize kB % Util %");
121 1.1 simonb wclrtoeol(wnd);
122 1.1 simonb }
123 1.1 simonb
124 1.1 simonb void
125 1.8 ad showbufcache(void)
126 1.1 simonb {
127 1.1 simonb int tbuf, i, lastrow;
128 1.15 pk double tvalid, tsize;
129 1.1 simonb struct ml_entry *ml;
130 1.23 christos size_t len;
131 1.27 christos static int mib[] = { -1, 0 };
132 1.1 simonb
133 1.27 christos if (mib[0] == -1) {
134 1.27 christos len = __arraycount(mib);
135 1.27 christos if (sysctlnametomib("vm.bufmem", mib, &len) == -1)
136 1.27 christos error("can't get \"vm.bufmem\" mib: %s",
137 1.27 christos strerror(errno));
138 1.27 christos }
139 1.23 christos len = sizeof(bufmem);
140 1.27 christos if (sysctl(mib, 2, &bufmem, &len, NULL, 0) == -1)
141 1.27 christos error("can't get \"vm.bufmem\": %s", strerror(errno));
142 1.15 pk
143 1.15 pk mvwprintw(wnd, 0, 0,
144 1.25 christos " %*d metadata buffers using %*"PRIu64" kBytes of "
145 1.18 simonb "memory (%2.0f%%).",
146 1.18 simonb pgwidth, nbuf, kbwidth, bufmem / 1024,
147 1.18 simonb ((bufmem * 100.0) + 0.5) / getpagesize() / uvmexp.npages);
148 1.15 pk wclrtoeol(wnd);
149 1.9 simonb mvwprintw(wnd, 1, 0,
150 1.18 simonb " %*" PRIu64 " pages for cached file data using %*"
151 1.18 simonb PRIu64 " kBytes of memory (%2.0f%%).",
152 1.18 simonb pgwidth, uvmexp.filepages,
153 1.18 simonb kbwidth, uvmexp.filepages * getpagesize() / 1024,
154 1.18 simonb (uvmexp.filepages * 100 + 0.5) / uvmexp.npages);
155 1.11 simonb wclrtoeol(wnd);
156 1.11 simonb mvwprintw(wnd, 2, 0,
157 1.18 simonb " %*" PRIu64 " pages for executables using %*"
158 1.18 simonb PRIu64 " kBytes of memory (%2.0f%%).",
159 1.18 simonb pgwidth, uvmexp.execpages,
160 1.18 simonb kbwidth, uvmexp.execpages * getpagesize() / 1024,
161 1.18 simonb (uvmexp.execpages * 100 + 0.5) / uvmexp.npages);
162 1.18 simonb wclrtoeol(wnd);
163 1.18 simonb mvwprintw(wnd, 3, 0,
164 1.18 simonb " %*" PRIu64 " pages for anon (non-file) data %*"
165 1.18 simonb PRIu64 " kBytes of memory (%2.0f%%).",
166 1.18 simonb pgwidth, uvmexp.anonpages,
167 1.18 simonb kbwidth, uvmexp.anonpages * getpagesize() / 1024,
168 1.18 simonb (uvmexp.anonpages * 100 + 0.5) / uvmexp.npages);
169 1.18 simonb wclrtoeol(wnd);
170 1.18 simonb mvwprintw(wnd, 4, 0,
171 1.18 simonb " %*" PRIu64 " free pages %*"
172 1.18 simonb PRIu64 " kBytes of memory (%2.0f%%).",
173 1.18 simonb pgwidth, uvmexp.free,
174 1.18 simonb kbwidth, uvmexp.free * getpagesize() / 1024,
175 1.18 simonb (uvmexp.free * 100 + 0.5) / uvmexp.npages);
176 1.9 simonb wclrtoeol(wnd);
177 1.9 simonb
178 1.15 pk if (nbuf == 0 || bufmem == 0) {
179 1.15 pk wclrtobot(wnd);
180 1.15 pk return;
181 1.15 pk }
182 1.15 pk
183 1.15 pk tbuf = 0;
184 1.15 pk tvalid = tsize = 0;
185 1.18 simonb lastrow = PAGEINFO_ROWS + 2; /* Leave room for header. */
186 1.1 simonb for (i = lastrow, ml = LIST_FIRST(&mount_list); ml != NULL;
187 1.1 simonb i++, ml = LIST_NEXT(ml, ml_entries)) {
188 1.1 simonb
189 1.19 dsl int cnt = ml->ml_count;
190 1.15 pk double v = ml->ml_valid;
191 1.15 pk double s = ml->ml_size;
192 1.15 pk
193 1.1 simonb /* Display in window if enough room. */
194 1.1 simonb if (i < getmaxy(wnd) - 2) {
195 1.1 simonb mvwprintw(wnd, i, 0, "%-20.20s", ml->ml_addr == NULL ?
196 1.1 simonb "NULL" : ml->ml_mount.mnt_stat.f_mntonname);
197 1.4 mrg wprintw(wnd,
198 1.15 pk " %6d %3d %8ld %3.0f %8ld %3.0f %3.0f",
199 1.19 dsl cnt, (100 * cnt) / nbuf,
200 1.15 pk (long)(v/1024), 100 * v / bufmem,
201 1.15 pk (long)(s/1024), 100 * s / bufmem,
202 1.15 pk 100 * v / s);
203 1.1 simonb wclrtoeol(wnd);
204 1.1 simonb lastrow = i;
205 1.1 simonb }
206 1.1 simonb
207 1.1 simonb /* Update statistics. */
208 1.19 dsl tbuf += cnt;
209 1.15 pk tvalid += v;
210 1.15 pk tsize += s;
211 1.1 simonb }
212 1.1 simonb
213 1.1 simonb wclrtobot(wnd);
214 1.4 mrg mvwprintw(wnd, lastrow + 2, 0,
215 1.15 pk "%-20s %6d %3d %8ld %3.0f %8ld %3.0f %3.0f",
216 1.4 mrg "Total:", tbuf, (100 * tbuf) / nbuf,
217 1.15 pk (long)(tvalid/1024), 100 * tvalid / bufmem,
218 1.15 pk (long)(tsize/1024), 100 * tsize / bufmem,
219 1.15 pk tsize != 0 ? ((100 * tvalid) / tsize) : 0);
220 1.1 simonb }
221 1.1 simonb
222 1.1 simonb int
223 1.8 ad initbufcache(void)
224 1.1 simonb {
225 1.11 simonb fetchuvmexp();
226 1.11 simonb pgwidth = (int)(floor(log10((double)uvmexp.npages)) + 1);
227 1.18 simonb kbwidth = (int)(floor(log10(uvmexp.npages * getpagesize() / 1024.0)) +
228 1.18 simonb 1);
229 1.11 simonb
230 1.1 simonb return(1);
231 1.1 simonb }
232 1.1 simonb
233 1.11 simonb static void
234 1.11 simonb fetchuvmexp(void)
235 1.1 simonb {
236 1.11 simonb int mib[2];
237 1.9 simonb size_t size;
238 1.9 simonb
239 1.11 simonb /* Re-read pages used for vnodes & executables */
240 1.9 simonb size = sizeof(uvmexp);
241 1.9 simonb mib[0] = CTL_VM;
242 1.9 simonb mib[1] = VM_UVMEXP2;
243 1.9 simonb if (sysctl(mib, 2, &uvmexp, &size, NULL, 0) < 0) {
244 1.9 simonb error("can't get uvmexp: %s\n", strerror(errno));
245 1.9 simonb memset(&uvmexp, 0, sizeof(uvmexp));
246 1.9 simonb }
247 1.11 simonb }
248 1.11 simonb
249 1.11 simonb void
250 1.11 simonb fetchbufcache(void)
251 1.11 simonb {
252 1.15 pk int count;
253 1.16 atatat struct buf_sysctl *bp, *buffers;
254 1.11 simonb struct vnode *vn;
255 1.11 simonb struct ml_entry *ml;
256 1.16 atatat int mib[6];
257 1.15 pk size_t size;
258 1.15 pk int extraslop = 0;
259 1.1 simonb
260 1.15 pk /* Re-read pages used for vnodes & executables */
261 1.11 simonb fetchuvmexp();
262 1.1 simonb
263 1.1 simonb /* Initialise vnode cache and mount list. */
264 1.1 simonb vc_init();
265 1.1 simonb ml_init();
266 1.15 pk
267 1.15 pk /* Get metadata buffers */
268 1.15 pk size = 0;
269 1.15 pk buffers = NULL;
270 1.15 pk mib[0] = CTL_KERN;
271 1.15 pk mib[1] = KERN_BUF;
272 1.16 atatat mib[2] = KERN_BUF_ALL;
273 1.16 atatat mib[3] = KERN_BUF_ALL;
274 1.16 atatat mib[4] = (int)sizeof(struct buf_sysctl);
275 1.16 atatat mib[5] = INT_MAX; /* we want them all */
276 1.16 atatat again:
277 1.16 atatat if (sysctl(mib, 6, NULL, &size, NULL, 0) < 0) {
278 1.15 pk error("can't get buffers size: %s\n", strerror(errno));
279 1.15 pk return;
280 1.15 pk }
281 1.15 pk if (size == 0)
282 1.15 pk return;
283 1.15 pk
284 1.16 atatat size += extraslop * sizeof(struct buf_sysctl);
285 1.15 pk buffers = malloc(size);
286 1.15 pk if (buffers == NULL) {
287 1.15 pk error("can't allocate buffers: %s\n", strerror(errno));
288 1.15 pk return;
289 1.15 pk }
290 1.16 atatat if (sysctl(mib, 6, buffers, &size, NULL, 0) < 0) {
291 1.15 pk free(buffers);
292 1.15 pk if (extraslop == 0) {
293 1.15 pk extraslop = 100;
294 1.15 pk goto again;
295 1.15 pk }
296 1.15 pk error("can't get buffers: %s\n", strerror(errno));
297 1.15 pk return;
298 1.15 pk }
299 1.15 pk
300 1.16 atatat nbuf = size / sizeof(struct buf_sysctl);
301 1.15 pk for (bp = buffers; bp < buffers + nbuf; bp++) {
302 1.16 atatat if (UINT64TOPTR(bp->b_vp) != NULL) {
303 1.15 pk struct mount *mp;
304 1.16 atatat vn = vc_lookup(UINT64TOPTR(bp->b_vp));
305 1.15 pk if (vn == NULL)
306 1.15 pk break;
307 1.15 pk
308 1.15 pk mp = vn->v_mount;
309 1.15 pk /*
310 1.15 pk * References to mounted-on vnodes should be
311 1.15 pk * counted towards the mounted filesystem.
312 1.15 pk */
313 1.21 ad if (vn->v_type == VBLK && vn->v_specnode != NULL) {
314 1.21 ad specnode_t sn;
315 1.21 ad specdev_t sd;
316 1.21 ad if (!KREAD(vn->v_specnode, &sn, sizeof(sn)))
317 1.15 pk continue;
318 1.21 ad if (!KREAD(sn.sn_dev, &sd, sizeof(sd)))
319 1.21 ad continue;
320 1.21 ad if (sd.sd_mountpoint)
321 1.21 ad mp = sd.sd_mountpoint;
322 1.1 simonb }
323 1.15 pk if (mp != NULL)
324 1.26 christos (void)ml_lookup(mp, bp->b_bufsize,
325 1.15 pk bp->b_bcount);
326 1.1 simonb }
327 1.1 simonb }
328 1.1 simonb
329 1.1 simonb /* simple sort - there's not that many entries */
330 1.1 simonb do {
331 1.1 simonb if ((ml = LIST_FIRST(&mount_list)) == NULL ||
332 1.1 simonb LIST_NEXT(ml, ml_entries) == NULL)
333 1.1 simonb break;
334 1.1 simonb
335 1.1 simonb count = 0;
336 1.1 simonb for (ml = LIST_FIRST(&mount_list); ml != NULL;
337 1.1 simonb ml = LIST_NEXT(ml, ml_entries)) {
338 1.1 simonb if (LIST_NEXT(ml, ml_entries) == NULL)
339 1.1 simonb break;
340 1.1 simonb if (ml->ml_count < LIST_NEXT(ml, ml_entries)->ml_count) {
341 1.1 simonb ml = LIST_NEXT(ml, ml_entries);
342 1.1 simonb LIST_REMOVE(ml, ml_entries);
343 1.1 simonb LIST_INSERT_HEAD(&mount_list, ml, ml_entries);
344 1.1 simonb count++;
345 1.1 simonb }
346 1.1 simonb }
347 1.1 simonb } while (count != 0);
348 1.15 pk
349 1.15 pk free(buffers);
350 1.1 simonb }
351 1.1 simonb
352 1.1 simonb static void
353 1.8 ad vc_init(void)
354 1.1 simonb {
355 1.1 simonb int i;
356 1.1 simonb
357 1.1 simonb /* vc_addr == NULL for unused cache entry. */
358 1.1 simonb for (i = 0; i < VCACHE_SIZE; i++)
359 1.1 simonb vcache[i].vc_addr = NULL;
360 1.1 simonb }
361 1.1 simonb
362 1.1 simonb static void
363 1.8 ad ml_init(void)
364 1.1 simonb {
365 1.1 simonb struct ml_entry *ml;
366 1.1 simonb
367 1.1 simonb /* Throw out the current mount list and start again. */
368 1.1 simonb while ((ml = LIST_FIRST(&mount_list)) != NULL) {
369 1.1 simonb LIST_REMOVE(ml, ml_entries);
370 1.1 simonb free(ml);
371 1.1 simonb }
372 1.1 simonb }
373 1.1 simonb
374 1.1 simonb
375 1.1 simonb static struct vnode *
376 1.8 ad vc_lookup(struct vnode *vaddr)
377 1.1 simonb {
378 1.1 simonb struct vnode *ret;
379 1.14 christos size_t i, oldest;
380 1.1 simonb
381 1.1 simonb ret = NULL;
382 1.14 christos oldest = 0;
383 1.17 martin for (i = 0; i < VCACHE_SIZE; i++) {
384 1.1 simonb if (vcache[i].vc_addr == NULL)
385 1.1 simonb break;
386 1.17 martin vcache[i].vc_age++;
387 1.1 simonb if (vcache[i].vc_age < vcache[oldest].vc_age)
388 1.1 simonb oldest = i;
389 1.1 simonb if (vcache[i].vc_addr == vaddr) {
390 1.1 simonb vcache[i].vc_age = 0;
391 1.1 simonb ret = &vcache[i].vc_node;
392 1.1 simonb }
393 1.1 simonb }
394 1.1 simonb
395 1.1 simonb /* Find an entry in the cache? */
396 1.1 simonb if (ret != NULL)
397 1.1 simonb return(ret);
398 1.1 simonb
399 1.1 simonb /* Go past the end of the cache? */
400 1.1 simonb if (i >= VCACHE_SIZE)
401 1.1 simonb i = oldest;
402 1.1 simonb
403 1.1 simonb /* Read in new vnode and reset age counter. */
404 1.14 christos if (KREAD(vaddr, &vcache[i].vc_node, sizeof(struct vnode)) == 0)
405 1.14 christos return NULL;
406 1.1 simonb vcache[i].vc_addr = vaddr;
407 1.1 simonb vcache[i].vc_age = 0;
408 1.1 simonb
409 1.1 simonb return(&vcache[i].vc_node);
410 1.1 simonb }
411 1.1 simonb
412 1.1 simonb static struct mount *
413 1.8 ad ml_lookup(struct mount *maddr, int size, int valid)
414 1.1 simonb {
415 1.1 simonb struct ml_entry *ml;
416 1.1 simonb
417 1.1 simonb for (ml = LIST_FIRST(&mount_list); ml != NULL;
418 1.1 simonb ml = LIST_NEXT(ml, ml_entries))
419 1.1 simonb if (ml->ml_addr == maddr) {
420 1.1 simonb ml->ml_count++;
421 1.15 pk ml->ml_size += size;
422 1.15 pk ml->ml_valid += valid;
423 1.1 simonb if (ml->ml_addr == NULL)
424 1.1 simonb return(NULL);
425 1.1 simonb else
426 1.1 simonb return(&ml->ml_mount);
427 1.1 simonb }
428 1.1 simonb
429 1.5 jwise if ((ml = malloc(sizeof(struct ml_entry))) == NULL) {
430 1.5 jwise error("out of memory");
431 1.5 jwise die(0);
432 1.5 jwise }
433 1.1 simonb LIST_INSERT_HEAD(&mount_list, ml, ml_entries);
434 1.1 simonb ml->ml_count = 1;
435 1.15 pk ml->ml_size = size;
436 1.15 pk ml->ml_valid = valid;
437 1.1 simonb ml->ml_addr = maddr;
438 1.1 simonb if (maddr == NULL)
439 1.1 simonb return(NULL);
440 1.1 simonb
441 1.1 simonb KREAD(maddr, &ml->ml_mount, sizeof(struct mount));
442 1.1 simonb return(&ml->ml_mount);
443 1.1 simonb }
444