geom_io.c revision 248508
1/*-
2 * Copyright (c) 2002 Poul-Henning Kamp
3 * Copyright (c) 2002 Networks Associates Technology, Inc.
4 * Copyright (c) 2013 The FreeBSD Foundation
5 * All rights reserved.
6 *
7 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
8 * and NAI Labs, the Security Research Division of Network Associates, Inc.
9 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
10 * DARPA CHATS research program.
11 *
12 * Portions of this software were developed by Konstantin Belousov
13 * under sponsorship from the FreeBSD Foundation.
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 *    notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 *    notice, this list of conditions and the following disclaimer in the
22 *    documentation and/or other materials provided with the distribution.
23 * 3. The names of the authors may not be used to endorse or promote
24 *    products derived from this software without specific prior written
25 *    permission.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
28 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
31 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 */
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/sys/geom/geom_io.c 248508 2013-03-19 14:13:12Z kib $");
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/kernel.h>
46#include <sys/malloc.h>
47#include <sys/bio.h>
48#include <sys/ktr.h>
49#include <sys/proc.h>
50#include <sys/stack.h>
51#include <sys/sysctl.h>
52
53#include <sys/errno.h>
54#include <geom/geom.h>
55#include <geom/geom_int.h>
56#include <sys/devicestat.h>
57
58#include <vm/uma.h>
59#include <vm/vm.h>
60#include <vm/vm_param.h>
61#include <vm/vm_kern.h>
62#include <vm/vm_page.h>
63#include <vm/vm_object.h>
64#include <vm/vm_extern.h>
65#include <vm/vm_map.h>
66
67static struct g_bioq g_bio_run_down;
68static struct g_bioq g_bio_run_up;
69static struct g_bioq g_bio_run_task;
70
71static u_int pace;
72static uma_zone_t	biozone;
73
74/*
75 * The head of the list of classifiers used in g_io_request.
76 * Use g_register_classifier() and g_unregister_classifier()
77 * to add/remove entries to the list.
78 * Classifiers are invoked in registration order.
79 */
80static TAILQ_HEAD(g_classifier_tailq, g_classifier_hook)
81    g_classifier_tailq = TAILQ_HEAD_INITIALIZER(g_classifier_tailq);
82
83#include <machine/atomic.h>
84
85static void
86g_bioq_lock(struct g_bioq *bq)
87{
88
89	mtx_lock(&bq->bio_queue_lock);
90}
91
92static void
93g_bioq_unlock(struct g_bioq *bq)
94{
95
96	mtx_unlock(&bq->bio_queue_lock);
97}
98
99#if 0
100static void
101g_bioq_destroy(struct g_bioq *bq)
102{
103
104	mtx_destroy(&bq->bio_queue_lock);
105}
106#endif
107
108static void
109g_bioq_init(struct g_bioq *bq)
110{
111
112	TAILQ_INIT(&bq->bio_queue);
113	mtx_init(&bq->bio_queue_lock, "bio queue", NULL, MTX_DEF);
114}
115
116static struct bio *
117g_bioq_first(struct g_bioq *bq)
118{
119	struct bio *bp;
120
121	bp = TAILQ_FIRST(&bq->bio_queue);
122	if (bp != NULL) {
123		KASSERT((bp->bio_flags & BIO_ONQUEUE),
124		    ("Bio not on queue bp=%p target %p", bp, bq));
125		bp->bio_flags &= ~BIO_ONQUEUE;
126		TAILQ_REMOVE(&bq->bio_queue, bp, bio_queue);
127		bq->bio_queue_length--;
128	}
129	return (bp);
130}
131
132struct bio *
133g_new_bio(void)
134{
135	struct bio *bp;
136
137	bp = uma_zalloc(biozone, M_NOWAIT | M_ZERO);
138#ifdef KTR
139	if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
140		struct stack st;
141
142		CTR1(KTR_GEOM, "g_new_bio(): %p", bp);
143		stack_save(&st);
144		CTRSTACK(KTR_GEOM, &st, 3, 0);
145	}
146#endif
147	return (bp);
148}
149
150struct bio *
151g_alloc_bio(void)
152{
153	struct bio *bp;
154
155	bp = uma_zalloc(biozone, M_WAITOK | M_ZERO);
156#ifdef KTR
157	if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
158		struct stack st;
159
160		CTR1(KTR_GEOM, "g_alloc_bio(): %p", bp);
161		stack_save(&st);
162		CTRSTACK(KTR_GEOM, &st, 3, 0);
163	}
164#endif
165	return (bp);
166}
167
168void
169g_destroy_bio(struct bio *bp)
170{
171#ifdef KTR
172	if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
173		struct stack st;
174
175		CTR1(KTR_GEOM, "g_destroy_bio(): %p", bp);
176		stack_save(&st);
177		CTRSTACK(KTR_GEOM, &st, 3, 0);
178	}
179#endif
180	uma_zfree(biozone, bp);
181}
182
183struct bio *
184g_clone_bio(struct bio *bp)
185{
186	struct bio *bp2;
187
188	bp2 = uma_zalloc(biozone, M_NOWAIT | M_ZERO);
189	if (bp2 != NULL) {
190		bp2->bio_parent = bp;
191		bp2->bio_cmd = bp->bio_cmd;
192		/*
193		 *  BIO_ORDERED flag may be used by disk drivers to enforce
194		 *  ordering restrictions, so this flag needs to be cloned.
195		 *  BIO_UNMAPPED should be inherited, to properly indicate
196		 *  which way the buffer is passed.
197		 *  Other bio flags are not suitable for cloning.
198		 */
199		bp2->bio_flags = bp->bio_flags & (BIO_ORDERED | BIO_UNMAPPED);
200		bp2->bio_length = bp->bio_length;
201		bp2->bio_offset = bp->bio_offset;
202		bp2->bio_data = bp->bio_data;
203		bp2->bio_ma = bp->bio_ma;
204		bp2->bio_ma_n = bp->bio_ma_n;
205		bp2->bio_ma_offset = bp->bio_ma_offset;
206		bp2->bio_attribute = bp->bio_attribute;
207		/* Inherit classification info from the parent */
208		bp2->bio_classifier1 = bp->bio_classifier1;
209		bp2->bio_classifier2 = bp->bio_classifier2;
210		bp->bio_children++;
211	}
212#ifdef KTR
213	if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
214		struct stack st;
215
216		CTR2(KTR_GEOM, "g_clone_bio(%p): %p", bp, bp2);
217		stack_save(&st);
218		CTRSTACK(KTR_GEOM, &st, 3, 0);
219	}
220#endif
221	return(bp2);
222}
223
224struct bio *
225g_duplicate_bio(struct bio *bp)
226{
227	struct bio *bp2;
228
229	bp2 = uma_zalloc(biozone, M_WAITOK | M_ZERO);
230	bp2->bio_flags = bp->bio_flags & BIO_UNMAPPED;
231	bp2->bio_parent = bp;
232	bp2->bio_cmd = bp->bio_cmd;
233	bp2->bio_length = bp->bio_length;
234	bp2->bio_offset = bp->bio_offset;
235	bp2->bio_data = bp->bio_data;
236	bp2->bio_ma = bp->bio_ma;
237	bp2->bio_ma_n = bp->bio_ma_n;
238	bp2->bio_ma_offset = bp->bio_ma_offset;
239	bp2->bio_attribute = bp->bio_attribute;
240	bp->bio_children++;
241#ifdef KTR
242	if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
243		struct stack st;
244
245		CTR2(KTR_GEOM, "g_duplicate_bio(%p): %p", bp, bp2);
246		stack_save(&st);
247		CTRSTACK(KTR_GEOM, &st, 3, 0);
248	}
249#endif
250	return(bp2);
251}
252
253void
254g_io_init()
255{
256
257	g_bioq_init(&g_bio_run_down);
258	g_bioq_init(&g_bio_run_up);
259	g_bioq_init(&g_bio_run_task);
260	biozone = uma_zcreate("g_bio", sizeof (struct bio),
261	    NULL, NULL,
262	    NULL, NULL,
263	    0, 0);
264}
265
266int
267g_io_getattr(const char *attr, struct g_consumer *cp, int *len, void *ptr)
268{
269	struct bio *bp;
270	int error;
271
272	g_trace(G_T_BIO, "bio_getattr(%s)", attr);
273	bp = g_alloc_bio();
274	bp->bio_cmd = BIO_GETATTR;
275	bp->bio_done = NULL;
276	bp->bio_attribute = attr;
277	bp->bio_length = *len;
278	bp->bio_data = ptr;
279	g_io_request(bp, cp);
280	error = biowait(bp, "ggetattr");
281	*len = bp->bio_completed;
282	g_destroy_bio(bp);
283	return (error);
284}
285
286int
287g_io_flush(struct g_consumer *cp)
288{
289	struct bio *bp;
290	int error;
291
292	g_trace(G_T_BIO, "bio_flush(%s)", cp->provider->name);
293	bp = g_alloc_bio();
294	bp->bio_cmd = BIO_FLUSH;
295	bp->bio_flags |= BIO_ORDERED;
296	bp->bio_done = NULL;
297	bp->bio_attribute = NULL;
298	bp->bio_offset = cp->provider->mediasize;
299	bp->bio_length = 0;
300	bp->bio_data = NULL;
301	g_io_request(bp, cp);
302	error = biowait(bp, "gflush");
303	g_destroy_bio(bp);
304	return (error);
305}
306
307static int
308g_io_check(struct bio *bp)
309{
310	struct g_consumer *cp;
311	struct g_provider *pp;
312
313	cp = bp->bio_from;
314	pp = bp->bio_to;
315
316	/* Fail if access counters dont allow the operation */
317	switch(bp->bio_cmd) {
318	case BIO_READ:
319	case BIO_GETATTR:
320		if (cp->acr == 0)
321			return (EPERM);
322		break;
323	case BIO_WRITE:
324	case BIO_DELETE:
325	case BIO_FLUSH:
326		if (cp->acw == 0)
327			return (EPERM);
328		break;
329	default:
330		return (EPERM);
331	}
332	/* if provider is marked for error, don't disturb. */
333	if (pp->error)
334		return (pp->error);
335	if (cp->flags & G_CF_ORPHAN)
336		return (ENXIO);
337
338	switch(bp->bio_cmd) {
339	case BIO_READ:
340	case BIO_WRITE:
341	case BIO_DELETE:
342		/* Zero sectorsize or mediasize is probably a lack of media. */
343		if (pp->sectorsize == 0 || pp->mediasize == 0)
344			return (ENXIO);
345		/* Reject I/O not on sector boundary */
346		if (bp->bio_offset % pp->sectorsize)
347			return (EINVAL);
348		/* Reject I/O not integral sector long */
349		if (bp->bio_length % pp->sectorsize)
350			return (EINVAL);
351		/* Reject requests before or past the end of media. */
352		if (bp->bio_offset < 0)
353			return (EIO);
354		if (bp->bio_offset > pp->mediasize)
355			return (EIO);
356		break;
357	default:
358		break;
359	}
360	return (0);
361}
362
363/*
364 * bio classification support.
365 *
366 * g_register_classifier() and g_unregister_classifier()
367 * are used to add/remove a classifier from the list.
368 * The list is protected using the g_bio_run_down lock,
369 * because the classifiers are called in this path.
370 *
371 * g_io_request() passes bio's that are not already classified
372 * (i.e. those with bio_classifier1 == NULL) to g_run_classifiers().
373 * Classifiers can store their result in the two fields
374 * bio_classifier1 and bio_classifier2.
375 * A classifier that updates one of the fields should
376 * return a non-zero value.
377 * If no classifier updates the field, g_run_classifiers() sets
378 * bio_classifier1 = BIO_NOTCLASSIFIED to avoid further calls.
379 */
380
381int
382g_register_classifier(struct g_classifier_hook *hook)
383{
384
385	g_bioq_lock(&g_bio_run_down);
386	TAILQ_INSERT_TAIL(&g_classifier_tailq, hook, link);
387	g_bioq_unlock(&g_bio_run_down);
388
389	return (0);
390}
391
392void
393g_unregister_classifier(struct g_classifier_hook *hook)
394{
395	struct g_classifier_hook *entry;
396
397	g_bioq_lock(&g_bio_run_down);
398	TAILQ_FOREACH(entry, &g_classifier_tailq, link) {
399		if (entry == hook) {
400			TAILQ_REMOVE(&g_classifier_tailq, hook, link);
401			break;
402		}
403	}
404	g_bioq_unlock(&g_bio_run_down);
405}
406
407static void
408g_run_classifiers(struct bio *bp)
409{
410	struct g_classifier_hook *hook;
411	int classified = 0;
412
413	TAILQ_FOREACH(hook, &g_classifier_tailq, link)
414		classified |= hook->func(hook->arg, bp);
415
416	if (!classified)
417		bp->bio_classifier1 = BIO_NOTCLASSIFIED;
418}
419
420void
421g_io_request(struct bio *bp, struct g_consumer *cp)
422{
423	struct g_provider *pp;
424	int first;
425
426	KASSERT(cp != NULL, ("NULL cp in g_io_request"));
427	KASSERT(bp != NULL, ("NULL bp in g_io_request"));
428	pp = cp->provider;
429	KASSERT(pp != NULL, ("consumer not attached in g_io_request"));
430#ifdef DIAGNOSTIC
431	KASSERT(bp->bio_driver1 == NULL,
432	    ("bio_driver1 used by the consumer (geom %s)", cp->geom->name));
433	KASSERT(bp->bio_driver2 == NULL,
434	    ("bio_driver2 used by the consumer (geom %s)", cp->geom->name));
435	KASSERT(bp->bio_pflags == 0,
436	    ("bio_pflags used by the consumer (geom %s)", cp->geom->name));
437	/*
438	 * Remember consumer's private fields, so we can detect if they were
439	 * modified by the provider.
440	 */
441	bp->_bio_caller1 = bp->bio_caller1;
442	bp->_bio_caller2 = bp->bio_caller2;
443	bp->_bio_cflags = bp->bio_cflags;
444#endif
445
446	if (bp->bio_cmd & (BIO_READ|BIO_WRITE|BIO_GETATTR)) {
447		KASSERT(bp->bio_data != NULL,
448		    ("NULL bp->data in g_io_request(cmd=%hhu)", bp->bio_cmd));
449	}
450	if (bp->bio_cmd & (BIO_DELETE|BIO_FLUSH)) {
451		KASSERT(bp->bio_data == NULL,
452		    ("non-NULL bp->data in g_io_request(cmd=%hhu)",
453		    bp->bio_cmd));
454	}
455	if (bp->bio_cmd & (BIO_READ|BIO_WRITE|BIO_DELETE)) {
456		KASSERT(bp->bio_offset % cp->provider->sectorsize == 0,
457		    ("wrong offset %jd for sectorsize %u",
458		    bp->bio_offset, cp->provider->sectorsize));
459		KASSERT(bp->bio_length % cp->provider->sectorsize == 0,
460		    ("wrong length %jd for sectorsize %u",
461		    bp->bio_length, cp->provider->sectorsize));
462	}
463
464	g_trace(G_T_BIO, "bio_request(%p) from %p(%s) to %p(%s) cmd %d",
465	    bp, cp, cp->geom->name, pp, pp->name, bp->bio_cmd);
466
467	bp->bio_from = cp;
468	bp->bio_to = pp;
469	bp->bio_error = 0;
470	bp->bio_completed = 0;
471
472	KASSERT(!(bp->bio_flags & BIO_ONQUEUE),
473	    ("Bio already on queue bp=%p", bp));
474	bp->bio_flags |= BIO_ONQUEUE;
475
476	if (g_collectstats)
477		binuptime(&bp->bio_t0);
478	else
479		getbinuptime(&bp->bio_t0);
480
481	/*
482	 * The statistics collection is lockless, as such, but we
483	 * can not update one instance of the statistics from more
484	 * than one thread at a time, so grab the lock first.
485	 *
486	 * We also use the lock to protect the list of classifiers.
487	 */
488	g_bioq_lock(&g_bio_run_down);
489
490	if (!TAILQ_EMPTY(&g_classifier_tailq) && !bp->bio_classifier1)
491		g_run_classifiers(bp);
492
493	if (g_collectstats & 1)
494		devstat_start_transaction(pp->stat, &bp->bio_t0);
495	if (g_collectstats & 2)
496		devstat_start_transaction(cp->stat, &bp->bio_t0);
497
498	pp->nstart++;
499	cp->nstart++;
500	first = TAILQ_EMPTY(&g_bio_run_down.bio_queue);
501	TAILQ_INSERT_TAIL(&g_bio_run_down.bio_queue, bp, bio_queue);
502	g_bio_run_down.bio_queue_length++;
503	g_bioq_unlock(&g_bio_run_down);
504
505	/* Pass it on down. */
506	if (first)
507		wakeup(&g_wait_down);
508}
509
510void
511g_io_deliver(struct bio *bp, int error)
512{
513	struct g_consumer *cp;
514	struct g_provider *pp;
515	int first;
516
517	KASSERT(bp != NULL, ("NULL bp in g_io_deliver"));
518	pp = bp->bio_to;
519	KASSERT(pp != NULL, ("NULL bio_to in g_io_deliver"));
520	cp = bp->bio_from;
521	if (cp == NULL) {
522		bp->bio_error = error;
523		bp->bio_done(bp);
524		return;
525	}
526	KASSERT(cp != NULL, ("NULL bio_from in g_io_deliver"));
527	KASSERT(cp->geom != NULL, ("NULL bio_from->geom in g_io_deliver"));
528#ifdef DIAGNOSTIC
529	/*
530	 * Some classes - GJournal in particular - can modify bio's
531	 * private fields while the bio is in transit; G_GEOM_VOLATILE_BIO
532	 * flag means it's an expected behaviour for that particular geom.
533	 */
534	if ((cp->geom->flags & G_GEOM_VOLATILE_BIO) == 0) {
535		KASSERT(bp->bio_caller1 == bp->_bio_caller1,
536		    ("bio_caller1 used by the provider %s", pp->name));
537		KASSERT(bp->bio_caller2 == bp->_bio_caller2,
538		    ("bio_caller2 used by the provider %s", pp->name));
539		KASSERT(bp->bio_cflags == bp->_bio_cflags,
540		    ("bio_cflags used by the provider %s", pp->name));
541	}
542#endif
543	KASSERT(bp->bio_completed >= 0, ("bio_completed can't be less than 0"));
544	KASSERT(bp->bio_completed <= bp->bio_length,
545	    ("bio_completed can't be greater than bio_length"));
546
547	g_trace(G_T_BIO,
548"g_io_deliver(%p) from %p(%s) to %p(%s) cmd %d error %d off %jd len %jd",
549	    bp, cp, cp->geom->name, pp, pp->name, bp->bio_cmd, error,
550	    (intmax_t)bp->bio_offset, (intmax_t)bp->bio_length);
551
552	KASSERT(!(bp->bio_flags & BIO_ONQUEUE),
553	    ("Bio already on queue bp=%p", bp));
554
555	/*
556	 * XXX: next two doesn't belong here
557	 */
558	bp->bio_bcount = bp->bio_length;
559	bp->bio_resid = bp->bio_bcount - bp->bio_completed;
560
561	/*
562	 * The statistics collection is lockless, as such, but we
563	 * can not update one instance of the statistics from more
564	 * than one thread at a time, so grab the lock first.
565	 */
566	g_bioq_lock(&g_bio_run_up);
567	if (g_collectstats & 1)
568		devstat_end_transaction_bio(pp->stat, bp);
569	if (g_collectstats & 2)
570		devstat_end_transaction_bio(cp->stat, bp);
571
572	cp->nend++;
573	pp->nend++;
574	if (error != ENOMEM) {
575		bp->bio_error = error;
576		first = TAILQ_EMPTY(&g_bio_run_up.bio_queue);
577		TAILQ_INSERT_TAIL(&g_bio_run_up.bio_queue, bp, bio_queue);
578		bp->bio_flags |= BIO_ONQUEUE;
579		g_bio_run_up.bio_queue_length++;
580		g_bioq_unlock(&g_bio_run_up);
581		if (first)
582			wakeup(&g_wait_up);
583		return;
584	}
585	g_bioq_unlock(&g_bio_run_up);
586
587	if (bootverbose)
588		printf("ENOMEM %p on %p(%s)\n", bp, pp, pp->name);
589	bp->bio_children = 0;
590	bp->bio_inbed = 0;
591	bp->bio_driver1 = NULL;
592	bp->bio_driver2 = NULL;
593	bp->bio_pflags = 0;
594	g_io_request(bp, cp);
595	pace++;
596	return;
597}
598
599SYSCTL_DECL(_kern_geom);
600
601static long transient_maps;
602SYSCTL_LONG(_kern_geom, OID_AUTO, transient_maps, CTLFLAG_RD,
603    &transient_maps, 0,
604    "Total count of the transient mapping requests");
605u_int transient_map_retries = 10;
606SYSCTL_UINT(_kern_geom, OID_AUTO, transient_map_retries, CTLFLAG_RW,
607    &transient_map_retries, 0,
608    "Max count of retries used before giving up on creating transient map");
609int transient_map_hard_failures;
610SYSCTL_INT(_kern_geom, OID_AUTO, transient_map_hard_failures, CTLFLAG_RD,
611    &transient_map_hard_failures, 0,
612    "Failures to establish the transient mapping due to retry attempts "
613    "exhausted");
614int transient_map_soft_failures;
615SYSCTL_INT(_kern_geom, OID_AUTO, transient_map_soft_failures, CTLFLAG_RD,
616    &transient_map_soft_failures, 0,
617    "Count of retried failures to establish the transient mapping");
618int inflight_transient_maps;
619SYSCTL_INT(_kern_geom, OID_AUTO, inflight_transient_maps, CTLFLAG_RD,
620    &inflight_transient_maps, 0,
621    "Current count of the active transient maps");
622
623static int
624g_io_transient_map_bio(struct bio *bp)
625{
626	vm_offset_t addr;
627	long size;
628	u_int retried;
629	int rv;
630
631	size = round_page(bp->bio_ma_offset + bp->bio_length);
632	KASSERT(size / PAGE_SIZE == bp->bio_ma_n, ("Bio too short %p", bp));
633	addr = 0;
634	retried = 0;
635	atomic_add_long(&transient_maps, 1);
636retry:
637	vm_map_lock(bio_transient_map);
638	if (vm_map_findspace(bio_transient_map, vm_map_min(bio_transient_map),
639	    size, &addr)) {
640		vm_map_unlock(bio_transient_map);
641		if (transient_map_retries != 0 &&
642		    retried >= transient_map_retries) {
643			g_io_deliver(bp, EDEADLK/* XXXKIB */);
644			CTR2(KTR_GEOM, "g_down cannot map bp %p provider %s",
645			    bp, bp->bio_to->name);
646			atomic_add_int(&transient_map_hard_failures, 1);
647			return (1);
648		} else {
649			/*
650			 * Naive attempt to quisce the I/O to get more
651			 * in-flight requests completed and defragment
652			 * the bio_transient_map.
653			 */
654			CTR3(KTR_GEOM, "g_down retrymap bp %p provider %s r %d",
655			    bp, bp->bio_to->name, retried);
656			pause("g_d_tra", hz / 10);
657			retried++;
658			atomic_add_int(&transient_map_soft_failures, 1);
659			goto retry;
660		}
661	}
662	rv = vm_map_insert(bio_transient_map, NULL, 0, addr, addr + size,
663	    VM_PROT_RW, VM_PROT_RW, MAP_NOFAULT);
664	KASSERT(rv == KERN_SUCCESS,
665	    ("vm_map_insert(bio_transient_map) rv %d %jx %lx",
666	    rv, (uintmax_t)addr, size));
667	vm_map_unlock(bio_transient_map);
668	atomic_add_int(&inflight_transient_maps, 1);
669	pmap_qenter((vm_offset_t)addr, bp->bio_ma, OFF_TO_IDX(size));
670	bp->bio_data = (caddr_t)addr + bp->bio_ma_offset;
671	bp->bio_flags |= BIO_TRANSIENT_MAPPING;
672	bp->bio_flags &= ~BIO_UNMAPPED;
673	return (0);
674}
675
676void
677g_io_schedule_down(struct thread *tp __unused)
678{
679	struct bio *bp;
680	off_t excess;
681	int error;
682
683	for(;;) {
684		g_bioq_lock(&g_bio_run_down);
685		bp = g_bioq_first(&g_bio_run_down);
686		if (bp == NULL) {
687			CTR0(KTR_GEOM, "g_down going to sleep");
688			msleep(&g_wait_down, &g_bio_run_down.bio_queue_lock,
689			    PRIBIO | PDROP, "-", 0);
690			continue;
691		}
692		CTR0(KTR_GEOM, "g_down has work to do");
693		g_bioq_unlock(&g_bio_run_down);
694		if (pace > 0) {
695			CTR1(KTR_GEOM, "g_down pacing self (pace %d)", pace);
696			pause("g_down", hz/10);
697			pace--;
698		}
699		error = g_io_check(bp);
700		if (error) {
701			CTR3(KTR_GEOM, "g_down g_io_check on bp %p provider "
702			    "%s returned %d", bp, bp->bio_to->name, error);
703			g_io_deliver(bp, error);
704			continue;
705		}
706		CTR2(KTR_GEOM, "g_down processing bp %p provider %s", bp,
707		    bp->bio_to->name);
708		switch (bp->bio_cmd) {
709		case BIO_READ:
710		case BIO_WRITE:
711		case BIO_DELETE:
712			/* Truncate requests to the end of providers media. */
713			/*
714			 * XXX: What if we truncate because of offset being
715			 * bad, not length?
716			 */
717			excess = bp->bio_offset + bp->bio_length;
718			if (excess > bp->bio_to->mediasize) {
719				excess -= bp->bio_to->mediasize;
720				bp->bio_length -= excess;
721				if (excess > 0)
722					CTR3(KTR_GEOM, "g_down truncated bio "
723					    "%p provider %s by %d", bp,
724					    bp->bio_to->name, excess);
725			}
726			/* Deliver zero length transfers right here. */
727			if (bp->bio_length == 0) {
728				g_io_deliver(bp, 0);
729				CTR2(KTR_GEOM, "g_down terminated 0-length "
730				    "bp %p provider %s", bp, bp->bio_to->name);
731				continue;
732			}
733			break;
734		default:
735			break;
736		}
737		if ((bp->bio_flags & BIO_UNMAPPED) != 0 &&
738		    (bp->bio_to->flags & G_PF_ACCEPT_UNMAPPED) == 0 &&
739		    (bp->bio_cmd == BIO_READ || bp->bio_cmd == BIO_WRITE)) {
740			if (g_io_transient_map_bio(bp))
741				continue;
742		}
743		THREAD_NO_SLEEPING();
744		CTR4(KTR_GEOM, "g_down starting bp %p provider %s off %ld "
745		    "len %ld", bp, bp->bio_to->name, bp->bio_offset,
746		    bp->bio_length);
747		bp->bio_to->geom->start(bp);
748		THREAD_SLEEPING_OK();
749	}
750}
751
752void
753bio_taskqueue(struct bio *bp, bio_task_t *func, void *arg)
754{
755	bp->bio_task = func;
756	bp->bio_task_arg = arg;
757	/*
758	 * The taskqueue is actually just a second queue off the "up"
759	 * queue, so we use the same lock.
760	 */
761	g_bioq_lock(&g_bio_run_up);
762	KASSERT(!(bp->bio_flags & BIO_ONQUEUE),
763	    ("Bio already on queue bp=%p target taskq", bp));
764	bp->bio_flags |= BIO_ONQUEUE;
765	TAILQ_INSERT_TAIL(&g_bio_run_task.bio_queue, bp, bio_queue);
766	g_bio_run_task.bio_queue_length++;
767	wakeup(&g_wait_up);
768	g_bioq_unlock(&g_bio_run_up);
769}
770
771
772void
773g_io_schedule_up(struct thread *tp __unused)
774{
775	struct bio *bp;
776	for(;;) {
777		g_bioq_lock(&g_bio_run_up);
778		bp = g_bioq_first(&g_bio_run_task);
779		if (bp != NULL) {
780			g_bioq_unlock(&g_bio_run_up);
781			THREAD_NO_SLEEPING();
782			CTR1(KTR_GEOM, "g_up processing task bp %p", bp);
783			bp->bio_task(bp->bio_task_arg);
784			THREAD_SLEEPING_OK();
785			continue;
786		}
787		bp = g_bioq_first(&g_bio_run_up);
788		if (bp != NULL) {
789			g_bioq_unlock(&g_bio_run_up);
790			THREAD_NO_SLEEPING();
791			CTR4(KTR_GEOM, "g_up biodone bp %p provider %s off "
792			    "%jd len %ld", bp, bp->bio_to->name,
793			    bp->bio_offset, bp->bio_length);
794			biodone(bp);
795			THREAD_SLEEPING_OK();
796			continue;
797		}
798		CTR0(KTR_GEOM, "g_up going to sleep");
799		msleep(&g_wait_up, &g_bio_run_up.bio_queue_lock,
800		    PRIBIO | PDROP, "-", 0);
801	}
802}
803
804void *
805g_read_data(struct g_consumer *cp, off_t offset, off_t length, int *error)
806{
807	struct bio *bp;
808	void *ptr;
809	int errorc;
810
811	KASSERT(length > 0 && length >= cp->provider->sectorsize &&
812	    length <= MAXPHYS, ("g_read_data(): invalid length %jd",
813	    (intmax_t)length));
814
815	bp = g_alloc_bio();
816	bp->bio_cmd = BIO_READ;
817	bp->bio_done = NULL;
818	bp->bio_offset = offset;
819	bp->bio_length = length;
820	ptr = g_malloc(length, M_WAITOK);
821	bp->bio_data = ptr;
822	g_io_request(bp, cp);
823	errorc = biowait(bp, "gread");
824	if (error != NULL)
825		*error = errorc;
826	g_destroy_bio(bp);
827	if (errorc) {
828		g_free(ptr);
829		ptr = NULL;
830	}
831	return (ptr);
832}
833
834int
835g_write_data(struct g_consumer *cp, off_t offset, void *ptr, off_t length)
836{
837	struct bio *bp;
838	int error;
839
840	KASSERT(length > 0 && length >= cp->provider->sectorsize &&
841	    length <= MAXPHYS, ("g_write_data(): invalid length %jd",
842	    (intmax_t)length));
843
844	bp = g_alloc_bio();
845	bp->bio_cmd = BIO_WRITE;
846	bp->bio_done = NULL;
847	bp->bio_offset = offset;
848	bp->bio_length = length;
849	bp->bio_data = ptr;
850	g_io_request(bp, cp);
851	error = biowait(bp, "gwrite");
852	g_destroy_bio(bp);
853	return (error);
854}
855
856int
857g_delete_data(struct g_consumer *cp, off_t offset, off_t length)
858{
859	struct bio *bp;
860	int error;
861
862	KASSERT(length > 0 && length >= cp->provider->sectorsize,
863	    ("g_delete_data(): invalid length %jd", (intmax_t)length));
864
865	bp = g_alloc_bio();
866	bp->bio_cmd = BIO_DELETE;
867	bp->bio_done = NULL;
868	bp->bio_offset = offset;
869	bp->bio_length = length;
870	bp->bio_data = NULL;
871	g_io_request(bp, cp);
872	error = biowait(bp, "gdelete");
873	g_destroy_bio(bp);
874	return (error);
875}
876
877void
878g_print_bio(struct bio *bp)
879{
880	const char *pname, *cmd = NULL;
881
882	if (bp->bio_to != NULL)
883		pname = bp->bio_to->name;
884	else
885		pname = "[unknown]";
886
887	switch (bp->bio_cmd) {
888	case BIO_GETATTR:
889		cmd = "GETATTR";
890		printf("%s[%s(attr=%s)]", pname, cmd, bp->bio_attribute);
891		return;
892	case BIO_FLUSH:
893		cmd = "FLUSH";
894		printf("%s[%s]", pname, cmd);
895		return;
896	case BIO_READ:
897		cmd = "READ";
898		break;
899	case BIO_WRITE:
900		cmd = "WRITE";
901		break;
902	case BIO_DELETE:
903		cmd = "DELETE";
904		break;
905	default:
906		cmd = "UNKNOWN";
907		printf("%s[%s()]", pname, cmd);
908		return;
909	}
910	printf("%s[%s(offset=%jd, length=%jd)]", pname, cmd,
911	    (intmax_t)bp->bio_offset, (intmax_t)bp->bio_length);
912}
913