1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2004 Poul-Henning Kamp
5 * Copyright (c) 1994,1997 John S. Dyson
6 * Copyright (c) 2013 The FreeBSD Foundation
7 * All rights reserved.
8 *
9 * Portions of this software were developed by Konstantin Belousov
10 * under sponsorship from the FreeBSD Foundation.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34 /*
35 * this file contains a new buffer I/O scheme implementing a coherent
36 * VM object and buffer cache scheme. Pains have been taken to make
37 * sure that the performance degradation associated with schemes such
38 * as this is not realized.
39 *
40 * Author: John S. Dyson
41 * Significant help during the development and debugging phases
42 * had been provided by David Greenman, also of the FreeBSD core team.
43 *
44 * see man buf(9) for more info.
45 */
46
47 #include <sys/cdefs.h>
48 __FBSDID("$FreeBSD: stable/12/sys/kern/vfs_bio.c 373246 2023-10-12 05:11:51Z zlei $");
49
50 #include <sys/param.h>
51 #include <sys/systm.h>
52 #include <sys/bio.h>
53 #include <sys/bitset.h>
54 #include <sys/conf.h>
55 #include <sys/counter.h>
56 #include <sys/buf.h>
57 #include <sys/devicestat.h>
58 #include <sys/eventhandler.h>
59 #include <sys/fail.h>
60 #include <sys/limits.h>
61 #include <sys/lock.h>
62 #include <sys/malloc.h>
63 #include <sys/mount.h>
64 #include <sys/mutex.h>
65 #include <sys/kernel.h>
66 #include <sys/kthread.h>
67 #include <sys/proc.h>
68 #include <sys/racct.h>
69 #include <sys/resourcevar.h>
70 #include <sys/rwlock.h>
71 #include <sys/smp.h>
72 #include <sys/sysctl.h>
73 #include <sys/sysproto.h>
74 #include <sys/vmem.h>
75 #include <sys/vmmeter.h>
76 #include <sys/vnode.h>
77 #include <sys/watchdog.h>
78 #include <geom/geom.h>
79 #include <vm/vm.h>
80 #include <vm/vm_param.h>
81 #include <vm/vm_kern.h>
82 #include <vm/vm_object.h>
83 #include <vm/vm_page.h>
84 #include <vm/vm_pageout.h>
85 #include <vm/vm_pager.h>
86 #include <vm/vm_extern.h>
87 #include <vm/vm_map.h>
88 #include <vm/swap_pager.h>
89 #include "opt_swap.h"
90
91 static MALLOC_DEFINE(M_BIOBUF, "biobuf", "BIO buffer");
92
93 struct bio_ops bioops; /* I/O operation notification */
94
95 struct buf_ops buf_ops_bio = {
96 .bop_name = "buf_ops_bio",
97 .bop_write = bufwrite,
98 .bop_strategy = bufstrategy,
99 .bop_sync = bufsync,
100 .bop_bdflush = bufbdflush,
101 };
102
103 struct bufqueue {
104 struct mtx_padalign bq_lock;
105 TAILQ_HEAD(, buf) bq_queue;
106 uint8_t bq_index;
107 uint16_t bq_subqueue;
108 int bq_len;
109 } __aligned(CACHE_LINE_SIZE);
110
111 #define BQ_LOCKPTR(bq) (&(bq)->bq_lock)
112 #define BQ_LOCK(bq) mtx_lock(BQ_LOCKPTR((bq)))
113 #define BQ_UNLOCK(bq) mtx_unlock(BQ_LOCKPTR((bq)))
114 #define BQ_ASSERT_LOCKED(bq) mtx_assert(BQ_LOCKPTR((bq)), MA_OWNED)
115
116 struct bufdomain {
117 struct bufqueue bd_subq[MAXCPU + 1]; /* Per-cpu sub queues + global */
118 struct bufqueue bd_dirtyq;
119 struct bufqueue *bd_cleanq;
120 struct mtx_padalign bd_run_lock;
121 /* Constants */
122 long bd_maxbufspace;
123 long bd_hibufspace;
124 long bd_lobufspace;
125 long bd_bufspacethresh;
126 int bd_hifreebuffers;
127 int bd_lofreebuffers;
128 int bd_hidirtybuffers;
129 int bd_lodirtybuffers;
130 int bd_dirtybufthresh;
131 int bd_lim;
132 /* atomics */
133 int bd_wanted;
134 int __aligned(CACHE_LINE_SIZE) bd_numdirtybuffers;
135 int __aligned(CACHE_LINE_SIZE) bd_running;
136 long __aligned(CACHE_LINE_SIZE) bd_bufspace;
137 int __aligned(CACHE_LINE_SIZE) bd_freebuffers;
138 } __aligned(CACHE_LINE_SIZE);
139
140 #define BD_LOCKPTR(bd) (&(bd)->bd_cleanq->bq_lock)
141 #define BD_LOCK(bd) mtx_lock(BD_LOCKPTR((bd)))
142 #define BD_UNLOCK(bd) mtx_unlock(BD_LOCKPTR((bd)))
143 #define BD_ASSERT_LOCKED(bd) mtx_assert(BD_LOCKPTR((bd)), MA_OWNED)
144 #define BD_RUN_LOCKPTR(bd) (&(bd)->bd_run_lock)
145 #define BD_RUN_LOCK(bd) mtx_lock(BD_RUN_LOCKPTR((bd)))
146 #define BD_RUN_UNLOCK(bd) mtx_unlock(BD_RUN_LOCKPTR((bd)))
147 #define BD_DOMAIN(bd) (bd - bdomain)
148
149 static struct buf *buf; /* buffer header pool */
150 extern struct buf *swbuf; /* Swap buffer header pool. */
151 caddr_t __read_mostly unmapped_buf;
152
153 /* Used below and for softdep flushing threads in ufs/ffs/ffs_softdep.c */
154 struct proc *bufdaemonproc;
155
156 static int inmem(struct vnode *vp, daddr_t blkno);
157 static void vm_hold_free_pages(struct buf *bp, int newbsize);
158 static void vm_hold_load_pages(struct buf *bp, vm_offset_t from,
159 vm_offset_t to);
160 static void vfs_page_set_valid(struct buf *bp, vm_ooffset_t off, vm_page_t m);
161 static void vfs_page_set_validclean(struct buf *bp, vm_ooffset_t off,
162 vm_page_t m);
163 static void vfs_clean_pages_dirty_buf(struct buf *bp);
164 static void vfs_setdirty_locked_object(struct buf *bp);
165 static void vfs_vmio_invalidate(struct buf *bp);
166 static void vfs_vmio_truncate(struct buf *bp, int npages);
167 static void vfs_vmio_extend(struct buf *bp, int npages, int size);
168 static int vfs_bio_clcheck(struct vnode *vp, int size,
169 daddr_t lblkno, daddr_t blkno);
170 static void breada(struct vnode *, daddr_t *, int *, int, struct ucred *, int,
171 void (*)(struct buf *));
172 static int buf_flush(struct vnode *vp, struct bufdomain *, int);
173 static int flushbufqueues(struct vnode *, struct bufdomain *, int, int);
174 static void buf_daemon(void);
175 static __inline void bd_wakeup(void);
176 static int sysctl_runningspace(SYSCTL_HANDLER_ARGS);
177 static void bufkva_reclaim(vmem_t *, int);
178 static void bufkva_free(struct buf *);
179 static int buf_import(void *, void **, int, int, int);
180 static void buf_release(void *, void **, int);
181 static void maxbcachebuf_adjust(void);
182 static inline struct bufdomain *bufdomain(struct buf *);
183 static void bq_remove(struct bufqueue *bq, struct buf *bp);
184 static void bq_insert(struct bufqueue *bq, struct buf *bp, bool unlock);
185 static int buf_recycle(struct bufdomain *, bool kva);
186 static void bq_init(struct bufqueue *bq, int qindex, int cpu,
187 const char *lockname);
188 static void bd_init(struct bufdomain *bd);
189 static int bd_flushall(struct bufdomain *bd);
190 static int sysctl_bufdomain_long(SYSCTL_HANDLER_ARGS);
191 static int sysctl_bufdomain_int(SYSCTL_HANDLER_ARGS);
192
193 static int sysctl_bufspace(SYSCTL_HANDLER_ARGS);
194 int vmiodirenable = TRUE;
195 SYSCTL_INT(_vfs, OID_AUTO, vmiodirenable, CTLFLAG_RW, &vmiodirenable, 0,
196 "Use the VM system for directory writes");
197 long runningbufspace;
198 SYSCTL_LONG(_vfs, OID_AUTO, runningbufspace, CTLFLAG_RD, &runningbufspace, 0,
199 "Amount of presently outstanding async buffer io");
200 SYSCTL_PROC(_vfs, OID_AUTO, bufspace, CTLTYPE_LONG|CTLFLAG_MPSAFE|CTLFLAG_RD,
201 NULL, 0, sysctl_bufspace, "L", "Physical memory used for buffers");
202 static counter_u64_t bufkvaspace;
203 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, bufkvaspace, CTLFLAG_RD, &bufkvaspace,
204 "Kernel virtual memory used for buffers");
205 static long maxbufspace;
206 SYSCTL_PROC(_vfs, OID_AUTO, maxbufspace,
207 CTLTYPE_LONG|CTLFLAG_MPSAFE|CTLFLAG_RW, &maxbufspace,
208 __offsetof(struct bufdomain, bd_maxbufspace), sysctl_bufdomain_long, "L",
209 "Maximum allowed value of bufspace (including metadata)");
210 static long bufmallocspace;
211 SYSCTL_LONG(_vfs, OID_AUTO, bufmallocspace, CTLFLAG_RD, &bufmallocspace, 0,
212 "Amount of malloced memory for buffers");
213 static long maxbufmallocspace;
214 SYSCTL_LONG(_vfs, OID_AUTO, maxmallocbufspace, CTLFLAG_RW, &maxbufmallocspace,
215 0, "Maximum amount of malloced memory for buffers");
216 static long lobufspace;
217 SYSCTL_PROC(_vfs, OID_AUTO, lobufspace,
218 CTLTYPE_LONG|CTLFLAG_MPSAFE|CTLFLAG_RW, &lobufspace,
219 __offsetof(struct bufdomain, bd_lobufspace), sysctl_bufdomain_long, "L",
220 "Minimum amount of buffers we want to have");
221 long hibufspace;
222 SYSCTL_PROC(_vfs, OID_AUTO, hibufspace,
223 CTLTYPE_LONG|CTLFLAG_MPSAFE|CTLFLAG_RW, &hibufspace,
224 __offsetof(struct bufdomain, bd_hibufspace), sysctl_bufdomain_long, "L",
225 "Maximum allowed value of bufspace (excluding metadata)");
226 long bufspacethresh;
227 SYSCTL_PROC(_vfs, OID_AUTO, bufspacethresh,
228 CTLTYPE_LONG|CTLFLAG_MPSAFE|CTLFLAG_RW, &bufspacethresh,
229 __offsetof(struct bufdomain, bd_bufspacethresh), sysctl_bufdomain_long, "L",
230 "Bufspace consumed before waking the daemon to free some");
231 static counter_u64_t buffreekvacnt;
232 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, buffreekvacnt, CTLFLAG_RW, &buffreekvacnt,
233 "Number of times we have freed the KVA space from some buffer");
234 static counter_u64_t bufdefragcnt;
235 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, bufdefragcnt, CTLFLAG_RW, &bufdefragcnt,
236 "Number of times we have had to repeat buffer allocation to defragment");
237 static long lorunningspace;
238 SYSCTL_PROC(_vfs, OID_AUTO, lorunningspace, CTLTYPE_LONG | CTLFLAG_MPSAFE |
239 CTLFLAG_RW, &lorunningspace, 0, sysctl_runningspace, "L",
240 "Minimum preferred space used for in-progress I/O");
241 static long hirunningspace;
242 SYSCTL_PROC(_vfs, OID_AUTO, hirunningspace, CTLTYPE_LONG | CTLFLAG_MPSAFE |
243 CTLFLAG_RW, &hirunningspace, 0, sysctl_runningspace, "L",
244 "Maximum amount of space to use for in-progress I/O");
245 int dirtybufferflushes;
246 SYSCTL_INT(_vfs, OID_AUTO, dirtybufferflushes, CTLFLAG_RW, &dirtybufferflushes,
247 0, "Number of bdwrite to bawrite conversions to limit dirty buffers");
248 int bdwriteskip;
249 SYSCTL_INT(_vfs, OID_AUTO, bdwriteskip, CTLFLAG_RW, &bdwriteskip,
250 0, "Number of buffers supplied to bdwrite with snapshot deadlock risk");
251 int altbufferflushes;
252 SYSCTL_INT(_vfs, OID_AUTO, altbufferflushes, CTLFLAG_RW, &altbufferflushes,
253 0, "Number of fsync flushes to limit dirty buffers");
254 static int recursiveflushes;
255 SYSCTL_INT(_vfs, OID_AUTO, recursiveflushes, CTLFLAG_RW, &recursiveflushes,
256 0, "Number of flushes skipped due to being recursive");
257 static int sysctl_numdirtybuffers(SYSCTL_HANDLER_ARGS);
258 SYSCTL_PROC(_vfs, OID_AUTO, numdirtybuffers,
259 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RD, NULL, 0, sysctl_numdirtybuffers, "I",
260 "Number of buffers that are dirty (has unwritten changes) at the moment");
261 static int lodirtybuffers;
262 SYSCTL_PROC(_vfs, OID_AUTO, lodirtybuffers,
263 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &lodirtybuffers,
264 __offsetof(struct bufdomain, bd_lodirtybuffers), sysctl_bufdomain_int, "I",
265 "How many buffers we want to have free before bufdaemon can sleep");
266 static int hidirtybuffers;
267 SYSCTL_PROC(_vfs, OID_AUTO, hidirtybuffers,
268 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &hidirtybuffers,
269 __offsetof(struct bufdomain, bd_hidirtybuffers), sysctl_bufdomain_int, "I",
270 "When the number of dirty buffers is considered severe");
271 int dirtybufthresh;
272 SYSCTL_PROC(_vfs, OID_AUTO, dirtybufthresh,
273 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &dirtybufthresh,
274 __offsetof(struct bufdomain, bd_dirtybufthresh), sysctl_bufdomain_int, "I",
275 "Number of bdwrite to bawrite conversions to clear dirty buffers");
276 static int numfreebuffers;
277 SYSCTL_INT(_vfs, OID_AUTO, numfreebuffers, CTLFLAG_RD, &numfreebuffers, 0,
278 "Number of free buffers");
279 static int lofreebuffers;
280 SYSCTL_PROC(_vfs, OID_AUTO, lofreebuffers,
281 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &lofreebuffers,
282 __offsetof(struct bufdomain, bd_lofreebuffers), sysctl_bufdomain_int, "I",
283 "Target number of free buffers");
284 static int hifreebuffers;
285 SYSCTL_PROC(_vfs, OID_AUTO, hifreebuffers,
286 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_RW, &hifreebuffers,
287 __offsetof(struct bufdomain, bd_hifreebuffers), sysctl_bufdomain_int, "I",
288 "Threshold for clean buffer recycling");
289 static counter_u64_t getnewbufcalls;
290 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, getnewbufcalls, CTLFLAG_RD,
291 &getnewbufcalls, "Number of calls to getnewbuf");
292 static counter_u64_t getnewbufrestarts;
293 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, getnewbufrestarts, CTLFLAG_RD,
294 &getnewbufrestarts,
295 "Number of times getnewbuf has had to restart a buffer acquisition");
296 static counter_u64_t mappingrestarts;
297 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, mappingrestarts, CTLFLAG_RD,
298 &mappingrestarts,
299 "Number of times getblk has had to restart a buffer mapping for "
300 "unmapped buffer");
301 static counter_u64_t numbufallocfails;
302 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, numbufallocfails, CTLFLAG_RW,
303 &numbufallocfails, "Number of times buffer allocations failed");
304 static int flushbufqtarget = 100;
305 SYSCTL_INT(_vfs, OID_AUTO, flushbufqtarget, CTLFLAG_RW, &flushbufqtarget, 0,
306 "Amount of work to do in flushbufqueues when helping bufdaemon");
307 static counter_u64_t notbufdflushes;
308 SYSCTL_COUNTER_U64(_vfs, OID_AUTO, notbufdflushes, CTLFLAG_RD, ¬bufdflushes,
309 "Number of dirty buffer flushes done by the bufdaemon helpers");
310 static long barrierwrites;
311 SYSCTL_LONG(_vfs, OID_AUTO, barrierwrites, CTLFLAG_RW, &barrierwrites, 0,
312 "Number of barrier writes");
313 SYSCTL_INT(_vfs, OID_AUTO, unmapped_buf_allowed,
314 CTLFLAG_RDTUN | CTLFLAG_NOFETCH,
315 &unmapped_buf_allowed, 0,
316 "Permit the use of the unmapped i/o");
317 int maxbcachebuf = MAXBCACHEBUF;
318 SYSCTL_INT(_vfs, OID_AUTO, maxbcachebuf, CTLFLAG_RDTUN, &maxbcachebuf, 0,
319 "Maximum size of a buffer cache block");
320
321 /*
322 * This lock synchronizes access to bd_request.
323 */
324 static struct mtx_padalign __exclusive_cache_line bdlock;
325
326 /*
327 * This lock protects the runningbufreq and synchronizes runningbufwakeup and
328 * waitrunningbufspace().
329 */
330 static struct mtx_padalign __exclusive_cache_line rbreqlock;
331
332 /*
333 * Lock that protects bdirtywait.
334 */
335 static struct mtx_padalign __exclusive_cache_line bdirtylock;
336
337 /*
338 * Wakeup point for bufdaemon, as well as indicator of whether it is already
339 * active. Set to 1 when the bufdaemon is already "on" the queue, 0 when it
340 * is idling.
341 */
342 static int bd_request;
343
344 /*
345 * Request for the buf daemon to write more buffers than is indicated by
346 * lodirtybuf. This may be necessary to push out excess dependencies or
347 * defragment the address space where a simple count of the number of dirty
348 * buffers is insufficient to characterize the demand for flushing them.
349 */
350 static int bd_speedupreq;
351
352 /*
353 * Synchronization (sleep/wakeup) variable for active buffer space requests.
354 * Set when wait starts, cleared prior to wakeup().
355 * Used in runningbufwakeup() and waitrunningbufspace().
356 */
357 static int runningbufreq;
358
359 /*
360 * Synchronization for bwillwrite() waiters.
361 */
362 static int bdirtywait;
363
364 /*
365 * Definitions for the buffer free lists.
366 */
367 #define QUEUE_NONE 0 /* on no queue */
368 #define QUEUE_EMPTY 1 /* empty buffer headers */
369 #define QUEUE_DIRTY 2 /* B_DELWRI buffers */
370 #define QUEUE_CLEAN 3 /* non-B_DELWRI buffers */
371 #define QUEUE_SENTINEL 4 /* not an queue index, but mark for sentinel */
372
373 /* Maximum number of buffer domains. */
374 #define BUF_DOMAINS 8
375
376 struct bufdomainset bdlodirty; /* Domains > lodirty */
377 struct bufdomainset bdhidirty; /* Domains > hidirty */
378
379 /* Configured number of clean queues. */
380 static int __read_mostly buf_domains;
381
382 BITSET_DEFINE(bufdomainset, BUF_DOMAINS);
383 struct bufdomain __exclusive_cache_line bdomain[BUF_DOMAINS];
384 struct bufqueue __exclusive_cache_line bqempty;
385
386 /*
387 * per-cpu empty buffer cache.
388 */
389 uma_zone_t buf_zone;
390
391 /*
392 * Single global constant for BUF_WMESG, to avoid getting multiple references.
393 * buf_wmesg is referred from macros.
394 */
395 const char *buf_wmesg = BUF_WMESG;
396
397 static int
sysctl_runningspace(SYSCTL_HANDLER_ARGS)398 sysctl_runningspace(SYSCTL_HANDLER_ARGS)
399 {
400 long value;
401 int error;
402
403 value = *(long *)arg1;
404 error = sysctl_handle_long(oidp, &value, 0, req);
405 if (error != 0 || req->newptr == NULL)
406 return (error);
407 mtx_lock(&rbreqlock);
408 if (arg1 == &hirunningspace) {
409 if (value < lorunningspace)
410 error = EINVAL;
411 else
412 hirunningspace = value;
413 } else {
414 KASSERT(arg1 == &lorunningspace,
415 ("%s: unknown arg1", __func__));
416 if (value > hirunningspace)
417 error = EINVAL;
418 else
419 lorunningspace = value;
420 }
421 mtx_unlock(&rbreqlock);
422 return (error);
423 }
424
425 static int
sysctl_bufdomain_int(SYSCTL_HANDLER_ARGS)426 sysctl_bufdomain_int(SYSCTL_HANDLER_ARGS)
427 {
428 int error;
429 int value;
430 int i;
431
432 value = *(int *)arg1;
433 error = sysctl_handle_int(oidp, &value, 0, req);
434 if (error != 0 || req->newptr == NULL)
435 return (error);
436 *(int *)arg1 = value;
437 for (i = 0; i < buf_domains; i++)
438 *(int *)(uintptr_t)(((uintptr_t)&bdomain[i]) + arg2) =
439 value / buf_domains;
440
441 return (error);
442 }
443
444 static int
sysctl_bufdomain_long(SYSCTL_HANDLER_ARGS)445 sysctl_bufdomain_long(SYSCTL_HANDLER_ARGS)
446 {
447 long value;
448 int error;
449 int i;
450
451 value = *(long *)arg1;
452 error = sysctl_handle_long(oidp, &value, 0, req);
453 if (error != 0 || req->newptr == NULL)
454 return (error);
455 *(long *)arg1 = value;
456 for (i = 0; i < buf_domains; i++)
457 *(long *)(uintptr_t)(((uintptr_t)&bdomain[i]) + arg2) =
458 value / buf_domains;
459
460 return (error);
461 }
462
463 #if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \
464 defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7)
465 static int
sysctl_bufspace(SYSCTL_HANDLER_ARGS)466 sysctl_bufspace(SYSCTL_HANDLER_ARGS)
467 {
468 long lvalue;
469 int ivalue;
470 int i;
471
472 lvalue = 0;
473 for (i = 0; i < buf_domains; i++)
474 lvalue += bdomain[i].bd_bufspace;
475 if (sizeof(int) == sizeof(long) || req->oldlen >= sizeof(long))
476 return (sysctl_handle_long(oidp, &lvalue, 0, req));
477 if (lvalue > INT_MAX)
478 /* On overflow, still write out a long to trigger ENOMEM. */
479 return (sysctl_handle_long(oidp, &lvalue, 0, req));
480 ivalue = lvalue;
481 return (sysctl_handle_int(oidp, &ivalue, 0, req));
482 }
483 #else
484 static int
sysctl_bufspace(SYSCTL_HANDLER_ARGS)485 sysctl_bufspace(SYSCTL_HANDLER_ARGS)
486 {
487 long lvalue;
488 int i;
489
490 lvalue = 0;
491 for (i = 0; i < buf_domains; i++)
492 lvalue += bdomain[i].bd_bufspace;
493 return (sysctl_handle_long(oidp, &lvalue, 0, req));
494 }
495 #endif
496
497 static int
sysctl_numdirtybuffers(SYSCTL_HANDLER_ARGS)498 sysctl_numdirtybuffers(SYSCTL_HANDLER_ARGS)
499 {
500 int value;
501 int i;
502
503 value = 0;
504 for (i = 0; i < buf_domains; i++)
505 value += bdomain[i].bd_numdirtybuffers;
506 return (sysctl_handle_int(oidp, &value, 0, req));
507 }
508
509 /*
510 * bdirtywakeup:
511 *
512 * Wakeup any bwillwrite() waiters.
513 */
514 static void
bdirtywakeup(void)515 bdirtywakeup(void)
516 {
517 mtx_lock(&bdirtylock);
518 if (bdirtywait) {
519 bdirtywait = 0;
520 wakeup(&bdirtywait);
521 }
522 mtx_unlock(&bdirtylock);
523 }
524
525 /*
526 * bd_clear:
527 *
528 * Clear a domain from the appropriate bitsets when dirtybuffers
529 * is decremented.
530 */
531 static void
bd_clear(struct bufdomain * bd)532 bd_clear(struct bufdomain *bd)
533 {
534
535 mtx_lock(&bdirtylock);
536 if (bd->bd_numdirtybuffers <= bd->bd_lodirtybuffers)
537 BIT_CLR(BUF_DOMAINS, BD_DOMAIN(bd), &bdlodirty);
538 if (bd->bd_numdirtybuffers <= bd->bd_hidirtybuffers)
539 BIT_CLR(BUF_DOMAINS, BD_DOMAIN(bd), &bdhidirty);
540 mtx_unlock(&bdirtylock);
541 }
542
543 /*
544 * bd_set:
545 *
546 * Set a domain in the appropriate bitsets when dirtybuffers
547 * is incremented.
548 */
549 static void
bd_set(struct bufdomain * bd)550 bd_set(struct bufdomain *bd)
551 {
552
553 mtx_lock(&bdirtylock);
554 if (bd->bd_numdirtybuffers > bd->bd_lodirtybuffers)
555 BIT_SET(BUF_DOMAINS, BD_DOMAIN(bd), &bdlodirty);
556 if (bd->bd_numdirtybuffers > bd->bd_hidirtybuffers)
557 BIT_SET(BUF_DOMAINS, BD_DOMAIN(bd), &bdhidirty);
558 mtx_unlock(&bdirtylock);
559 }
560
561 /*
562 * bdirtysub:
563 *
564 * Decrement the numdirtybuffers count by one and wakeup any
565 * threads blocked in bwillwrite().
566 */
567 static void
bdirtysub(struct buf * bp)568 bdirtysub(struct buf *bp)
569 {
570 struct bufdomain *bd;
571 int num;
572
573 bd = bufdomain(bp);
574 num = atomic_fetchadd_int(&bd->bd_numdirtybuffers, -1);
575 if (num == (bd->bd_lodirtybuffers + bd->bd_hidirtybuffers) / 2)
576 bdirtywakeup();
577 if (num == bd->bd_lodirtybuffers || num == bd->bd_hidirtybuffers)
578 bd_clear(bd);
579 }
580
581 /*
582 * bdirtyadd:
583 *
584 * Increment the numdirtybuffers count by one and wakeup the buf
585 * daemon if needed.
586 */
587 static void
bdirtyadd(struct buf * bp)588 bdirtyadd(struct buf *bp)
589 {
590 struct bufdomain *bd;
591 int num;
592
593 /*
594 * Only do the wakeup once as we cross the boundary. The
595 * buf daemon will keep running until the condition clears.
596 */
597 bd = bufdomain(bp);
598 num = atomic_fetchadd_int(&bd->bd_numdirtybuffers, 1);
599 if (num == (bd->bd_lodirtybuffers + bd->bd_hidirtybuffers) / 2)
600 bd_wakeup();
601 if (num == bd->bd_lodirtybuffers || num == bd->bd_hidirtybuffers)
602 bd_set(bd);
603 }
604
605 /*
606 * bufspace_daemon_wakeup:
607 *
608 * Wakeup the daemons responsible for freeing clean bufs.
609 */
610 static void
bufspace_daemon_wakeup(struct bufdomain * bd)611 bufspace_daemon_wakeup(struct bufdomain *bd)
612 {
613
614 /*
615 * avoid the lock if the daemon is running.
616 */
617 if (atomic_fetchadd_int(&bd->bd_running, 1) == 0) {
618 BD_RUN_LOCK(bd);
619 atomic_store_int(&bd->bd_running, 1);
620 wakeup(&bd->bd_running);
621 BD_RUN_UNLOCK(bd);
622 }
623 }
624
625 /*
626 * bufspace_daemon_wait:
627 *
628 * Sleep until the domain falls below a limit or one second passes.
629 */
630 static void
bufspace_daemon_wait(struct bufdomain * bd)631 bufspace_daemon_wait(struct bufdomain *bd)
632 {
633 /*
634 * Re-check our limits and sleep. bd_running must be
635 * cleared prior to checking the limits to avoid missed
636 * wakeups. The waker will adjust one of bufspace or
637 * freebuffers prior to checking bd_running.
638 */
639 BD_RUN_LOCK(bd);
640 atomic_store_int(&bd->bd_running, 0);
641 if (bd->bd_bufspace < bd->bd_bufspacethresh &&
642 bd->bd_freebuffers > bd->bd_lofreebuffers) {
643 msleep(&bd->bd_running, BD_RUN_LOCKPTR(bd), PRIBIO|PDROP,
644 "-", hz);
645 } else {
646 /* Avoid spurious wakeups while running. */
647 atomic_store_int(&bd->bd_running, 1);
648 BD_RUN_UNLOCK(bd);
649 }
650 }
651
652 /*
653 * bufspace_adjust:
654 *
655 * Adjust the reported bufspace for a KVA managed buffer, possibly
656 * waking any waiters.
657 */
658 static void
bufspace_adjust(struct buf * bp,int bufsize)659 bufspace_adjust(struct buf *bp, int bufsize)
660 {
661 struct bufdomain *bd;
662 long space;
663 int diff;
664
665 KASSERT((bp->b_flags & B_MALLOC) == 0,
666 ("bufspace_adjust: malloc buf %p", bp));
667 bd = bufdomain(bp);
668 diff = bufsize - bp->b_bufsize;
669 if (diff < 0) {
670 atomic_subtract_long(&bd->bd_bufspace, -diff);
671 } else if (diff > 0) {
672 space = atomic_fetchadd_long(&bd->bd_bufspace, diff);
673 /* Wake up the daemon on the transition. */
674 if (space < bd->bd_bufspacethresh &&
675 space + diff >= bd->bd_bufspacethresh)
676 bufspace_daemon_wakeup(bd);
677 }
678 bp->b_bufsize = bufsize;
679 }
680
681 /*
682 * bufspace_reserve:
683 *
684 * Reserve bufspace before calling allocbuf(). metadata has a
685 * different space limit than data.
686 */
687 static int
bufspace_reserve(struct bufdomain * bd,int size,bool metadata)688 bufspace_reserve(struct bufdomain *bd, int size, bool metadata)
689 {
690 long limit, new;
691 long space;
692
693 if (metadata)
694 limit = bd->bd_maxbufspace;
695 else
696 limit = bd->bd_hibufspace;
697 space = atomic_fetchadd_long(&bd->bd_bufspace, size);
698 new = space + size;
699 if (new > limit) {
700 atomic_subtract_long(&bd->bd_bufspace, size);
701 return (ENOSPC);
702 }
703
704 /* Wake up the daemon on the transition. */
705 if (space < bd->bd_bufspacethresh && new >= bd->bd_bufspacethresh)
706 bufspace_daemon_wakeup(bd);
707
708 return (0);
709 }
710
711 /*
712 * bufspace_release:
713 *
714 * Release reserved bufspace after bufspace_adjust() has consumed it.
715 */
716 static void
bufspace_release(struct bufdomain * bd,int size)717 bufspace_release(struct bufdomain *bd, int size)
718 {
719
720 atomic_subtract_long(&bd->bd_bufspace, size);
721 }
722
723 /*
724 * bufspace_wait:
725 *
726 * Wait for bufspace, acting as the buf daemon if a locked vnode is
727 * supplied. bd_wanted must be set prior to polling for space. The
728 * operation must be re-tried on return.
729 */
730 static void
bufspace_wait(struct bufdomain * bd,struct vnode * vp,int gbflags,int slpflag,int slptimeo)731 bufspace_wait(struct bufdomain *bd, struct vnode *vp, int gbflags,
732 int slpflag, int slptimeo)
733 {
734 struct thread *td;
735 int error, fl, norunbuf;
736
737 if ((gbflags & GB_NOWAIT_BD) != 0)
738 return;
739
740 td = curthread;
741 BD_LOCK(bd);
742 while (bd->bd_wanted) {
743 if (vp != NULL && vp->v_type != VCHR &&
744 (td->td_pflags & TDP_BUFNEED) == 0) {
745 BD_UNLOCK(bd);
746 /*
747 * getblk() is called with a vnode locked, and
748 * some majority of the dirty buffers may as
749 * well belong to the vnode. Flushing the
750 * buffers there would make a progress that
751 * cannot be achieved by the buf_daemon, that
752 * cannot lock the vnode.
753 */
754 norunbuf = ~(TDP_BUFNEED | TDP_NORUNNINGBUF) |
755 (td->td_pflags & TDP_NORUNNINGBUF);
756
757 /*
758 * Play bufdaemon. The getnewbuf() function
759 * may be called while the thread owns lock
760 * for another dirty buffer for the same
761 * vnode, which makes it impossible to use
762 * VOP_FSYNC() there, due to the buffer lock
763 * recursion.
764 */
765 td->td_pflags |= TDP_BUFNEED | TDP_NORUNNINGBUF;
766 fl = buf_flush(vp, bd, flushbufqtarget);
767 td->td_pflags &= norunbuf;
768 BD_LOCK(bd);
769 if (fl != 0)
770 continue;
771 if (bd->bd_wanted == 0)
772 break;
773 }
774 error = msleep(&bd->bd_wanted, BD_LOCKPTR(bd),
775 (PRIBIO + 4) | slpflag, "newbuf", slptimeo);
776 if (error != 0)
777 break;
778 }
779 BD_UNLOCK(bd);
780 }
781
782
783 /*
784 * bufspace_daemon:
785 *
786 * buffer space management daemon. Tries to maintain some marginal
787 * amount of free buffer space so that requesting processes neither
788 * block nor work to reclaim buffers.
789 */
790 static void
bufspace_daemon(void * arg)791 bufspace_daemon(void *arg)
792 {
793 struct bufdomain *bd;
794
795 EVENTHANDLER_REGISTER(shutdown_pre_sync, kthread_shutdown, curthread,
796 SHUTDOWN_PRI_LAST + 100);
797
798 bd = arg;
799 for (;;) {
800 kthread_suspend_check();
801
802 /*
803 * Free buffers from the clean queue until we meet our
804 * targets.
805 *
806 * Theory of operation: The buffer cache is most efficient
807 * when some free buffer headers and space are always
808 * available to getnewbuf(). This daemon attempts to prevent
809 * the excessive blocking and synchronization associated
810 * with shortfall. It goes through three phases according
811 * demand:
812 *
813 * 1) The daemon wakes up voluntarily once per-second
814 * during idle periods when the counters are below
815 * the wakeup thresholds (bufspacethresh, lofreebuffers).
816 *
817 * 2) The daemon wakes up as we cross the thresholds
818 * ahead of any potential blocking. This may bounce
819 * slightly according to the rate of consumption and
820 * release.
821 *
822 * 3) The daemon and consumers are starved for working
823 * clean buffers. This is the 'bufspace' sleep below
824 * which will inefficiently trade bufs with bqrelse
825 * until we return to condition 2.
826 */
827 while (bd->bd_bufspace > bd->bd_lobufspace ||
828 bd->bd_freebuffers < bd->bd_hifreebuffers) {
829 if (buf_recycle(bd, false) != 0) {
830 if (bd_flushall(bd))
831 continue;
832 /*
833 * Speedup dirty if we've run out of clean
834 * buffers. This is possible in particular
835 * because softdep may held many bufs locked
836 * pending writes to other bufs which are
837 * marked for delayed write, exhausting
838 * clean space until they are written.
839 */
840 bd_speedup();
841 BD_LOCK(bd);
842 if (bd->bd_wanted) {
843 msleep(&bd->bd_wanted, BD_LOCKPTR(bd),
844 PRIBIO|PDROP, "bufspace", hz/10);
845 } else
846 BD_UNLOCK(bd);
847 }
848 maybe_yield();
849 }
850 bufspace_daemon_wait(bd);
851 }
852 }
853
854 /*
855 * bufmallocadjust:
856 *
857 * Adjust the reported bufspace for a malloc managed buffer, possibly
858 * waking any waiters.
859 */
860 static void
bufmallocadjust(struct buf * bp,int bufsize)861 bufmallocadjust(struct buf *bp, int bufsize)
862 {
863 int diff;
864
865 KASSERT((bp->b_flags & B_MALLOC) != 0,
866 ("bufmallocadjust: non-malloc buf %p", bp));
867 diff = bufsize - bp->b_bufsize;
868 if (diff < 0)
869 atomic_subtract_long(&bufmallocspace, -diff);
870 else
871 atomic_add_long(&bufmallocspace, diff);
872 bp->b_bufsize = bufsize;
873 }
874
875 /*
876 * runningwakeup:
877 *
878 * Wake up processes that are waiting on asynchronous writes to fall
879 * below lorunningspace.
880 */
881 static void
runningwakeup(void)882 runningwakeup(void)
883 {
884
885 mtx_lock(&rbreqlock);
886 if (runningbufreq) {
887 runningbufreq = 0;
888 wakeup(&runningbufreq);
889 }
890 mtx_unlock(&rbreqlock);
891 }
892
893 /*
894 * runningbufwakeup:
895 *
896 * Decrement the outstanding write count according.
897 */
898 void
runningbufwakeup(struct buf * bp)899 runningbufwakeup(struct buf *bp)
900 {
901 long space, bspace;
902
903 bspace = bp->b_runningbufspace;
904 if (bspace == 0)
905 return;
906 space = atomic_fetchadd_long(&runningbufspace, -bspace);
907 KASSERT(space >= bspace, ("runningbufspace underflow %ld %ld",
908 space, bspace));
909 bp->b_runningbufspace = 0;
910 /*
911 * Only acquire the lock and wakeup on the transition from exceeding
912 * the threshold to falling below it.
913 */
914 if (space < lorunningspace)
915 return;
916 if (space - bspace > lorunningspace)
917 return;
918 runningwakeup();
919 }
920
921 /*
922 * waitrunningbufspace()
923 *
924 * runningbufspace is a measure of the amount of I/O currently
925 * running. This routine is used in async-write situations to
926 * prevent creating huge backups of pending writes to a device.
927 * Only asynchronous writes are governed by this function.
928 *
929 * This does NOT turn an async write into a sync write. It waits
930 * for earlier writes to complete and generally returns before the
931 * caller's write has reached the device.
932 */
933 void
waitrunningbufspace(void)934 waitrunningbufspace(void)
935 {
936
937 mtx_lock(&rbreqlock);
938 while (runningbufspace > hirunningspace) {
939 runningbufreq = 1;
940 msleep(&runningbufreq, &rbreqlock, PVM, "wdrain", 0);
941 }
942 mtx_unlock(&rbreqlock);
943 }
944
945
946 /*
947 * vfs_buf_test_cache:
948 *
949 * Called when a buffer is extended. This function clears the B_CACHE
950 * bit if the newly extended portion of the buffer does not contain
951 * valid data.
952 */
953 static __inline void
vfs_buf_test_cache(struct buf * bp,vm_ooffset_t foff,vm_offset_t off,vm_offset_t size,vm_page_t m)954 vfs_buf_test_cache(struct buf *bp, vm_ooffset_t foff, vm_offset_t off,
955 vm_offset_t size, vm_page_t m)
956 {
957
958 VM_OBJECT_ASSERT_LOCKED(m->object);
959 if (bp->b_flags & B_CACHE) {
960 int base = (foff + off) & PAGE_MASK;
961 if (vm_page_is_valid(m, base, size) == 0)
962 bp->b_flags &= ~B_CACHE;
963 }
964 }
965
966 /* Wake up the buffer daemon if necessary */
967 static void
bd_wakeup(void)968 bd_wakeup(void)
969 {
970
971 mtx_lock(&bdlock);
972 if (bd_request == 0) {
973 bd_request = 1;
974 wakeup(&bd_request);
975 }
976 mtx_unlock(&bdlock);
977 }
978
979 /*
980 * Adjust the maxbcachbuf tunable.
981 */
982 static void
maxbcachebuf_adjust(void)983 maxbcachebuf_adjust(void)
984 {
985 int i;
986
987 /*
988 * maxbcachebuf must be a power of 2 >= MAXBSIZE.
989 */
990 i = 2;
991 while (i * 2 <= maxbcachebuf)
992 i *= 2;
993 maxbcachebuf = i;
994 if (maxbcachebuf < MAXBSIZE)
995 maxbcachebuf = MAXBSIZE;
996 if (maxbcachebuf > MAXPHYS)
997 maxbcachebuf = MAXPHYS;
998 if (bootverbose != 0 && maxbcachebuf != MAXBCACHEBUF)
999 printf("maxbcachebuf=%d\n", maxbcachebuf);
1000 }
1001
1002 /*
1003 * bd_speedup - speedup the buffer cache flushing code
1004 */
1005 void
bd_speedup(void)1006 bd_speedup(void)
1007 {
1008 int needwake;
1009
1010 mtx_lock(&bdlock);
1011 needwake = 0;
1012 if (bd_speedupreq == 0 || bd_request == 0)
1013 needwake = 1;
1014 bd_speedupreq = 1;
1015 bd_request = 1;
1016 if (needwake)
1017 wakeup(&bd_request);
1018 mtx_unlock(&bdlock);
1019 }
1020
1021 #ifndef NSWBUF_MIN
1022 #define NSWBUF_MIN 16
1023 #endif
1024
1025 #ifdef __i386__
1026 #define TRANSIENT_DENOM 5
1027 #else
1028 #define TRANSIENT_DENOM 10
1029 #endif
1030
1031 /*
1032 * Calculating buffer cache scaling values and reserve space for buffer
1033 * headers. This is called during low level kernel initialization and
1034 * may be called more then once. We CANNOT write to the memory area
1035 * being reserved at this time.
1036 */
1037 caddr_t
kern_vfs_bio_buffer_alloc(caddr_t v,long physmem_est)1038 kern_vfs_bio_buffer_alloc(caddr_t v, long physmem_est)
1039 {
1040 int tuned_nbuf;
1041 long maxbuf, maxbuf_sz, buf_sz, biotmap_sz;
1042
1043 /*
1044 * physmem_est is in pages. Convert it to kilobytes (assumes
1045 * PAGE_SIZE is >= 1K)
1046 */
1047 physmem_est = physmem_est * (PAGE_SIZE / 1024);
1048
1049 maxbcachebuf_adjust();
1050 /*
1051 * The nominal buffer size (and minimum KVA allocation) is BKVASIZE.
1052 * For the first 64MB of ram nominally allocate sufficient buffers to
1053 * cover 1/4 of our ram. Beyond the first 64MB allocate additional
1054 * buffers to cover 1/10 of our ram over 64MB. When auto-sizing
1055 * the buffer cache we limit the eventual kva reservation to
1056 * maxbcache bytes.
1057 *
1058 * factor represents the 1/4 x ram conversion.
1059 */
1060 if (nbuf == 0) {
1061 int factor = 4 * BKVASIZE / 1024;
1062
1063 nbuf = 50;
1064 if (physmem_est > 4096)
1065 nbuf += min((physmem_est - 4096) / factor,
1066 65536 / factor);
1067 if (physmem_est > 65536)
1068 nbuf += min((physmem_est - 65536) * 2 / (factor * 5),
1069 32 * 1024 * 1024 / (factor * 5));
1070
1071 if (maxbcache && nbuf > maxbcache / BKVASIZE)
1072 nbuf = maxbcache / BKVASIZE;
1073 tuned_nbuf = 1;
1074 } else
1075 tuned_nbuf = 0;
1076
1077 /* XXX Avoid unsigned long overflows later on with maxbufspace. */
1078 maxbuf = (LONG_MAX / 3) / BKVASIZE;
1079 if (nbuf > maxbuf) {
1080 if (!tuned_nbuf)
1081 printf("Warning: nbufs lowered from %d to %ld\n", nbuf,
1082 maxbuf);
1083 nbuf = maxbuf;
1084 }
1085
1086 /*
1087 * Ideal allocation size for the transient bio submap is 10%
1088 * of the maximal space buffer map. This roughly corresponds
1089 * to the amount of the buffer mapped for typical UFS load.
1090 *
1091 * Clip the buffer map to reserve space for the transient
1092 * BIOs, if its extent is bigger than 90% (80% on i386) of the
1093 * maximum buffer map extent on the platform.
1094 *
1095 * The fall-back to the maxbuf in case of maxbcache unset,
1096 * allows to not trim the buffer KVA for the architectures
1097 * with ample KVA space.
1098 */
1099 if (bio_transient_maxcnt == 0 && unmapped_buf_allowed) {
1100 maxbuf_sz = maxbcache != 0 ? maxbcache : maxbuf * BKVASIZE;
1101 buf_sz = (long)nbuf * BKVASIZE;
1102 if (buf_sz < maxbuf_sz / TRANSIENT_DENOM *
1103 (TRANSIENT_DENOM - 1)) {
1104 /*
1105 * There is more KVA than memory. Do not
1106 * adjust buffer map size, and assign the rest
1107 * of maxbuf to transient map.
1108 */
1109 biotmap_sz = maxbuf_sz - buf_sz;
1110 } else {
1111 /*
1112 * Buffer map spans all KVA we could afford on
1113 * this platform. Give 10% (20% on i386) of
1114 * the buffer map to the transient bio map.
1115 */
1116 biotmap_sz = buf_sz / TRANSIENT_DENOM;
1117 buf_sz -= biotmap_sz;
1118 }
1119 if (biotmap_sz / INT_MAX > MAXPHYS)
1120 bio_transient_maxcnt = INT_MAX;
1121 else
1122 bio_transient_maxcnt = biotmap_sz / MAXPHYS;
1123 /*
1124 * Artificially limit to 1024 simultaneous in-flight I/Os
1125 * using the transient mapping.
1126 */
1127 if (bio_transient_maxcnt > 1024)
1128 bio_transient_maxcnt = 1024;
1129 if (tuned_nbuf)
1130 nbuf = buf_sz / BKVASIZE;
1131 }
1132
1133 /*
1134 * swbufs are used as temporary holders for I/O, such as paging I/O.
1135 * We have no less then 16 and no more then 256.
1136 */
1137 nswbuf = min(nbuf / 4, 256);
1138 TUNABLE_INT_FETCH("kern.nswbuf", &nswbuf);
1139 if (nswbuf < NSWBUF_MIN)
1140 nswbuf = NSWBUF_MIN;
1141
1142 /*
1143 * Reserve space for the buffer cache buffers
1144 */
1145 swbuf = (void *)v;
1146 v = (caddr_t)(swbuf + nswbuf);
1147 buf = (void *)v;
1148 v = (caddr_t)(buf + nbuf);
1149
1150 return(v);
1151 }
1152
1153 /* Initialize the buffer subsystem. Called before use of any buffers. */
1154 void
bufinit(void)1155 bufinit(void)
1156 {
1157 struct buf *bp;
1158 int i;
1159
1160 KASSERT(maxbcachebuf >= MAXBSIZE,
1161 ("maxbcachebuf (%d) must be >= MAXBSIZE (%d)\n", maxbcachebuf,
1162 MAXBSIZE));
1163 bq_init(&bqempty, QUEUE_EMPTY, -1, "bufq empty lock");
1164 mtx_init(&rbreqlock, "runningbufspace lock", NULL, MTX_DEF);
1165 mtx_init(&bdlock, "buffer daemon lock", NULL, MTX_DEF);
1166 mtx_init(&bdirtylock, "dirty buf lock", NULL, MTX_DEF);
1167
1168 unmapped_buf = (caddr_t)kva_alloc(MAXPHYS);
1169
1170 /* finally, initialize each buffer header and stick on empty q */
1171 for (i = 0; i < nbuf; i++) {
1172 bp = &buf[i];
1173 bzero(bp, sizeof *bp);
1174 bp->b_flags = B_INVAL;
1175 bp->b_rcred = NOCRED;
1176 bp->b_wcred = NOCRED;
1177 bp->b_qindex = QUEUE_NONE;
1178 bp->b_domain = -1;
1179 bp->b_subqueue = mp_maxid + 1;
1180 bp->b_xflags = 0;
1181 bp->b_data = bp->b_kvabase = unmapped_buf;
1182 LIST_INIT(&bp->b_dep);
1183 BUF_LOCKINIT(bp);
1184 bq_insert(&bqempty, bp, false);
1185 }
1186
1187 /*
1188 * maxbufspace is the absolute maximum amount of buffer space we are
1189 * allowed to reserve in KVM and in real terms. The absolute maximum
1190 * is nominally used by metadata. hibufspace is the nominal maximum
1191 * used by most other requests. The differential is required to
1192 * ensure that metadata deadlocks don't occur.
1193 *
1194 * maxbufspace is based on BKVASIZE. Allocating buffers larger then
1195 * this may result in KVM fragmentation which is not handled optimally
1196 * by the system. XXX This is less true with vmem. We could use
1197 * PAGE_SIZE.
1198 */
1199 maxbufspace = (long)nbuf * BKVASIZE;
1200 hibufspace = lmax(3 * maxbufspace / 4, maxbufspace - maxbcachebuf * 10);
1201 lobufspace = (hibufspace / 20) * 19; /* 95% */
1202 bufspacethresh = lobufspace + (hibufspace - lobufspace) / 2;
1203
1204 /*
1205 * Note: The 16 MiB upper limit for hirunningspace was chosen
1206 * arbitrarily and may need further tuning. It corresponds to
1207 * 128 outstanding write IO requests (if IO size is 128 KiB),
1208 * which fits with many RAID controllers' tagged queuing limits.
1209 * The lower 1 MiB limit is the historical upper limit for
1210 * hirunningspace.
1211 */
1212 hirunningspace = lmax(lmin(roundup(hibufspace / 64, maxbcachebuf),
1213 16 * 1024 * 1024), 1024 * 1024);
1214 lorunningspace = roundup((hirunningspace * 2) / 3, maxbcachebuf);
1215
1216 /*
1217 * Limit the amount of malloc memory since it is wired permanently into
1218 * the kernel space. Even though this is accounted for in the buffer
1219 * allocation, we don't want the malloced region to grow uncontrolled.
1220 * The malloc scheme improves memory utilization significantly on
1221 * average (small) directories.
1222 */
1223 maxbufmallocspace = hibufspace / 20;
1224
1225 /*
1226 * Reduce the chance of a deadlock occurring by limiting the number
1227 * of delayed-write dirty buffers we allow to stack up.
1228 */
1229 hidirtybuffers = nbuf / 4 + 20;
1230 dirtybufthresh = hidirtybuffers * 9 / 10;
1231 /*
1232 * To support extreme low-memory systems, make sure hidirtybuffers
1233 * cannot eat up all available buffer space. This occurs when our
1234 * minimum cannot be met. We try to size hidirtybuffers to 3/4 our
1235 * buffer space assuming BKVASIZE'd buffers.
1236 */
1237 while ((long)hidirtybuffers * BKVASIZE > 3 * hibufspace / 4) {
1238 hidirtybuffers >>= 1;
1239 }
1240 lodirtybuffers = hidirtybuffers / 2;
1241
1242 /*
1243 * lofreebuffers should be sufficient to avoid stalling waiting on
1244 * buf headers under heavy utilization. The bufs in per-cpu caches
1245 * are counted as free but will be unavailable to threads executing
1246 * on other cpus.
1247 *
1248 * hifreebuffers is the free target for the bufspace daemon. This
1249 * should be set appropriately to limit work per-iteration.
1250 */
1251 lofreebuffers = MIN((nbuf / 25) + (20 * mp_ncpus), 128 * mp_ncpus);
1252 hifreebuffers = (3 * lofreebuffers) / 2;
1253 numfreebuffers = nbuf;
1254
1255 /* Setup the kva and free list allocators. */
1256 vmem_set_reclaim(buffer_arena, bufkva_reclaim);
1257 buf_zone = uma_zcache_create("buf free cache", sizeof(struct buf),
1258 NULL, NULL, NULL, NULL, buf_import, buf_release, NULL, 0);
1259
1260 /*
1261 * Size the clean queue according to the amount of buffer space.
1262 * One queue per-256mb up to the max. More queues gives better
1263 * concurrency but less accurate LRU.
1264 */
1265 buf_domains = MIN(howmany(maxbufspace, 256*1024*1024), BUF_DOMAINS);
1266 for (i = 0 ; i < buf_domains; i++) {
1267 struct bufdomain *bd;
1268
1269 bd = &bdomain[i];
1270 bd_init(bd);
1271 bd->bd_freebuffers = nbuf / buf_domains;
1272 bd->bd_hifreebuffers = hifreebuffers / buf_domains;
1273 bd->bd_lofreebuffers = lofreebuffers / buf_domains;
1274 bd->bd_bufspace = 0;
1275 bd->bd_maxbufspace = maxbufspace / buf_domains;
1276 bd->bd_hibufspace = hibufspace / buf_domains;
1277 bd->bd_lobufspace = lobufspace / buf_domains;
1278 bd->bd_bufspacethresh = bufspacethresh / buf_domains;
1279 bd->bd_numdirtybuffers = 0;
1280 bd->bd_hidirtybuffers = hidirtybuffers / buf_domains;
1281 bd->bd_lodirtybuffers = lodirtybuffers / buf_domains;
1282 bd->bd_dirtybufthresh = dirtybufthresh / buf_domains;
1283 /* Don't allow more than 2% of bufs in the per-cpu caches. */
1284 bd->bd_lim = nbuf / buf_domains / 50 / mp_ncpus;
1285 }
1286 getnewbufcalls = counter_u64_alloc(M_WAITOK);
1287 getnewbufrestarts = counter_u64_alloc(M_WAITOK);
1288 mappingrestarts = counter_u64_alloc(M_WAITOK);
1289 numbufallocfails = counter_u64_alloc(M_WAITOK);
1290 notbufdflushes = counter_u64_alloc(M_WAITOK);
1291 buffreekvacnt = counter_u64_alloc(M_WAITOK);
1292 bufdefragcnt = counter_u64_alloc(M_WAITOK);
1293 bufkvaspace = counter_u64_alloc(M_WAITOK);
1294 }
1295
1296 #ifdef INVARIANTS
1297 static inline void
vfs_buf_check_mapped(struct buf * bp)1298 vfs_buf_check_mapped(struct buf *bp)
1299 {
1300
1301 KASSERT(bp->b_kvabase != unmapped_buf,
1302 ("mapped buf: b_kvabase was not updated %p", bp));
1303 KASSERT(bp->b_data != unmapped_buf,
1304 ("mapped buf: b_data was not updated %p", bp));
1305 KASSERT(bp->b_data < unmapped_buf || bp->b_data >= unmapped_buf +
1306 MAXPHYS, ("b_data + b_offset unmapped %p", bp));
1307 }
1308
1309 static inline void
vfs_buf_check_unmapped(struct buf * bp)1310 vfs_buf_check_unmapped(struct buf *bp)
1311 {
1312
1313 KASSERT(bp->b_data == unmapped_buf,
1314 ("unmapped buf: corrupted b_data %p", bp));
1315 }
1316
1317 #define BUF_CHECK_MAPPED(bp) vfs_buf_check_mapped(bp)
1318 #define BUF_CHECK_UNMAPPED(bp) vfs_buf_check_unmapped(bp)
1319 #else
1320 #define BUF_CHECK_MAPPED(bp) do {} while (0)
1321 #define BUF_CHECK_UNMAPPED(bp) do {} while (0)
1322 #endif
1323
1324 static int
isbufbusy(struct buf * bp)1325 isbufbusy(struct buf *bp)
1326 {
1327 if (((bp->b_flags & B_INVAL) == 0 && BUF_ISLOCKED(bp)) ||
1328 ((bp->b_flags & (B_DELWRI | B_INVAL)) == B_DELWRI))
1329 return (1);
1330 return (0);
1331 }
1332
1333 /*
1334 * Shutdown the system cleanly to prepare for reboot, halt, or power off.
1335 */
1336 void
bufshutdown(int show_busybufs)1337 bufshutdown(int show_busybufs)
1338 {
1339 static int first_buf_printf = 1;
1340 struct buf *bp;
1341 int iter, nbusy, pbusy;
1342 #ifndef PREEMPTION
1343 int subiter;
1344 #endif
1345
1346 /*
1347 * Sync filesystems for shutdown
1348 */
1349 wdog_kern_pat(WD_LASTVAL);
1350 sys_sync(curthread, NULL);
1351
1352 /*
1353 * With soft updates, some buffers that are
1354 * written will be remarked as dirty until other
1355 * buffers are written.
1356 */
1357 for (iter = pbusy = 0; iter < 20; iter++) {
1358 nbusy = 0;
1359 for (bp = &buf[nbuf]; --bp >= buf; )
1360 if (isbufbusy(bp))
1361 nbusy++;
1362 if (nbusy == 0) {
1363 if (first_buf_printf)
1364 printf("All buffers synced.");
1365 break;
1366 }
1367 if (first_buf_printf) {
1368 printf("Syncing disks, buffers remaining... ");
1369 first_buf_printf = 0;
1370 }
1371 printf("%d ", nbusy);
1372 if (nbusy < pbusy)
1373 iter = 0;
1374 pbusy = nbusy;
1375
1376 wdog_kern_pat(WD_LASTVAL);
1377 sys_sync(curthread, NULL);
1378
1379 #ifdef PREEMPTION
1380 /*
1381 * Spin for a while to allow interrupt threads to run.
1382 */
1383 DELAY(50000 * iter);
1384 #else
1385 /*
1386 * Context switch several times to allow interrupt
1387 * threads to run.
1388 */
1389 for (subiter = 0; subiter < 50 * iter; subiter++) {
1390 thread_lock(curthread);
1391 mi_switch(SW_VOL, NULL);
1392 thread_unlock(curthread);
1393 DELAY(1000);
1394 }
1395 #endif
1396 }
1397 printf("\n");
1398 /*
1399 * Count only busy local buffers to prevent forcing
1400 * a fsck if we're just a client of a wedged NFS server
1401 */
1402 nbusy = 0;
1403 for (bp = &buf[nbuf]; --bp >= buf; ) {
1404 if (isbufbusy(bp)) {
1405 #if 0
1406 /* XXX: This is bogus. We should probably have a BO_REMOTE flag instead */
1407 if (bp->b_dev == NULL) {
1408 TAILQ_REMOVE(&mountlist,
1409 bp->b_vp->v_mount, mnt_list);
1410 continue;
1411 }
1412 #endif
1413 nbusy++;
1414 if (show_busybufs > 0) {
1415 printf(
1416 "%d: buf:%p, vnode:%p, flags:%0x, blkno:%jd, lblkno:%jd, buflock:",
1417 nbusy, bp, bp->b_vp, bp->b_flags,
1418 (intmax_t)bp->b_blkno,
1419 (intmax_t)bp->b_lblkno);
1420 BUF_LOCKPRINTINFO(bp);
1421 if (show_busybufs > 1)
1422 vn_printf(bp->b_vp,
1423 "vnode content: ");
1424 }
1425 }
1426 }
1427 if (nbusy) {
1428 /*
1429 * Failed to sync all blocks. Indicate this and don't
1430 * unmount filesystems (thus forcing an fsck on reboot).
1431 */
1432 printf("Giving up on %d buffers\n", nbusy);
1433 DELAY(5000000); /* 5 seconds */
1434 } else {
1435 if (!first_buf_printf)
1436 printf("Final sync complete\n");
1437 /*
1438 * Unmount filesystems
1439 */
1440 if (panicstr == NULL)
1441 vfs_unmountall();
1442 }
1443 swapoff_all();
1444 DELAY(100000); /* wait for console output to finish */
1445 }
1446
1447 static void
bpmap_qenter(struct buf * bp)1448 bpmap_qenter(struct buf *bp)
1449 {
1450
1451 BUF_CHECK_MAPPED(bp);
1452
1453 /*
1454 * bp->b_data is relative to bp->b_offset, but
1455 * bp->b_offset may be offset into the first page.
1456 */
1457 bp->b_data = (caddr_t)trunc_page((vm_offset_t)bp->b_data);
1458 pmap_qenter((vm_offset_t)bp->b_data, bp->b_pages, bp->b_npages);
1459 bp->b_data = (caddr_t)((vm_offset_t)bp->b_data |
1460 (vm_offset_t)(bp->b_offset & PAGE_MASK));
1461 }
1462
1463 static inline struct bufdomain *
bufdomain(struct buf * bp)1464 bufdomain(struct buf *bp)
1465 {
1466
1467 return (&bdomain[bp->b_domain]);
1468 }
1469
1470 static struct bufqueue *
bufqueue(struct buf * bp)1471 bufqueue(struct buf *bp)
1472 {
1473
1474 switch (bp->b_qindex) {
1475 case QUEUE_NONE:
1476 /* FALLTHROUGH */
1477 case QUEUE_SENTINEL:
1478 return (NULL);
1479 case QUEUE_EMPTY:
1480 return (&bqempty);
1481 case QUEUE_DIRTY:
1482 return (&bufdomain(bp)->bd_dirtyq);
1483 case QUEUE_CLEAN:
1484 return (&bufdomain(bp)->bd_subq[bp->b_subqueue]);
1485 default:
1486 break;
1487 }
1488 panic("bufqueue(%p): Unhandled type %d\n", bp, bp->b_qindex);
1489 }
1490
1491 /*
1492 * Return the locked bufqueue that bp is a member of.
1493 */
1494 static struct bufqueue *
bufqueue_acquire(struct buf * bp)1495 bufqueue_acquire(struct buf *bp)
1496 {
1497 struct bufqueue *bq, *nbq;
1498
1499 /*
1500 * bp can be pushed from a per-cpu queue to the
1501 * cleanq while we're waiting on the lock. Retry
1502 * if the queues don't match.
1503 */
1504 bq = bufqueue(bp);
1505 BQ_LOCK(bq);
1506 for (;;) {
1507 nbq = bufqueue(bp);
1508 if (bq == nbq)
1509 break;
1510 BQ_UNLOCK(bq);
1511 BQ_LOCK(nbq);
1512 bq = nbq;
1513 }
1514 return (bq);
1515 }
1516
1517 /*
1518 * binsfree:
1519 *
1520 * Insert the buffer into the appropriate free list. Requires a
1521 * locked buffer on entry and buffer is unlocked before return.
1522 */
1523 static void
binsfree(struct buf * bp,int qindex)1524 binsfree(struct buf *bp, int qindex)
1525 {
1526 struct bufdomain *bd;
1527 struct bufqueue *bq;
1528
1529 KASSERT(qindex == QUEUE_CLEAN || qindex == QUEUE_DIRTY,
1530 ("binsfree: Invalid qindex %d", qindex));
1531 BUF_ASSERT_XLOCKED(bp);
1532
1533 /*
1534 * Handle delayed bremfree() processing.
1535 */
1536 if (bp->b_flags & B_REMFREE) {
1537 if (bp->b_qindex == qindex) {
1538 bp->b_flags |= B_REUSE;
1539 bp->b_flags &= ~B_REMFREE;
1540 BUF_UNLOCK(bp);
1541 return;
1542 }
1543 bq = bufqueue_acquire(bp);
1544 bq_remove(bq, bp);
1545 BQ_UNLOCK(bq);
1546 }
1547 bd = bufdomain(bp);
1548 if (qindex == QUEUE_CLEAN) {
1549 if (bd->bd_lim != 0)
1550 bq = &bd->bd_subq[PCPU_GET(cpuid)];
1551 else
1552 bq = bd->bd_cleanq;
1553 } else
1554 bq = &bd->bd_dirtyq;
1555 bq_insert(bq, bp, true);
1556 }
1557
1558 /*
1559 * buf_free:
1560 *
1561 * Free a buffer to the buf zone once it no longer has valid contents.
1562 */
1563 static void
buf_free(struct buf * bp)1564 buf_free(struct buf *bp)
1565 {
1566
1567 if (bp->b_flags & B_REMFREE)
1568 bremfreef(bp);
1569 if (bp->b_vflags & BV_BKGRDINPROG)
1570 panic("losing buffer 1");
1571 if (bp->b_rcred != NOCRED) {
1572 crfree(bp->b_rcred);
1573 bp->b_rcred = NOCRED;
1574 }
1575 if (bp->b_wcred != NOCRED) {
1576 crfree(bp->b_wcred);
1577 bp->b_wcred = NOCRED;
1578 }
1579 if (!LIST_EMPTY(&bp->b_dep))
1580 buf_deallocate(bp);
1581 bufkva_free(bp);
1582 atomic_add_int(&bufdomain(bp)->bd_freebuffers, 1);
1583 BUF_UNLOCK(bp);
1584 uma_zfree(buf_zone, bp);
1585 }
1586
1587 /*
1588 * buf_import:
1589 *
1590 * Import bufs into the uma cache from the buf list. The system still
1591 * expects a static array of bufs and much of the synchronization
1592 * around bufs assumes type stable storage. As a result, UMA is used
1593 * only as a per-cpu cache of bufs still maintained on a global list.
1594 */
1595 static int
buf_import(void * arg,void ** store,int cnt,int domain,int flags)1596 buf_import(void *arg, void **store, int cnt, int domain, int flags)
1597 {
1598 struct buf *bp;
1599 int i;
1600
1601 BQ_LOCK(&bqempty);
1602 for (i = 0; i < cnt; i++) {
1603 bp = TAILQ_FIRST(&bqempty.bq_queue);
1604 if (bp == NULL)
1605 break;
1606 bq_remove(&bqempty, bp);
1607 store[i] = bp;
1608 }
1609 BQ_UNLOCK(&bqempty);
1610
1611 return (i);
1612 }
1613
1614 /*
1615 * buf_release:
1616 *
1617 * Release bufs from the uma cache back to the buffer queues.
1618 */
1619 static void
buf_release(void * arg,void ** store,int cnt)1620 buf_release(void *arg, void **store, int cnt)
1621 {
1622 struct bufqueue *bq;
1623 struct buf *bp;
1624 int i;
1625
1626 bq = &bqempty;
1627 BQ_LOCK(bq);
1628 for (i = 0; i < cnt; i++) {
1629 bp = store[i];
1630 /* Inline bq_insert() to batch locking. */
1631 TAILQ_INSERT_TAIL(&bq->bq_queue, bp, b_freelist);
1632 bp->b_flags &= ~(B_AGE | B_REUSE);
1633 bq->bq_len++;
1634 bp->b_qindex = bq->bq_index;
1635 }
1636 BQ_UNLOCK(bq);
1637 }
1638
1639 /*
1640 * buf_alloc:
1641 *
1642 * Allocate an empty buffer header.
1643 */
1644 static struct buf *
buf_alloc(struct bufdomain * bd)1645 buf_alloc(struct bufdomain *bd)
1646 {
1647 struct buf *bp;
1648 int freebufs;
1649
1650 /*
1651 * We can only run out of bufs in the buf zone if the average buf
1652 * is less than BKVASIZE. In this case the actual wait/block will
1653 * come from buf_reycle() failing to flush one of these small bufs.
1654 */
1655 bp = NULL;
1656 freebufs = atomic_fetchadd_int(&bd->bd_freebuffers, -1);
1657 if (freebufs > 0)
1658 bp = uma_zalloc(buf_zone, M_NOWAIT);
1659 if (bp == NULL) {
1660 atomic_add_int(&bd->bd_freebuffers, 1);
1661 bufspace_daemon_wakeup(bd);
1662 counter_u64_add(numbufallocfails, 1);
1663 return (NULL);
1664 }
1665 /*
1666 * Wake-up the bufspace daemon on transition below threshold.
1667 */
1668 if (freebufs == bd->bd_lofreebuffers)
1669 bufspace_daemon_wakeup(bd);
1670
1671 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL) != 0)
1672 panic("getnewbuf_empty: Locked buf %p on free queue.", bp);
1673
1674 KASSERT(bp->b_vp == NULL,
1675 ("bp: %p still has vnode %p.", bp, bp->b_vp));
1676 KASSERT((bp->b_flags & (B_DELWRI | B_NOREUSE)) == 0,
1677 ("invalid buffer %p flags %#x", bp, bp->b_flags));
1678 KASSERT((bp->b_xflags & (BX_VNCLEAN|BX_VNDIRTY)) == 0,
1679 ("bp: %p still on a buffer list. xflags %X", bp, bp->b_xflags));
1680 KASSERT(bp->b_npages == 0,
1681 ("bp: %p still has %d vm pages\n", bp, bp->b_npages));
1682 KASSERT(bp->b_kvasize == 0, ("bp: %p still has kva\n", bp));
1683 KASSERT(bp->b_bufsize == 0, ("bp: %p still has bufspace\n", bp));
1684
1685 bp->b_domain = BD_DOMAIN(bd);
1686 bp->b_flags = 0;
1687 bp->b_ioflags = 0;
1688 bp->b_xflags = 0;
1689 bp->b_vflags = 0;
1690 bp->b_vp = NULL;
1691 bp->b_blkno = bp->b_lblkno = 0;
1692 bp->b_offset = NOOFFSET;
1693 bp->b_iodone = 0;
1694 bp->b_error = 0;
1695 bp->b_resid = 0;
1696 bp->b_bcount = 0;
1697 bp->b_npages = 0;
1698 bp->b_dirtyoff = bp->b_dirtyend = 0;
1699 bp->b_bufobj = NULL;
1700 bp->b_data = bp->b_kvabase = unmapped_buf;
1701 bp->b_fsprivate1 = NULL;
1702 bp->b_fsprivate2 = NULL;
1703 bp->b_fsprivate3 = NULL;
1704 LIST_INIT(&bp->b_dep);
1705
1706 return (bp);
1707 }
1708
1709 /*
1710 * buf_recycle:
1711 *
1712 * Free a buffer from the given bufqueue. kva controls whether the
1713 * freed buf must own some kva resources. This is used for
1714 * defragmenting.
1715 */
1716 static int
buf_recycle(struct bufdomain * bd,bool kva)1717 buf_recycle(struct bufdomain *bd, bool kva)
1718 {
1719 struct bufqueue *bq;
1720 struct buf *bp, *nbp;
1721
1722 if (kva)
1723 counter_u64_add(bufdefragcnt, 1);
1724 nbp = NULL;
1725 bq = bd->bd_cleanq;
1726 BQ_LOCK(bq);
1727 KASSERT(BQ_LOCKPTR(bq) == BD_LOCKPTR(bd),
1728 ("buf_recycle: Locks don't match"));
1729 nbp = TAILQ_FIRST(&bq->bq_queue);
1730
1731 /*
1732 * Run scan, possibly freeing data and/or kva mappings on the fly
1733 * depending.
1734 */
1735 while ((bp = nbp) != NULL) {
1736 /*
1737 * Calculate next bp (we can only use it if we do not
1738 * release the bqlock).
1739 */
1740 nbp = TAILQ_NEXT(bp, b_freelist);
1741
1742 /*
1743 * If we are defragging then we need a buffer with
1744 * some kva to reclaim.
1745 */
1746 if (kva && bp->b_kvasize == 0)
1747 continue;
1748
1749 if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL) != 0)
1750 continue;
1751
1752 /*
1753 * Implement a second chance algorithm for frequently
1754 * accessed buffers.
1755 */
1756 if ((bp->b_flags & B_REUSE) != 0) {
1757 TAILQ_REMOVE(&bq->bq_queue, bp, b_freelist);
1758 TAILQ_INSERT_TAIL(&bq->bq_queue, bp, b_freelist);
1759 bp->b_flags &= ~B_REUSE;
1760 BUF_UNLOCK(bp);
1761 continue;
1762 }
1763
1764 /*
1765 * Skip buffers with background writes in progress.
1766 */
1767 if ((bp->b_vflags & BV_BKGRDINPROG) != 0) {
1768 BUF_UNLOCK(bp);
1769 continue;
1770 }
1771
1772 KASSERT(bp->b_qindex == QUEUE_CLEAN,
1773 ("buf_recycle: inconsistent queue %d bp %p",
1774 bp->b_qindex, bp));
1775 KASSERT(bp->b_domain == BD_DOMAIN(bd),
1776 ("getnewbuf: queue domain %d doesn't match request %d",
1777 bp->b_domain, (int)BD_DOMAIN(bd)));
1778 /*
1779 * NOTE: nbp is now entirely invalid. We can only restart
1780 * the scan from this point on.
1781 */
1782 bq_remove(bq, bp);
1783 BQ_UNLOCK(bq);
1784
1785 /*
1786 * Requeue the background write buffer with error and
1787 * restart the scan.
1788 */
1789 if ((bp->b_vflags & BV_BKGRDERR) != 0) {
1790 bqrelse(bp);
1791 BQ_LOCK(bq);
1792 nbp = TAILQ_FIRST(&bq->bq_queue);
1793 continue;
1794 }
1795 bp->b_flags |= B_INVAL;
1796 brelse(bp);
1797 return (0);
1798 }
1799 bd->bd_wanted = 1;
1800 BQ_UNLOCK(bq);
1801
1802 return (ENOBUFS);
1803 }
1804
1805 /*
1806 * bremfree:
1807 *
1808 * Mark the buffer for removal from the appropriate free list.
1809 *
1810 */
1811 void
bremfree(struct buf * bp)1812 bremfree(struct buf *bp)
1813 {
1814
1815 CTR3(KTR_BUF, "bremfree(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
1816 KASSERT((bp->b_flags & B_REMFREE) == 0,
1817 ("bremfree: buffer %p already marked for delayed removal.", bp));
1818 KASSERT(bp->b_qindex != QUEUE_NONE,
1819 ("bremfree: buffer %p not on a queue.", bp));
1820 BUF_ASSERT_XLOCKED(bp);
1821
1822 bp->b_flags |= B_REMFREE;
1823 }
1824
1825 /*
1826 * bremfreef:
1827 *
1828 * Force an immediate removal from a free list. Used only in nfs when
1829 * it abuses the b_freelist pointer.
1830 */
1831 void
bremfreef(struct buf * bp)1832 bremfreef(struct buf *bp)
1833 {
1834 struct bufqueue *bq;
1835
1836 bq = bufqueue_acquire(bp);
1837 bq_remove(bq, bp);
1838 BQ_UNLOCK(bq);
1839 }
1840
1841 static void
bq_init(struct bufqueue * bq,int qindex,int subqueue,const char * lockname)1842 bq_init(struct bufqueue *bq, int qindex, int subqueue, const char *lockname)
1843 {
1844
1845 mtx_init(&bq->bq_lock, lockname, NULL, MTX_DEF);
1846 TAILQ_INIT(&bq->bq_queue);
1847 bq->bq_len = 0;
1848 bq->bq_index = qindex;
1849 bq->bq_subqueue = subqueue;
1850 }
1851
1852 static void
bd_init(struct bufdomain * bd)1853 bd_init(struct bufdomain *bd)
1854 {
1855 int i;
1856
1857 bd->bd_cleanq = &bd->bd_subq[mp_maxid + 1];
1858 bq_init(bd->bd_cleanq, QUEUE_CLEAN, mp_maxid + 1, "bufq clean lock");
1859 bq_init(&bd->bd_dirtyq, QUEUE_DIRTY, -1, "bufq dirty lock");
1860 for (i = 0; i <= mp_maxid; i++)
1861 bq_init(&bd->bd_subq[i], QUEUE_CLEAN, i,
1862 "bufq clean subqueue lock");
1863 mtx_init(&bd->bd_run_lock, "bufspace daemon run lock", NULL, MTX_DEF);
1864 }
1865
1866 /*
1867 * bq_remove:
1868 *
1869 * Removes a buffer from the free list, must be called with the
1870 * correct qlock held.
1871 */
1872 static void
bq_remove(struct bufqueue * bq,struct buf * bp)1873 bq_remove(struct bufqueue *bq, struct buf *bp)
1874 {
1875
1876 CTR3(KTR_BUF, "bq_remove(%p) vp %p flags %X",
1877 bp, bp->b_vp, bp->b_flags);
1878 KASSERT(bp->b_qindex != QUEUE_NONE,
1879 ("bq_remove: buffer %p not on a queue.", bp));
1880 KASSERT(bufqueue(bp) == bq,
1881 ("bq_remove: Remove buffer %p from wrong queue.", bp));
1882
1883 BQ_ASSERT_LOCKED(bq);
1884 if (bp->b_qindex != QUEUE_EMPTY) {
1885 BUF_ASSERT_XLOCKED(bp);
1886 }
1887 KASSERT(bq->bq_len >= 1,
1888 ("queue %d underflow", bp->b_qindex));
1889 TAILQ_REMOVE(&bq->bq_queue, bp, b_freelist);
1890 bq->bq_len--;
1891 bp->b_qindex = QUEUE_NONE;
1892 bp->b_flags &= ~(B_REMFREE | B_REUSE);
1893 }
1894
1895 static void
bd_flush(struct bufdomain * bd,struct bufqueue * bq)1896 bd_flush(struct bufdomain *bd, struct bufqueue *bq)
1897 {
1898 struct buf *bp;
1899
1900 BQ_ASSERT_LOCKED(bq);
1901 if (bq != bd->bd_cleanq) {
1902 BD_LOCK(bd);
1903 while ((bp = TAILQ_FIRST(&bq->bq_queue)) != NULL) {
1904 TAILQ_REMOVE(&bq->bq_queue, bp, b_freelist);
1905 TAILQ_INSERT_TAIL(&bd->bd_cleanq->bq_queue, bp,
1906 b_freelist);
1907 bp->b_subqueue = bd->bd_cleanq->bq_subqueue;
1908 }
1909 bd->bd_cleanq->bq_len += bq->bq_len;
1910 bq->bq_len = 0;
1911 }
1912 if (bd->bd_wanted) {
1913 bd->bd_wanted = 0;
1914 wakeup(&bd->bd_wanted);
1915 }
1916 if (bq != bd->bd_cleanq)
1917 BD_UNLOCK(bd);
1918 }
1919
1920 static int
bd_flushall(struct bufdomain * bd)1921 bd_flushall(struct bufdomain *bd)
1922 {
1923 struct bufqueue *bq;
1924 int flushed;
1925 int i;
1926
1927 if (bd->bd_lim == 0)
1928 return (0);
1929 flushed = 0;
1930 for (i = 0; i <= mp_maxid; i++) {
1931 bq = &bd->bd_subq[i];
1932 if (bq->bq_len == 0)
1933 continue;
1934 BQ_LOCK(bq);
1935 bd_flush(bd, bq);
1936 BQ_UNLOCK(bq);
1937 flushed++;
1938 }
1939
1940 return (flushed);
1941 }
1942
1943 static void
bq_insert(struct bufqueue * bq,struct buf * bp,bool unlock)1944 bq_insert(struct bufqueue *bq, struct buf *bp, bool unlock)
1945 {
1946 struct bufdomain *bd;
1947
1948 if (bp->b_qindex != QUEUE_NONE)
1949 panic("bq_insert: free buffer %p onto another queue?", bp);
1950
1951 bd = bufdomain(bp);
1952 if (bp->b_flags & B_AGE) {
1953 /* Place this buf directly on the real queue. */
1954 if (bq->bq_index == QUEUE_CLEAN)
1955 bq = bd->bd_cleanq;
1956 BQ_LOCK(bq);
1957 TAILQ_INSERT_HEAD(&bq->bq_queue, bp, b_freelist);
1958 } else {
1959 BQ_LOCK(bq);
1960 TAILQ_INSERT_TAIL(&bq->bq_queue, bp, b_freelist);
1961 }
1962 bp->b_flags &= ~(B_AGE | B_REUSE);
1963 bq->bq_len++;
1964 bp->b_qindex = bq->bq_index;
1965 bp->b_subqueue = bq->bq_subqueue;
1966
1967 /*
1968 * Unlock before we notify so that we don't wakeup a waiter that
1969 * fails a trylock on the buf and sleeps again.
1970 */
1971 if (unlock)
1972 BUF_UNLOCK(bp);
1973
1974 if (bp->b_qindex == QUEUE_CLEAN) {
1975 /*
1976 * Flush the per-cpu queue and notify any waiters.
1977 */
1978 if (bd->bd_wanted || (bq != bd->bd_cleanq &&
1979 bq->bq_len >= bd->bd_lim))
1980 bd_flush(bd, bq);
1981 }
1982 BQ_UNLOCK(bq);
1983 }
1984
1985 /*
1986 * bufkva_free:
1987 *
1988 * Free the kva allocation for a buffer.
1989 *
1990 */
1991 static void
bufkva_free(struct buf * bp)1992 bufkva_free(struct buf *bp)
1993 {
1994
1995 #ifdef INVARIANTS
1996 if (bp->b_kvasize == 0) {
1997 KASSERT(bp->b_kvabase == unmapped_buf &&
1998 bp->b_data == unmapped_buf,
1999 ("Leaked KVA space on %p", bp));
2000 } else if (buf_mapped(bp))
2001 BUF_CHECK_MAPPED(bp);
2002 else
2003 BUF_CHECK_UNMAPPED(bp);
2004 #endif
2005 if (bp->b_kvasize == 0)
2006 return;
2007
2008 vmem_free(buffer_arena, (vm_offset_t)bp->b_kvabase, bp->b_kvasize);
2009 counter_u64_add(bufkvaspace, -bp->b_kvasize);
2010 counter_u64_add(buffreekvacnt, 1);
2011 bp->b_data = bp->b_kvabase = unmapped_buf;
2012 bp->b_kvasize = 0;
2013 }
2014
2015 /*
2016 * bufkva_alloc:
2017 *
2018 * Allocate the buffer KVA and set b_kvasize and b_kvabase.
2019 */
2020 static int
bufkva_alloc(struct buf * bp,int maxsize,int gbflags)2021 bufkva_alloc(struct buf *bp, int maxsize, int gbflags)
2022 {
2023 vm_offset_t addr;
2024 int error;
2025
2026 KASSERT((gbflags & GB_UNMAPPED) == 0 || (gbflags & GB_KVAALLOC) != 0,
2027 ("Invalid gbflags 0x%x in %s", gbflags, __func__));
2028
2029 bufkva_free(bp);
2030
2031 addr = 0;
2032 error = vmem_alloc(buffer_arena, maxsize, M_BESTFIT | M_NOWAIT, &addr);
2033 if (error != 0) {
2034 /*
2035 * Buffer map is too fragmented. Request the caller
2036 * to defragment the map.
2037 */
2038 return (error);
2039 }
2040 bp->b_kvabase = (caddr_t)addr;
2041 bp->b_kvasize = maxsize;
2042 counter_u64_add(bufkvaspace, bp->b_kvasize);
2043 if ((gbflags & GB_UNMAPPED) != 0) {
2044 bp->b_data = unmapped_buf;
2045 BUF_CHECK_UNMAPPED(bp);
2046 } else {
2047 bp->b_data = bp->b_kvabase;
2048 BUF_CHECK_MAPPED(bp);
2049 }
2050 return (0);
2051 }
2052
2053 /*
2054 * bufkva_reclaim:
2055 *
2056 * Reclaim buffer kva by freeing buffers holding kva. This is a vmem
2057 * callback that fires to avoid returning failure.
2058 */
2059 static void
bufkva_reclaim(vmem_t * vmem,int flags)2060 bufkva_reclaim(vmem_t *vmem, int flags)
2061 {
2062 bool done;
2063 int q;
2064 int i;
2065
2066 done = false;
2067 for (i = 0; i < 5; i++) {
2068 for (q = 0; q < buf_domains; q++)
2069 if (buf_recycle(&bdomain[q], true) != 0)
2070 done = true;
2071 if (done)
2072 break;
2073 }
2074 return;
2075 }
2076
2077 /*
2078 * Attempt to initiate asynchronous I/O on read-ahead blocks. We must
2079 * clear BIO_ERROR and B_INVAL prior to initiating I/O . If B_CACHE is set,
2080 * the buffer is valid and we do not have to do anything.
2081 */
2082 static void
breada(struct vnode * vp,daddr_t * rablkno,int * rabsize,int cnt,struct ucred * cred,int flags,void (* ckhashfunc)(struct buf *))2083 breada(struct vnode * vp, daddr_t * rablkno, int * rabsize, int cnt,
2084 struct ucred * cred, int flags, void (*ckhashfunc)(struct buf *))
2085 {
2086 struct buf *rabp;
2087 struct thread *td;
2088 int i;
2089
2090 td = curthread;
2091
2092 for (i = 0; i < cnt; i++, rablkno++, rabsize++) {
2093 if (inmem(vp, *rablkno))
2094 continue;
2095 rabp = getblk(vp, *rablkno, *rabsize, 0, 0, 0);
2096 if ((rabp->b_flags & B_CACHE) != 0) {
2097 brelse(rabp);
2098 continue;
2099 }
2100 #ifdef RACCT
2101 if (racct_enable) {
2102 PROC_LOCK(curproc);
2103 racct_add_buf(curproc, rabp, 0);
2104 PROC_UNLOCK(curproc);
2105 }
2106 #endif /* RACCT */
2107 td->td_ru.ru_inblock++;
2108 rabp->b_flags |= B_ASYNC;
2109 rabp->b_flags &= ~B_INVAL;
2110 if ((flags & GB_CKHASH) != 0) {
2111 rabp->b_flags |= B_CKHASH;
2112 rabp->b_ckhashcalc = ckhashfunc;
2113 }
2114 rabp->b_ioflags &= ~BIO_ERROR;
2115 rabp->b_iocmd = BIO_READ;
2116 if (rabp->b_rcred == NOCRED && cred != NOCRED)
2117 rabp->b_rcred = crhold(cred);
2118 vfs_busy_pages(rabp, 0);
2119 BUF_KERNPROC(rabp);
2120 rabp->b_iooffset = dbtob(rabp->b_blkno);
2121 bstrategy(rabp);
2122 }
2123 }
2124
2125 /*
2126 * Entry point for bread() and breadn() via #defines in sys/buf.h.
2127 *
2128 * Get a buffer with the specified data. Look in the cache first. We
2129 * must clear BIO_ERROR and B_INVAL prior to initiating I/O. If B_CACHE
2130 * is set, the buffer is valid and we do not have to do anything, see
2131 * getblk(). Also starts asynchronous I/O on read-ahead blocks.
2132 *
2133 * Always return a NULL buffer pointer (in bpp) when returning an error.
2134 */
2135 int
breadn_flags(struct vnode * vp,daddr_t blkno,int size,daddr_t * rablkno,int * rabsize,int cnt,struct ucred * cred,int flags,void (* ckhashfunc)(struct buf *),struct buf ** bpp)2136 breadn_flags(struct vnode *vp, daddr_t blkno, int size, daddr_t *rablkno,
2137 int *rabsize, int cnt, struct ucred *cred, int flags,
2138 void (*ckhashfunc)(struct buf *), struct buf **bpp)
2139 {
2140 struct buf *bp;
2141 struct thread *td;
2142 int error, readwait, rv;
2143
2144 CTR3(KTR_BUF, "breadn(%p, %jd, %d)", vp, blkno, size);
2145 td = curthread;
2146 /*
2147 * Can only return NULL if GB_LOCK_NOWAIT or GB_SPARSE flags
2148 * are specified.
2149 */
2150 error = getblkx(vp, blkno, size, 0, 0, flags, &bp);
2151 if (error != 0) {
2152 *bpp = NULL;
2153 return (error);
2154 }
2155 flags &= ~GB_NOSPARSE;
2156 *bpp = bp;
2157
2158 /*
2159 * If not found in cache, do some I/O
2160 */
2161 readwait = 0;
2162 if ((bp->b_flags & B_CACHE) == 0) {
2163 #ifdef RACCT
2164 if (racct_enable) {
2165 PROC_LOCK(td->td_proc);
2166 racct_add_buf(td->td_proc, bp, 0);
2167 PROC_UNLOCK(td->td_proc);
2168 }
2169 #endif /* RACCT */
2170 td->td_ru.ru_inblock++;
2171 bp->b_iocmd = BIO_READ;
2172 bp->b_flags &= ~B_INVAL;
2173 if ((flags & GB_CKHASH) != 0) {
2174 bp->b_flags |= B_CKHASH;
2175 bp->b_ckhashcalc = ckhashfunc;
2176 }
2177 bp->b_ioflags &= ~BIO_ERROR;
2178 if (bp->b_rcred == NOCRED && cred != NOCRED)
2179 bp->b_rcred = crhold(cred);
2180 vfs_busy_pages(bp, 0);
2181 bp->b_iooffset = dbtob(bp->b_blkno);
2182 bstrategy(bp);
2183 ++readwait;
2184 }
2185
2186 /*
2187 * Attempt to initiate asynchronous I/O on read-ahead blocks.
2188 */
2189 breada(vp, rablkno, rabsize, cnt, cred, flags, ckhashfunc);
2190
2191 rv = 0;
2192 if (readwait) {
2193 rv = bufwait(bp);
2194 if (rv != 0) {
2195 brelse(bp);
2196 *bpp = NULL;
2197 }
2198 }
2199 return (rv);
2200 }
2201
2202 /*
2203 * Write, release buffer on completion. (Done by iodone
2204 * if async). Do not bother writing anything if the buffer
2205 * is invalid.
2206 *
2207 * Note that we set B_CACHE here, indicating that buffer is
2208 * fully valid and thus cacheable. This is true even of NFS
2209 * now so we set it generally. This could be set either here
2210 * or in biodone() since the I/O is synchronous. We put it
2211 * here.
2212 */
2213 int
bufwrite(struct buf * bp)2214 bufwrite(struct buf *bp)
2215 {
2216 int oldflags;
2217 struct vnode *vp;
2218 long space;
2219 int vp_md;
2220
2221 CTR3(KTR_BUF, "bufwrite(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
2222 if ((bp->b_bufobj->bo_flag & BO_DEAD) != 0) {
2223 bp->b_flags |= B_INVAL | B_RELBUF;
2224 bp->b_flags &= ~B_CACHE;
2225 brelse(bp);
2226 return (ENXIO);
2227 }
2228 if (bp->b_flags & B_INVAL) {
2229 brelse(bp);
2230 return (0);
2231 }
2232
2233 if (bp->b_flags & B_BARRIER)
2234 atomic_add_long(&barrierwrites, 1);
2235
2236 oldflags = bp->b_flags;
2237
2238 BUF_ASSERT_HELD(bp);
2239
2240 KASSERT(!(bp->b_vflags & BV_BKGRDINPROG),
2241 ("FFS background buffer should not get here %p", bp));
2242
2243 vp = bp->b_vp;
2244 if (vp)
2245 vp_md = vp->v_vflag & VV_MD;
2246 else
2247 vp_md = 0;
2248
2249 /*
2250 * Mark the buffer clean. Increment the bufobj write count
2251 * before bundirty() call, to prevent other thread from seeing
2252 * empty dirty list and zero counter for writes in progress,
2253 * falsely indicating that the bufobj is clean.
2254 */
2255 bufobj_wref(bp->b_bufobj);
2256 bundirty(bp);
2257
2258 bp->b_flags &= ~B_DONE;
2259 bp->b_ioflags &= ~BIO_ERROR;
2260 bp->b_flags |= B_CACHE;
2261 bp->b_iocmd = BIO_WRITE;
2262
2263 vfs_busy_pages(bp, 1);
2264
2265 /*
2266 * Normal bwrites pipeline writes
2267 */
2268 bp->b_runningbufspace = bp->b_bufsize;
2269 space = atomic_fetchadd_long(&runningbufspace, bp->b_runningbufspace);
2270
2271 #ifdef RACCT
2272 if (racct_enable) {
2273 PROC_LOCK(curproc);
2274 racct_add_buf(curproc, bp, 1);
2275 PROC_UNLOCK(curproc);
2276 }
2277 #endif /* RACCT */
2278 curthread->td_ru.ru_oublock++;
2279 if (oldflags & B_ASYNC)
2280 BUF_KERNPROC(bp);
2281 bp->b_iooffset = dbtob(bp->b_blkno);
2282 buf_track(bp, __func__);
2283 bstrategy(bp);
2284
2285 if ((oldflags & B_ASYNC) == 0) {
2286 int rtval = bufwait(bp);
2287 brelse(bp);
2288 return (rtval);
2289 } else if (space > hirunningspace) {
2290 /*
2291 * don't allow the async write to saturate the I/O
2292 * system. We will not deadlock here because
2293 * we are blocking waiting for I/O that is already in-progress
2294 * to complete. We do not block here if it is the update
2295 * or syncer daemon trying to clean up as that can lead
2296 * to deadlock.
2297 */
2298 if ((curthread->td_pflags & TDP_NORUNNINGBUF) == 0 && !vp_md)
2299 waitrunningbufspace();
2300 }
2301
2302 return (0);
2303 }
2304
2305 void
bufbdflush(struct bufobj * bo,struct buf * bp)2306 bufbdflush(struct bufobj *bo, struct buf *bp)
2307 {
2308 struct buf *nbp;
2309 struct bufdomain *bd;
2310
2311 bd = &bdomain[bo->bo_domain];
2312 if (bo->bo_dirty.bv_cnt > bd->bd_dirtybufthresh + 10) {
2313 (void) VOP_FSYNC(bp->b_vp, MNT_NOWAIT, curthread);
2314 altbufferflushes++;
2315 } else if (bo->bo_dirty.bv_cnt > bd->bd_dirtybufthresh) {
2316 BO_LOCK(bo);
2317 /*
2318 * Try to find a buffer to flush.
2319 */
2320 TAILQ_FOREACH(nbp, &bo->bo_dirty.bv_hd, b_bobufs) {
2321 if ((nbp->b_vflags & BV_BKGRDINPROG) ||
2322 BUF_LOCK(nbp,
2323 LK_EXCLUSIVE | LK_NOWAIT, NULL))
2324 continue;
2325 if (bp == nbp)
2326 panic("bdwrite: found ourselves");
2327 BO_UNLOCK(bo);
2328 /* Don't countdeps with the bo lock held. */
2329 if (buf_countdeps(nbp, 0)) {
2330 BO_LOCK(bo);
2331 BUF_UNLOCK(nbp);
2332 continue;
2333 }
2334 if (nbp->b_flags & B_CLUSTEROK) {
2335 vfs_bio_awrite(nbp);
2336 } else {
2337 bremfree(nbp);
2338 bawrite(nbp);
2339 }
2340 dirtybufferflushes++;
2341 break;
2342 }
2343 if (nbp == NULL)
2344 BO_UNLOCK(bo);
2345 }
2346 }
2347
2348 /*
2349 * Delayed write. (Buffer is marked dirty). Do not bother writing
2350 * anything if the buffer is marked invalid.
2351 *
2352 * Note that since the buffer must be completely valid, we can safely
2353 * set B_CACHE. In fact, we have to set B_CACHE here rather then in
2354 * biodone() in order to prevent getblk from writing the buffer
2355 * out synchronously.
2356 */
2357 void
bdwrite(struct buf * bp)2358 bdwrite(struct buf *bp)
2359 {
2360 struct thread *td = curthread;
2361 struct vnode *vp;
2362 struct bufobj *bo;
2363
2364 CTR3(KTR_BUF, "bdwrite(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
2365 KASSERT(bp->b_bufobj != NULL, ("No b_bufobj %p", bp));
2366 KASSERT((bp->b_flags & B_BARRIER) == 0,
2367 ("Barrier request in delayed write %p", bp));
2368 BUF_ASSERT_HELD(bp);
2369
2370 if (bp->b_flags & B_INVAL) {
2371 brelse(bp);
2372 return;
2373 }
2374
2375 /*
2376 * If we have too many dirty buffers, don't create any more.
2377 * If we are wildly over our limit, then force a complete
2378 * cleanup. Otherwise, just keep the situation from getting
2379 * out of control. Note that we have to avoid a recursive
2380 * disaster and not try to clean up after our own cleanup!
2381 */
2382 vp = bp->b_vp;
2383 bo = bp->b_bufobj;
2384 if ((td->td_pflags & (TDP_COWINPROGRESS|TDP_INBDFLUSH)) == 0) {
2385 td->td_pflags |= TDP_INBDFLUSH;
2386 BO_BDFLUSH(bo, bp);
2387 td->td_pflags &= ~TDP_INBDFLUSH;
2388 } else
2389 recursiveflushes++;
2390
2391 bdirty(bp);
2392 /*
2393 * Set B_CACHE, indicating that the buffer is fully valid. This is
2394 * true even of NFS now.
2395 */
2396 bp->b_flags |= B_CACHE;
2397
2398 /*
2399 * This bmap keeps the system from needing to do the bmap later,
2400 * perhaps when the system is attempting to do a sync. Since it
2401 * is likely that the indirect block -- or whatever other datastructure
2402 * that the filesystem needs is still in memory now, it is a good
2403 * thing to do this. Note also, that if the pageout daemon is
2404 * requesting a sync -- there might not be enough memory to do
2405 * the bmap then... So, this is important to do.
2406 */
2407 if (vp->v_type != VCHR && bp->b_lblkno == bp->b_blkno) {
2408 VOP_BMAP(vp, bp->b_lblkno, NULL, &bp->b_blkno, NULL, NULL);
2409 }
2410
2411 buf_track(bp, __func__);
2412
2413 /*
2414 * Set the *dirty* buffer range based upon the VM system dirty
2415 * pages.
2416 *
2417 * Mark the buffer pages as clean. We need to do this here to
2418 * satisfy the vnode_pager and the pageout daemon, so that it
2419 * thinks that the pages have been "cleaned". Note that since
2420 * the pages are in a delayed write buffer -- the VFS layer
2421 * "will" see that the pages get written out on the next sync,
2422 * or perhaps the cluster will be completed.
2423 */
2424 vfs_clean_pages_dirty_buf(bp);
2425 bqrelse(bp);
2426
2427 /*
2428 * note: we cannot initiate I/O from a bdwrite even if we wanted to,
2429 * due to the softdep code.
2430 */
2431 }
2432
2433 /*
2434 * bdirty:
2435 *
2436 * Turn buffer into delayed write request. We must clear BIO_READ and
2437 * B_RELBUF, and we must set B_DELWRI. We reassign the buffer to
2438 * itself to properly update it in the dirty/clean lists. We mark it
2439 * B_DONE to ensure that any asynchronization of the buffer properly
2440 * clears B_DONE ( else a panic will occur later ).
2441 *
2442 * bdirty() is kinda like bdwrite() - we have to clear B_INVAL which
2443 * might have been set pre-getblk(). Unlike bwrite/bdwrite, bdirty()
2444 * should only be called if the buffer is known-good.
2445 *
2446 * Since the buffer is not on a queue, we do not update the numfreebuffers
2447 * count.
2448 *
2449 * The buffer must be on QUEUE_NONE.
2450 */
2451 void
bdirty(struct buf * bp)2452 bdirty(struct buf *bp)
2453 {
2454
2455 CTR3(KTR_BUF, "bdirty(%p) vp %p flags %X",
2456 bp, bp->b_vp, bp->b_flags);
2457 KASSERT(bp->b_bufobj != NULL, ("No b_bufobj %p", bp));
2458 KASSERT(bp->b_flags & B_REMFREE || bp->b_qindex == QUEUE_NONE,
2459 ("bdirty: buffer %p still on queue %d", bp, bp->b_qindex));
2460 BUF_ASSERT_HELD(bp);
2461 bp->b_flags &= ~(B_RELBUF);
2462 bp->b_iocmd = BIO_WRITE;
2463
2464 if ((bp->b_flags & B_DELWRI) == 0) {
2465 bp->b_flags |= /* XXX B_DONE | */ B_DELWRI;
2466 reassignbuf(bp);
2467 bdirtyadd(bp);
2468 }
2469 }
2470
2471 /*
2472 * bundirty:
2473 *
2474 * Clear B_DELWRI for buffer.
2475 *
2476 * Since the buffer is not on a queue, we do not update the numfreebuffers
2477 * count.
2478 *
2479 * The buffer must be on QUEUE_NONE.
2480 */
2481
2482 void
bundirty(struct buf * bp)2483 bundirty(struct buf *bp)
2484 {
2485
2486 CTR3(KTR_BUF, "bundirty(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
2487 KASSERT(bp->b_bufobj != NULL, ("No b_bufobj %p", bp));
2488 KASSERT(bp->b_flags & B_REMFREE || bp->b_qindex == QUEUE_NONE,
2489 ("bundirty: buffer %p still on queue %d", bp, bp->b_qindex));
2490 BUF_ASSERT_HELD(bp);
2491
2492 if (bp->b_flags & B_DELWRI) {
2493 bp->b_flags &= ~B_DELWRI;
2494 reassignbuf(bp);
2495 bdirtysub(bp);
2496 }
2497 /*
2498 * Since it is now being written, we can clear its deferred write flag.
2499 */
2500 bp->b_flags &= ~B_DEFERRED;
2501 }
2502
2503 /*
2504 * bawrite:
2505 *
2506 * Asynchronous write. Start output on a buffer, but do not wait for
2507 * it to complete. The buffer is released when the output completes.
2508 *
2509 * bwrite() ( or the VOP routine anyway ) is responsible for handling
2510 * B_INVAL buffers. Not us.
2511 */
2512 void
bawrite(struct buf * bp)2513 bawrite(struct buf *bp)
2514 {
2515
2516 bp->b_flags |= B_ASYNC;
2517 (void) bwrite(bp);
2518 }
2519
2520 /*
2521 * babarrierwrite:
2522 *
2523 * Asynchronous barrier write. Start output on a buffer, but do not
2524 * wait for it to complete. Place a write barrier after this write so
2525 * that this buffer and all buffers written before it are committed to
2526 * the disk before any buffers written after this write are committed
2527 * to the disk. The buffer is released when the output completes.
2528 */
2529 void
babarrierwrite(struct buf * bp)2530 babarrierwrite(struct buf *bp)
2531 {
2532
2533 bp->b_flags |= B_ASYNC | B_BARRIER;
2534 (void) bwrite(bp);
2535 }
2536
2537 /*
2538 * bbarrierwrite:
2539 *
2540 * Synchronous barrier write. Start output on a buffer and wait for
2541 * it to complete. Place a write barrier after this write so that
2542 * this buffer and all buffers written before it are committed to
2543 * the disk before any buffers written after this write are committed
2544 * to the disk. The buffer is released when the output completes.
2545 */
2546 int
bbarrierwrite(struct buf * bp)2547 bbarrierwrite(struct buf *bp)
2548 {
2549
2550 bp->b_flags |= B_BARRIER;
2551 return (bwrite(bp));
2552 }
2553
2554 /*
2555 * bwillwrite:
2556 *
2557 * Called prior to the locking of any vnodes when we are expecting to
2558 * write. We do not want to starve the buffer cache with too many
2559 * dirty buffers so we block here. By blocking prior to the locking
2560 * of any vnodes we attempt to avoid the situation where a locked vnode
2561 * prevents the various system daemons from flushing related buffers.
2562 */
2563 void
bwillwrite(void)2564 bwillwrite(void)
2565 {
2566
2567 if (buf_dirty_count_severe()) {
2568 mtx_lock(&bdirtylock);
2569 while (buf_dirty_count_severe()) {
2570 bdirtywait = 1;
2571 msleep(&bdirtywait, &bdirtylock, (PRIBIO + 4),
2572 "flswai", 0);
2573 }
2574 mtx_unlock(&bdirtylock);
2575 }
2576 }
2577
2578 /*
2579 * Return true if we have too many dirty buffers.
2580 */
2581 int
buf_dirty_count_severe(void)2582 buf_dirty_count_severe(void)
2583 {
2584
2585 return (!BIT_EMPTY(BUF_DOMAINS, &bdhidirty));
2586 }
2587
2588 /*
2589 * brelse:
2590 *
2591 * Release a busy buffer and, if requested, free its resources. The
2592 * buffer will be stashed in the appropriate bufqueue[] allowing it
2593 * to be accessed later as a cache entity or reused for other purposes.
2594 */
2595 void
brelse(struct buf * bp)2596 brelse(struct buf *bp)
2597 {
2598 struct mount *v_mnt;
2599 int qindex;
2600
2601 /*
2602 * Many functions erroneously call brelse with a NULL bp under rare
2603 * error conditions. Simply return when called with a NULL bp.
2604 */
2605 if (bp == NULL)
2606 return;
2607 CTR3(KTR_BUF, "brelse(%p) vp %p flags %X",
2608 bp, bp->b_vp, bp->b_flags);
2609 KASSERT(!(bp->b_flags & (B_CLUSTER|B_PAGING)),
2610 ("brelse: inappropriate B_PAGING or B_CLUSTER bp %p", bp));
2611 KASSERT((bp->b_flags & B_VMIO) != 0 || (bp->b_flags & B_NOREUSE) == 0,
2612 ("brelse: non-VMIO buffer marked NOREUSE"));
2613
2614 if (BUF_LOCKRECURSED(bp)) {
2615 /*
2616 * Do not process, in particular, do not handle the
2617 * B_INVAL/B_RELBUF and do not release to free list.
2618 */
2619 BUF_UNLOCK(bp);
2620 return;
2621 }
2622
2623 if (bp->b_flags & B_MANAGED) {
2624 bqrelse(bp);
2625 return;
2626 }
2627
2628 if ((bp->b_vflags & (BV_BKGRDINPROG | BV_BKGRDERR)) == BV_BKGRDERR) {
2629 BO_LOCK(bp->b_bufobj);
2630 bp->b_vflags &= ~BV_BKGRDERR;
2631 BO_UNLOCK(bp->b_bufobj);
2632 bdirty(bp);
2633 }
2634 if (bp->b_iocmd == BIO_WRITE && (bp->b_ioflags & BIO_ERROR) &&
2635 (bp->b_error != ENXIO || !LIST_EMPTY(&bp->b_dep)) &&
2636 !(bp->b_flags & B_INVAL)) {
2637 /*
2638 * Failed write, redirty. All errors except ENXIO (which
2639 * means the device is gone) are treated as being
2640 * transient.
2641 *
2642 * XXX Treating EIO as transient is not correct; the
2643 * contract with the local storage device drivers is that
2644 * they will only return EIO once the I/O is no longer
2645 * retriable. Network I/O also respects this through the
2646 * guarantees of TCP and/or the internal retries of NFS.
2647 * ENOMEM might be transient, but we also have no way of
2648 * knowing when its ok to retry/reschedule. In general,
2649 * this entire case should be made obsolete through better
2650 * error handling/recovery and resource scheduling.
2651 *
2652 * Do this also for buffers that failed with ENXIO, but have
2653 * non-empty dependencies - the soft updates code might need
2654 * to access the buffer to untangle them.
2655 *
2656 * Must clear BIO_ERROR to prevent pages from being scrapped.
2657 */
2658 bp->b_ioflags &= ~BIO_ERROR;
2659 bdirty(bp);
2660 } else if ((bp->b_flags & (B_NOCACHE | B_INVAL)) ||
2661 (bp->b_ioflags & BIO_ERROR) || (bp->b_bufsize <= 0)) {
2662 /*
2663 * Either a failed read I/O, or we were asked to free or not
2664 * cache the buffer, or we failed to write to a device that's
2665 * no longer present.
2666 */
2667 bp->b_flags |= B_INVAL;
2668 if (!LIST_EMPTY(&bp->b_dep))
2669 buf_deallocate(bp);
2670 if (bp->b_flags & B_DELWRI)
2671 bdirtysub(bp);
2672 bp->b_flags &= ~(B_DELWRI | B_CACHE);
2673 if ((bp->b_flags & B_VMIO) == 0) {
2674 allocbuf(bp, 0);
2675 if (bp->b_vp)
2676 brelvp(bp);
2677 }
2678 }
2679
2680 /*
2681 * We must clear B_RELBUF if B_DELWRI is set. If vfs_vmio_truncate()
2682 * is called with B_DELWRI set, the underlying pages may wind up
2683 * getting freed causing a previous write (bdwrite()) to get 'lost'
2684 * because pages associated with a B_DELWRI bp are marked clean.
2685 *
2686 * We still allow the B_INVAL case to call vfs_vmio_truncate(), even
2687 * if B_DELWRI is set.
2688 */
2689 if (bp->b_flags & B_DELWRI)
2690 bp->b_flags &= ~B_RELBUF;
2691
2692 /*
2693 * VMIO buffer rundown. It is not very necessary to keep a VMIO buffer
2694 * constituted, not even NFS buffers now. Two flags effect this. If
2695 * B_INVAL, the struct buf is invalidated but the VM object is kept
2696 * around ( i.e. so it is trivial to reconstitute the buffer later ).
2697 *
2698 * If BIO_ERROR or B_NOCACHE is set, pages in the VM object will be
2699 * invalidated. BIO_ERROR cannot be set for a failed write unless the
2700 * buffer is also B_INVAL because it hits the re-dirtying code above.
2701 *
2702 * Normally we can do this whether a buffer is B_DELWRI or not. If
2703 * the buffer is an NFS buffer, it is tracking piecemeal writes or
2704 * the commit state and we cannot afford to lose the buffer. If the
2705 * buffer has a background write in progress, we need to keep it
2706 * around to prevent it from being reconstituted and starting a second
2707 * background write.
2708 */
2709
2710 v_mnt = bp->b_vp != NULL ? bp->b_vp->v_mount : NULL;
2711
2712 if ((bp->b_flags & B_VMIO) && (bp->b_flags & B_NOCACHE ||
2713 (bp->b_ioflags & BIO_ERROR && bp->b_iocmd == BIO_READ)) &&
2714 (v_mnt == NULL || (v_mnt->mnt_vfc->vfc_flags & VFCF_NETWORK) == 0 ||
2715 vn_isdisk(bp->b_vp, NULL) || (bp->b_flags & B_DELWRI) == 0)) {
2716 vfs_vmio_invalidate(bp);
2717 allocbuf(bp, 0);
2718 }
2719
2720 if ((bp->b_flags & (B_INVAL | B_RELBUF)) != 0 ||
2721 (bp->b_flags & (B_DELWRI | B_NOREUSE)) == B_NOREUSE) {
2722 allocbuf(bp, 0);
2723 bp->b_flags &= ~B_NOREUSE;
2724 if (bp->b_vp != NULL)
2725 brelvp(bp);
2726 }
2727
2728 /*
2729 * If the buffer has junk contents signal it and eventually
2730 * clean up B_DELWRI and diassociate the vnode so that gbincore()
2731 * doesn't find it.
2732 */
2733 if (bp->b_bufsize == 0 || (bp->b_ioflags & BIO_ERROR) != 0 ||
2734 (bp->b_flags & (B_INVAL | B_NOCACHE | B_RELBUF)) != 0)
2735 bp->b_flags |= B_INVAL;
2736 if (bp->b_flags & B_INVAL) {
2737 if (bp->b_flags & B_DELWRI)
2738 bundirty(bp);
2739 if (bp->b_vp)
2740 brelvp(bp);
2741 }
2742
2743 buf_track(bp, __func__);
2744
2745 /* buffers with no memory */
2746 if (bp->b_bufsize == 0) {
2747 buf_free(bp);
2748 return;
2749 }
2750 /* buffers with junk contents */
2751 if (bp->b_flags & (B_INVAL | B_NOCACHE | B_RELBUF) ||
2752 (bp->b_ioflags & BIO_ERROR)) {
2753 bp->b_xflags &= ~(BX_BKGRDWRITE | BX_ALTDATA);
2754 if (bp->b_vflags & BV_BKGRDINPROG)
2755 panic("losing buffer 2");
2756 qindex = QUEUE_CLEAN;
2757 bp->b_flags |= B_AGE;
2758 /* remaining buffers */
2759 } else if (bp->b_flags & B_DELWRI)
2760 qindex = QUEUE_DIRTY;
2761 else
2762 qindex = QUEUE_CLEAN;
2763
2764 if ((bp->b_flags & B_DELWRI) == 0 && (bp->b_xflags & BX_VNDIRTY))
2765 panic("brelse: not dirty");
2766
2767 bp->b_flags &= ~(B_ASYNC | B_NOCACHE | B_RELBUF | B_DIRECT);
2768 /* binsfree unlocks bp. */
2769 binsfree(bp, qindex);
2770 }
2771
2772 /*
2773 * Release a buffer back to the appropriate queue but do not try to free
2774 * it. The buffer is expected to be used again soon.
2775 *
2776 * bqrelse() is used by bdwrite() to requeue a delayed write, and used by
2777 * biodone() to requeue an async I/O on completion. It is also used when
2778 * known good buffers need to be requeued but we think we may need the data
2779 * again soon.
2780 *
2781 * XXX we should be able to leave the B_RELBUF hint set on completion.
2782 */
2783 void
bqrelse(struct buf * bp)2784 bqrelse(struct buf *bp)
2785 {
2786 int qindex;
2787
2788 CTR3(KTR_BUF, "bqrelse(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
2789 KASSERT(!(bp->b_flags & (B_CLUSTER|B_PAGING)),
2790 ("bqrelse: inappropriate B_PAGING or B_CLUSTER bp %p", bp));
2791
2792 qindex = QUEUE_NONE;
2793 if (BUF_LOCKRECURSED(bp)) {
2794 /* do not release to free list */
2795 BUF_UNLOCK(bp);
2796 return;
2797 }
2798 bp->b_flags &= ~(B_ASYNC | B_NOCACHE | B_AGE | B_RELBUF);
2799
2800 if (bp->b_flags & B_MANAGED) {
2801 if (bp->b_flags & B_REMFREE)
2802 bremfreef(bp);
2803 goto out;
2804 }
2805
2806 /* buffers with stale but valid contents */
2807 if ((bp->b_flags & B_DELWRI) != 0 || (bp->b_vflags & (BV_BKGRDINPROG |
2808 BV_BKGRDERR)) == BV_BKGRDERR) {
2809 BO_LOCK(bp->b_bufobj);
2810 bp->b_vflags &= ~BV_BKGRDERR;
2811 BO_UNLOCK(bp->b_bufobj);
2812 qindex = QUEUE_DIRTY;
2813 } else {
2814 if ((bp->b_flags & B_DELWRI) == 0 &&
2815 (bp->b_xflags & BX_VNDIRTY))
2816 panic("bqrelse: not dirty");
2817 if ((bp->b_flags & B_NOREUSE) != 0) {
2818 brelse(bp);
2819 return;
2820 }
2821 qindex = QUEUE_CLEAN;
2822 }
2823 buf_track(bp, __func__);
2824 /* binsfree unlocks bp. */
2825 binsfree(bp, qindex);
2826 return;
2827
2828 out:
2829 buf_track(bp, __func__);
2830 /* unlock */
2831 BUF_UNLOCK(bp);
2832 }
2833
2834 /*
2835 * Complete I/O to a VMIO backed page. Validate the pages as appropriate,
2836 * restore bogus pages.
2837 */
2838 static void
vfs_vmio_iodone(struct buf * bp)2839 vfs_vmio_iodone(struct buf *bp)
2840 {
2841 vm_ooffset_t foff;
2842 vm_page_t m;
2843 vm_object_t obj;
2844 struct vnode *vp __unused;
2845 int i, iosize, resid;
2846 bool bogus;
2847
2848 obj = bp->b_bufobj->bo_object;
2849 KASSERT(obj->paging_in_progress >= bp->b_npages,
2850 ("vfs_vmio_iodone: paging in progress(%d) < b_npages(%d)",
2851 obj->paging_in_progress, bp->b_npages));
2852
2853 vp = bp->b_vp;
2854 KASSERT(vp->v_holdcnt > 0,
2855 ("vfs_vmio_iodone: vnode %p has zero hold count", vp));
2856 KASSERT(vp->v_object != NULL,
2857 ("vfs_vmio_iodone: vnode %p has no vm_object", vp));
2858
2859 foff = bp->b_offset;
2860 KASSERT(bp->b_offset != NOOFFSET,
2861 ("vfs_vmio_iodone: bp %p has no buffer offset", bp));
2862
2863 bogus = false;
2864 iosize = bp->b_bcount - bp->b_resid;
2865 VM_OBJECT_WLOCK(obj);
2866 for (i = 0; i < bp->b_npages; i++) {
2867 resid = ((foff + PAGE_SIZE) & ~(off_t)PAGE_MASK) - foff;
2868 if (resid > iosize)
2869 resid = iosize;
2870
2871 /*
2872 * cleanup bogus pages, restoring the originals
2873 */
2874 m = bp->b_pages[i];
2875 if (m == bogus_page) {
2876 bogus = true;
2877 m = vm_page_lookup(obj, OFF_TO_IDX(foff));
2878 if (m == NULL)
2879 panic("biodone: page disappeared!");
2880 bp->b_pages[i] = m;
2881 } else if ((bp->b_iocmd == BIO_READ) && resid > 0) {
2882 /*
2883 * In the write case, the valid and clean bits are
2884 * already changed correctly ( see bdwrite() ), so we
2885 * only need to do this here in the read case.
2886 */
2887 KASSERT((m->dirty & vm_page_bits(foff & PAGE_MASK,
2888 resid)) == 0, ("vfs_vmio_iodone: page %p "
2889 "has unexpected dirty bits", m));
2890 vfs_page_set_valid(bp, foff, m);
2891 }
2892 KASSERT(OFF_TO_IDX(foff) == m->pindex,
2893 ("vfs_vmio_iodone: foff(%jd)/pindex(%ju) mismatch",
2894 (intmax_t)foff, (uintmax_t)m->pindex));
2895
2896 vm_page_sunbusy(m);
2897 foff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK;
2898 iosize -= resid;
2899 }
2900 vm_object_pip_wakeupn(obj, bp->b_npages);
2901 VM_OBJECT_WUNLOCK(obj);
2902 if (bogus && buf_mapped(bp)) {
2903 BUF_CHECK_MAPPED(bp);
2904 pmap_qenter(trunc_page((vm_offset_t)bp->b_data),
2905 bp->b_pages, bp->b_npages);
2906 }
2907 }
2908
2909 /*
2910 * Perform page invalidation when a buffer is released. The fully invalid
2911 * pages will be reclaimed later in vfs_vmio_truncate().
2912 */
2913 static void
vfs_vmio_invalidate(struct buf * bp)2914 vfs_vmio_invalidate(struct buf *bp)
2915 {
2916 vm_object_t obj;
2917 vm_page_t m;
2918 int flags, i, resid, poffset, presid;
2919
2920 if (buf_mapped(bp)) {
2921 BUF_CHECK_MAPPED(bp);
2922 pmap_qremove(trunc_page((vm_offset_t)bp->b_data), bp->b_npages);
2923 } else
2924 BUF_CHECK_UNMAPPED(bp);
2925 /*
2926 * Get the base offset and length of the buffer. Note that
2927 * in the VMIO case if the buffer block size is not
2928 * page-aligned then b_data pointer may not be page-aligned.
2929 * But our b_pages[] array *IS* page aligned.
2930 *
2931 * block sizes less then DEV_BSIZE (usually 512) are not
2932 * supported due to the page granularity bits (m->valid,
2933 * m->dirty, etc...).
2934 *
2935 * See man buf(9) for more information
2936 */
2937 flags = (bp->b_flags & B_NOREUSE) != 0 ? VPR_NOREUSE : 0;
2938 obj = bp->b_bufobj->bo_object;
2939 resid = bp->b_bufsize;
2940 poffset = bp->b_offset & PAGE_MASK;
2941 VM_OBJECT_WLOCK(obj);
2942 for (i = 0; i < bp->b_npages; i++) {
2943 m = bp->b_pages[i];
2944 if (m == bogus_page)
2945 panic("vfs_vmio_invalidate: Unexpected bogus page.");
2946 bp->b_pages[i] = NULL;
2947
2948 presid = resid > (PAGE_SIZE - poffset) ?
2949 (PAGE_SIZE - poffset) : resid;
2950 KASSERT(presid >= 0, ("brelse: extra page"));
2951 while (vm_page_xbusied(m)) {
2952 vm_page_lock(m);
2953 VM_OBJECT_WUNLOCK(obj);
2954 vm_page_busy_sleep(m, "mbncsh", true);
2955 VM_OBJECT_WLOCK(obj);
2956 }
2957 if (pmap_page_wired_mappings(m) == 0)
2958 vm_page_set_invalid(m, poffset, presid);
2959 vm_page_release_locked(m, flags);
2960 resid -= presid;
2961 poffset = 0;
2962 }
2963 VM_OBJECT_WUNLOCK(obj);
2964 bp->b_npages = 0;
2965 }
2966
2967 /*
2968 * Page-granular truncation of an existing VMIO buffer.
2969 */
2970 static void
vfs_vmio_truncate(struct buf * bp,int desiredpages)2971 vfs_vmio_truncate(struct buf *bp, int desiredpages)
2972 {
2973 vm_object_t obj;
2974 vm_page_t m;
2975 int flags, i;
2976
2977 if (bp->b_npages == desiredpages)
2978 return;
2979
2980 if (buf_mapped(bp)) {
2981 BUF_CHECK_MAPPED(bp);
2982 pmap_qremove((vm_offset_t)trunc_page((vm_offset_t)bp->b_data) +
2983 (desiredpages << PAGE_SHIFT), bp->b_npages - desiredpages);
2984 } else
2985 BUF_CHECK_UNMAPPED(bp);
2986
2987 /*
2988 * The object lock is needed only if we will attempt to free pages.
2989 */
2990 flags = (bp->b_flags & B_NOREUSE) != 0 ? VPR_NOREUSE : 0;
2991 if ((bp->b_flags & B_DIRECT) != 0) {
2992 flags |= VPR_TRYFREE;
2993 obj = bp->b_bufobj->bo_object;
2994 VM_OBJECT_WLOCK(obj);
2995 } else {
2996 obj = NULL;
2997 }
2998 for (i = desiredpages; i < bp->b_npages; i++) {
2999 m = bp->b_pages[i];
3000 KASSERT(m != bogus_page, ("allocbuf: bogus page found"));
3001 bp->b_pages[i] = NULL;
3002 if (obj != NULL)
3003 vm_page_release_locked(m, flags);
3004 else
3005 vm_page_release(m, flags);
3006 }
3007 if (obj != NULL)
3008 VM_OBJECT_WUNLOCK(obj);
3009 bp->b_npages = desiredpages;
3010 }
3011
3012 /*
3013 * Byte granular extension of VMIO buffers.
3014 */
3015 static void
vfs_vmio_extend(struct buf * bp,int desiredpages,int size)3016 vfs_vmio_extend(struct buf *bp, int desiredpages, int size)
3017 {
3018 /*
3019 * We are growing the buffer, possibly in a
3020 * byte-granular fashion.
3021 */
3022 vm_object_t obj;
3023 vm_offset_t toff;
3024 vm_offset_t tinc;
3025 vm_page_t m;
3026
3027 /*
3028 * Step 1, bring in the VM pages from the object, allocating
3029 * them if necessary. We must clear B_CACHE if these pages
3030 * are not valid for the range covered by the buffer.
3031 */
3032 obj = bp->b_bufobj->bo_object;
3033 VM_OBJECT_WLOCK(obj);
3034 if (bp->b_npages < desiredpages) {
3035 /*
3036 * We must allocate system pages since blocking
3037 * here could interfere with paging I/O, no
3038 * matter which process we are.
3039 *
3040 * Only exclusive busy can be tested here.
3041 * Blocking on shared busy might lead to
3042 * deadlocks once allocbuf() is called after
3043 * pages are vfs_busy_pages().
3044 */
3045 (void)vm_page_grab_pages(obj,
3046 OFF_TO_IDX(bp->b_offset) + bp->b_npages,
3047 VM_ALLOC_SYSTEM | VM_ALLOC_IGN_SBUSY |
3048 VM_ALLOC_NOBUSY | VM_ALLOC_WIRED,
3049 &bp->b_pages[bp->b_npages], desiredpages - bp->b_npages);
3050 bp->b_npages = desiredpages;
3051 }
3052
3053 /*
3054 * Step 2. We've loaded the pages into the buffer,
3055 * we have to figure out if we can still have B_CACHE
3056 * set. Note that B_CACHE is set according to the
3057 * byte-granular range ( bcount and size ), not the
3058 * aligned range ( newbsize ).
3059 *
3060 * The VM test is against m->valid, which is DEV_BSIZE
3061 * aligned. Needless to say, the validity of the data
3062 * needs to also be DEV_BSIZE aligned. Note that this
3063 * fails with NFS if the server or some other client
3064 * extends the file's EOF. If our buffer is resized,
3065 * B_CACHE may remain set! XXX
3066 */
3067 toff = bp->b_bcount;
3068 tinc = PAGE_SIZE - ((bp->b_offset + toff) & PAGE_MASK);
3069 while ((bp->b_flags & B_CACHE) && toff < size) {
3070 vm_pindex_t pi;
3071
3072 if (tinc > (size - toff))
3073 tinc = size - toff;
3074 pi = ((bp->b_offset & PAGE_MASK) + toff) >> PAGE_SHIFT;
3075 m = bp->b_pages[pi];
3076 vfs_buf_test_cache(bp, bp->b_offset, toff, tinc, m);
3077 toff += tinc;
3078 tinc = PAGE_SIZE;
3079 }
3080 VM_OBJECT_WUNLOCK(obj);
3081
3082 /*
3083 * Step 3, fixup the KVA pmap.
3084 */
3085 if (buf_mapped(bp))
3086 bpmap_qenter(bp);
3087 else
3088 BUF_CHECK_UNMAPPED(bp);
3089 }
3090
3091 /*
3092 * Check to see if a block at a particular lbn is available for a clustered
3093 * write.
3094 */
3095 static int
vfs_bio_clcheck(struct vnode * vp,int size,daddr_t lblkno,daddr_t blkno)3096 vfs_bio_clcheck(struct vnode *vp, int size, daddr_t lblkno, daddr_t blkno)
3097 {
3098 struct buf *bpa;
3099 int match;
3100
3101 match = 0;
3102
3103 /* If the buf isn't in core skip it */
3104 if ((bpa = gbincore(&vp->v_bufobj, lblkno)) == NULL)
3105 return (0);
3106
3107 /* If the buf is busy we don't want to wait for it */
3108 if (BUF_LOCK(bpa, LK_EXCLUSIVE | LK_NOWAIT, NULL) != 0)
3109 return (0);
3110
3111 /* Only cluster with valid clusterable delayed write buffers */
3112 if ((bpa->b_flags & (B_DELWRI | B_CLUSTEROK | B_INVAL)) !=
3113 (B_DELWRI | B_CLUSTEROK))
3114 goto done;
3115
3116 if (bpa->b_bufsize != size)
3117 goto done;
3118
3119 /*
3120 * Check to see if it is in the expected place on disk and that the
3121 * block has been mapped.
3122 */
3123 if ((bpa->b_blkno != bpa->b_lblkno) && (bpa->b_blkno == blkno))
3124 match = 1;
3125 done:
3126 BUF_UNLOCK(bpa);
3127 return (match);
3128 }
3129
3130 /*
3131 * vfs_bio_awrite:
3132 *
3133 * Implement clustered async writes for clearing out B_DELWRI buffers.
3134 * This is much better then the old way of writing only one buffer at
3135 * a time. Note that we may not be presented with the buffers in the
3136 * correct order, so we search for the cluster in both directions.
3137 */
3138 int
vfs_bio_awrite(struct buf * bp)3139 vfs_bio_awrite(struct buf *bp)
3140 {
3141 struct bufobj *bo;
3142 int i;
3143 int j;
3144 daddr_t lblkno = bp->b_lblkno;
3145 struct vnode *vp = bp->b_vp;
3146 int ncl;
3147 int nwritten;
3148 int size;
3149 int maxcl;
3150 int gbflags;
3151
3152 bo = &vp->v_bufobj;
3153 gbflags = (bp->b_data == unmapped_buf) ? GB_UNMAPPED : 0;
3154 /*
3155 * right now we support clustered writing only to regular files. If
3156 * we find a clusterable block we could be in the middle of a cluster
3157 * rather then at the beginning.
3158 */
3159 if ((vp->v_type == VREG) &&
3160 (vp->v_mount != 0) && /* Only on nodes that have the size info */
3161 (bp->b_flags & (B_CLUSTEROK | B_INVAL)) == B_CLUSTEROK) {
3162
3163 size = vp->v_mount->mnt_stat.f_iosize;
3164 maxcl = MAXPHYS / size;
3165
3166 BO_RLOCK(bo);
3167 for (i = 1; i < maxcl; i++)
3168 if (vfs_bio_clcheck(vp, size, lblkno + i,
3169 bp->b_blkno + ((i * size) >> DEV_BSHIFT)) == 0)
3170 break;
3171
3172 for (j = 1; i + j <= maxcl && j <= lblkno; j++)
3173 if (vfs_bio_clcheck(vp, size, lblkno - j,
3174 bp->b_blkno - ((j * size) >> DEV_BSHIFT)) == 0)
3175 break;
3176 BO_RUNLOCK(bo);
3177 --j;
3178 ncl = i + j;
3179 /*
3180 * this is a possible cluster write
3181 */
3182 if (ncl != 1) {
3183 BUF_UNLOCK(bp);
3184 nwritten = cluster_wbuild(vp, size, lblkno - j, ncl,
3185 gbflags);
3186 return (nwritten);
3187 }
3188 }
3189 bremfree(bp);
3190 bp->b_flags |= B_ASYNC;
3191 /*
3192 * default (old) behavior, writing out only one block
3193 *
3194 * XXX returns b_bufsize instead of b_bcount for nwritten?
3195 */
3196 nwritten = bp->b_bufsize;
3197 (void) bwrite(bp);
3198
3199 return (nwritten);
3200 }
3201
3202 /*
3203 * getnewbuf_kva:
3204 *
3205 * Allocate KVA for an empty buf header according to gbflags.
3206 */
3207 static int
getnewbuf_kva(struct buf * bp,int gbflags,int maxsize)3208 getnewbuf_kva(struct buf *bp, int gbflags, int maxsize)
3209 {
3210
3211 if ((gbflags & (GB_UNMAPPED | GB_KVAALLOC)) != GB_UNMAPPED) {
3212 /*
3213 * In order to keep fragmentation sane we only allocate kva
3214 * in BKVASIZE chunks. XXX with vmem we can do page size.
3215 */
3216 maxsize = (maxsize + BKVAMASK) & ~BKVAMASK;
3217
3218 if (maxsize != bp->b_kvasize &&
3219 bufkva_alloc(bp, maxsize, gbflags))
3220 return (ENOSPC);
3221 }
3222 return (0);
3223 }
3224
3225 /*
3226 * getnewbuf:
3227 *
3228 * Find and initialize a new buffer header, freeing up existing buffers
3229 * in the bufqueues as necessary. The new buffer is returned locked.
3230 *
3231 * We block if:
3232 * We have insufficient buffer headers
3233 * We have insufficient buffer space
3234 * buffer_arena is too fragmented ( space reservation fails )
3235 * If we have to flush dirty buffers ( but we try to avoid this )
3236 *
3237 * The caller is responsible for releasing the reserved bufspace after
3238 * allocbuf() is called.
3239 */
3240 static struct buf *
getnewbuf(struct vnode * vp,int slpflag,int slptimeo,int maxsize,int gbflags)3241 getnewbuf(struct vnode *vp, int slpflag, int slptimeo, int maxsize, int gbflags)
3242 {
3243 struct bufdomain *bd;
3244 struct buf *bp;
3245 bool metadata, reserved;
3246
3247 bp = NULL;
3248 KASSERT((gbflags & (GB_UNMAPPED | GB_KVAALLOC)) != GB_KVAALLOC,
3249 ("GB_KVAALLOC only makes sense with GB_UNMAPPED"));
3250 if (!unmapped_buf_allowed)
3251 gbflags &= ~(GB_UNMAPPED | GB_KVAALLOC);
3252
3253 if (vp == NULL || (vp->v_vflag & (VV_MD | VV_SYSTEM)) != 0 ||
3254 vp->v_type == VCHR)
3255 metadata = true;
3256 else
3257 metadata = false;
3258 if (vp == NULL)
3259 bd = &bdomain[0];
3260 else
3261 bd = &bdomain[vp->v_bufobj.bo_domain];
3262
3263 counter_u64_add(getnewbufcalls, 1);
3264 reserved = false;
3265 do {
3266 if (reserved == false &&
3267 bufspace_reserve(bd, maxsize, metadata) != 0) {
3268 counter_u64_add(getnewbufrestarts, 1);
3269 continue;
3270 }
3271 reserved = true;
3272 if ((bp = buf_alloc(bd)) == NULL) {
3273 counter_u64_add(getnewbufrestarts, 1);
3274 continue;
3275 }
3276 if (getnewbuf_kva(bp, gbflags, maxsize) == 0)
3277 return (bp);
3278 break;
3279 } while (buf_recycle(bd, false) == 0);
3280
3281 if (reserved)
3282 bufspace_release(bd, maxsize);
3283 if (bp != NULL) {
3284 bp->b_flags |= B_INVAL;
3285 brelse(bp);
3286 }
3287 bufspace_wait(bd, vp, gbflags, slpflag, slptimeo);
3288
3289 return (NULL);
3290 }
3291
3292 /*
3293 * buf_daemon:
3294 *
3295 * buffer flushing daemon. Buffers are normally flushed by the
3296 * update daemon but if it cannot keep up this process starts to
3297 * take the load in an attempt to prevent getnewbuf() from blocking.
3298 */
3299 static struct kproc_desc buf_kp = {
3300 "bufdaemon",
3301 buf_daemon,
3302 &bufdaemonproc
3303 };
3304 SYSINIT(bufdaemon, SI_SUB_KTHREAD_BUF, SI_ORDER_FIRST, kproc_start, &buf_kp);
3305
3306 static int
buf_flush(struct vnode * vp,struct bufdomain * bd,int target)3307 buf_flush(struct vnode *vp, struct bufdomain *bd, int target)
3308 {
3309 int flushed;
3310
3311 flushed = flushbufqueues(vp, bd, target, 0);
3312 if (flushed == 0) {
3313 /*
3314 * Could not find any buffers without rollback
3315 * dependencies, so just write the first one
3316 * in the hopes of eventually making progress.
3317 */
3318 if (vp != NULL && target > 2)
3319 target /= 2;
3320 flushbufqueues(vp, bd, target, 1);
3321 }
3322 return (flushed);
3323 }
3324
3325 static void
buf_daemon(void)3326 buf_daemon(void)
3327 {
3328 struct bufdomain *bd;
3329 int speedupreq;
3330 int lodirty;
3331 int i;
3332
3333 /*
3334 * This process needs to be suspended prior to shutdown sync.
3335 */
3336 EVENTHANDLER_REGISTER(shutdown_pre_sync, kthread_shutdown, curthread,
3337 SHUTDOWN_PRI_LAST + 100);
3338
3339 /*
3340 * Start the buf clean daemons as children threads.
3341 */
3342 for (i = 0 ; i < buf_domains; i++) {
3343 int error;
3344
3345 error = kthread_add((void (*)(void *))bufspace_daemon,
3346 &bdomain[i], curproc, NULL, 0, 0, "bufspacedaemon-%d", i);
3347 if (error)
3348 panic("error %d spawning bufspace daemon", error);
3349 }
3350
3351 /*
3352 * This process is allowed to take the buffer cache to the limit
3353 */
3354 curthread->td_pflags |= TDP_NORUNNINGBUF | TDP_BUFNEED;
3355 mtx_lock(&bdlock);
3356 for (;;) {
3357 bd_request = 0;
3358 mtx_unlock(&bdlock);
3359
3360 kthread_suspend_check();
3361
3362 /*
3363 * Save speedupreq for this pass and reset to capture new
3364 * requests.
3365 */
3366 speedupreq = bd_speedupreq;
3367 bd_speedupreq = 0;
3368
3369 /*
3370 * Flush each domain sequentially according to its level and
3371 * the speedup request.
3372 */
3373 for (i = 0; i < buf_domains; i++) {
3374 bd = &bdomain[i];
3375 if (speedupreq)
3376 lodirty = bd->bd_numdirtybuffers / 2;
3377 else
3378 lodirty = bd->bd_lodirtybuffers;
3379 while (bd->bd_numdirtybuffers > lodirty) {
3380 if (buf_flush(NULL, bd,
3381 bd->bd_numdirtybuffers - lodirty) == 0)
3382 break;
3383 kern_yield(PRI_USER);
3384 }
3385 }
3386
3387 /*
3388 * Only clear bd_request if we have reached our low water
3389 * mark. The buf_daemon normally waits 1 second and
3390 * then incrementally flushes any dirty buffers that have
3391 * built up, within reason.
3392 *
3393 * If we were unable to hit our low water mark and couldn't
3394 * find any flushable buffers, we sleep for a short period
3395 * to avoid endless loops on unlockable buffers.
3396 */
3397 mtx_lock(&bdlock);
3398 if (BIT_EMPTY(BUF_DOMAINS, &bdlodirty)) {
3399 /*
3400 * We reached our low water mark, reset the
3401 * request and sleep until we are needed again.
3402 * The sleep is just so the suspend code works.
3403 */
3404 bd_request = 0;
3405 /*
3406 * Do an extra wakeup in case dirty threshold
3407 * changed via sysctl and the explicit transition
3408 * out of shortfall was missed.
3409 */
3410 bdirtywakeup();
3411 if (runningbufspace <= lorunningspace)
3412 runningwakeup();
3413 msleep(&bd_request, &bdlock, PVM, "psleep", hz);
3414 } else {
3415 /*
3416 * We couldn't find any flushable dirty buffers but
3417 * still have too many dirty buffers, we
3418 * have to sleep and try again. (rare)
3419 */
3420 msleep(&bd_request, &bdlock, PVM, "qsleep", hz / 10);
3421 }
3422 }
3423 }
3424
3425 /*
3426 * flushbufqueues:
3427 *
3428 * Try to flush a buffer in the dirty queue. We must be careful to
3429 * free up B_INVAL buffers instead of write them, which NFS is
3430 * particularly sensitive to.
3431 */
3432 static int flushwithdeps = 0;
3433 SYSCTL_INT(_vfs, OID_AUTO, flushwithdeps, CTLFLAG_RW, &flushwithdeps,
3434 0, "Number of buffers flushed with dependecies that require rollbacks");
3435
3436 static int
flushbufqueues(struct vnode * lvp,struct bufdomain * bd,int target,int flushdeps)3437 flushbufqueues(struct vnode *lvp, struct bufdomain *bd, int target,
3438 int flushdeps)
3439 {
3440 struct bufqueue *bq;
3441 struct buf *sentinel;
3442 struct vnode *vp;
3443 struct mount *mp;
3444 struct buf *bp;
3445 int hasdeps;
3446 int flushed;
3447 int error;
3448 bool unlock;
3449
3450 flushed = 0;
3451 bq = &bd->bd_dirtyq;
3452 bp = NULL;
3453 sentinel = malloc(sizeof(struct buf), M_TEMP, M_WAITOK | M_ZERO);
3454 sentinel->b_qindex = QUEUE_SENTINEL;
3455 BQ_LOCK(bq);
3456 TAILQ_INSERT_HEAD(&bq->bq_queue, sentinel, b_freelist);
3457 BQ_UNLOCK(bq);
3458 while (flushed != target) {
3459 maybe_yield();
3460 BQ_LOCK(bq);
3461 bp = TAILQ_NEXT(sentinel, b_freelist);
3462 if (bp != NULL) {
3463 TAILQ_REMOVE(&bq->bq_queue, sentinel, b_freelist);
3464 TAILQ_INSERT_AFTER(&bq->bq_queue, bp, sentinel,
3465 b_freelist);
3466 } else {
3467 BQ_UNLOCK(bq);
3468 break;
3469 }
3470 /*
3471 * Skip sentinels inserted by other invocations of the
3472 * flushbufqueues(), taking care to not reorder them.
3473 *
3474 * Only flush the buffers that belong to the
3475 * vnode locked by the curthread.
3476 */
3477 if (bp->b_qindex == QUEUE_SENTINEL || (lvp != NULL &&
3478 bp->b_vp != lvp)) {
3479 BQ_UNLOCK(bq);
3480 continue;
3481 }
3482 error = BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT, NULL);
3483 BQ_UNLOCK(bq);
3484 if (error != 0)
3485 continue;
3486
3487 /*
3488 * BKGRDINPROG can only be set with the buf and bufobj
3489 * locks both held. We tolerate a race to clear it here.
3490 */
3491 if ((bp->b_vflags & BV_BKGRDINPROG) != 0 ||
3492 (bp->b_flags & B_DELWRI) == 0) {
3493 BUF_UNLOCK(bp);
3494 continue;
3495 }
3496 if (bp->b_flags & B_INVAL) {
3497 bremfreef(bp);
3498 brelse(bp);
3499 flushed++;
3500 continue;
3501 }
3502
3503 if (!LIST_EMPTY(&bp->b_dep) && buf_countdeps(bp, 0)) {
3504 if (flushdeps == 0) {
3505 BUF_UNLOCK(bp);
3506 continue;
3507 }
3508 hasdeps = 1;
3509 } else
3510 hasdeps = 0;
3511 /*
3512 * We must hold the lock on a vnode before writing
3513 * one of its buffers. Otherwise we may confuse, or
3514 * in the case of a snapshot vnode, deadlock the
3515 * system.
3516 *
3517 * The lock order here is the reverse of the normal
3518 * of vnode followed by buf lock. This is ok because
3519 * the NOWAIT will prevent deadlock.
3520 */
3521 vp = bp->b_vp;
3522 if (vn_start_write(vp, &mp, V_NOWAIT) != 0) {
3523 BUF_UNLOCK(bp);
3524 continue;
3525 }
3526 if (lvp == NULL) {
3527 unlock = true;
3528 error = vn_lock(vp, LK_EXCLUSIVE | LK_NOWAIT);
3529 } else {
3530 ASSERT_VOP_LOCKED(vp, "getbuf");
3531 unlock = false;
3532 error = VOP_ISLOCKED(vp) == LK_EXCLUSIVE ? 0 :
3533 vn_lock(vp, LK_TRYUPGRADE);
3534 }
3535 if (error == 0) {
3536 CTR3(KTR_BUF, "flushbufqueue(%p) vp %p flags %X",
3537 bp, bp->b_vp, bp->b_flags);
3538 if (curproc == bufdaemonproc) {
3539 vfs_bio_awrite(bp);
3540 } else {
3541 bremfree(bp);
3542 bwrite(bp);
3543 counter_u64_add(notbufdflushes, 1);
3544 }
3545 vn_finished_write(mp);
3546 if (unlock)
3547 VOP_UNLOCK(vp, 0);
3548 flushwithdeps += hasdeps;
3549 flushed++;
3550
3551 /*
3552 * Sleeping on runningbufspace while holding
3553 * vnode lock leads to deadlock.
3554 */
3555 if (curproc == bufdaemonproc &&
3556 runningbufspace > hirunningspace)
3557 waitrunningbufspace();
3558 continue;
3559 }
3560 vn_finished_write(mp);
3561 BUF_UNLOCK(bp);
3562 }
3563 BQ_LOCK(bq);
3564 TAILQ_REMOVE(&bq->bq_queue, sentinel, b_freelist);
3565 BQ_UNLOCK(bq);
3566 free(sentinel, M_TEMP);
3567 return (flushed);
3568 }
3569
3570 /*
3571 * Check to see if a block is currently memory resident.
3572 */
3573 struct buf *
incore(struct bufobj * bo,daddr_t blkno)3574 incore(struct bufobj *bo, daddr_t blkno)
3575 {
3576 struct buf *bp;
3577
3578 BO_RLOCK(bo);
3579 bp = gbincore(bo, blkno);
3580 BO_RUNLOCK(bo);
3581 return (bp);
3582 }
3583
3584 /*
3585 * Returns true if no I/O is needed to access the
3586 * associated VM object. This is like incore except
3587 * it also hunts around in the VM system for the data.
3588 */
3589
3590 static int
inmem(struct vnode * vp,daddr_t blkno)3591 inmem(struct vnode * vp, daddr_t blkno)
3592 {
3593 vm_object_t obj;
3594 vm_offset_t toff, tinc, size;
3595 vm_page_t m;
3596 vm_ooffset_t off;
3597
3598 ASSERT_VOP_LOCKED(vp, "inmem");
3599
3600 if (incore(&vp->v_bufobj, blkno))
3601 return 1;
3602 if (vp->v_mount == NULL)
3603 return 0;
3604 obj = vp->v_object;
3605 if (obj == NULL)
3606 return (0);
3607
3608 size = PAGE_SIZE;
3609 if (size > vp->v_mount->mnt_stat.f_iosize)
3610 size = vp->v_mount->mnt_stat.f_iosize;
3611 off = (vm_ooffset_t)blkno * (vm_ooffset_t)vp->v_mount->mnt_stat.f_iosize;
3612
3613 VM_OBJECT_RLOCK(obj);
3614 for (toff = 0; toff < vp->v_mount->mnt_stat.f_iosize; toff += tinc) {
3615 m = vm_page_lookup(obj, OFF_TO_IDX(off + toff));
3616 if (!m)
3617 goto notinmem;
3618 tinc = size;
3619 if (tinc > PAGE_SIZE - ((toff + off) & PAGE_MASK))
3620 tinc = PAGE_SIZE - ((toff + off) & PAGE_MASK);
3621 if (vm_page_is_valid(m,
3622 (vm_offset_t) ((toff + off) & PAGE_MASK), tinc) == 0)
3623 goto notinmem;
3624 }
3625 VM_OBJECT_RUNLOCK(obj);
3626 return 1;
3627
3628 notinmem:
3629 VM_OBJECT_RUNLOCK(obj);
3630 return (0);
3631 }
3632
3633 /*
3634 * Set the dirty range for a buffer based on the status of the dirty
3635 * bits in the pages comprising the buffer. The range is limited
3636 * to the size of the buffer.
3637 *
3638 * Tell the VM system that the pages associated with this buffer
3639 * are clean. This is used for delayed writes where the data is
3640 * going to go to disk eventually without additional VM intevention.
3641 *
3642 * Note that while we only really need to clean through to b_bcount, we
3643 * just go ahead and clean through to b_bufsize.
3644 */
3645 static void
vfs_clean_pages_dirty_buf(struct buf * bp)3646 vfs_clean_pages_dirty_buf(struct buf *bp)
3647 {
3648 vm_ooffset_t foff, noff, eoff;
3649 vm_page_t m;
3650 int i;
3651
3652 if ((bp->b_flags & B_VMIO) == 0 || bp->b_bufsize == 0)
3653 return;
3654
3655 foff = bp->b_offset;
3656 KASSERT(bp->b_offset != NOOFFSET,
3657 ("vfs_clean_pages_dirty_buf: no buffer offset"));
3658
3659 VM_OBJECT_WLOCK(bp->b_bufobj->bo_object);
3660 vfs_drain_busy_pages(bp);
3661 vfs_setdirty_locked_object(bp);
3662 for (i = 0; i < bp->b_npages; i++) {
3663 noff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK;
3664 eoff = noff;
3665 if (eoff > bp->b_offset + bp->b_bufsize)
3666 eoff = bp->b_offset + bp->b_bufsize;
3667 m = bp->b_pages[i];
3668 vfs_page_set_validclean(bp, foff, m);
3669 /* vm_page_clear_dirty(m, foff & PAGE_MASK, eoff - foff); */
3670 foff = noff;
3671 }
3672 VM_OBJECT_WUNLOCK(bp->b_bufobj->bo_object);
3673 }
3674
3675 static void
vfs_setdirty_locked_object(struct buf * bp)3676 vfs_setdirty_locked_object(struct buf *bp)
3677 {
3678 vm_object_t object;
3679 int i;
3680
3681 object = bp->b_bufobj->bo_object;
3682 VM_OBJECT_ASSERT_WLOCKED(object);
3683
3684 /*
3685 * We qualify the scan for modified pages on whether the
3686 * object has been flushed yet.
3687 */
3688 if ((object->flags & OBJ_MIGHTBEDIRTY) != 0) {
3689 vm_offset_t boffset;
3690 vm_offset_t eoffset;
3691
3692 /*
3693 * test the pages to see if they have been modified directly
3694 * by users through the VM system.
3695 */
3696 for (i = 0; i < bp->b_npages; i++)
3697 vm_page_test_dirty(bp->b_pages[i]);
3698
3699 /*
3700 * Calculate the encompassing dirty range, boffset and eoffset,
3701 * (eoffset - boffset) bytes.
3702 */
3703
3704 for (i = 0; i < bp->b_npages; i++) {
3705 if (bp->b_pages[i]->dirty)
3706 break;
3707 }
3708 boffset = (i << PAGE_SHIFT) - (bp->b_offset & PAGE_MASK);
3709
3710 for (i = bp->b_npages - 1; i >= 0; --i) {
3711 if (bp->b_pages[i]->dirty) {
3712 break;
3713 }
3714 }
3715 eoffset = ((i + 1) << PAGE_SHIFT) - (bp->b_offset & PAGE_MASK);
3716
3717 /*
3718 * Fit it to the buffer.
3719 */
3720
3721 if (eoffset > bp->b_bcount)
3722 eoffset = bp->b_bcount;
3723
3724 /*
3725 * If we have a good dirty range, merge with the existing
3726 * dirty range.
3727 */
3728
3729 if (boffset < eoffset) {
3730 if (bp->b_dirtyoff > boffset)
3731 bp->b_dirtyoff = boffset;
3732 if (bp->b_dirtyend < eoffset)
3733 bp->b_dirtyend = eoffset;
3734 }
3735 }
3736 }
3737
3738 /*
3739 * Allocate the KVA mapping for an existing buffer.
3740 * If an unmapped buffer is provided but a mapped buffer is requested, take
3741 * also care to properly setup mappings between pages and KVA.
3742 */
3743 static void
bp_unmapped_get_kva(struct buf * bp,daddr_t blkno,int size,int gbflags)3744 bp_unmapped_get_kva(struct buf *bp, daddr_t blkno, int size, int gbflags)
3745 {
3746 int bsize, maxsize, need_mapping, need_kva;
3747 off_t offset;
3748
3749 need_mapping = bp->b_data == unmapped_buf &&
3750 (gbflags & GB_UNMAPPED) == 0;
3751 need_kva = bp->b_kvabase == unmapped_buf &&
3752 bp->b_data == unmapped_buf &&
3753 (gbflags & GB_KVAALLOC) != 0;
3754 if (!need_mapping && !need_kva)
3755 return;
3756
3757 BUF_CHECK_UNMAPPED(bp);
3758
3759 if (need_mapping && bp->b_kvabase != unmapped_buf) {
3760 /*
3761 * Buffer is not mapped, but the KVA was already
3762 * reserved at the time of the instantiation. Use the
3763 * allocated space.
3764 */
3765 goto has_addr;
3766 }
3767
3768 /*
3769 * Calculate the amount of the address space we would reserve
3770 * if the buffer was mapped.
3771 */
3772 bsize = vn_isdisk(bp->b_vp, NULL) ? DEV_BSIZE : bp->b_bufobj->bo_bsize;
3773 KASSERT(bsize != 0, ("bsize == 0, check bo->bo_bsize"));
3774 offset = blkno * bsize;
3775 maxsize = size + (offset & PAGE_MASK);
3776 maxsize = imax(maxsize, bsize);
3777
3778 while (bufkva_alloc(bp, maxsize, gbflags) != 0) {
3779 if ((gbflags & GB_NOWAIT_BD) != 0) {
3780 /*
3781 * XXXKIB: defragmentation cannot
3782 * succeed, not sure what else to do.
3783 */
3784 panic("GB_NOWAIT_BD and GB_UNMAPPED %p", bp);
3785 }
3786 counter_u64_add(mappingrestarts, 1);
3787 bufspace_wait(bufdomain(bp), bp->b_vp, gbflags, 0, 0);
3788 }
3789 has_addr:
3790 if (need_mapping) {
3791 /* b_offset is handled by bpmap_qenter. */
3792 bp->b_data = bp->b_kvabase;
3793 BUF_CHECK_MAPPED(bp);
3794 bpmap_qenter(bp);
3795 }
3796 }
3797
3798 struct buf *
getblk(struct vnode * vp,daddr_t blkno,int size,int slpflag,int slptimeo,int flags)3799 getblk(struct vnode *vp, daddr_t blkno, int size, int slpflag, int slptimeo,
3800 int flags)
3801 {
3802 struct buf *bp;
3803 int error;
3804
3805 error = getblkx(vp, blkno, size, slpflag, slptimeo, flags, &bp);
3806 if (error != 0)
3807 return (NULL);
3808 return (bp);
3809 }
3810
3811 /*
3812 * getblkx:
3813 *
3814 * Get a block given a specified block and offset into a file/device.
3815 * The buffers B_DONE bit will be cleared on return, making it almost
3816 * ready for an I/O initiation. B_INVAL may or may not be set on
3817 * return. The caller should clear B_INVAL prior to initiating a
3818 * READ.
3819 *
3820 * For a non-VMIO buffer, B_CACHE is set to the opposite of B_INVAL for
3821 * an existing buffer.
3822 *
3823 * For a VMIO buffer, B_CACHE is modified according to the backing VM.
3824 * If getblk()ing a previously 0-sized invalid buffer, B_CACHE is set
3825 * and then cleared based on the backing VM. If the previous buffer is
3826 * non-0-sized but invalid, B_CACHE will be cleared.
3827 *
3828 * If getblk() must create a new buffer, the new buffer is returned with
3829 * both B_INVAL and B_CACHE clear unless it is a VMIO buffer, in which
3830 * case it is returned with B_INVAL clear and B_CACHE set based on the
3831 * backing VM.
3832 *
3833 * getblk() also forces a bwrite() for any B_DELWRI buffer whos
3834 * B_CACHE bit is clear.
3835 *
3836 * What this means, basically, is that the caller should use B_CACHE to
3837 * determine whether the buffer is fully valid or not and should clear
3838 * B_INVAL prior to issuing a read. If the caller intends to validate
3839 * the buffer by loading its data area with something, the caller needs
3840 * to clear B_INVAL. If the caller does this without issuing an I/O,
3841 * the caller should set B_CACHE ( as an optimization ), else the caller
3842 * should issue the I/O and biodone() will set B_CACHE if the I/O was
3843 * a write attempt or if it was a successful read. If the caller
3844 * intends to issue a READ, the caller must clear B_INVAL and BIO_ERROR
3845 * prior to issuing the READ. biodone() will *not* clear B_INVAL.
3846 */
3847 int
getblkx(struct vnode * vp,daddr_t blkno,int size,int slpflag,int slptimeo,int flags,struct buf ** bpp)3848 getblkx(struct vnode *vp, daddr_t blkno, int size, int slpflag, int slptimeo,
3849 int flags, struct buf **bpp)
3850 {
3851 struct buf *bp;
3852 struct bufobj *bo;
3853 daddr_t d_blkno;
3854 int bsize, error, maxsize, vmio;
3855 off_t offset;
3856
3857 CTR3(KTR_BUF, "getblk(%p, %ld, %d)", vp, (long)blkno, size);
3858 KASSERT((flags & (GB_UNMAPPED | GB_KVAALLOC)) != GB_KVAALLOC,
3859 ("GB_KVAALLOC only makes sense with GB_UNMAPPED"));
3860 ASSERT_VOP_LOCKED(vp, "getblk");
3861 if (size > maxbcachebuf)
3862 panic("getblk: size(%d) > maxbcachebuf(%d)\n", size,
3863 maxbcachebuf);
3864 if (!unmapped_buf_allowed)
3865 flags &= ~(GB_UNMAPPED | GB_KVAALLOC);
3866
3867 bo = &vp->v_bufobj;
3868 d_blkno = blkno;
3869 loop:
3870 BO_RLOCK(bo);
3871 bp = gbincore(bo, blkno);
3872 if (bp != NULL) {
3873 int lockflags;
3874 /*
3875 * Buffer is in-core. If the buffer is not busy nor managed,
3876 * it must be on a queue.
3877 */
3878 lockflags = LK_EXCLUSIVE | LK_SLEEPFAIL | LK_INTERLOCK;
3879
3880 if ((flags & GB_LOCK_NOWAIT) != 0)
3881 lockflags |= LK_NOWAIT;
3882
3883 error = BUF_TIMELOCK(bp, lockflags,
3884 BO_LOCKPTR(bo), "getblk", slpflag, slptimeo);
3885
3886 /*
3887 * If we slept and got the lock we have to restart in case
3888 * the buffer changed identities.
3889 */
3890 if (error == ENOLCK)
3891 goto loop;
3892 /* We timed out or were interrupted. */
3893 else if (error != 0)
3894 return (error);
3895 /* If recursed, assume caller knows the rules. */
3896 else if (BUF_LOCKRECURSED(bp))
3897 goto end;
3898
3899 /*
3900 * The buffer is locked. B_CACHE is cleared if the buffer is
3901 * invalid. Otherwise, for a non-VMIO buffer, B_CACHE is set
3902 * and for a VMIO buffer B_CACHE is adjusted according to the
3903 * backing VM cache.
3904 */
3905 if (bp->b_flags & B_INVAL)
3906 bp->b_flags &= ~B_CACHE;
3907 else if ((bp->b_flags & (B_VMIO | B_INVAL)) == 0)
3908 bp->b_flags |= B_CACHE;
3909 if (bp->b_flags & B_MANAGED)
3910 MPASS(bp->b_qindex == QUEUE_NONE);
3911 else
3912 bremfree(bp);
3913
3914 /*
3915 * check for size inconsistencies for non-VMIO case.
3916 */
3917 if (bp->b_bcount != size) {
3918 if ((bp->b_flags & B_VMIO) == 0 ||
3919 (size > bp->b_kvasize)) {
3920 if (bp->b_flags & B_DELWRI) {
3921 bp->b_flags |= B_NOCACHE;
3922 bwrite(bp);
3923 } else {
3924 if (LIST_EMPTY(&bp->b_dep)) {
3925 bp->b_flags |= B_RELBUF;
3926 brelse(bp);
3927 } else {
3928 bp->b_flags |= B_NOCACHE;
3929 bwrite(bp);
3930 }
3931 }
3932 goto loop;
3933 }
3934 }
3935
3936 /*
3937 * Handle the case of unmapped buffer which should
3938 * become mapped, or the buffer for which KVA
3939 * reservation is requested.
3940 */
3941 bp_unmapped_get_kva(bp, blkno, size, flags);
3942
3943 /*
3944 * If the size is inconsistent in the VMIO case, we can resize
3945 * the buffer. This might lead to B_CACHE getting set or
3946 * cleared. If the size has not changed, B_CACHE remains
3947 * unchanged from its previous state.
3948 */
3949 allocbuf(bp, size);
3950
3951 KASSERT(bp->b_offset != NOOFFSET,
3952 ("getblk: no buffer offset"));
3953
3954 /*
3955 * A buffer with B_DELWRI set and B_CACHE clear must
3956 * be committed before we can return the buffer in
3957 * order to prevent the caller from issuing a read
3958 * ( due to B_CACHE not being set ) and overwriting
3959 * it.
3960 *
3961 * Most callers, including NFS and FFS, need this to
3962 * operate properly either because they assume they
3963 * can issue a read if B_CACHE is not set, or because
3964 * ( for example ) an uncached B_DELWRI might loop due
3965 * to softupdates re-dirtying the buffer. In the latter
3966 * case, B_CACHE is set after the first write completes,
3967 * preventing further loops.
3968 * NOTE! b*write() sets B_CACHE. If we cleared B_CACHE
3969 * above while extending the buffer, we cannot allow the
3970 * buffer to remain with B_CACHE set after the write
3971 * completes or it will represent a corrupt state. To
3972 * deal with this we set B_NOCACHE to scrap the buffer
3973 * after the write.
3974 *
3975 * We might be able to do something fancy, like setting
3976 * B_CACHE in bwrite() except if B_DELWRI is already set,
3977 * so the below call doesn't set B_CACHE, but that gets real
3978 * confusing. This is much easier.
3979 */
3980
3981 if ((bp->b_flags & (B_CACHE|B_DELWRI)) == B_DELWRI) {
3982 bp->b_flags |= B_NOCACHE;
3983 bwrite(bp);
3984 goto loop;
3985 }
3986 bp->b_flags &= ~B_DONE;
3987 } else {
3988 /*
3989 * Buffer is not in-core, create new buffer. The buffer
3990 * returned by getnewbuf() is locked. Note that the returned
3991 * buffer is also considered valid (not marked B_INVAL).
3992 */
3993 BO_RUNLOCK(bo);
3994 /*
3995 * If the user does not want us to create the buffer, bail out
3996 * here.
3997 */
3998 if (flags & GB_NOCREAT)
3999 return (EEXIST);
4000
4001 bsize = vn_isdisk(vp, NULL) ? DEV_BSIZE : bo->bo_bsize;
4002 KASSERT(bsize != 0, ("bsize == 0, check bo->bo_bsize"));
4003 offset = blkno * bsize;
4004 vmio = vp->v_object != NULL;
4005 if (vmio) {
4006 maxsize = size + (offset & PAGE_MASK);
4007 } else {
4008 maxsize = size;
4009 /* Do not allow non-VMIO notmapped buffers. */
4010 flags &= ~(GB_UNMAPPED | GB_KVAALLOC);
4011 }
4012 maxsize = imax(maxsize, bsize);
4013 if ((flags & GB_NOSPARSE) != 0 && vmio &&
4014 !vn_isdisk(vp, NULL)) {
4015 error = VOP_BMAP(vp, blkno, NULL, &d_blkno, 0, 0);
4016 KASSERT(error != EOPNOTSUPP,
4017 ("GB_NOSPARSE from fs not supporting bmap, vp %p",
4018 vp));
4019 if (error != 0)
4020 return (error);
4021 if (d_blkno == -1)
4022 return (EJUSTRETURN);
4023 }
4024
4025 bp = getnewbuf(vp, slpflag, slptimeo, maxsize, flags);
4026 if (bp == NULL) {
4027 if (slpflag || slptimeo)
4028 return (ETIMEDOUT);
4029 /*
4030 * XXX This is here until the sleep path is diagnosed
4031 * enough to work under very low memory conditions.
4032 *
4033 * There's an issue on low memory, 4BSD+non-preempt
4034 * systems (eg MIPS routers with 32MB RAM) where buffer
4035 * exhaustion occurs without sleeping for buffer
4036 * reclaimation. This just sticks in a loop and
4037 * constantly attempts to allocate a buffer, which
4038 * hits exhaustion and tries to wakeup bufdaemon.
4039 * This never happens because we never yield.
4040 *
4041 * The real solution is to identify and fix these cases
4042 * so we aren't effectively busy-waiting in a loop
4043 * until the reclaimation path has cycles to run.
4044 */
4045 kern_yield(PRI_USER);
4046 goto loop;
4047 }
4048
4049 /*
4050 * This code is used to make sure that a buffer is not
4051 * created while the getnewbuf routine is blocked.
4052 * This can be a problem whether the vnode is locked or not.
4053 * If the buffer is created out from under us, we have to
4054 * throw away the one we just created.
4055 *
4056 * Note: this must occur before we associate the buffer
4057 * with the vp especially considering limitations in
4058 * the splay tree implementation when dealing with duplicate
4059 * lblkno's.
4060 */
4061 BO_LOCK(bo);
4062 if (gbincore(bo, blkno)) {
4063 BO_UNLOCK(bo);
4064 bp->b_flags |= B_INVAL;
4065 bufspace_release(bufdomain(bp), maxsize);
4066 brelse(bp);
4067 goto loop;
4068 }
4069
4070 /*
4071 * Insert the buffer into the hash, so that it can
4072 * be found by incore.
4073 */
4074 bp->b_lblkno = blkno;
4075 bp->b_blkno = d_blkno;
4076 bp->b_offset = offset;
4077 bgetvp(vp, bp);
4078 BO_UNLOCK(bo);
4079
4080 /*
4081 * set B_VMIO bit. allocbuf() the buffer bigger. Since the
4082 * buffer size starts out as 0, B_CACHE will be set by
4083 * allocbuf() for the VMIO case prior to it testing the
4084 * backing store for validity.
4085 */
4086
4087 if (vmio) {
4088 bp->b_flags |= B_VMIO;
4089 KASSERT(vp->v_object == bp->b_bufobj->bo_object,
4090 ("ARGH! different b_bufobj->bo_object %p %p %p\n",
4091 bp, vp->v_object, bp->b_bufobj->bo_object));
4092 } else {
4093 bp->b_flags &= ~B_VMIO;
4094 KASSERT(bp->b_bufobj->bo_object == NULL,
4095 ("ARGH! has b_bufobj->bo_object %p %p\n",
4096 bp, bp->b_bufobj->bo_object));
4097 BUF_CHECK_MAPPED(bp);
4098 }
4099
4100 allocbuf(bp, size);
4101 bufspace_release(bufdomain(bp), maxsize);
4102 bp->b_flags &= ~B_DONE;
4103 }
4104 CTR4(KTR_BUF, "getblk(%p, %ld, %d) = %p", vp, (long)blkno, size, bp);
4105 BUF_ASSERT_HELD(bp);
4106 end:
4107 buf_track(bp, __func__);
4108 KASSERT(bp->b_bufobj == bo,
4109 ("bp %p wrong b_bufobj %p should be %p", bp, bp->b_bufobj, bo));
4110 *bpp = bp;
4111 return (0);
4112 }
4113
4114 /*
4115 * Get an empty, disassociated buffer of given size. The buffer is initially
4116 * set to B_INVAL.
4117 */
4118 struct buf *
geteblk(int size,int flags)4119 geteblk(int size, int flags)
4120 {
4121 struct buf *bp;
4122 int maxsize;
4123
4124 maxsize = (size + BKVAMASK) & ~BKVAMASK;
4125 while ((bp = getnewbuf(NULL, 0, 0, maxsize, flags)) == NULL) {
4126 if ((flags & GB_NOWAIT_BD) &&
4127 (curthread->td_pflags & TDP_BUFNEED) != 0)
4128 return (NULL);
4129 }
4130 allocbuf(bp, size);
4131 bufspace_release(bufdomain(bp), maxsize);
4132 bp->b_flags |= B_INVAL; /* b_dep cleared by getnewbuf() */
4133 BUF_ASSERT_HELD(bp);
4134 return (bp);
4135 }
4136
4137 /*
4138 * Truncate the backing store for a non-vmio buffer.
4139 */
4140 static void
vfs_nonvmio_truncate(struct buf * bp,int newbsize)4141 vfs_nonvmio_truncate(struct buf *bp, int newbsize)
4142 {
4143
4144 if (bp->b_flags & B_MALLOC) {
4145 /*
4146 * malloced buffers are not shrunk
4147 */
4148 if (newbsize == 0) {
4149 bufmallocadjust(bp, 0);
4150 free(bp->b_data, M_BIOBUF);
4151 bp->b_data = bp->b_kvabase;
4152 bp->b_flags &= ~B_MALLOC;
4153 }
4154 return;
4155 }
4156 vm_hold_free_pages(bp, newbsize);
4157 bufspace_adjust(bp, newbsize);
4158 }
4159
4160 /*
4161 * Extend the backing for a non-VMIO buffer.
4162 */
4163 static void
vfs_nonvmio_extend(struct buf * bp,int newbsize)4164 vfs_nonvmio_extend(struct buf *bp, int newbsize)
4165 {
4166 caddr_t origbuf;
4167 int origbufsize;
4168
4169 /*
4170 * We only use malloced memory on the first allocation.
4171 * and revert to page-allocated memory when the buffer
4172 * grows.
4173 *
4174 * There is a potential smp race here that could lead
4175 * to bufmallocspace slightly passing the max. It
4176 * is probably extremely rare and not worth worrying
4177 * over.
4178 */
4179 if (bp->b_bufsize == 0 && newbsize <= PAGE_SIZE/2 &&
4180 bufmallocspace < maxbufmallocspace) {
4181 bp->b_data = malloc(newbsize, M_BIOBUF, M_WAITOK);
4182 bp->b_flags |= B_MALLOC;
4183 bufmallocadjust(bp, newbsize);
4184 return;
4185 }
4186
4187 /*
4188 * If the buffer is growing on its other-than-first
4189 * allocation then we revert to the page-allocation
4190 * scheme.
4191 */
4192 origbuf = NULL;
4193 origbufsize = 0;
4194 if (bp->b_flags & B_MALLOC) {
4195 origbuf = bp->b_data;
4196 origbufsize = bp->b_bufsize;
4197 bp->b_data = bp->b_kvabase;
4198 bufmallocadjust(bp, 0);
4199 bp->b_flags &= ~B_MALLOC;
4200 newbsize = round_page(newbsize);
4201 }
4202 vm_hold_load_pages(bp, (vm_offset_t) bp->b_data + bp->b_bufsize,
4203 (vm_offset_t) bp->b_data + newbsize);
4204 if (origbuf != NULL) {
4205 bcopy(origbuf, bp->b_data, origbufsize);
4206 free(origbuf, M_BIOBUF);
4207 }
4208 bufspace_adjust(bp, newbsize);
4209 }
4210
4211 /*
4212 * This code constitutes the buffer memory from either anonymous system
4213 * memory (in the case of non-VMIO operations) or from an associated
4214 * VM object (in the case of VMIO operations). This code is able to
4215 * resize a buffer up or down.
4216 *
4217 * Note that this code is tricky, and has many complications to resolve
4218 * deadlock or inconsistent data situations. Tread lightly!!!
4219 * There are B_CACHE and B_DELWRI interactions that must be dealt with by
4220 * the caller. Calling this code willy nilly can result in the loss of data.
4221 *
4222 * allocbuf() only adjusts B_CACHE for VMIO buffers. getblk() deals with
4223 * B_CACHE for the non-VMIO case.
4224 */
4225 int
allocbuf(struct buf * bp,int size)4226 allocbuf(struct buf *bp, int size)
4227 {
4228 int newbsize;
4229
4230 BUF_ASSERT_HELD(bp);
4231
4232 if (bp->b_bcount == size)
4233 return (1);
4234
4235 if (bp->b_kvasize != 0 && bp->b_kvasize < size)
4236 panic("allocbuf: buffer too small");
4237
4238 newbsize = roundup2(size, DEV_BSIZE);
4239 if ((bp->b_flags & B_VMIO) == 0) {
4240 if ((bp->b_flags & B_MALLOC) == 0)
4241 newbsize = round_page(newbsize);
4242 /*
4243 * Just get anonymous memory from the kernel. Don't
4244 * mess with B_CACHE.
4245 */
4246 if (newbsize < bp->b_bufsize)
4247 vfs_nonvmio_truncate(bp, newbsize);
4248 else if (newbsize > bp->b_bufsize)
4249 vfs_nonvmio_extend(bp, newbsize);
4250 } else {
4251 int desiredpages;
4252
4253 desiredpages = (size == 0) ? 0 :
4254 num_pages((bp->b_offset & PAGE_MASK) + newbsize);
4255
4256 if (bp->b_flags & B_MALLOC)
4257 panic("allocbuf: VMIO buffer can't be malloced");
4258 /*
4259 * Set B_CACHE initially if buffer is 0 length or will become
4260 * 0-length.
4261 */
4262 if (size == 0 || bp->b_bufsize == 0)
4263 bp->b_flags |= B_CACHE;
4264
4265 if (newbsize < bp->b_bufsize)
4266 vfs_vmio_truncate(bp, desiredpages);
4267 /* XXX This looks as if it should be newbsize > b_bufsize */
4268 else if (size > bp->b_bcount)
4269 vfs_vmio_extend(bp, desiredpages, size);
4270 bufspace_adjust(bp, newbsize);
4271 }
4272 bp->b_bcount = size; /* requested buffer size. */
4273 return (1);
4274 }
4275
4276 extern int inflight_transient_maps;
4277
4278 static struct bio_queue nondump_bios;
4279
4280 void
biodone(struct bio * bp)4281 biodone(struct bio *bp)
4282 {
4283 struct mtx *mtxp;
4284 void (*done)(struct bio *);
4285 vm_offset_t start, end;
4286
4287 biotrack(bp, __func__);
4288
4289 /*
4290 * Avoid completing I/O when dumping after a panic since that may
4291 * result in a deadlock in the filesystem or pager code. Note that
4292 * this doesn't affect dumps that were started manually since we aim
4293 * to keep the system usable after it has been resumed.
4294 */
4295 if (__predict_false(dumping && SCHEDULER_STOPPED())) {
4296 TAILQ_INSERT_HEAD(&nondump_bios, bp, bio_queue);
4297 return;
4298 }
4299 if ((bp->bio_flags & BIO_TRANSIENT_MAPPING) != 0) {
4300 bp->bio_flags &= ~BIO_TRANSIENT_MAPPING;
4301 bp->bio_flags |= BIO_UNMAPPED;
4302 start = trunc_page((vm_offset_t)bp->bio_data);
4303 end = round_page((vm_offset_t)bp->bio_data + bp->bio_length);
4304 bp->bio_data = unmapped_buf;
4305 pmap_qremove(start, atop(end - start));
4306 vmem_free(transient_arena, start, end - start);
4307 atomic_add_int(&inflight_transient_maps, -1);
4308 }
4309 done = bp->bio_done;
4310 if (done == NULL) {
4311 mtxp = mtx_pool_find(mtxpool_sleep, bp);
4312 mtx_lock(mtxp);
4313 bp->bio_flags |= BIO_DONE;
4314 wakeup(bp);
4315 mtx_unlock(mtxp);
4316 } else
4317 done(bp);
4318 }
4319
4320 /*
4321 * Wait for a BIO to finish.
4322 */
4323 int
biowait(struct bio * bp,const char * wmesg)4324 biowait(struct bio *bp, const char *wmesg)
4325 {
4326 struct mtx *mtxp;
4327
4328 mtxp = mtx_pool_find(mtxpool_sleep, bp);
4329 mtx_lock(mtxp);
4330 while ((bp->bio_flags & BIO_DONE) == 0)
4331 msleep(bp, mtxp, PRIBIO, wmesg, 0);
4332 mtx_unlock(mtxp);
4333 if (bp->bio_error != 0)
4334 return (bp->bio_error);
4335 if (!(bp->bio_flags & BIO_ERROR))
4336 return (0);
4337 return (EIO);
4338 }
4339
4340 void
biofinish(struct bio * bp,struct devstat * stat,int error)4341 biofinish(struct bio *bp, struct devstat *stat, int error)
4342 {
4343
4344 if (error) {
4345 bp->bio_error = error;
4346 bp->bio_flags |= BIO_ERROR;
4347 }
4348 if (stat != NULL)
4349 devstat_end_transaction_bio(stat, bp);
4350 biodone(bp);
4351 }
4352
4353 #if defined(BUF_TRACKING) || defined(FULL_BUF_TRACKING)
4354 void
biotrack_buf(struct bio * bp,const char * location)4355 biotrack_buf(struct bio *bp, const char *location)
4356 {
4357
4358 buf_track(bp->bio_track_bp, location);
4359 }
4360 #endif
4361
4362 /*
4363 * bufwait:
4364 *
4365 * Wait for buffer I/O completion, returning error status. The buffer
4366 * is left locked and B_DONE on return. B_EINTR is converted into an EINTR
4367 * error and cleared.
4368 */
4369 int
bufwait(struct buf * bp)4370 bufwait(struct buf *bp)
4371 {
4372 if (bp->b_iocmd == BIO_READ)
4373 bwait(bp, PRIBIO, "biord");
4374 else
4375 bwait(bp, PRIBIO, "biowr");
4376 if (bp->b_flags & B_EINTR) {
4377 bp->b_flags &= ~B_EINTR;
4378 return (EINTR);
4379 }
4380 if (bp->b_ioflags & BIO_ERROR) {
4381 return (bp->b_error ? bp->b_error : EIO);
4382 } else {
4383 return (0);
4384 }
4385 }
4386
4387 /*
4388 * bufdone:
4389 *
4390 * Finish I/O on a buffer, optionally calling a completion function.
4391 * This is usually called from an interrupt so process blocking is
4392 * not allowed.
4393 *
4394 * biodone is also responsible for setting B_CACHE in a B_VMIO bp.
4395 * In a non-VMIO bp, B_CACHE will be set on the next getblk()
4396 * assuming B_INVAL is clear.
4397 *
4398 * For the VMIO case, we set B_CACHE if the op was a read and no
4399 * read error occurred, or if the op was a write. B_CACHE is never
4400 * set if the buffer is invalid or otherwise uncacheable.
4401 *
4402 * bufdone does not mess with B_INVAL, allowing the I/O routine or the
4403 * initiator to leave B_INVAL set to brelse the buffer out of existence
4404 * in the biodone routine.
4405 */
4406 void
bufdone(struct buf * bp)4407 bufdone(struct buf *bp)
4408 {
4409 struct bufobj *dropobj;
4410 void (*biodone)(struct buf *);
4411
4412 buf_track(bp, __func__);
4413 CTR3(KTR_BUF, "bufdone(%p) vp %p flags %X", bp, bp->b_vp, bp->b_flags);
4414 dropobj = NULL;
4415
4416 KASSERT(!(bp->b_flags & B_DONE), ("biodone: bp %p already done", bp));
4417 BUF_ASSERT_HELD(bp);
4418
4419 runningbufwakeup(bp);
4420 if (bp->b_iocmd == BIO_WRITE)
4421 dropobj = bp->b_bufobj;
4422 /* call optional completion function if requested */
4423 if (bp->b_iodone != NULL) {
4424 biodone = bp->b_iodone;
4425 bp->b_iodone = NULL;
4426 (*biodone) (bp);
4427 if (dropobj)
4428 bufobj_wdrop(dropobj);
4429 return;
4430 }
4431 if (bp->b_flags & B_VMIO) {
4432 /*
4433 * Set B_CACHE if the op was a normal read and no error
4434 * occurred. B_CACHE is set for writes in the b*write()
4435 * routines.
4436 */
4437 if (bp->b_iocmd == BIO_READ &&
4438 !(bp->b_flags & (B_INVAL|B_NOCACHE)) &&
4439 !(bp->b_ioflags & BIO_ERROR))
4440 bp->b_flags |= B_CACHE;
4441 vfs_vmio_iodone(bp);
4442 }
4443 if (!LIST_EMPTY(&bp->b_dep))
4444 buf_complete(bp);
4445 if ((bp->b_flags & B_CKHASH) != 0) {
4446 KASSERT(bp->b_iocmd == BIO_READ,
4447 ("bufdone: b_iocmd %d not BIO_READ", bp->b_iocmd));
4448 KASSERT(buf_mapped(bp), ("bufdone: bp %p not mapped", bp));
4449 (*bp->b_ckhashcalc)(bp);
4450 }
4451 /*
4452 * For asynchronous completions, release the buffer now. The brelse
4453 * will do a wakeup there if necessary - so no need to do a wakeup
4454 * here in the async case. The sync case always needs to do a wakeup.
4455 */
4456 if (bp->b_flags & B_ASYNC) {
4457 if ((bp->b_flags & (B_NOCACHE | B_INVAL | B_RELBUF)) ||
4458 (bp->b_ioflags & BIO_ERROR))
4459 brelse(bp);
4460 else
4461 bqrelse(bp);
4462 } else
4463 bdone(bp);
4464 if (dropobj)
4465 bufobj_wdrop(dropobj);
4466 }
4467
4468 /*
4469 * This routine is called in lieu of iodone in the case of
4470 * incomplete I/O. This keeps the busy status for pages
4471 * consistent.
4472 */
4473 void
vfs_unbusy_pages(struct buf * bp)4474 vfs_unbusy_pages(struct buf *bp)
4475 {
4476 int i;
4477 vm_object_t obj;
4478 vm_page_t m;
4479
4480 runningbufwakeup(bp);
4481 if (!(bp->b_flags & B_VMIO))
4482 return;
4483
4484 obj = bp->b_bufobj->bo_object;
4485 VM_OBJECT_WLOCK(obj);
4486 for (i = 0; i < bp->b_npages; i++) {
4487 m = bp->b_pages[i];
4488 if (m == bogus_page) {
4489 m = vm_page_lookup(obj, OFF_TO_IDX(bp->b_offset) + i);
4490 if (!m)
4491 panic("vfs_unbusy_pages: page missing\n");
4492 bp->b_pages[i] = m;
4493 if (buf_mapped(bp)) {
4494 BUF_CHECK_MAPPED(bp);
4495 pmap_qenter(trunc_page((vm_offset_t)bp->b_data),
4496 bp->b_pages, bp->b_npages);
4497 } else
4498 BUF_CHECK_UNMAPPED(bp);
4499 }
4500 vm_page_sunbusy(m);
4501 }
4502 vm_object_pip_wakeupn(obj, bp->b_npages);
4503 VM_OBJECT_WUNLOCK(obj);
4504 }
4505
4506 /*
4507 * vfs_page_set_valid:
4508 *
4509 * Set the valid bits in a page based on the supplied offset. The
4510 * range is restricted to the buffer's size.
4511 *
4512 * This routine is typically called after a read completes.
4513 */
4514 static void
vfs_page_set_valid(struct buf * bp,vm_ooffset_t off,vm_page_t m)4515 vfs_page_set_valid(struct buf *bp, vm_ooffset_t off, vm_page_t m)
4516 {
4517 vm_ooffset_t eoff;
4518
4519 /*
4520 * Compute the end offset, eoff, such that [off, eoff) does not span a
4521 * page boundary and eoff is not greater than the end of the buffer.
4522 * The end of the buffer, in this case, is our file EOF, not the
4523 * allocation size of the buffer.
4524 */
4525 eoff = (off + PAGE_SIZE) & ~(vm_ooffset_t)PAGE_MASK;
4526 if (eoff > bp->b_offset + bp->b_bcount)
4527 eoff = bp->b_offset + bp->b_bcount;
4528
4529 /*
4530 * Set valid range. This is typically the entire buffer and thus the
4531 * entire page.
4532 */
4533 if (eoff > off)
4534 vm_page_set_valid_range(m, off & PAGE_MASK, eoff - off);
4535 }
4536
4537 /*
4538 * vfs_page_set_validclean:
4539 *
4540 * Set the valid bits and clear the dirty bits in a page based on the
4541 * supplied offset. The range is restricted to the buffer's size.
4542 */
4543 static void
vfs_page_set_validclean(struct buf * bp,vm_ooffset_t off,vm_page_t m)4544 vfs_page_set_validclean(struct buf *bp, vm_ooffset_t off, vm_page_t m)
4545 {
4546 vm_ooffset_t soff, eoff;
4547
4548 /*
4549 * Start and end offsets in buffer. eoff - soff may not cross a
4550 * page boundary or cross the end of the buffer. The end of the
4551 * buffer, in this case, is our file EOF, not the allocation size
4552 * of the buffer.
4553 */
4554 soff = off;
4555 eoff = (off + PAGE_SIZE) & ~(off_t)PAGE_MASK;
4556 if (eoff > bp->b_offset + bp->b_bcount)
4557 eoff = bp->b_offset + bp->b_bcount;
4558
4559 /*
4560 * Set valid range. This is typically the entire buffer and thus the
4561 * entire page.
4562 */
4563 if (eoff > soff) {
4564 vm_page_set_validclean(
4565 m,
4566 (vm_offset_t) (soff & PAGE_MASK),
4567 (vm_offset_t) (eoff - soff)
4568 );
4569 }
4570 }
4571
4572 /*
4573 * Ensure that all buffer pages are not exclusive busied. If any page is
4574 * exclusive busy, drain it.
4575 */
4576 void
vfs_drain_busy_pages(struct buf * bp)4577 vfs_drain_busy_pages(struct buf *bp)
4578 {
4579 vm_page_t m;
4580 int i, last_busied;
4581
4582 VM_OBJECT_ASSERT_WLOCKED(bp->b_bufobj->bo_object);
4583 last_busied = 0;
4584 for (i = 0; i < bp->b_npages; i++) {
4585 m = bp->b_pages[i];
4586 if (vm_page_xbusied(m)) {
4587 for (; last_busied < i; last_busied++)
4588 vm_page_sbusy(bp->b_pages[last_busied]);
4589 while (vm_page_xbusied(m)) {
4590 vm_page_lock(m);
4591 VM_OBJECT_WUNLOCK(bp->b_bufobj->bo_object);
4592 vm_page_busy_sleep(m, "vbpage", true);
4593 VM_OBJECT_WLOCK(bp->b_bufobj->bo_object);
4594 }
4595 }
4596 }
4597 for (i = 0; i < last_busied; i++)
4598 vm_page_sunbusy(bp->b_pages[i]);
4599 }
4600
4601 /*
4602 * This routine is called before a device strategy routine.
4603 * It is used to tell the VM system that paging I/O is in
4604 * progress, and treat the pages associated with the buffer
4605 * almost as being exclusive busy. Also the object paging_in_progress
4606 * flag is handled to make sure that the object doesn't become
4607 * inconsistent.
4608 *
4609 * Since I/O has not been initiated yet, certain buffer flags
4610 * such as BIO_ERROR or B_INVAL may be in an inconsistent state
4611 * and should be ignored.
4612 */
4613 void
vfs_busy_pages(struct buf * bp,int clear_modify)4614 vfs_busy_pages(struct buf *bp, int clear_modify)
4615 {
4616 vm_object_t obj;
4617 vm_ooffset_t foff;
4618 vm_page_t m;
4619 int i;
4620 bool bogus;
4621
4622 if (!(bp->b_flags & B_VMIO))
4623 return;
4624
4625 obj = bp->b_bufobj->bo_object;
4626 foff = bp->b_offset;
4627 KASSERT(bp->b_offset != NOOFFSET,
4628 ("vfs_busy_pages: no buffer offset"));
4629 VM_OBJECT_WLOCK(obj);
4630 vfs_drain_busy_pages(bp);
4631 if (bp->b_bufsize != 0)
4632 vfs_setdirty_locked_object(bp);
4633 bogus = false;
4634 for (i = 0; i < bp->b_npages; i++) {
4635 m = bp->b_pages[i];
4636
4637 if ((bp->b_flags & B_CLUSTER) == 0) {
4638 vm_object_pip_add(obj, 1);
4639 vm_page_sbusy(m);
4640 }
4641 /*
4642 * When readying a buffer for a read ( i.e
4643 * clear_modify == 0 ), it is important to do
4644 * bogus_page replacement for valid pages in
4645 * partially instantiated buffers. Partially
4646 * instantiated buffers can, in turn, occur when
4647 * reconstituting a buffer from its VM backing store
4648 * base. We only have to do this if B_CACHE is
4649 * clear ( which causes the I/O to occur in the
4650 * first place ). The replacement prevents the read
4651 * I/O from overwriting potentially dirty VM-backed
4652 * pages. XXX bogus page replacement is, uh, bogus.
4653 * It may not work properly with small-block devices.
4654 * We need to find a better way.
4655 */
4656 if (clear_modify) {
4657 pmap_remove_write(m);
4658 vfs_page_set_validclean(bp, foff, m);
4659 } else if (m->valid == VM_PAGE_BITS_ALL &&
4660 (bp->b_flags & B_CACHE) == 0) {
4661 bp->b_pages[i] = bogus_page;
4662 bogus = true;
4663 }
4664 foff = (foff + PAGE_SIZE) & ~(off_t)PAGE_MASK;
4665 }
4666 VM_OBJECT_WUNLOCK(obj);
4667 if (bogus && buf_mapped(bp)) {
4668 BUF_CHECK_MAPPED(bp);
4669 pmap_qenter(trunc_page((vm_offset_t)bp->b_data),
4670 bp->b_pages, bp->b_npages);
4671 }
4672 }
4673
4674 /*
4675 * vfs_bio_set_valid:
4676 *
4677 * Set the range within the buffer to valid. The range is
4678 * relative to the beginning of the buffer, b_offset. Note that
4679 * b_offset itself may be offset from the beginning of the first
4680 * page.
4681 */
4682 void
vfs_bio_set_valid(struct buf * bp,int base,int size)4683 vfs_bio_set_valid(struct buf *bp, int base, int size)
4684 {
4685 int i, n;
4686 vm_page_t m;
4687
4688 if (!(bp->b_flags & B_VMIO))
4689 return;
4690
4691 /*
4692 * Fixup base to be relative to beginning of first page.
4693 * Set initial n to be the maximum number of bytes in the
4694 * first page that can be validated.
4695 */
4696 base += (bp->b_offset & PAGE_MASK);
4697 n = PAGE_SIZE - (base & PAGE_MASK);
4698
4699 VM_OBJECT_WLOCK(bp->b_bufobj->bo_object);
4700 for (i = base / PAGE_SIZE; size > 0 && i < bp->b_npages; ++i) {
4701 m = bp->b_pages[i];
4702 if (n > size)
4703 n = size;
4704 vm_page_set_valid_range(m, base & PAGE_MASK, n);
4705 base += n;
4706 size -= n;
4707 n = PAGE_SIZE;
4708 }
4709 VM_OBJECT_WUNLOCK(bp->b_bufobj->bo_object);
4710 }
4711
4712 /*
4713 * vfs_bio_clrbuf:
4714 *
4715 * If the specified buffer is a non-VMIO buffer, clear the entire
4716 * buffer. If the specified buffer is a VMIO buffer, clear and
4717 * validate only the previously invalid portions of the buffer.
4718 * This routine essentially fakes an I/O, so we need to clear
4719 * BIO_ERROR and B_INVAL.
4720 *
4721 * Note that while we only theoretically need to clear through b_bcount,
4722 * we go ahead and clear through b_bufsize.
4723 */
4724 void
vfs_bio_clrbuf(struct buf * bp)4725 vfs_bio_clrbuf(struct buf *bp)
4726 {
4727 int i, j, mask, sa, ea, slide;
4728
4729 if ((bp->b_flags & (B_VMIO | B_MALLOC)) != B_VMIO) {
4730 clrbuf(bp);
4731 return;
4732 }
4733 bp->b_flags &= ~B_INVAL;
4734 bp->b_ioflags &= ~BIO_ERROR;
4735 VM_OBJECT_WLOCK(bp->b_bufobj->bo_object);
4736 if ((bp->b_npages == 1) && (bp->b_bufsize < PAGE_SIZE) &&
4737 (bp->b_offset & PAGE_MASK) == 0) {
4738 if (bp->b_pages[0] == bogus_page)
4739 goto unlock;
4740 mask = (1 << (bp->b_bufsize / DEV_BSIZE)) - 1;
4741 VM_OBJECT_ASSERT_WLOCKED(bp->b_pages[0]->object);
4742 if ((bp->b_pages[0]->valid & mask) == mask)
4743 goto unlock;
4744 if ((bp->b_pages[0]->valid & mask) == 0) {
4745 pmap_zero_page_area(bp->b_pages[0], 0, bp->b_bufsize);
4746 bp->b_pages[0]->valid |= mask;
4747 goto unlock;
4748 }
4749 }
4750 sa = bp->b_offset & PAGE_MASK;
4751 slide = 0;
4752 for (i = 0; i < bp->b_npages; i++, sa = 0) {
4753 slide = imin(slide + PAGE_SIZE, bp->b_offset + bp->b_bufsize);
4754 ea = slide & PAGE_MASK;
4755 if (ea == 0)
4756 ea = PAGE_SIZE;
4757 if (bp->b_pages[i] == bogus_page)
4758 continue;
4759 j = sa / DEV_BSIZE;
4760 mask = ((1 << ((ea - sa) / DEV_BSIZE)) - 1) << j;
4761 VM_OBJECT_ASSERT_WLOCKED(bp->b_pages[i]->object);
4762 if ((bp->b_pages[i]->valid & mask) == mask)
4763 continue;
4764 if ((bp->b_pages[i]->valid & mask) == 0)
4765 pmap_zero_page_area(bp->b_pages[i], sa, ea - sa);
4766 else {
4767 for (; sa < ea; sa += DEV_BSIZE, j++) {
4768 if ((bp->b_pages[i]->valid & (1 << j)) == 0) {
4769 pmap_zero_page_area(bp->b_pages[i],
4770 sa, DEV_BSIZE);
4771 }
4772 }
4773 }
4774 bp->b_pages[i]->valid |= mask;
4775 }
4776 unlock:
4777 VM_OBJECT_WUNLOCK(bp->b_bufobj->bo_object);
4778 bp->b_resid = 0;
4779 }
4780
4781 void
vfs_bio_bzero_buf(struct buf * bp,int base,int size)4782 vfs_bio_bzero_buf(struct buf *bp, int base, int size)
4783 {
4784 vm_page_t m;
4785 int i, n;
4786
4787 if (buf_mapped(bp)) {
4788 BUF_CHECK_MAPPED(bp);
4789 bzero(bp->b_data + base, size);
4790 } else {
4791 BUF_CHECK_UNMAPPED(bp);
4792 n = PAGE_SIZE - (base & PAGE_MASK);
4793 for (i = base / PAGE_SIZE; size > 0 && i < bp->b_npages; ++i) {
4794 m = bp->b_pages[i];
4795 if (n > size)
4796 n = size;
4797 pmap_zero_page_area(m, base & PAGE_MASK, n);
4798 base += n;
4799 size -= n;
4800 n = PAGE_SIZE;
4801 }
4802 }
4803 }
4804
4805 /*
4806 * Update buffer flags based on I/O request parameters, optionally releasing the
4807 * buffer. If it's VMIO or direct I/O, the buffer pages are released to the VM,
4808 * where they may be placed on a page queue (VMIO) or freed immediately (direct
4809 * I/O). Otherwise the buffer is released to the cache.
4810 */
4811 static void
b_io_dismiss(struct buf * bp,int ioflag,bool release)4812 b_io_dismiss(struct buf *bp, int ioflag, bool release)
4813 {
4814
4815 KASSERT((ioflag & IO_NOREUSE) == 0 || (ioflag & IO_VMIO) != 0,
4816 ("buf %p non-VMIO noreuse", bp));
4817
4818 if ((ioflag & IO_DIRECT) != 0)
4819 bp->b_flags |= B_DIRECT;
4820 if ((ioflag & IO_EXT) != 0)
4821 bp->b_xflags |= BX_ALTDATA;
4822 if ((ioflag & (IO_VMIO | IO_DIRECT)) != 0 && LIST_EMPTY(&bp->b_dep)) {
4823 bp->b_flags |= B_RELBUF;
4824 if ((ioflag & IO_NOREUSE) != 0)
4825 bp->b_flags |= B_NOREUSE;
4826 if (release)
4827 brelse(bp);
4828 } else if (release)
4829 bqrelse(bp);
4830 }
4831
4832 void
vfs_bio_brelse(struct buf * bp,int ioflag)4833 vfs_bio_brelse(struct buf *bp, int ioflag)
4834 {
4835
4836 b_io_dismiss(bp, ioflag, true);
4837 }
4838
4839 void
vfs_bio_set_flags(struct buf * bp,int ioflag)4840 vfs_bio_set_flags(struct buf *bp, int ioflag)
4841 {
4842
4843 b_io_dismiss(bp, ioflag, false);
4844 }
4845
4846 /*
4847 * vm_hold_load_pages and vm_hold_free_pages get pages into
4848 * a buffers address space. The pages are anonymous and are
4849 * not associated with a file object.
4850 */
4851 static void
vm_hold_load_pages(struct buf * bp,vm_offset_t from,vm_offset_t to)4852 vm_hold_load_pages(struct buf *bp, vm_offset_t from, vm_offset_t to)
4853 {
4854 vm_offset_t pg;
4855 vm_page_t p;
4856 int index;
4857
4858 BUF_CHECK_MAPPED(bp);
4859
4860 to = round_page(to);
4861 from = round_page(from);
4862 index = (from - trunc_page((vm_offset_t)bp->b_data)) >> PAGE_SHIFT;
4863
4864 for (pg = from; pg < to; pg += PAGE_SIZE, index++) {
4865 /*
4866 * note: must allocate system pages since blocking here
4867 * could interfere with paging I/O, no matter which
4868 * process we are.
4869 */
4870 p = vm_page_alloc(NULL, 0, VM_ALLOC_SYSTEM | VM_ALLOC_NOOBJ |
4871 VM_ALLOC_WIRED | VM_ALLOC_COUNT((to - pg) >> PAGE_SHIFT) |
4872 VM_ALLOC_WAITOK);
4873 pmap_qenter(pg, &p, 1);
4874 bp->b_pages[index] = p;
4875 }
4876 bp->b_npages = index;
4877 }
4878
4879 /* Return pages associated with this buf to the vm system */
4880 static void
vm_hold_free_pages(struct buf * bp,int newbsize)4881 vm_hold_free_pages(struct buf *bp, int newbsize)
4882 {
4883 vm_offset_t from;
4884 vm_page_t p;
4885 int index, newnpages;
4886
4887 BUF_CHECK_MAPPED(bp);
4888
4889 from = round_page((vm_offset_t)bp->b_data + newbsize);
4890 newnpages = (from - trunc_page((vm_offset_t)bp->b_data)) >> PAGE_SHIFT;
4891 if (bp->b_npages > newnpages)
4892 pmap_qremove(from, bp->b_npages - newnpages);
4893 for (index = newnpages; index < bp->b_npages; index++) {
4894 p = bp->b_pages[index];
4895 bp->b_pages[index] = NULL;
4896 p->wire_count--;
4897 vm_page_free(p);
4898 }
4899 vm_wire_sub(bp->b_npages - newnpages);
4900 bp->b_npages = newnpages;
4901 }
4902
4903 /*
4904 * Map an IO request into kernel virtual address space.
4905 *
4906 * All requests are (re)mapped into kernel VA space.
4907 * Notice that we use b_bufsize for the size of the buffer
4908 * to be mapped. b_bcount might be modified by the driver.
4909 *
4910 * Note that even if the caller determines that the address space should
4911 * be valid, a race or a smaller-file mapped into a larger space may
4912 * actually cause vmapbuf() to fail, so all callers of vmapbuf() MUST
4913 * check the return value.
4914 *
4915 * This function only works with pager buffers.
4916 */
4917 int
vmapbuf(struct buf * bp,void * uaddr,size_t len,int mapbuf)4918 vmapbuf(struct buf *bp, void *uaddr, size_t len, int mapbuf)
4919 {
4920 vm_prot_t prot;
4921 int pidx;
4922
4923 prot = VM_PROT_READ;
4924 if (bp->b_iocmd == BIO_READ)
4925 prot |= VM_PROT_WRITE; /* Less backwards than it looks */
4926 if ((pidx = vm_fault_quick_hold_pages(&curproc->p_vmspace->vm_map,
4927 (vm_offset_t)uaddr, len, prot, bp->b_pages,
4928 btoc(MAXPHYS))) < 0)
4929 return (-1);
4930 bp->b_bufsize = len;
4931 bp->b_npages = pidx;
4932 bp->b_offset = ((vm_offset_t)uaddr) & PAGE_MASK;
4933 if (mapbuf || !unmapped_buf_allowed) {
4934 pmap_qenter((vm_offset_t)bp->b_kvabase, bp->b_pages, pidx);
4935 bp->b_data = bp->b_kvabase + bp->b_offset;
4936 } else
4937 bp->b_data = unmapped_buf;
4938 return(0);
4939 }
4940
4941 /*
4942 * Free the io map PTEs associated with this IO operation.
4943 * We also invalidate the TLB entries and restore the original b_addr.
4944 *
4945 * This function only works with pager buffers.
4946 */
4947 void
vunmapbuf(struct buf * bp)4948 vunmapbuf(struct buf *bp)
4949 {
4950 int npages;
4951
4952 npages = bp->b_npages;
4953 if (buf_mapped(bp))
4954 pmap_qremove(trunc_page((vm_offset_t)bp->b_data), npages);
4955 vm_page_unhold_pages(bp->b_pages, npages);
4956
4957 bp->b_data = unmapped_buf;
4958 }
4959
4960 void
bdone(struct buf * bp)4961 bdone(struct buf *bp)
4962 {
4963 struct mtx *mtxp;
4964
4965 mtxp = mtx_pool_find(mtxpool_sleep, bp);
4966 mtx_lock(mtxp);
4967 bp->b_flags |= B_DONE;
4968 wakeup(bp);
4969 mtx_unlock(mtxp);
4970 }
4971
4972 void
bwait(struct buf * bp,u_char pri,const char * wchan)4973 bwait(struct buf *bp, u_char pri, const char *wchan)
4974 {
4975 struct mtx *mtxp;
4976
4977 mtxp = mtx_pool_find(mtxpool_sleep, bp);
4978 mtx_lock(mtxp);
4979 while ((bp->b_flags & B_DONE) == 0)
4980 msleep(bp, mtxp, pri, wchan, 0);
4981 mtx_unlock(mtxp);
4982 }
4983
4984 int
bufsync(struct bufobj * bo,int waitfor)4985 bufsync(struct bufobj *bo, int waitfor)
4986 {
4987
4988 return (VOP_FSYNC(bo2vnode(bo), waitfor, curthread));
4989 }
4990
4991 void
bufstrategy(struct bufobj * bo,struct buf * bp)4992 bufstrategy(struct bufobj *bo, struct buf *bp)
4993 {
4994 int i __unused;
4995 struct vnode *vp;
4996
4997 vp = bp->b_vp;
4998 KASSERT(vp == bo->bo_private, ("Inconsistent vnode bufstrategy"));
4999 KASSERT(vp->v_type != VCHR && vp->v_type != VBLK,
5000 ("Wrong vnode in bufstrategy(bp=%p, vp=%p)", bp, vp));
5001 i = VOP_STRATEGY(vp, bp);
5002 KASSERT(i == 0, ("VOP_STRATEGY failed bp=%p vp=%p", bp, bp->b_vp));
5003 }
5004
5005 /*
5006 * Initialize a struct bufobj before use. Memory is assumed zero filled.
5007 */
5008 void
bufobj_init(struct bufobj * bo,void * private)5009 bufobj_init(struct bufobj *bo, void *private)
5010 {
5011 static volatile int bufobj_cleanq;
5012
5013 bo->bo_domain =
5014 atomic_fetchadd_int(&bufobj_cleanq, 1) % buf_domains;
5015 rw_init(BO_LOCKPTR(bo), "bufobj interlock");
5016 bo->bo_private = private;
5017 TAILQ_INIT(&bo->bo_clean.bv_hd);
5018 TAILQ_INIT(&bo->bo_dirty.bv_hd);
5019 }
5020
5021 void
bufobj_wrefl(struct bufobj * bo)5022 bufobj_wrefl(struct bufobj *bo)
5023 {
5024
5025 KASSERT(bo != NULL, ("NULL bo in bufobj_wref"));
5026 ASSERT_BO_WLOCKED(bo);
5027 bo->bo_numoutput++;
5028 }
5029
5030 void
bufobj_wref(struct bufobj * bo)5031 bufobj_wref(struct bufobj *bo)
5032 {
5033
5034 KASSERT(bo != NULL, ("NULL bo in bufobj_wref"));
5035 BO_LOCK(bo);
5036 bo->bo_numoutput++;
5037 BO_UNLOCK(bo);
5038 }
5039
5040 void
bufobj_wdrop(struct bufobj * bo)5041 bufobj_wdrop(struct bufobj *bo)
5042 {
5043
5044 KASSERT(bo != NULL, ("NULL bo in bufobj_wdrop"));
5045 BO_LOCK(bo);
5046 KASSERT(bo->bo_numoutput > 0, ("bufobj_wdrop non-positive count"));
5047 if ((--bo->bo_numoutput == 0) && (bo->bo_flag & BO_WWAIT)) {
5048 bo->bo_flag &= ~BO_WWAIT;
5049 wakeup(&bo->bo_numoutput);
5050 }
5051 BO_UNLOCK(bo);
5052 }
5053
5054 int
bufobj_wwait(struct bufobj * bo,int slpflag,int timeo)5055 bufobj_wwait(struct bufobj *bo, int slpflag, int timeo)
5056 {
5057 int error;
5058
5059 KASSERT(bo != NULL, ("NULL bo in bufobj_wwait"));
5060 ASSERT_BO_WLOCKED(bo);
5061 error = 0;
5062 while (bo->bo_numoutput) {
5063 bo->bo_flag |= BO_WWAIT;
5064 error = msleep(&bo->bo_numoutput, BO_LOCKPTR(bo),
5065 slpflag | (PRIBIO + 1), "bo_wwait", timeo);
5066 if (error)
5067 break;
5068 }
5069 return (error);
5070 }
5071
5072 /*
5073 * Set bio_data or bio_ma for struct bio from the struct buf.
5074 */
5075 void
bdata2bio(struct buf * bp,struct bio * bip)5076 bdata2bio(struct buf *bp, struct bio *bip)
5077 {
5078
5079 if (!buf_mapped(bp)) {
5080 KASSERT(unmapped_buf_allowed, ("unmapped"));
5081 bip->bio_ma = bp->b_pages;
5082 bip->bio_ma_n = bp->b_npages;
5083 bip->bio_data = unmapped_buf;
5084 bip->bio_ma_offset = (vm_offset_t)bp->b_offset & PAGE_MASK;
5085 bip->bio_flags |= BIO_UNMAPPED;
5086 KASSERT(round_page(bip->bio_ma_offset + bip->bio_length) /
5087 PAGE_SIZE == bp->b_npages,
5088 ("Buffer %p too short: %d %lld %d", bp, bip->bio_ma_offset,
5089 (long long)bip->bio_length, bip->bio_ma_n));
5090 } else {
5091 bip->bio_data = bp->b_data;
5092 bip->bio_ma = NULL;
5093 }
5094 }
5095
5096 /*
5097 * The MIPS pmap code currently doesn't handle aliased pages.
5098 * The VIPT caches may not handle page aliasing themselves, leading
5099 * to data corruption.
5100 *
5101 * As such, this code makes a system extremely unhappy if said
5102 * system doesn't support unaliasing the above situation in hardware.
5103 * Some "recent" systems (eg some mips24k/mips74k cores) don't enable
5104 * this feature at build time, so it has to be handled in software.
5105 *
5106 * Once the MIPS pmap/cache code grows to support this function on
5107 * earlier chips, it should be flipped back off.
5108 */
5109 #ifdef __mips__
5110 static int buf_pager_relbuf = 1;
5111 #else
5112 static int buf_pager_relbuf = 0;
5113 #endif
5114 SYSCTL_INT(_vfs, OID_AUTO, buf_pager_relbuf, CTLFLAG_RWTUN,
5115 &buf_pager_relbuf, 0,
5116 "Make buffer pager release buffers after reading");
5117
5118 /*
5119 * The buffer pager. It uses buffer reads to validate pages.
5120 *
5121 * In contrast to the generic local pager from vm/vnode_pager.c, this
5122 * pager correctly and easily handles volumes where the underlying
5123 * device block size is greater than the machine page size. The
5124 * buffer cache transparently extends the requested page run to be
5125 * aligned at the block boundary, and does the necessary bogus page
5126 * replacements in the addends to avoid obliterating already valid
5127 * pages.
5128 *
5129 * The only non-trivial issue is that the exclusive busy state for
5130 * pages, which is assumed by the vm_pager_getpages() interface, is
5131 * incompatible with the VMIO buffer cache's desire to share-busy the
5132 * pages. This function performs a trivial downgrade of the pages'
5133 * state before reading buffers, and a less trivial upgrade from the
5134 * shared-busy to excl-busy state after the read.
5135 */
5136 int
vfs_bio_getpages(struct vnode * vp,vm_page_t * ma,int count,int * rbehind,int * rahead,vbg_get_lblkno_t get_lblkno,vbg_get_blksize_t get_blksize)5137 vfs_bio_getpages(struct vnode *vp, vm_page_t *ma, int count,
5138 int *rbehind, int *rahead, vbg_get_lblkno_t get_lblkno,
5139 vbg_get_blksize_t get_blksize)
5140 {
5141 vm_page_t m;
5142 vm_object_t object;
5143 struct buf *bp;
5144 struct mount *mp;
5145 daddr_t lbn, lbnp;
5146 vm_ooffset_t la, lb, poff, poffe;
5147 long bo_bs, bsize;
5148 int br_flags, error, i, pgsin, pgsin_a, pgsin_b;
5149 bool redo, lpart;
5150
5151 object = vp->v_object;
5152 mp = vp->v_mount;
5153 error = 0;
5154 la = IDX_TO_OFF(ma[count - 1]->pindex);
5155 if (la >= object->un_pager.vnp.vnp_size)
5156 return (VM_PAGER_BAD);
5157
5158 /*
5159 * Change the meaning of la from where the last requested page starts
5160 * to where it ends, because that's the end of the requested region
5161 * and the start of the potential read-ahead region.
5162 */
5163 la += PAGE_SIZE;
5164 lpart = la > object->un_pager.vnp.vnp_size;
5165 error = get_blksize(vp, get_lblkno(vp, IDX_TO_OFF(ma[0]->pindex)),
5166 &bo_bs);
5167 if (error != 0)
5168 return (VM_PAGER_ERROR);
5169
5170 /*
5171 * Calculate read-ahead, behind and total pages.
5172 */
5173 pgsin = count;
5174 lb = IDX_TO_OFF(ma[0]->pindex);
5175 pgsin_b = OFF_TO_IDX(lb - rounddown2(lb, bo_bs));
5176 pgsin += pgsin_b;
5177 if (rbehind != NULL)
5178 *rbehind = pgsin_b;
5179 pgsin_a = OFF_TO_IDX(roundup2(la, bo_bs) - la);
5180 if (la + IDX_TO_OFF(pgsin_a) >= object->un_pager.vnp.vnp_size)
5181 pgsin_a = OFF_TO_IDX(roundup2(object->un_pager.vnp.vnp_size,
5182 PAGE_SIZE) - la);
5183 pgsin += pgsin_a;
5184 if (rahead != NULL)
5185 *rahead = pgsin_a;
5186 VM_CNT_INC(v_vnodein);
5187 VM_CNT_ADD(v_vnodepgsin, pgsin);
5188
5189 br_flags = (mp != NULL && (mp->mnt_kern_flag & MNTK_UNMAPPED_BUFS)
5190 != 0) ? GB_UNMAPPED : 0;
5191 VM_OBJECT_WLOCK(object);
5192 again:
5193 for (i = 0; i < count; i++) {
5194 if (ma[i] != bogus_page)
5195 vm_page_busy_downgrade(ma[i]);
5196 }
5197 VM_OBJECT_WUNLOCK(object);
5198
5199 lbnp = -1;
5200 for (i = 0; i < count; i++) {
5201 m = ma[i];
5202 if (m == bogus_page)
5203 continue;
5204
5205 /*
5206 * Pages are shared busy and the object lock is not
5207 * owned, which together allow for the pages'
5208 * invalidation. The racy test for validity avoids
5209 * useless creation of the buffer for the most typical
5210 * case when invalidation is not used in redo or for
5211 * parallel read. The shared->excl upgrade loop at
5212 * the end of the function catches the race in a
5213 * reliable way (protected by the object lock).
5214 */
5215 if (m->valid == VM_PAGE_BITS_ALL)
5216 continue;
5217
5218 poff = IDX_TO_OFF(m->pindex);
5219 poffe = MIN(poff + PAGE_SIZE, object->un_pager.vnp.vnp_size);
5220 for (; poff < poffe; poff += bsize) {
5221 lbn = get_lblkno(vp, poff);
5222 if (lbn == lbnp)
5223 goto next_page;
5224 lbnp = lbn;
5225
5226 error = get_blksize(vp, lbn, &bsize);
5227 if (error == 0)
5228 error = bread_gb(vp, lbn, bsize,
5229 curthread->td_ucred, br_flags, &bp);
5230 if (error != 0)
5231 goto end_pages;
5232 if (bp->b_rcred == curthread->td_ucred) {
5233 crfree(bp->b_rcred);
5234 bp->b_rcred = NOCRED;
5235 }
5236 if (LIST_EMPTY(&bp->b_dep)) {
5237 /*
5238 * Invalidation clears m->valid, but
5239 * may leave B_CACHE flag if the
5240 * buffer existed at the invalidation
5241 * time. In this case, recycle the
5242 * buffer to do real read on next
5243 * bread() after redo.
5244 *
5245 * Otherwise B_RELBUF is not strictly
5246 * necessary, enable to reduce buf
5247 * cache pressure.
5248 */
5249 if (buf_pager_relbuf ||
5250 m->valid != VM_PAGE_BITS_ALL)
5251 bp->b_flags |= B_RELBUF;
5252
5253 bp->b_flags &= ~B_NOCACHE;
5254 brelse(bp);
5255 } else {
5256 bqrelse(bp);
5257 }
5258 }
5259 KASSERT(1 /* racy, enable for debugging */ ||
5260 m->valid == VM_PAGE_BITS_ALL || i == count - 1,
5261 ("buf %d %p invalid", i, m));
5262 if (i == count - 1 && lpart) {
5263 VM_OBJECT_WLOCK(object);
5264 if (m->valid != 0 &&
5265 m->valid != VM_PAGE_BITS_ALL)
5266 vm_page_zero_invalid(m, TRUE);
5267 VM_OBJECT_WUNLOCK(object);
5268 }
5269 next_page:;
5270 }
5271 end_pages:
5272
5273 VM_OBJECT_WLOCK(object);
5274 redo = false;
5275 for (i = 0; i < count; i++) {
5276 if (ma[i] == bogus_page)
5277 continue;
5278 vm_page_sunbusy(ma[i]);
5279 ma[i] = vm_page_grab(object, ma[i]->pindex, VM_ALLOC_NORMAL);
5280
5281 /*
5282 * Since the pages were only sbusy while neither the
5283 * buffer nor the object lock was held by us, or
5284 * reallocated while vm_page_grab() slept for busy
5285 * relinguish, they could have been invalidated.
5286 * Recheck the valid bits and re-read as needed.
5287 *
5288 * Note that the last page is made fully valid in the
5289 * read loop, and partial validity for the page at
5290 * index count - 1 could mean that the page was
5291 * invalidated or removed, so we must restart for
5292 * safety as well.
5293 */
5294 if (ma[i]->valid != VM_PAGE_BITS_ALL)
5295 redo = true;
5296 }
5297 if (redo && error == 0)
5298 goto again;
5299 VM_OBJECT_WUNLOCK(object);
5300 return (error != 0 ? VM_PAGER_ERROR : VM_PAGER_OK);
5301 }
5302
5303 #include "opt_ddb.h"
5304 #ifdef DDB
5305 #include <ddb/ddb.h>
5306
5307 /* DDB command to show buffer data */
DB_SHOW_COMMAND(buffer,db_show_buffer)5308 DB_SHOW_COMMAND(buffer, db_show_buffer)
5309 {
5310 /* get args */
5311 struct buf *bp = (struct buf *)addr;
5312 #ifdef FULL_BUF_TRACKING
5313 uint32_t i, j;
5314 #endif
5315
5316 if (!have_addr) {
5317 db_printf("usage: show buffer <addr>\n");
5318 return;
5319 }
5320
5321 db_printf("buf at %p\n", bp);
5322 db_printf("b_flags = 0x%b, b_xflags=0x%b, b_vflags=0x%b\n",
5323 (u_int)bp->b_flags, PRINT_BUF_FLAGS, (u_int)bp->b_xflags,
5324 PRINT_BUF_XFLAGS, (u_int)bp->b_vflags, PRINT_BUF_VFLAGS);
5325 db_printf(
5326 "b_error = %d, b_bufsize = %ld, b_bcount = %ld, b_resid = %ld\n"
5327 "b_bufobj = (%p), b_data = %p, b_blkno = %jd, b_lblkno = %jd, "
5328 "b_dep = %p\n",
5329 bp->b_error, bp->b_bufsize, bp->b_bcount, bp->b_resid,
5330 bp->b_bufobj, bp->b_data, (intmax_t)bp->b_blkno,
5331 (intmax_t)bp->b_lblkno, bp->b_dep.lh_first);
5332 db_printf("b_kvabase = %p, b_kvasize = %d\n",
5333 bp->b_kvabase, bp->b_kvasize);
5334 if (bp->b_npages) {
5335 int i;
5336 db_printf("b_npages = %d, pages(OBJ, IDX, PA): ", bp->b_npages);
5337 for (i = 0; i < bp->b_npages; i++) {
5338 vm_page_t m;
5339 m = bp->b_pages[i];
5340 if (m != NULL)
5341 db_printf("(%p, 0x%lx, 0x%lx)", m->object,
5342 (u_long)m->pindex,
5343 (u_long)VM_PAGE_TO_PHYS(m));
5344 else
5345 db_printf("( ??? )");
5346 if ((i + 1) < bp->b_npages)
5347 db_printf(",");
5348 }
5349 db_printf("\n");
5350 }
5351 BUF_LOCKPRINTINFO(bp);
5352 #if defined(FULL_BUF_TRACKING)
5353 db_printf("b_io_tracking: b_io_tcnt = %u\n", bp->b_io_tcnt);
5354
5355 i = bp->b_io_tcnt % BUF_TRACKING_SIZE;
5356 for (j = 1; j <= BUF_TRACKING_SIZE; j++) {
5357 if (bp->b_io_tracking[BUF_TRACKING_ENTRY(i - j)] == NULL)
5358 continue;
5359 db_printf(" %2u: %s\n", j,
5360 bp->b_io_tracking[BUF_TRACKING_ENTRY(i - j)]);
5361 }
5362 #elif defined(BUF_TRACKING)
5363 db_printf("b_io_tracking: %s\n", bp->b_io_tracking);
5364 #endif
5365 db_printf(" ");
5366 }
5367
DB_SHOW_COMMAND(bufqueues,bufqueues)5368 DB_SHOW_COMMAND(bufqueues, bufqueues)
5369 {
5370 struct bufdomain *bd;
5371 struct buf *bp;
5372 long total;
5373 int i, j, cnt;
5374
5375 db_printf("bqempty: %d\n", bqempty.bq_len);
5376
5377 for (i = 0; i < buf_domains; i++) {
5378 bd = &bdomain[i];
5379 db_printf("Buf domain %d\n", i);
5380 db_printf("\tfreebufs\t%d\n", bd->bd_freebuffers);
5381 db_printf("\tlofreebufs\t%d\n", bd->bd_lofreebuffers);
5382 db_printf("\thifreebufs\t%d\n", bd->bd_hifreebuffers);
5383 db_printf("\n");
5384 db_printf("\tbufspace\t%ld\n", bd->bd_bufspace);
5385 db_printf("\tmaxbufspace\t%ld\n", bd->bd_maxbufspace);
5386 db_printf("\thibufspace\t%ld\n", bd->bd_hibufspace);
5387 db_printf("\tlobufspace\t%ld\n", bd->bd_lobufspace);
5388 db_printf("\tbufspacethresh\t%ld\n", bd->bd_bufspacethresh);
5389 db_printf("\n");
5390 db_printf("\tnumdirtybuffers\t%d\n", bd->bd_numdirtybuffers);
5391 db_printf("\tlodirtybuffers\t%d\n", bd->bd_lodirtybuffers);
5392 db_printf("\thidirtybuffers\t%d\n", bd->bd_hidirtybuffers);
5393 db_printf("\tdirtybufthresh\t%d\n", bd->bd_dirtybufthresh);
5394 db_printf("\n");
5395 total = 0;
5396 TAILQ_FOREACH(bp, &bd->bd_cleanq->bq_queue, b_freelist)
5397 total += bp->b_bufsize;
5398 db_printf("\tcleanq count\t%d (%ld)\n",
5399 bd->bd_cleanq->bq_len, total);
5400 total = 0;
5401 TAILQ_FOREACH(bp, &bd->bd_dirtyq.bq_queue, b_freelist)
5402 total += bp->b_bufsize;
5403 db_printf("\tdirtyq count\t%d (%ld)\n",
5404 bd->bd_dirtyq.bq_len, total);
5405 db_printf("\twakeup\t\t%d\n", bd->bd_wanted);
5406 db_printf("\tlim\t\t%d\n", bd->bd_lim);
5407 db_printf("\tCPU ");
5408 for (j = 0; j <= mp_maxid; j++)
5409 db_printf("%d, ", bd->bd_subq[j].bq_len);
5410 db_printf("\n");
5411 cnt = 0;
5412 total = 0;
5413 for (j = 0; j < nbuf; j++)
5414 if (buf[j].b_domain == i && BUF_ISLOCKED(&buf[j])) {
5415 cnt++;
5416 total += buf[j].b_bufsize;
5417 }
5418 db_printf("\tLocked buffers: %d space %ld\n", cnt, total);
5419 cnt = 0;
5420 total = 0;
5421 for (j = 0; j < nbuf; j++)
5422 if (buf[j].b_domain == i) {
5423 cnt++;
5424 total += buf[j].b_bufsize;
5425 }
5426 db_printf("\tTotal buffers: %d space %ld\n", cnt, total);
5427 }
5428 }
5429
DB_SHOW_COMMAND(lockedbufs,lockedbufs)5430 DB_SHOW_COMMAND(lockedbufs, lockedbufs)
5431 {
5432 struct buf *bp;
5433 int i;
5434
5435 for (i = 0; i < nbuf; i++) {
5436 bp = &buf[i];
5437 if (BUF_ISLOCKED(bp)) {
5438 db_show_buffer((uintptr_t)bp, 1, 0, NULL);
5439 db_printf("\n");
5440 if (db_pager_quit)
5441 break;
5442 }
5443 }
5444 }
5445
DB_SHOW_COMMAND(vnodebufs,db_show_vnodebufs)5446 DB_SHOW_COMMAND(vnodebufs, db_show_vnodebufs)
5447 {
5448 struct vnode *vp;
5449 struct buf *bp;
5450
5451 if (!have_addr) {
5452 db_printf("usage: show vnodebufs <addr>\n");
5453 return;
5454 }
5455 vp = (struct vnode *)addr;
5456 db_printf("Clean buffers:\n");
5457 TAILQ_FOREACH(bp, &vp->v_bufobj.bo_clean.bv_hd, b_bobufs) {
5458 db_show_buffer((uintptr_t)bp, 1, 0, NULL);
5459 db_printf("\n");
5460 }
5461 db_printf("Dirty buffers:\n");
5462 TAILQ_FOREACH(bp, &vp->v_bufobj.bo_dirty.bv_hd, b_bobufs) {
5463 db_show_buffer((uintptr_t)bp, 1, 0, NULL);
5464 db_printf("\n");
5465 }
5466 }
5467
DB_COMMAND(countfreebufs,db_coundfreebufs)5468 DB_COMMAND(countfreebufs, db_coundfreebufs)
5469 {
5470 struct buf *bp;
5471 int i, used = 0, nfree = 0;
5472
5473 if (have_addr) {
5474 db_printf("usage: countfreebufs\n");
5475 return;
5476 }
5477
5478 for (i = 0; i < nbuf; i++) {
5479 bp = &buf[i];
5480 if (bp->b_qindex == QUEUE_EMPTY)
5481 nfree++;
5482 else
5483 used++;
5484 }
5485
5486 db_printf("Counted %d free, %d used (%d tot)\n", nfree, used,
5487 nfree + used);
5488 db_printf("numfreebuffers is %d\n", numfreebuffers);
5489 }
5490 #endif /* DDB */
5491