geom_subr.c revision 131798
1/*-
2 * Copyright (c) 2002 Poul-Henning Kamp
3 * Copyright (c) 2002 Networks Associates Technology, Inc.
4 * All rights reserved.
5 *
6 * This software was developed for the FreeBSD Project by Poul-Henning Kamp
7 * and NAI Labs, the Security Research Division of Network Associates, Inc.
8 * under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the
9 * DARPA CHATS research program.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 * 3. The names of the authors may not be used to endorse or promote
20 *    products derived from this software without specific prior written
21 *    permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36#include <sys/cdefs.h>
37__FBSDID("$FreeBSD: head/sys/geom/geom_subr.c 131798 2004-07-08 10:34:09Z phk $");
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/devicestat.h>
42#include <sys/kernel.h>
43#include <sys/malloc.h>
44#include <sys/bio.h>
45#include <sys/sysctl.h>
46#include <sys/proc.h>
47#include <sys/kthread.h>
48#include <sys/lock.h>
49#include <sys/mutex.h>
50#include <sys/errno.h>
51#include <sys/sbuf.h>
52#include <geom/geom.h>
53#include <geom/geom_int.h>
54#include <machine/stdarg.h>
55
56struct class_list_head g_classes = LIST_HEAD_INITIALIZER(g_classes);
57static struct g_tailq_head geoms = TAILQ_HEAD_INITIALIZER(geoms);
58char *g_wait_event, *g_wait_up, *g_wait_down, *g_wait_sim;
59
60struct g_hh00 {
61	struct g_class	*mp;
62	int		error;
63};
64
65/*
66 * This event offers a new class a chance to taste all preexisting providers.
67 */
68static void
69g_load_class(void *arg, int flag)
70{
71	struct g_hh00 *hh;
72	struct g_class *mp2, *mp;
73	struct g_geom *gp;
74	struct g_provider *pp;
75
76	g_topology_assert();
77	if (flag == EV_CANCEL)	/* XXX: can't happen ? */
78		return;
79	if (g_shutdown)
80		return;
81
82	hh = arg;
83	mp = hh->mp;
84	g_free(hh);
85	g_trace(G_T_TOPOLOGY, "g_load_class(%s)", mp->name);
86	KASSERT(mp->name != NULL && *mp->name != '\0',
87	    ("GEOM class has no name"));
88	LIST_FOREACH(mp2, &g_classes, class) {
89		KASSERT(mp2 != mp,
90		    ("The GEOM class %s already loaded", mp2->name));
91		KASSERT(strcmp(mp2->name, mp->name) != 0,
92		    ("A GEOM class named %s is already loaded", mp2->name));
93	}
94
95	LIST_INIT(&mp->geom);
96	LIST_INSERT_HEAD(&g_classes, mp, class);
97	if (mp->init != NULL)
98		mp->init(mp);
99	if (mp->taste == NULL)
100		return;
101	LIST_FOREACH(mp2, &g_classes, class) {
102		if (mp == mp2)
103			continue;
104		LIST_FOREACH(gp, &mp2->geom, geom) {
105			LIST_FOREACH(pp, &gp->provider, provider) {
106				mp->taste(mp, pp, 0);
107				g_topology_assert();
108			}
109		}
110	}
111}
112
113static void
114g_unload_class(void *arg, int flag)
115{
116	struct g_hh00 *hh;
117	struct g_class *mp;
118	struct g_geom *gp;
119	struct g_provider *pp;
120	struct g_consumer *cp;
121	int error;
122
123	g_topology_assert();
124	hh = arg;
125	mp = hh->mp;
126	G_VALID_CLASS(mp);
127	g_trace(G_T_TOPOLOGY, "g_unload_class(%s)", mp->name);
128
129	/*
130	 * We allow unloading if we have no geoms, or a class
131	 * method we can use to get rid of them.
132	 */
133	if (!LIST_EMPTY(&mp->geom) && mp->destroy_geom == NULL) {
134		hh->error = EOPNOTSUPP;
135		return;
136	}
137
138	/* We refuse to unload if anything is open */
139	LIST_FOREACH(gp, &mp->geom, geom) {
140		LIST_FOREACH(pp, &gp->provider, provider)
141			if (pp->acr || pp->acw || pp->ace) {
142				hh->error = EBUSY;
143				return;
144			}
145		LIST_FOREACH(cp, &gp->consumer, consumer)
146			if (cp->acr || cp->acw || cp->ace) {
147				hh->error = EBUSY;
148				return;
149			}
150	}
151
152	/* Bar new entries */
153	mp->taste = NULL;
154	mp->config = NULL;
155
156	error = 0;
157	for (;;) {
158		gp = LIST_FIRST(&mp->geom);
159		if (gp == NULL)
160			break;
161		error = mp->destroy_geom(NULL, mp, gp);
162		if (error != 0)
163			break;
164	}
165	if (error == 0) {
166		if (mp->fini != NULL)
167			mp->fini(mp);
168		LIST_REMOVE(mp, class);
169	}
170	hh->error = error;
171	return;
172}
173
174int
175g_modevent(module_t mod, int type, void *data)
176{
177	struct g_hh00 *hh;
178	int error;
179	static int g_ignition;
180
181	if (!g_ignition) {
182		g_ignition++;
183		g_init();
184	}
185	hh = g_malloc(sizeof *hh, M_WAITOK | M_ZERO);
186	hh->mp = data;
187	error = EOPNOTSUPP;
188	switch (type) {
189	case MOD_LOAD:
190		g_trace(G_T_TOPOLOGY, "g_modevent(%s, LOAD)", hh->mp->name);
191		g_post_event(g_load_class, hh, M_WAITOK, NULL);
192		error = 0;
193		break;
194	case MOD_UNLOAD:
195		g_trace(G_T_TOPOLOGY, "g_modevent(%s, UNLOAD)", hh->mp->name);
196		error = g_waitfor_event(g_unload_class, hh, M_WAITOK, NULL);
197		if (error == 0)
198			error = hh->error;
199		if (error == 0) {
200			g_waitidle();
201			KASSERT(LIST_EMPTY(&hh->mp->geom),
202			    ("Unloaded class (%s) still has geom", hh->mp->name));
203		}
204		g_free(hh);
205		break;
206	default:
207		g_free(hh);
208		break;
209	}
210	return (error);
211}
212
213struct g_geom *
214g_new_geomf(struct g_class *mp, const char *fmt, ...)
215{
216	struct g_geom *gp;
217	va_list ap;
218	struct sbuf *sb;
219
220	g_topology_assert();
221	G_VALID_CLASS(mp);
222	sb = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
223	va_start(ap, fmt);
224	sbuf_vprintf(sb, fmt, ap);
225	va_end(ap);
226	sbuf_finish(sb);
227	gp = g_malloc(sizeof *gp, M_WAITOK | M_ZERO);
228	gp->name = g_malloc(sbuf_len(sb) + 1, M_WAITOK | M_ZERO);
229	gp->class = mp;
230	gp->rank = 1;
231	LIST_INIT(&gp->consumer);
232	LIST_INIT(&gp->provider);
233	LIST_INSERT_HEAD(&mp->geom, gp, geom);
234	TAILQ_INSERT_HEAD(&geoms, gp, geoms);
235	strcpy(gp->name, sbuf_data(sb));
236	sbuf_delete(sb);
237	return (gp);
238}
239
240void
241g_destroy_geom(struct g_geom *gp)
242{
243
244	g_topology_assert();
245	G_VALID_GEOM(gp);
246	g_trace(G_T_TOPOLOGY, "g_destroy_geom(%p(%s))", gp, gp->name);
247	KASSERT(LIST_EMPTY(&gp->consumer),
248	    ("g_destroy_geom(%s) with consumer(s) [%p]",
249	    gp->name, LIST_FIRST(&gp->consumer)));
250	KASSERT(LIST_EMPTY(&gp->provider),
251	    ("g_destroy_geom(%s) with provider(s) [%p]",
252	    gp->name, LIST_FIRST(&gp->provider)));
253	g_cancel_event(gp);
254	LIST_REMOVE(gp, geom);
255	TAILQ_REMOVE(&geoms, gp, geoms);
256	g_free(gp->name);
257	g_free(gp);
258}
259
260/*
261 * This function is called (repeatedly) until the has withered away.
262 */
263void
264g_wither_geom(struct g_geom *gp, int error)
265{
266	struct g_provider *pp, *pp2;
267	struct g_consumer *cp, *cp2;
268	static int once_is_enough;
269
270	g_topology_assert();
271	G_VALID_GEOM(gp);
272	if (once_is_enough)
273		return;
274	once_is_enough = 1;
275	g_trace(G_T_TOPOLOGY, "g_wither_geom(%p(%s))", gp, gp->name);
276	if (!(gp->flags & G_GEOM_WITHER)) {
277		gp->flags |= G_GEOM_WITHER;
278		LIST_FOREACH(pp, &gp->provider, provider)
279			if (!(pp->flags & G_PF_ORPHAN))
280				g_orphan_provider(pp, error);
281	}
282	for (pp = LIST_FIRST(&gp->provider); pp != NULL; pp = pp2) {
283		pp2 = LIST_NEXT(pp, provider);
284		if (!LIST_EMPTY(&pp->consumers))
285			continue;
286		g_destroy_provider(pp);
287	}
288	for (cp = LIST_FIRST(&gp->consumer); cp != NULL; cp = cp2) {
289		cp2 = LIST_NEXT(cp, consumer);
290		if (cp->acr || cp->acw || cp->ace)
291			continue;
292		g_detach(cp);
293		g_destroy_consumer(cp);
294	}
295	if (LIST_EMPTY(&gp->provider) && LIST_EMPTY(&gp->consumer))
296		g_destroy_geom(gp);
297	once_is_enough = 0;
298}
299
300struct g_consumer *
301g_new_consumer(struct g_geom *gp)
302{
303	struct g_consumer *cp;
304
305	g_topology_assert();
306	G_VALID_GEOM(gp);
307	KASSERT(!(gp->flags & G_GEOM_WITHER),
308	    ("g_new_consumer on WITHERing geom(%s) (class %s)",
309	    gp->name, gp->class->name));
310	KASSERT(gp->orphan != NULL,
311	    ("g_new_consumer on geom(%s) (class %s) without orphan",
312	    gp->name, gp->class->name));
313
314	cp = g_malloc(sizeof *cp, M_WAITOK | M_ZERO);
315	cp->geom = gp;
316	cp->stat = devstat_new_entry(cp, -1, 0, DEVSTAT_ALL_SUPPORTED,
317	    DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX);
318	LIST_INSERT_HEAD(&gp->consumer, cp, consumer);
319	return(cp);
320}
321
322void
323g_destroy_consumer(struct g_consumer *cp)
324{
325	struct g_geom *gp;
326
327	g_topology_assert();
328	G_VALID_CONSUMER(cp);
329	g_trace(G_T_TOPOLOGY, "g_destroy_consumer(%p)", cp);
330	KASSERT (cp->provider == NULL, ("g_destroy_consumer but attached"));
331	KASSERT (cp->acr == 0, ("g_destroy_consumer with acr"));
332	KASSERT (cp->acw == 0, ("g_destroy_consumer with acw"));
333	KASSERT (cp->ace == 0, ("g_destroy_consumer with ace"));
334	g_cancel_event(cp);
335	gp = cp->geom;
336	LIST_REMOVE(cp, consumer);
337	devstat_remove_entry(cp->stat);
338	g_free(cp);
339	if (gp->flags & G_GEOM_WITHER)
340		g_wither_geom(gp, 0);
341}
342
343static void
344g_new_provider_event(void *arg, int flag)
345{
346	struct g_class *mp;
347	struct g_provider *pp;
348	struct g_consumer *cp;
349	int i;
350
351	g_topology_assert();
352	if (flag == EV_CANCEL)
353		return;
354	if (g_shutdown)
355		return;
356	pp = arg;
357	G_VALID_PROVIDER(pp);
358	LIST_FOREACH(mp, &g_classes, class) {
359		if (mp->taste == NULL)
360			continue;
361		i = 1;
362		LIST_FOREACH(cp, &pp->consumers, consumers)
363			if (cp->geom->class == mp)
364				i = 0;
365		if (!i)
366			continue;
367		mp->taste(mp, pp, 0);
368		g_topology_assert();
369	}
370}
371
372
373struct g_provider *
374g_new_providerf(struct g_geom *gp, const char *fmt, ...)
375{
376	struct g_provider *pp;
377	struct sbuf *sb;
378	va_list ap;
379
380	g_topology_assert();
381	G_VALID_GEOM(gp);
382	KASSERT(gp->access != NULL,
383	    ("new provider on geom(%s) without ->access (class %s)",
384	    gp->name, gp->class->name));
385	KASSERT(gp->start != NULL,
386	    ("new provider on geom(%s) without ->start (class %s)",
387	    gp->name, gp->class->name));
388	KASSERT(!(gp->flags & G_GEOM_WITHER),
389	    ("new provider on WITHERing geom(%s) (class %s)",
390	    gp->name, gp->class->name));
391	sb = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
392	va_start(ap, fmt);
393	sbuf_vprintf(sb, fmt, ap);
394	va_end(ap);
395	sbuf_finish(sb);
396	pp = g_malloc(sizeof *pp + sbuf_len(sb) + 1, M_WAITOK | M_ZERO);
397	pp->name = (char *)(pp + 1);
398	strcpy(pp->name, sbuf_data(sb));
399	sbuf_delete(sb);
400	LIST_INIT(&pp->consumers);
401	pp->error = ENXIO;
402	pp->geom = gp;
403	pp->stat = devstat_new_entry(pp, -1, 0, DEVSTAT_ALL_SUPPORTED,
404	    DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX);
405	LIST_INSERT_HEAD(&gp->provider, pp, provider);
406	g_post_event(g_new_provider_event, pp, M_WAITOK, pp, gp, NULL);
407	return (pp);
408}
409
410void
411g_error_provider(struct g_provider *pp, int error)
412{
413
414	/* G_VALID_PROVIDER(pp);  We may not have g_topology */
415	pp->error = error;
416}
417
418struct g_provider *
419g_provider_by_name(char const *arg)
420{
421	struct g_class *cp;
422	struct g_geom *gp;
423	struct g_provider *pp;
424
425	LIST_FOREACH(cp, &g_classes, class) {
426		LIST_FOREACH(gp, &cp->geom, geom) {
427			LIST_FOREACH(pp, &gp->provider, provider) {
428				if (!strcmp(arg, pp->name))
429					return (pp);
430			}
431		}
432	}
433	return (NULL);
434}
435
436void
437g_destroy_provider(struct g_provider *pp)
438{
439	struct g_geom *gp;
440
441	g_topology_assert();
442	G_VALID_PROVIDER(pp);
443	KASSERT(LIST_EMPTY(&pp->consumers),
444	    ("g_destroy_provider but attached"));
445	KASSERT (pp->acr == 0, ("g_destroy_provider with acr"));
446	KASSERT (pp->acw == 0, ("g_destroy_provider with acw"));
447	KASSERT (pp->acw == 0, ("g_destroy_provider with ace"));
448	g_cancel_event(pp);
449	LIST_REMOVE(pp, provider);
450	gp = pp->geom;
451	devstat_remove_entry(pp->stat);
452	g_free(pp);
453	if ((gp->flags & G_GEOM_WITHER))
454		g_wither_geom(gp, 0);
455}
456
457/*
458 * We keep the "geoms" list sorted by topological order (== increasing
459 * numerical rank) at all times.
460 * When an attach is done, the attaching geoms rank is invalidated
461 * and it is moved to the tail of the list.
462 * All geoms later in the sequence has their ranks reevaluated in
463 * sequence.  If we cannot assign rank to a geom because it's
464 * prerequisites do not have rank, we move that element to the tail
465 * of the sequence with invalid rank as well.
466 * At some point we encounter our original geom and if we stil fail
467 * to assign it a rank, there must be a loop and we fail back to
468 * g_attach() which detach again and calls redo_rank again
469 * to fix up the damage.
470 * It would be much simpler code wise to do it recursively, but we
471 * can't risk that on the kernel stack.
472 */
473
474static int
475redo_rank(struct g_geom *gp)
476{
477	struct g_consumer *cp;
478	struct g_geom *gp1, *gp2;
479	int n, m;
480
481	g_topology_assert();
482	G_VALID_GEOM(gp);
483
484	/* Invalidate this geoms rank and move it to the tail */
485	gp1 = TAILQ_NEXT(gp, geoms);
486	if (gp1 != NULL) {
487		gp->rank = 0;
488		TAILQ_REMOVE(&geoms, gp, geoms);
489		TAILQ_INSERT_TAIL(&geoms, gp, geoms);
490	} else {
491		gp1 = gp;
492	}
493
494	/* re-rank the rest of the sequence */
495	for (; gp1 != NULL; gp1 = gp2) {
496		gp1->rank = 0;
497		m = 1;
498		LIST_FOREACH(cp, &gp1->consumer, consumer) {
499			if (cp->provider == NULL)
500				continue;
501			n = cp->provider->geom->rank;
502			if (n == 0) {
503				m = 0;
504				break;
505			} else if (n >= m)
506				m = n + 1;
507		}
508		gp1->rank = m;
509		gp2 = TAILQ_NEXT(gp1, geoms);
510
511		/* got a rank, moving on */
512		if (m != 0)
513			continue;
514
515		/* no rank to original geom means loop */
516		if (gp == gp1)
517			return (ELOOP);
518
519		/* no rank, put it at the end move on */
520		TAILQ_REMOVE(&geoms, gp1, geoms);
521		TAILQ_INSERT_TAIL(&geoms, gp1, geoms);
522	}
523	return (0);
524}
525
526int
527g_attach(struct g_consumer *cp, struct g_provider *pp)
528{
529	int error;
530
531	g_topology_assert();
532	G_VALID_CONSUMER(cp);
533	G_VALID_PROVIDER(pp);
534	KASSERT(cp->provider == NULL, ("attach but attached"));
535	cp->provider = pp;
536	LIST_INSERT_HEAD(&pp->consumers, cp, consumers);
537	error = redo_rank(cp->geom);
538	if (error) {
539		LIST_REMOVE(cp, consumers);
540		cp->provider = NULL;
541		redo_rank(cp->geom);
542	}
543	return (error);
544}
545
546void
547g_detach(struct g_consumer *cp)
548{
549	struct g_provider *pp;
550
551	g_topology_assert();
552	G_VALID_CONSUMER(cp);
553	g_trace(G_T_TOPOLOGY, "g_detach(%p)", cp);
554	KASSERT(cp->provider != NULL, ("detach but not attached"));
555	KASSERT(cp->acr == 0, ("detach but nonzero acr"));
556	KASSERT(cp->acw == 0, ("detach but nonzero acw"));
557	KASSERT(cp->ace == 0, ("detach but nonzero ace"));
558	KASSERT(cp->nstart == cp->nend,
559	    ("detach with active requests"));
560	pp = cp->provider;
561	LIST_REMOVE(cp, consumers);
562	cp->provider = NULL;
563	if (pp->geom->flags & G_GEOM_WITHER)
564		g_wither_geom(pp->geom, 0);
565	else if (pp->flags & G_PF_WITHER)
566		g_destroy_provider(pp);
567	redo_rank(cp->geom);
568}
569
570/*
571 * g_access()
572 *
573 * Access-check with delta values.  The question asked is "can provider
574 * "cp" change the access counters by the relative amounts dc[rwe] ?"
575 */
576
577int
578g_access(struct g_consumer *cp, int dcr, int dcw, int dce)
579{
580	struct g_provider *pp;
581	int pr,pw,pe;
582	int error;
583
584	g_topology_assert();
585	G_VALID_CONSUMER(cp);
586	pp = cp->provider;
587	KASSERT(pp != NULL, ("access but not attached"));
588	G_VALID_PROVIDER(pp);
589
590	g_trace(G_T_ACCESS, "g_access(%p(%s), %d, %d, %d)",
591	    cp, pp->name, dcr, dcw, dce);
592
593	KASSERT(cp->acr + dcr >= 0, ("access resulting in negative acr"));
594	KASSERT(cp->acw + dcw >= 0, ("access resulting in negative acw"));
595	KASSERT(cp->ace + dce >= 0, ("access resulting in negative ace"));
596	KASSERT(dcr != 0 || dcw != 0 || dce != 0, ("NOP access request"));
597	KASSERT(pp->geom->access != NULL, ("NULL geom->access"));
598
599	/*
600	 * If our class cares about being spoiled, and we have been, we
601	 * are probably just ahead of the event telling us that.  Fail
602	 * now rather than having to unravel this later.
603	 */
604	if (cp->geom->spoiled != NULL && cp->spoiled &&
605	    (dcr > 0 || dcw > 0 || dce > 0))
606		return (ENXIO);
607
608	/*
609	 * Figure out what counts the provider would have had, if this
610	 * consumer had (r0w0e0) at this time.
611	 */
612	pr = pp->acr - cp->acr;
613	pw = pp->acw - cp->acw;
614	pe = pp->ace - cp->ace;
615
616	g_trace(G_T_ACCESS,
617    "open delta:[r%dw%de%d] old:[r%dw%de%d] provider:[r%dw%de%d] %p(%s)",
618	    dcr, dcw, dce,
619	    cp->acr, cp->acw, cp->ace,
620	    pp->acr, pp->acw, pp->ace,
621	    pp, pp->name);
622
623	/* If foot-shooting is enabled, any open on rank#1 is OK */
624	if ((g_debugflags & 16) && pp->geom->rank == 1)
625		;
626	/* If we try exclusive but already write: fail */
627	else if (dce > 0 && pw > 0)
628		return (EPERM);
629	/* If we try write but already exclusive: fail */
630	else if (dcw > 0 && pe > 0)
631		return (EPERM);
632	/* If we try to open more but provider is error'ed: fail */
633	else if ((dcr > 0 || dcw > 0 || dce > 0) && pp->error != 0)
634		return (pp->error);
635
636	/* Ok then... */
637
638	error = pp->geom->access(pp, dcr, dcw, dce);
639	KASSERT(dcr > 0 || dcw > 0 || dce > 0 || error == 0,
640	    ("Geom provider %s::%s failed closing ->access()",
641	    pp->geom->class->name, pp->name));
642	if (!error) {
643		/*
644		 * If we open first write, spoil any partner consumers.
645		 * If we close last write, trigger re-taste.
646		 */
647		if (pp->acw == 0 && dcw != 0)
648			g_spoil(pp, cp);
649		else if (pp->acw != 0 && pp->acw == -dcw &&
650		    !(pp->geom->flags & G_GEOM_WITHER))
651			g_post_event(g_new_provider_event, pp, M_WAITOK,
652			    pp, NULL);
653
654		pp->acr += dcr;
655		pp->acw += dcw;
656		pp->ace += dce;
657		cp->acr += dcr;
658		cp->acw += dcw;
659		cp->ace += dce;
660	}
661	return (error);
662}
663
664int
665g_handleattr_int(struct bio *bp, const char *attribute, int val)
666{
667
668	return (g_handleattr(bp, attribute, &val, sizeof val));
669}
670
671int
672g_handleattr_off_t(struct bio *bp, const char *attribute, off_t val)
673{
674
675	return (g_handleattr(bp, attribute, &val, sizeof val));
676}
677
678int
679g_handleattr(struct bio *bp, const char *attribute, void *val, int len)
680{
681	int error;
682
683	if (strcmp(bp->bio_attribute, attribute))
684		return (0);
685	if (bp->bio_length != len) {
686		printf("bio_length %jd len %d -> EFAULT\n",
687		    (intmax_t)bp->bio_length, len);
688		error = EFAULT;
689	} else {
690		error = 0;
691		bcopy(val, bp->bio_data, len);
692		bp->bio_completed = len;
693	}
694	g_io_deliver(bp, error);
695	return (1);
696}
697
698int
699g_std_access(struct g_provider *pp,
700	int dr __unused, int dw __unused, int de __unused)
701{
702
703	g_topology_assert();
704	G_VALID_PROVIDER(pp);
705        return (0);
706}
707
708void
709g_std_done(struct bio *bp)
710{
711	struct bio *bp2;
712
713	bp2 = bp->bio_parent;
714	if (bp2->bio_error == 0)
715		bp2->bio_error = bp->bio_error;
716	bp2->bio_completed += bp->bio_completed;
717	g_destroy_bio(bp);
718	bp2->bio_inbed++;
719	if (bp2->bio_children == bp2->bio_inbed)
720		g_io_deliver(bp2, bp2->bio_error);
721}
722
723/* XXX: maybe this is only g_slice_spoiled */
724
725void
726g_std_spoiled(struct g_consumer *cp)
727{
728	struct g_geom *gp;
729	struct g_provider *pp;
730
731	g_topology_assert();
732	G_VALID_CONSUMER(cp);
733	g_trace(G_T_TOPOLOGY, "g_std_spoiled(%p)", cp);
734	g_detach(cp);
735	gp = cp->geom;
736	LIST_FOREACH(pp, &gp->provider, provider)
737		g_orphan_provider(pp, ENXIO);
738	g_destroy_consumer(cp);
739	if (LIST_EMPTY(&gp->provider) && LIST_EMPTY(&gp->consumer))
740		g_destroy_geom(gp);
741	else
742		gp->flags |= G_GEOM_WITHER;
743}
744
745/*
746 * Spoiling happens when a provider is opened for writing, but consumers
747 * which are configured by in-band data are attached (slicers for instance).
748 * Since the write might potentially change the in-band data, such consumers
749 * need to re-evaluate their existence after the writing session closes.
750 * We do this by (offering to) tear them down when the open for write happens
751 * in return for a re-taste when it closes again.
752 * Together with the fact that such consumers grab an 'e' bit whenever they
753 * are open, regardless of mode, this ends up DTRT.
754 */
755
756static void
757g_spoil_event(void *arg, int flag)
758{
759	struct g_provider *pp;
760	struct g_consumer *cp, *cp2;
761
762	g_topology_assert();
763	if (flag == EV_CANCEL)
764		return;
765	pp = arg;
766	G_VALID_PROVIDER(pp);
767	for (cp = LIST_FIRST(&pp->consumers); cp != NULL; cp = cp2) {
768		cp2 = LIST_NEXT(cp, consumers);
769		if (!cp->spoiled)
770			continue;
771		cp->spoiled = 0;
772		if (cp->geom->spoiled == NULL)
773			continue;
774		cp->geom->spoiled(cp);
775		g_topology_assert();
776	}
777}
778
779void
780g_spoil(struct g_provider *pp, struct g_consumer *cp)
781{
782	struct g_consumer *cp2;
783
784	g_topology_assert();
785	G_VALID_PROVIDER(pp);
786	G_VALID_CONSUMER(cp);
787
788	LIST_FOREACH(cp2, &pp->consumers, consumers) {
789		if (cp2 == cp)
790			continue;
791/*
792		KASSERT(cp2->acr == 0, ("spoiling cp->acr = %d", cp2->acr));
793		KASSERT(cp2->acw == 0, ("spoiling cp->acw = %d", cp2->acw));
794*/
795		KASSERT(cp2->ace == 0, ("spoiling cp->ace = %d", cp2->ace));
796		cp2->spoiled++;
797	}
798	g_post_event(g_spoil_event, pp, M_WAITOK, pp, NULL);
799}
800
801int
802g_getattr__(const char *attr, struct g_consumer *cp, void *var, int len)
803{
804	int error, i;
805
806	i = len;
807	error = g_io_getattr(attr, cp, &i, var);
808	if (error)
809		return (error);
810	if (i != len)
811		return (EINVAL);
812	return (0);
813}
814
815#ifdef DIAGNOSTIC
816/*
817 * This function walks (topologically unsafely) the mesh and return a
818 * non-zero integer if it finds the argument pointer is an object.
819 * The return value indicates which type of object it is belived to be.
820 * If topology is not locked, this function is potentially dangerous,
821 * but since it is for debugging purposes and can be useful for instance
822 * from DDB, we do not assert topology lock is held.
823 */
824int
825g_valid_obj(void const *ptr)
826{
827	struct g_class *mp;
828	struct g_geom *gp;
829	struct g_consumer *cp;
830	struct g_provider *pp;
831
832	LIST_FOREACH(mp, &g_classes, class) {
833		if (ptr == mp)
834			return (1);
835		LIST_FOREACH(gp, &mp->geom, geom) {
836			if (ptr == gp)
837				return (2);
838			LIST_FOREACH(cp, &gp->consumer, consumer)
839				if (ptr == cp)
840					return (3);
841			LIST_FOREACH(pp, &gp->provider, provider)
842				if (ptr == pp)
843					return (4);
844		}
845	}
846	return(0);
847}
848#endif
849