]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/geom/geom_subr.c
MFV r323530,r323533,r323534: 7431 ZFS Channel Programs, and followups
[FreeBSD/FreeBSD.git] / sys / geom / geom_subr.c
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$");
38
39 #include "opt_ddb.h"
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/devicestat.h>
44 #include <sys/kernel.h>
45 #include <sys/malloc.h>
46 #include <sys/bio.h>
47 #include <sys/sysctl.h>
48 #include <sys/proc.h>
49 #include <sys/kthread.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/errno.h>
53 #include <sys/sbuf.h>
54 #include <geom/geom.h>
55 #include <geom/geom_int.h>
56 #include <machine/stdarg.h>
57
58 #ifdef DDB
59 #include <ddb/ddb.h>
60 #endif
61
62 #ifdef KDB
63 #include <sys/kdb.h>
64 #endif
65
66 struct class_list_head g_classes = LIST_HEAD_INITIALIZER(g_classes);
67 static struct g_tailq_head geoms = TAILQ_HEAD_INITIALIZER(geoms);
68 char *g_wait_event, *g_wait_up, *g_wait_down, *g_wait_sim;
69
70 struct g_hh00 {
71         struct g_class          *mp;
72         struct g_provider       *pp;
73         off_t                   size;
74         int                     error;
75         int                     post;
76 };
77
78 /*
79  * This event offers a new class a chance to taste all preexisting providers.
80  */
81 static void
82 g_load_class(void *arg, int flag)
83 {
84         struct g_hh00 *hh;
85         struct g_class *mp2, *mp;
86         struct g_geom *gp;
87         struct g_provider *pp;
88
89         g_topology_assert();
90         if (flag == EV_CANCEL)  /* XXX: can't happen ? */
91                 return;
92         if (g_shutdown)
93                 return;
94
95         hh = arg;
96         mp = hh->mp;
97         hh->error = 0;
98         if (hh->post) {
99                 g_free(hh);
100                 hh = NULL;
101         }
102         g_trace(G_T_TOPOLOGY, "g_load_class(%s)", mp->name);
103         KASSERT(mp->name != NULL && *mp->name != '\0',
104             ("GEOM class has no name"));
105         LIST_FOREACH(mp2, &g_classes, class) {
106                 if (mp2 == mp) {
107                         printf("The GEOM class %s is already loaded.\n",
108                             mp2->name);
109                         if (hh != NULL)
110                                 hh->error = EEXIST;
111                         return;
112                 } else if (strcmp(mp2->name, mp->name) == 0) {
113                         printf("A GEOM class %s is already loaded.\n",
114                             mp2->name);
115                         if (hh != NULL)
116                                 hh->error = EEXIST;
117                         return;
118                 }
119         }
120
121         LIST_INIT(&mp->geom);
122         LIST_INSERT_HEAD(&g_classes, mp, class);
123         if (mp->init != NULL)
124                 mp->init(mp);
125         if (mp->taste == NULL)
126                 return;
127         LIST_FOREACH(mp2, &g_classes, class) {
128                 if (mp == mp2)
129                         continue;
130                 LIST_FOREACH(gp, &mp2->geom, geom) {
131                         LIST_FOREACH(pp, &gp->provider, provider) {
132                                 mp->taste(mp, pp, 0);
133                                 g_topology_assert();
134                         }
135                 }
136         }
137 }
138
139 static int
140 g_unload_class(struct g_class *mp)
141 {
142         struct g_geom *gp;
143         struct g_provider *pp;
144         struct g_consumer *cp;
145         int error;
146
147         g_topology_lock();
148         g_trace(G_T_TOPOLOGY, "g_unload_class(%s)", mp->name);
149 retry:
150         G_VALID_CLASS(mp);
151         LIST_FOREACH(gp, &mp->geom, geom) {
152                 /* We refuse to unload if anything is open */
153                 LIST_FOREACH(pp, &gp->provider, provider)
154                         if (pp->acr || pp->acw || pp->ace) {
155                                 g_topology_unlock();
156                                 return (EBUSY);
157                         }
158                 LIST_FOREACH(cp, &gp->consumer, consumer)
159                         if (cp->acr || cp->acw || cp->ace) {
160                                 g_topology_unlock();
161                                 return (EBUSY);
162                         }
163                 /* If the geom is withering, wait for it to finish. */
164                 if (gp->flags & G_GEOM_WITHER) {
165                         g_topology_sleep(mp, 1);
166                         goto retry;
167                 }
168         }
169
170         /*
171          * We allow unloading if we have no geoms, or a class
172          * method we can use to get rid of them.
173          */
174         if (!LIST_EMPTY(&mp->geom) && mp->destroy_geom == NULL) {
175                 g_topology_unlock();
176                 return (EOPNOTSUPP);
177         }
178
179         /* Bar new entries */
180         mp->taste = NULL;
181         mp->config = NULL;
182
183         LIST_FOREACH(gp, &mp->geom, geom) {
184                 error = mp->destroy_geom(NULL, mp, gp);
185                 if (error != 0) {
186                         g_topology_unlock();
187                         return (error);
188                 }
189         }
190         /* Wait for withering to finish. */
191         for (;;) {
192                 gp = LIST_FIRST(&mp->geom);
193                 if (gp == NULL)
194                         break;
195                 KASSERT(gp->flags & G_GEOM_WITHER,
196                    ("Non-withering geom in class %s", mp->name));
197                 g_topology_sleep(mp, 1);
198         }
199         G_VALID_CLASS(mp);
200         if (mp->fini != NULL)
201                 mp->fini(mp);
202         LIST_REMOVE(mp, class);
203         g_topology_unlock();
204
205         return (0);
206 }
207
208 int
209 g_modevent(module_t mod, int type, void *data)
210 {
211         struct g_hh00 *hh;
212         int error;
213         static int g_ignition;
214         struct g_class *mp;
215
216         mp = data;
217         if (mp->version != G_VERSION) {
218                 printf("GEOM class %s has Wrong version %x\n",
219                     mp->name, mp->version);
220                 return (EINVAL);
221         }
222         if (!g_ignition) {
223                 g_ignition++;
224                 g_init();
225         }
226         error = EOPNOTSUPP;
227         switch (type) {
228         case MOD_LOAD:
229                 g_trace(G_T_TOPOLOGY, "g_modevent(%s, LOAD)", mp->name);
230                 hh = g_malloc(sizeof *hh, M_WAITOK | M_ZERO);
231                 hh->mp = mp;
232                 /*
233                  * Once the system is not cold, MOD_LOAD calls will be
234                  * from the userland and the g_event thread will be able
235                  * to acknowledge their completion.
236                  */
237                 if (cold) {
238                         hh->post = 1;
239                         error = g_post_event(g_load_class, hh, M_WAITOK, NULL);
240                 } else {
241                         error = g_waitfor_event(g_load_class, hh, M_WAITOK,
242                             NULL);
243                         if (error == 0)
244                                 error = hh->error;
245                         g_free(hh);
246                 }
247                 break;
248         case MOD_UNLOAD:
249                 g_trace(G_T_TOPOLOGY, "g_modevent(%s, UNLOAD)", mp->name);
250                 error = g_unload_class(mp);
251                 if (error == 0) {
252                         KASSERT(LIST_EMPTY(&mp->geom),
253                             ("Unloaded class (%s) still has geom", mp->name));
254                 }
255                 break;
256         }
257         return (error);
258 }
259
260 static void
261 g_retaste_event(void *arg, int flag)
262 {
263         struct g_class *mp, *mp2;
264         struct g_geom *gp;
265         struct g_hh00 *hh;
266         struct g_provider *pp;
267         struct g_consumer *cp;
268
269         g_topology_assert();
270         if (flag == EV_CANCEL)  /* XXX: can't happen ? */
271                 return;
272         if (g_shutdown || g_notaste)
273                 return;
274
275         hh = arg;
276         mp = hh->mp;
277         hh->error = 0;
278         if (hh->post) {
279                 g_free(hh);
280                 hh = NULL;
281         }
282         g_trace(G_T_TOPOLOGY, "g_retaste(%s)", mp->name);
283
284         LIST_FOREACH(mp2, &g_classes, class) {
285                 LIST_FOREACH(gp, &mp2->geom, geom) {
286                         LIST_FOREACH(pp, &gp->provider, provider) {
287                                 if (pp->acr || pp->acw || pp->ace)
288                                         continue;
289                                 LIST_FOREACH(cp, &pp->consumers, consumers) {
290                                         if (cp->geom->class == mp &&
291                                             (cp->flags & G_CF_ORPHAN) == 0)
292                                                 break;
293                                 }
294                                 if (cp != NULL) {
295                                         cp->flags |= G_CF_ORPHAN;
296                                         g_wither_geom(cp->geom, ENXIO);
297                                 }
298                                 mp->taste(mp, pp, 0);
299                                 g_topology_assert();
300                         }
301                 }
302         }
303 }
304
305 int
306 g_retaste(struct g_class *mp)
307 {
308         struct g_hh00 *hh;
309         int error;
310
311         if (mp->taste == NULL)
312                 return (EINVAL);
313
314         hh = g_malloc(sizeof *hh, M_WAITOK | M_ZERO);
315         hh->mp = mp;
316
317         if (cold) {
318                 hh->post = 1;
319                 error = g_post_event(g_retaste_event, hh, M_WAITOK, NULL);
320         } else {
321                 error = g_waitfor_event(g_retaste_event, hh, M_WAITOK, NULL);
322                 if (error == 0)
323                         error = hh->error;
324                 g_free(hh);
325         }
326
327         return (error);
328 }
329
330 struct g_geom *
331 g_new_geomf(struct g_class *mp, const char *fmt, ...)
332 {
333         struct g_geom *gp;
334         va_list ap;
335         struct sbuf *sb;
336
337         g_topology_assert();
338         G_VALID_CLASS(mp);
339         sb = sbuf_new_auto();
340         va_start(ap, fmt);
341         sbuf_vprintf(sb, fmt, ap);
342         va_end(ap);
343         sbuf_finish(sb);
344         gp = g_malloc(sizeof *gp, M_WAITOK | M_ZERO);
345         gp->name = g_malloc(sbuf_len(sb) + 1, M_WAITOK | M_ZERO);
346         gp->class = mp;
347         gp->rank = 1;
348         LIST_INIT(&gp->consumer);
349         LIST_INIT(&gp->provider);
350         LIST_INIT(&gp->aliases);
351         LIST_INSERT_HEAD(&mp->geom, gp, geom);
352         TAILQ_INSERT_HEAD(&geoms, gp, geoms);
353         strcpy(gp->name, sbuf_data(sb));
354         sbuf_delete(sb);
355         /* Fill in defaults from class */
356         gp->start = mp->start;
357         gp->spoiled = mp->spoiled;
358         gp->attrchanged = mp->attrchanged;
359         gp->providergone = mp->providergone;
360         gp->dumpconf = mp->dumpconf;
361         gp->access = mp->access;
362         gp->orphan = mp->orphan;
363         gp->ioctl = mp->ioctl;
364         gp->resize = mp->resize;
365         return (gp);
366 }
367
368 void
369 g_destroy_geom(struct g_geom *gp)
370 {
371         struct g_geom_alias *gap, *gaptmp;
372
373         g_topology_assert();
374         G_VALID_GEOM(gp);
375         g_trace(G_T_TOPOLOGY, "g_destroy_geom(%p(%s))", gp, gp->name);
376         KASSERT(LIST_EMPTY(&gp->consumer),
377             ("g_destroy_geom(%s) with consumer(s) [%p]",
378             gp->name, LIST_FIRST(&gp->consumer)));
379         KASSERT(LIST_EMPTY(&gp->provider),
380             ("g_destroy_geom(%s) with provider(s) [%p]",
381             gp->name, LIST_FIRST(&gp->provider)));
382         g_cancel_event(gp);
383         LIST_REMOVE(gp, geom);
384         TAILQ_REMOVE(&geoms, gp, geoms);
385         LIST_FOREACH_SAFE(gap, &gp->aliases, ga_next, gaptmp)
386                 g_free(gap);
387         g_free(gp->name);
388         g_free(gp);
389 }
390
391 /*
392  * This function is called (repeatedly) until the geom has withered away.
393  */
394 void
395 g_wither_geom(struct g_geom *gp, int error)
396 {
397         struct g_provider *pp;
398
399         g_topology_assert();
400         G_VALID_GEOM(gp);
401         g_trace(G_T_TOPOLOGY, "g_wither_geom(%p(%s))", gp, gp->name);
402         if (!(gp->flags & G_GEOM_WITHER)) {
403                 gp->flags |= G_GEOM_WITHER;
404                 LIST_FOREACH(pp, &gp->provider, provider)
405                         if (!(pp->flags & G_PF_ORPHAN))
406                                 g_orphan_provider(pp, error);
407         }
408         g_do_wither();
409 }
410
411 /*
412  * Convenience function to destroy a particular provider.
413  */
414 void
415 g_wither_provider(struct g_provider *pp, int error)
416 {
417
418         pp->flags |= G_PF_WITHER;
419         if (!(pp->flags & G_PF_ORPHAN))
420                 g_orphan_provider(pp, error);
421 }
422
423 /*
424  * This function is called (repeatedly) until the has withered away.
425  */
426 void
427 g_wither_geom_close(struct g_geom *gp, int error)
428 {
429         struct g_consumer *cp;
430
431         g_topology_assert();
432         G_VALID_GEOM(gp);
433         g_trace(G_T_TOPOLOGY, "g_wither_geom_close(%p(%s))", gp, gp->name);
434         LIST_FOREACH(cp, &gp->consumer, consumer)
435                 if (cp->acr || cp->acw || cp->ace)
436                         g_access(cp, -cp->acr, -cp->acw, -cp->ace);
437         g_wither_geom(gp, error);
438 }
439
440 /*
441  * This function is called (repeatedly) until we cant wash away more
442  * withered bits at present.
443  */
444 void
445 g_wither_washer()
446 {
447         struct g_class *mp;
448         struct g_geom *gp, *gp2;
449         struct g_provider *pp, *pp2;
450         struct g_consumer *cp, *cp2;
451
452         g_topology_assert();
453         LIST_FOREACH(mp, &g_classes, class) {
454                 LIST_FOREACH_SAFE(gp, &mp->geom, geom, gp2) {
455                         LIST_FOREACH_SAFE(pp, &gp->provider, provider, pp2) {
456                                 if (!(pp->flags & G_PF_WITHER))
457                                         continue;
458                                 if (LIST_EMPTY(&pp->consumers))
459                                         g_destroy_provider(pp);
460                         }
461                         if (!(gp->flags & G_GEOM_WITHER))
462                                 continue;
463                         LIST_FOREACH_SAFE(pp, &gp->provider, provider, pp2) {
464                                 if (LIST_EMPTY(&pp->consumers))
465                                         g_destroy_provider(pp);
466                         }
467                         LIST_FOREACH_SAFE(cp, &gp->consumer, consumer, cp2) {
468                                 if (cp->acr || cp->acw || cp->ace)
469                                         continue;
470                                 if (cp->provider != NULL)
471                                         g_detach(cp);
472                                 g_destroy_consumer(cp);
473                         }
474                         if (LIST_EMPTY(&gp->provider) &&
475                             LIST_EMPTY(&gp->consumer))
476                                 g_destroy_geom(gp);
477                 }
478         }
479 }
480
481 struct g_consumer *
482 g_new_consumer(struct g_geom *gp)
483 {
484         struct g_consumer *cp;
485
486         g_topology_assert();
487         G_VALID_GEOM(gp);
488         KASSERT(!(gp->flags & G_GEOM_WITHER),
489             ("g_new_consumer on WITHERing geom(%s) (class %s)",
490             gp->name, gp->class->name));
491         KASSERT(gp->orphan != NULL,
492             ("g_new_consumer on geom(%s) (class %s) without orphan",
493             gp->name, gp->class->name));
494
495         cp = g_malloc(sizeof *cp, M_WAITOK | M_ZERO);
496         cp->geom = gp;
497         cp->stat = devstat_new_entry(cp, -1, 0, DEVSTAT_ALL_SUPPORTED,
498             DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX);
499         LIST_INSERT_HEAD(&gp->consumer, cp, consumer);
500         return(cp);
501 }
502
503 void
504 g_destroy_consumer(struct g_consumer *cp)
505 {
506         struct g_geom *gp;
507
508         g_topology_assert();
509         G_VALID_CONSUMER(cp);
510         g_trace(G_T_TOPOLOGY, "g_destroy_consumer(%p)", cp);
511         KASSERT (cp->provider == NULL, ("g_destroy_consumer but attached"));
512         KASSERT (cp->acr == 0, ("g_destroy_consumer with acr"));
513         KASSERT (cp->acw == 0, ("g_destroy_consumer with acw"));
514         KASSERT (cp->ace == 0, ("g_destroy_consumer with ace"));
515         g_cancel_event(cp);
516         gp = cp->geom;
517         LIST_REMOVE(cp, consumer);
518         devstat_remove_entry(cp->stat);
519         g_free(cp);
520         if (gp->flags & G_GEOM_WITHER)
521                 g_do_wither();
522 }
523
524 static void
525 g_new_provider_event(void *arg, int flag)
526 {
527         struct g_class *mp;
528         struct g_provider *pp;
529         struct g_consumer *cp, *next_cp;
530
531         g_topology_assert();
532         if (flag == EV_CANCEL)
533                 return;
534         if (g_shutdown)
535                 return;
536         pp = arg;
537         G_VALID_PROVIDER(pp);
538         KASSERT(!(pp->flags & G_PF_WITHER),
539             ("g_new_provider_event but withered"));
540         LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, next_cp) {
541                 if ((cp->flags & G_CF_ORPHAN) == 0 &&
542                     cp->geom->attrchanged != NULL)
543                         cp->geom->attrchanged(cp, "GEOM::media");
544         }
545         if (g_notaste)
546                 return;
547         LIST_FOREACH(mp, &g_classes, class) {
548                 if (mp->taste == NULL)
549                         continue;
550                 LIST_FOREACH(cp, &pp->consumers, consumers)
551                         if (cp->geom->class == mp &&
552                             (cp->flags & G_CF_ORPHAN) == 0)
553                                 break;
554                 if (cp != NULL)
555                         continue;
556                 mp->taste(mp, pp, 0);
557                 g_topology_assert();
558         }
559 }
560
561
562 struct g_provider *
563 g_new_providerf(struct g_geom *gp, const char *fmt, ...)
564 {
565         struct g_provider *pp;
566         struct sbuf *sb;
567         va_list ap;
568
569         g_topology_assert();
570         G_VALID_GEOM(gp);
571         KASSERT(gp->access != NULL,
572             ("new provider on geom(%s) without ->access (class %s)",
573             gp->name, gp->class->name));
574         KASSERT(gp->start != NULL,
575             ("new provider on geom(%s) without ->start (class %s)",
576             gp->name, gp->class->name));
577         KASSERT(!(gp->flags & G_GEOM_WITHER),
578             ("new provider on WITHERing geom(%s) (class %s)",
579             gp->name, gp->class->name));
580         sb = sbuf_new_auto();
581         va_start(ap, fmt);
582         sbuf_vprintf(sb, fmt, ap);
583         va_end(ap);
584         sbuf_finish(sb);
585         pp = g_malloc(sizeof *pp + sbuf_len(sb) + 1, M_WAITOK | M_ZERO);
586         pp->name = (char *)(pp + 1);
587         strcpy(pp->name, sbuf_data(sb));
588         sbuf_delete(sb);
589         LIST_INIT(&pp->consumers);
590         pp->error = ENXIO;
591         pp->geom = gp;
592         pp->stat = devstat_new_entry(pp, -1, 0, DEVSTAT_ALL_SUPPORTED,
593             DEVSTAT_TYPE_DIRECT, DEVSTAT_PRIORITY_MAX);
594         LIST_INSERT_HEAD(&gp->provider, pp, provider);
595         g_post_event(g_new_provider_event, pp, M_WAITOK, pp, gp, NULL);
596         return (pp);
597 }
598
599 void
600 g_error_provider(struct g_provider *pp, int error)
601 {
602
603         /* G_VALID_PROVIDER(pp);  We may not have g_topology */
604         pp->error = error;
605 }
606
607 static void
608 g_resize_provider_event(void *arg, int flag)
609 {
610         struct g_hh00 *hh;
611         struct g_class *mp;
612         struct g_geom *gp;
613         struct g_provider *pp;
614         struct g_consumer *cp, *cp2;
615         off_t size;
616
617         g_topology_assert();
618         if (g_shutdown)
619                 return;
620
621         hh = arg;
622         pp = hh->pp;
623         size = hh->size;
624         g_free(hh);
625
626         G_VALID_PROVIDER(pp);
627         KASSERT(!(pp->flags & G_PF_WITHER),
628             ("g_resize_provider_event but withered"));
629         g_trace(G_T_TOPOLOGY, "g_resize_provider_event(%p)", pp);
630
631         LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, cp2) {
632                 gp = cp->geom;
633                 if (gp->resize == NULL && size < pp->mediasize) {
634                         /*
635                          * XXX: g_dev_orphan method does deferred destroying
636                          * and it is possible, that other event could already
637                          * call the orphan method. Check consumer's flags to
638                          * do not schedule it twice.
639                          */
640                         if (cp->flags & G_CF_ORPHAN)
641                                 continue;
642                         cp->flags |= G_CF_ORPHAN;
643                         cp->geom->orphan(cp);
644                 }
645         }
646
647         pp->mediasize = size;
648         
649         LIST_FOREACH_SAFE(cp, &pp->consumers, consumers, cp2) {
650                 gp = cp->geom;
651                 if ((gp->flags & G_GEOM_WITHER) == 0 && gp->resize != NULL)
652                         gp->resize(cp);
653         }
654
655         /*
656          * After resizing, the previously invalid GEOM class metadata
657          * might become valid.  This means we should retaste.
658          */
659         LIST_FOREACH(mp, &g_classes, class) {
660                 if (mp->taste == NULL)
661                         continue;
662                 LIST_FOREACH(cp, &pp->consumers, consumers)
663                         if (cp->geom->class == mp &&
664                             (cp->flags & G_CF_ORPHAN) == 0)
665                                 break;
666                 if (cp != NULL)
667                         continue;
668                 mp->taste(mp, pp, 0);
669                 g_topology_assert();
670         }
671 }
672
673 void
674 g_resize_provider(struct g_provider *pp, off_t size)
675 {
676         struct g_hh00 *hh;
677
678         G_VALID_PROVIDER(pp);
679         if (pp->flags & G_PF_WITHER)
680                 return;
681
682         if (size == pp->mediasize)
683                 return;
684
685         hh = g_malloc(sizeof *hh, M_WAITOK | M_ZERO);
686         hh->pp = pp;
687         hh->size = size;
688         g_post_event(g_resize_provider_event, hh, M_WAITOK, NULL);
689 }
690
691 #ifndef _PATH_DEV
692 #define _PATH_DEV       "/dev/"
693 #endif
694
695 struct g_provider *
696 g_provider_by_name(char const *arg)
697 {
698         struct g_class *cp;
699         struct g_geom *gp;
700         struct g_provider *pp, *wpp;
701
702         if (strncmp(arg, _PATH_DEV, sizeof(_PATH_DEV) - 1) == 0)
703                 arg += sizeof(_PATH_DEV) - 1;
704
705         wpp = NULL;
706         LIST_FOREACH(cp, &g_classes, class) {
707                 LIST_FOREACH(gp, &cp->geom, geom) {
708                         LIST_FOREACH(pp, &gp->provider, provider) {
709                                 if (strcmp(arg, pp->name) != 0)
710                                         continue;
711                                 if ((gp->flags & G_GEOM_WITHER) == 0 &&
712                                     (pp->flags & G_PF_WITHER) == 0)
713                                         return (pp);
714                                 else
715                                         wpp = pp;
716                         }
717                 }
718         }
719
720         return (wpp);
721 }
722
723 void
724 g_destroy_provider(struct g_provider *pp)
725 {
726         struct g_geom *gp;
727
728         g_topology_assert();
729         G_VALID_PROVIDER(pp);
730         KASSERT(LIST_EMPTY(&pp->consumers),
731             ("g_destroy_provider but attached"));
732         KASSERT (pp->acr == 0, ("g_destroy_provider with acr"));
733         KASSERT (pp->acw == 0, ("g_destroy_provider with acw"));
734         KASSERT (pp->ace == 0, ("g_destroy_provider with ace"));
735         g_cancel_event(pp);
736         LIST_REMOVE(pp, provider);
737         gp = pp->geom;
738         devstat_remove_entry(pp->stat);
739         /*
740          * If a callback was provided, send notification that the provider
741          * is now gone.
742          */
743         if (gp->providergone != NULL)
744                 gp->providergone(pp);
745
746         g_free(pp);
747         if ((gp->flags & G_GEOM_WITHER))
748                 g_do_wither();
749 }
750
751 /*
752  * We keep the "geoms" list sorted by topological order (== increasing
753  * numerical rank) at all times.
754  * When an attach is done, the attaching geoms rank is invalidated
755  * and it is moved to the tail of the list.
756  * All geoms later in the sequence has their ranks reevaluated in
757  * sequence.  If we cannot assign rank to a geom because it's
758  * prerequisites do not have rank, we move that element to the tail
759  * of the sequence with invalid rank as well.
760  * At some point we encounter our original geom and if we stil fail
761  * to assign it a rank, there must be a loop and we fail back to
762  * g_attach() which detach again and calls redo_rank again
763  * to fix up the damage.
764  * It would be much simpler code wise to do it recursively, but we
765  * can't risk that on the kernel stack.
766  */
767
768 static int
769 redo_rank(struct g_geom *gp)
770 {
771         struct g_consumer *cp;
772         struct g_geom *gp1, *gp2;
773         int n, m;
774
775         g_topology_assert();
776         G_VALID_GEOM(gp);
777
778         /* Invalidate this geoms rank and move it to the tail */
779         gp1 = TAILQ_NEXT(gp, geoms);
780         if (gp1 != NULL) {
781                 gp->rank = 0;
782                 TAILQ_REMOVE(&geoms, gp, geoms);
783                 TAILQ_INSERT_TAIL(&geoms, gp, geoms);
784         } else {
785                 gp1 = gp;
786         }
787
788         /* re-rank the rest of the sequence */
789         for (; gp1 != NULL; gp1 = gp2) {
790                 gp1->rank = 0;
791                 m = 1;
792                 LIST_FOREACH(cp, &gp1->consumer, consumer) {
793                         if (cp->provider == NULL)
794                                 continue;
795                         n = cp->provider->geom->rank;
796                         if (n == 0) {
797                                 m = 0;
798                                 break;
799                         } else if (n >= m)
800                                 m = n + 1;
801                 }
802                 gp1->rank = m;
803                 gp2 = TAILQ_NEXT(gp1, geoms);
804
805                 /* got a rank, moving on */
806                 if (m != 0)
807                         continue;
808
809                 /* no rank to original geom means loop */
810                 if (gp == gp1) 
811                         return (ELOOP);
812
813                 /* no rank, put it at the end move on */
814                 TAILQ_REMOVE(&geoms, gp1, geoms);
815                 TAILQ_INSERT_TAIL(&geoms, gp1, geoms);
816         }
817         return (0);
818 }
819
820 int
821 g_attach(struct g_consumer *cp, struct g_provider *pp)
822 {
823         int error;
824
825         g_topology_assert();
826         G_VALID_CONSUMER(cp);
827         G_VALID_PROVIDER(pp);
828         g_trace(G_T_TOPOLOGY, "g_attach(%p, %p)", cp, pp);
829         KASSERT(cp->provider == NULL, ("attach but attached"));
830         cp->provider = pp;
831         LIST_INSERT_HEAD(&pp->consumers, cp, consumers);
832         error = redo_rank(cp->geom);
833         if (error) {
834                 LIST_REMOVE(cp, consumers);
835                 cp->provider = NULL;
836                 redo_rank(cp->geom);
837         }
838         return (error);
839 }
840
841 void
842 g_detach(struct g_consumer *cp)
843 {
844         struct g_provider *pp;
845
846         g_topology_assert();
847         G_VALID_CONSUMER(cp);
848         g_trace(G_T_TOPOLOGY, "g_detach(%p)", cp);
849         KASSERT(cp->provider != NULL, ("detach but not attached"));
850         KASSERT(cp->acr == 0, ("detach but nonzero acr"));
851         KASSERT(cp->acw == 0, ("detach but nonzero acw"));
852         KASSERT(cp->ace == 0, ("detach but nonzero ace"));
853         KASSERT(cp->nstart == cp->nend,
854             ("detach with active requests"));
855         pp = cp->provider;
856         LIST_REMOVE(cp, consumers);
857         cp->provider = NULL;
858         if ((cp->geom->flags & G_GEOM_WITHER) ||
859             (pp->geom->flags & G_GEOM_WITHER) ||
860             (pp->flags & G_PF_WITHER))
861                 g_do_wither();
862         redo_rank(cp->geom);
863 }
864
865 /*
866  * g_access()
867  *
868  * Access-check with delta values.  The question asked is "can provider
869  * "cp" change the access counters by the relative amounts dc[rwe] ?"
870  */
871
872 int
873 g_access(struct g_consumer *cp, int dcr, int dcw, int dce)
874 {
875         struct g_provider *pp;
876         int pr,pw,pe;
877         int error;
878
879         g_topology_assert();
880         G_VALID_CONSUMER(cp);
881         pp = cp->provider;
882         KASSERT(pp != NULL, ("access but not attached"));
883         G_VALID_PROVIDER(pp);
884
885         g_trace(G_T_ACCESS, "g_access(%p(%s), %d, %d, %d)",
886             cp, pp->name, dcr, dcw, dce);
887
888         KASSERT(cp->acr + dcr >= 0, ("access resulting in negative acr"));
889         KASSERT(cp->acw + dcw >= 0, ("access resulting in negative acw"));
890         KASSERT(cp->ace + dce >= 0, ("access resulting in negative ace"));
891         KASSERT(dcr != 0 || dcw != 0 || dce != 0, ("NOP access request"));
892         KASSERT(pp->geom->access != NULL, ("NULL geom->access"));
893
894         /*
895          * If our class cares about being spoiled, and we have been, we
896          * are probably just ahead of the event telling us that.  Fail
897          * now rather than having to unravel this later.
898          */
899         if (cp->geom->spoiled != NULL && (cp->flags & G_CF_SPOILED) &&
900             (dcr > 0 || dcw > 0 || dce > 0))
901                 return (ENXIO);
902
903         /*
904          * Figure out what counts the provider would have had, if this
905          * consumer had (r0w0e0) at this time.
906          */
907         pr = pp->acr - cp->acr;
908         pw = pp->acw - cp->acw;
909         pe = pp->ace - cp->ace;
910
911         g_trace(G_T_ACCESS,
912     "open delta:[r%dw%de%d] old:[r%dw%de%d] provider:[r%dw%de%d] %p(%s)",
913             dcr, dcw, dce,
914             cp->acr, cp->acw, cp->ace,
915             pp->acr, pp->acw, pp->ace,
916             pp, pp->name);
917
918         /* If foot-shooting is enabled, any open on rank#1 is OK */
919         if ((g_debugflags & 16) && pp->geom->rank == 1)
920                 ;
921         /* If we try exclusive but already write: fail */
922         else if (dce > 0 && pw > 0)
923                 return (EPERM);
924         /* If we try write but already exclusive: fail */
925         else if (dcw > 0 && pe > 0)
926                 return (EPERM);
927         /* If we try to open more but provider is error'ed: fail */
928         else if ((dcr > 0 || dcw > 0 || dce > 0) && pp->error != 0) {
929                 printf("%s(%d): provider %s has error %d set\n",
930                     __func__, __LINE__, pp->name, pp->error);
931                 return (pp->error);
932         }
933
934         /* Ok then... */
935
936         error = pp->geom->access(pp, dcr, dcw, dce);
937         KASSERT(dcr > 0 || dcw > 0 || dce > 0 || error == 0,
938             ("Geom provider %s::%s dcr=%d dcw=%d dce=%d error=%d failed "
939             "closing ->access()", pp->geom->class->name, pp->name, dcr, dcw,
940             dce, error));
941         if (!error) {
942                 /*
943                  * If we open first write, spoil any partner consumers.
944                  * If we close last write and provider is not errored,
945                  * trigger re-taste.
946                  */
947                 if (pp->acw == 0 && dcw != 0)
948                         g_spoil(pp, cp);
949                 else if (pp->acw != 0 && pp->acw == -dcw && pp->error == 0 &&
950                     !(pp->geom->flags & G_GEOM_WITHER))
951                         g_post_event(g_new_provider_event, pp, M_WAITOK, 
952                             pp, NULL);
953
954                 pp->acr += dcr;
955                 pp->acw += dcw;
956                 pp->ace += dce;
957                 cp->acr += dcr;
958                 cp->acw += dcw;
959                 cp->ace += dce;
960                 if (pp->acr != 0 || pp->acw != 0 || pp->ace != 0)
961                         KASSERT(pp->sectorsize > 0,
962                             ("Provider %s lacks sectorsize", pp->name));
963                 if ((cp->geom->flags & G_GEOM_WITHER) &&
964                     cp->acr == 0 && cp->acw == 0 && cp->ace == 0)
965                         g_do_wither();
966         }
967         return (error);
968 }
969
970 int
971 g_handleattr_int(struct bio *bp, const char *attribute, int val)
972 {
973
974         return (g_handleattr(bp, attribute, &val, sizeof val));
975 }
976
977 int
978 g_handleattr_uint16_t(struct bio *bp, const char *attribute, uint16_t val)
979 {
980
981         return (g_handleattr(bp, attribute, &val, sizeof val));
982 }
983
984 int
985 g_handleattr_off_t(struct bio *bp, const char *attribute, off_t val)
986 {
987
988         return (g_handleattr(bp, attribute, &val, sizeof val));
989 }
990
991 int
992 g_handleattr_str(struct bio *bp, const char *attribute, const char *str)
993 {
994
995         return (g_handleattr(bp, attribute, str, 0));
996 }
997
998 int
999 g_handleattr(struct bio *bp, const char *attribute, const void *val, int len)
1000 {
1001         int error = 0;
1002
1003         if (strcmp(bp->bio_attribute, attribute))
1004                 return (0);
1005         if (len == 0) {
1006                 bzero(bp->bio_data, bp->bio_length);
1007                 if (strlcpy(bp->bio_data, val, bp->bio_length) >=
1008                     bp->bio_length) {
1009                         printf("%s: %s bio_length %jd len %zu -> EFAULT\n",
1010                             __func__, bp->bio_to->name,
1011                             (intmax_t)bp->bio_length, strlen(val));
1012                         error = EFAULT;
1013                 }
1014         } else if (bp->bio_length == len) {
1015                 bcopy(val, bp->bio_data, len);
1016         } else {
1017                 printf("%s: %s bio_length %jd len %d -> EFAULT\n", __func__,
1018                     bp->bio_to->name, (intmax_t)bp->bio_length, len);
1019                 error = EFAULT;
1020         }
1021         if (error == 0)
1022                 bp->bio_completed = bp->bio_length;
1023         g_io_deliver(bp, error);
1024         return (1);
1025 }
1026
1027 int
1028 g_std_access(struct g_provider *pp,
1029         int dr __unused, int dw __unused, int de __unused)
1030 {
1031
1032         g_topology_assert();
1033         G_VALID_PROVIDER(pp);
1034         return (0);
1035 }
1036
1037 void
1038 g_std_done(struct bio *bp)
1039 {
1040         struct bio *bp2;
1041
1042         bp2 = bp->bio_parent;
1043         if (bp2->bio_error == 0)
1044                 bp2->bio_error = bp->bio_error;
1045         bp2->bio_completed += bp->bio_completed;
1046         g_destroy_bio(bp);
1047         bp2->bio_inbed++;
1048         if (bp2->bio_children == bp2->bio_inbed)
1049                 g_io_deliver(bp2, bp2->bio_error);
1050 }
1051
1052 /* XXX: maybe this is only g_slice_spoiled */
1053
1054 void
1055 g_std_spoiled(struct g_consumer *cp)
1056 {
1057         struct g_geom *gp;
1058         struct g_provider *pp;
1059
1060         g_topology_assert();
1061         G_VALID_CONSUMER(cp);
1062         g_trace(G_T_TOPOLOGY, "g_std_spoiled(%p)", cp);
1063         cp->flags |= G_CF_ORPHAN;
1064         g_detach(cp);
1065         gp = cp->geom;
1066         LIST_FOREACH(pp, &gp->provider, provider)
1067                 g_orphan_provider(pp, ENXIO);
1068         g_destroy_consumer(cp);
1069         if (LIST_EMPTY(&gp->provider) && LIST_EMPTY(&gp->consumer))
1070                 g_destroy_geom(gp);
1071         else
1072                 gp->flags |= G_GEOM_WITHER;
1073 }
1074
1075 /*
1076  * Spoiling happens when a provider is opened for writing, but consumers
1077  * which are configured by in-band data are attached (slicers for instance).
1078  * Since the write might potentially change the in-band data, such consumers
1079  * need to re-evaluate their existence after the writing session closes.
1080  * We do this by (offering to) tear them down when the open for write happens
1081  * in return for a re-taste when it closes again.
1082  * Together with the fact that such consumers grab an 'e' bit whenever they
1083  * are open, regardless of mode, this ends up DTRT.
1084  */
1085
1086 static void
1087 g_spoil_event(void *arg, int flag)
1088 {
1089         struct g_provider *pp;
1090         struct g_consumer *cp, *cp2;
1091
1092         g_topology_assert();
1093         if (flag == EV_CANCEL)
1094                 return;
1095         pp = arg;
1096         G_VALID_PROVIDER(pp);
1097         g_trace(G_T_TOPOLOGY, "%s %p(%s:%s:%s)", __func__, pp,
1098             pp->geom->class->name, pp->geom->name, pp->name);
1099         for (cp = LIST_FIRST(&pp->consumers); cp != NULL; cp = cp2) {
1100                 cp2 = LIST_NEXT(cp, consumers);
1101                 if ((cp->flags & G_CF_SPOILED) == 0)
1102                         continue;
1103                 cp->flags &= ~G_CF_SPOILED;
1104                 if (cp->geom->spoiled == NULL)
1105                         continue;
1106                 cp->geom->spoiled(cp);
1107                 g_topology_assert();
1108         }
1109 }
1110
1111 void
1112 g_spoil(struct g_provider *pp, struct g_consumer *cp)
1113 {
1114         struct g_consumer *cp2;
1115
1116         g_topology_assert();
1117         G_VALID_PROVIDER(pp);
1118         G_VALID_CONSUMER(cp);
1119
1120         LIST_FOREACH(cp2, &pp->consumers, consumers) {
1121                 if (cp2 == cp)
1122                         continue;
1123 /*
1124                 KASSERT(cp2->acr == 0, ("spoiling cp->acr = %d", cp2->acr));
1125                 KASSERT(cp2->acw == 0, ("spoiling cp->acw = %d", cp2->acw));
1126 */
1127                 KASSERT(cp2->ace == 0, ("spoiling cp->ace = %d", cp2->ace));
1128                 cp2->flags |= G_CF_SPOILED;
1129         }
1130         g_post_event(g_spoil_event, pp, M_WAITOK, pp, NULL);
1131 }
1132
1133 static void
1134 g_media_changed_event(void *arg, int flag)
1135 {
1136         struct g_provider *pp;
1137         int retaste;
1138
1139         g_topology_assert();
1140         if (flag == EV_CANCEL)
1141                 return;
1142         pp = arg;
1143         G_VALID_PROVIDER(pp);
1144
1145         /*
1146          * If provider was not open for writing, queue retaste after spoiling.
1147          * If it was, retaste will happen automatically on close.
1148          */
1149         retaste = (pp->acw == 0 && pp->error == 0 &&
1150             !(pp->geom->flags & G_GEOM_WITHER));
1151         g_spoil_event(arg, flag);
1152         if (retaste)
1153                 g_post_event(g_new_provider_event, pp, M_WAITOK, pp, NULL);
1154 }
1155
1156 int
1157 g_media_changed(struct g_provider *pp, int flag)
1158 {
1159         struct g_consumer *cp;
1160
1161         LIST_FOREACH(cp, &pp->consumers, consumers)
1162                 cp->flags |= G_CF_SPOILED;
1163         return (g_post_event(g_media_changed_event, pp, flag, pp, NULL));
1164 }
1165
1166 int
1167 g_media_gone(struct g_provider *pp, int flag)
1168 {
1169         struct g_consumer *cp;
1170
1171         LIST_FOREACH(cp, &pp->consumers, consumers)
1172                 cp->flags |= G_CF_SPOILED;
1173         return (g_post_event(g_spoil_event, pp, flag, pp, NULL));
1174 }
1175
1176 int
1177 g_getattr__(const char *attr, struct g_consumer *cp, void *var, int len)
1178 {
1179         int error, i;
1180
1181         i = len;
1182         error = g_io_getattr(attr, cp, &i, var);
1183         if (error)
1184                 return (error);
1185         if (i != len)
1186                 return (EINVAL);
1187         return (0);
1188 }
1189
1190 static int
1191 g_get_device_prefix_len(const char *name)
1192 {
1193         int len;
1194
1195         if (strncmp(name, "ada", 3) == 0)
1196                 len = 3;
1197         else if (strncmp(name, "ad", 2) == 0)
1198                 len = 2;
1199         else
1200                 return (0);
1201         if (name[len] < '0' || name[len] > '9')
1202                 return (0);
1203         do {
1204                 len++;
1205         } while (name[len] >= '0' && name[len] <= '9');
1206         return (len);
1207 }
1208
1209 int
1210 g_compare_names(const char *namea, const char *nameb)
1211 {
1212         int deva, devb;
1213
1214         if (strcmp(namea, nameb) == 0)
1215                 return (1);
1216         deva = g_get_device_prefix_len(namea);
1217         if (deva == 0)
1218                 return (0);
1219         devb = g_get_device_prefix_len(nameb);
1220         if (devb == 0)
1221                 return (0);
1222         if (strcmp(namea + deva, nameb + devb) == 0)
1223                 return (1);
1224         return (0);
1225 }
1226
1227 void
1228 g_geom_add_alias(struct g_geom *gp, const char *alias)
1229 {
1230         struct g_geom_alias *gap;
1231
1232         gap = (struct g_geom_alias *)g_malloc(
1233                 sizeof(struct g_geom_alias) + strlen(alias) + 1, M_WAITOK);
1234         strcpy((char *)(gap + 1), alias);
1235         gap->ga_alias = (const char *)(gap + 1);
1236         LIST_INSERT_HEAD(&gp->aliases, gap, ga_next);
1237 }
1238
1239 #if defined(DIAGNOSTIC) || defined(DDB)
1240 /*
1241  * This function walks the mesh and returns a non-zero integer if it
1242  * finds the argument pointer is an object. The return value indicates
1243  * which type of object it is believed to be. If topology is not locked,
1244  * this function is potentially dangerous, but we don't assert that the
1245  * topology lock is held when called from debugger.
1246  */
1247 int
1248 g_valid_obj(void const *ptr)
1249 {
1250         struct g_class *mp;
1251         struct g_geom *gp;
1252         struct g_consumer *cp;
1253         struct g_provider *pp;
1254
1255 #ifdef KDB
1256         if (kdb_active == 0)
1257 #endif
1258                 g_topology_assert();
1259
1260         LIST_FOREACH(mp, &g_classes, class) {
1261                 if (ptr == mp)
1262                         return (1);
1263                 LIST_FOREACH(gp, &mp->geom, geom) {
1264                         if (ptr == gp)
1265                                 return (2);
1266                         LIST_FOREACH(cp, &gp->consumer, consumer)
1267                                 if (ptr == cp)
1268                                         return (3);
1269                         LIST_FOREACH(pp, &gp->provider, provider)
1270                                 if (ptr == pp)
1271                                         return (4);
1272                 }
1273         }
1274         return(0);
1275 }
1276 #endif
1277
1278 #ifdef DDB
1279
1280 #define gprintf(...)    do {                                            \
1281         db_printf("%*s", indent, "");                                   \
1282         db_printf(__VA_ARGS__);                                         \
1283 } while (0)
1284 #define gprintln(...)   do {                                            \
1285         gprintf(__VA_ARGS__);                                           \
1286         db_printf("\n");                                                \
1287 } while (0)
1288
1289 #define ADDFLAG(obj, flag, sflag)       do {                            \
1290         if ((obj)->flags & (flag)) {                                    \
1291                 if (comma)                                              \
1292                         strlcat(str, ",", size);                        \
1293                 strlcat(str, (sflag), size);                            \
1294                 comma = 1;                                              \
1295         }                                                               \
1296 } while (0)
1297
1298 static char *
1299 provider_flags_to_string(struct g_provider *pp, char *str, size_t size)
1300 {
1301         int comma = 0;
1302
1303         bzero(str, size);
1304         if (pp->flags == 0) {
1305                 strlcpy(str, "NONE", size);
1306                 return (str);
1307         }
1308         ADDFLAG(pp, G_PF_WITHER, "G_PF_WITHER");
1309         ADDFLAG(pp, G_PF_ORPHAN, "G_PF_ORPHAN");
1310         return (str);
1311 }
1312
1313 static char *
1314 geom_flags_to_string(struct g_geom *gp, char *str, size_t size)
1315 {
1316         int comma = 0;
1317
1318         bzero(str, size);
1319         if (gp->flags == 0) {
1320                 strlcpy(str, "NONE", size);
1321                 return (str);
1322         }
1323         ADDFLAG(gp, G_GEOM_WITHER, "G_GEOM_WITHER");
1324         return (str);
1325 }
1326 static void
1327 db_show_geom_consumer(int indent, struct g_consumer *cp)
1328 {
1329
1330         if (indent == 0) {
1331                 gprintln("consumer: %p", cp);
1332                 gprintln("  class:    %s (%p)", cp->geom->class->name,
1333                     cp->geom->class);
1334                 gprintln("  geom:     %s (%p)", cp->geom->name, cp->geom);
1335                 if (cp->provider == NULL)
1336                         gprintln("  provider: none");
1337                 else {
1338                         gprintln("  provider: %s (%p)", cp->provider->name,
1339                             cp->provider);
1340                 }
1341                 gprintln("  access:   r%dw%de%d", cp->acr, cp->acw, cp->ace);
1342                 gprintln("  flags:    0x%04x", cp->flags);
1343                 gprintln("  nstart:   %u", cp->nstart);
1344                 gprintln("  nend:     %u", cp->nend);
1345         } else {
1346                 gprintf("consumer: %p (%s), access=r%dw%de%d", cp,
1347                     cp->provider != NULL ? cp->provider->name : "none",
1348                     cp->acr, cp->acw, cp->ace);
1349                 if (cp->flags)
1350                         db_printf(", flags=0x%04x", cp->flags);
1351                 db_printf("\n");
1352         }
1353 }
1354
1355 static void
1356 db_show_geom_provider(int indent, struct g_provider *pp)
1357 {
1358         struct g_consumer *cp;
1359         char flags[64];
1360
1361         if (indent == 0) {
1362                 gprintln("provider: %s (%p)", pp->name, pp);
1363                 gprintln("  class:        %s (%p)", pp->geom->class->name,
1364                     pp->geom->class);
1365                 gprintln("  geom:         %s (%p)", pp->geom->name, pp->geom);
1366                 gprintln("  mediasize:    %jd", (intmax_t)pp->mediasize);
1367                 gprintln("  sectorsize:   %u", pp->sectorsize);
1368                 gprintln("  stripesize:   %u", pp->stripesize);
1369                 gprintln("  stripeoffset: %u", pp->stripeoffset);
1370                 gprintln("  access:       r%dw%de%d", pp->acr, pp->acw,
1371                     pp->ace);
1372                 gprintln("  flags:        %s (0x%04x)",
1373                     provider_flags_to_string(pp, flags, sizeof(flags)),
1374                     pp->flags);
1375                 gprintln("  error:        %d", pp->error);
1376                 gprintln("  nstart:       %u", pp->nstart);
1377                 gprintln("  nend:         %u", pp->nend);
1378                 if (LIST_EMPTY(&pp->consumers))
1379                         gprintln("  consumers:    none");
1380         } else {
1381                 gprintf("provider: %s (%p), access=r%dw%de%d",
1382                     pp->name, pp, pp->acr, pp->acw, pp->ace);
1383                 if (pp->flags != 0) {
1384                         db_printf(", flags=%s (0x%04x)",
1385                             provider_flags_to_string(pp, flags, sizeof(flags)),
1386                             pp->flags);
1387                 }
1388                 db_printf("\n");
1389         }
1390         if (!LIST_EMPTY(&pp->consumers)) {
1391                 LIST_FOREACH(cp, &pp->consumers, consumers) {
1392                         db_show_geom_consumer(indent + 2, cp);
1393                         if (db_pager_quit)
1394                                 break;
1395                 }
1396         }
1397 }
1398
1399 static void
1400 db_show_geom_geom(int indent, struct g_geom *gp)
1401 {
1402         struct g_provider *pp;
1403         struct g_consumer *cp;
1404         char flags[64];
1405
1406         if (indent == 0) {
1407                 gprintln("geom: %s (%p)", gp->name, gp);
1408                 gprintln("  class:     %s (%p)", gp->class->name, gp->class);
1409                 gprintln("  flags:     %s (0x%04x)",
1410                     geom_flags_to_string(gp, flags, sizeof(flags)), gp->flags);
1411                 gprintln("  rank:      %d", gp->rank);
1412                 if (LIST_EMPTY(&gp->provider))
1413                         gprintln("  providers: none");
1414                 if (LIST_EMPTY(&gp->consumer))
1415                         gprintln("  consumers: none");
1416         } else {
1417                 gprintf("geom: %s (%p), rank=%d", gp->name, gp, gp->rank);
1418                 if (gp->flags != 0) {
1419                         db_printf(", flags=%s (0x%04x)",
1420                             geom_flags_to_string(gp, flags, sizeof(flags)),
1421                             gp->flags);
1422                 }
1423                 db_printf("\n");
1424         }
1425         if (!LIST_EMPTY(&gp->provider)) {
1426                 LIST_FOREACH(pp, &gp->provider, provider) {
1427                         db_show_geom_provider(indent + 2, pp);
1428                         if (db_pager_quit)
1429                                 break;
1430                 }
1431         }
1432         if (!LIST_EMPTY(&gp->consumer)) {
1433                 LIST_FOREACH(cp, &gp->consumer, consumer) {
1434                         db_show_geom_consumer(indent + 2, cp);
1435                         if (db_pager_quit)
1436                                 break;
1437                 }
1438         }
1439 }
1440
1441 static void
1442 db_show_geom_class(struct g_class *mp)
1443 {
1444         struct g_geom *gp;
1445
1446         db_printf("class: %s (%p)\n", mp->name, mp);
1447         LIST_FOREACH(gp, &mp->geom, geom) {
1448                 db_show_geom_geom(2, gp);
1449                 if (db_pager_quit)
1450                         break;
1451         }
1452 }
1453
1454 /*
1455  * Print the GEOM topology or the given object.
1456  */
1457 DB_SHOW_COMMAND(geom, db_show_geom)
1458 {
1459         struct g_class *mp;
1460
1461         if (!have_addr) {
1462                 /* No address given, print the entire topology. */
1463                 LIST_FOREACH(mp, &g_classes, class) {
1464                         db_show_geom_class(mp);
1465                         db_printf("\n");
1466                         if (db_pager_quit)
1467                                 break;
1468                 }
1469         } else {
1470                 switch (g_valid_obj((void *)addr)) {
1471                 case 1:
1472                         db_show_geom_class((struct g_class *)addr);
1473                         break;
1474                 case 2:
1475                         db_show_geom_geom(0, (struct g_geom *)addr);
1476                         break;
1477                 case 3:
1478                         db_show_geom_consumer(0, (struct g_consumer *)addr);
1479                         break;
1480                 case 4:
1481                         db_show_geom_provider(0, (struct g_provider *)addr);
1482                         break;
1483                 default:
1484                         db_printf("Not a GEOM object.\n");
1485                         break;
1486                 }
1487         }
1488 }
1489
1490 static void
1491 db_print_bio_cmd(struct bio *bp)
1492 {
1493         db_printf("  cmd: ");
1494         switch (bp->bio_cmd) {
1495         case BIO_READ: db_printf("BIO_READ"); break;
1496         case BIO_WRITE: db_printf("BIO_WRITE"); break;
1497         case BIO_DELETE: db_printf("BIO_DELETE"); break;
1498         case BIO_GETATTR: db_printf("BIO_GETATTR"); break;
1499         case BIO_FLUSH: db_printf("BIO_FLUSH"); break;
1500         case BIO_CMD0: db_printf("BIO_CMD0"); break;
1501         case BIO_CMD1: db_printf("BIO_CMD1"); break;
1502         case BIO_CMD2: db_printf("BIO_CMD2"); break;
1503         case BIO_ZONE: db_printf("BIO_ZONE"); break;
1504         default: db_printf("UNKNOWN"); break;
1505         }
1506         db_printf("\n");
1507 }
1508
1509 static void
1510 db_print_bio_flags(struct bio *bp)
1511 {
1512         int comma;
1513
1514         comma = 0;
1515         db_printf("  flags: ");
1516         if (bp->bio_flags & BIO_ERROR) {
1517                 db_printf("BIO_ERROR");
1518                 comma = 1;
1519         }
1520         if (bp->bio_flags & BIO_DONE) {
1521                 db_printf("%sBIO_DONE", (comma ? ", " : ""));
1522                 comma = 1;
1523         }
1524         if (bp->bio_flags & BIO_ONQUEUE)
1525                 db_printf("%sBIO_ONQUEUE", (comma ? ", " : ""));
1526         db_printf("\n");
1527 }
1528
1529 /*
1530  * Print useful information in a BIO
1531  */
1532 DB_SHOW_COMMAND(bio, db_show_bio)
1533 {
1534         struct bio *bp;
1535
1536         if (have_addr) {
1537                 bp = (struct bio *)addr;
1538                 db_printf("BIO %p\n", bp);
1539                 db_print_bio_cmd(bp);
1540                 db_print_bio_flags(bp);
1541                 db_printf("  cflags: 0x%hx\n", bp->bio_cflags);
1542                 db_printf("  pflags: 0x%hx\n", bp->bio_pflags);
1543                 db_printf("  offset: %jd\n", (intmax_t)bp->bio_offset);
1544                 db_printf("  length: %jd\n", (intmax_t)bp->bio_length);
1545                 db_printf("  bcount: %ld\n", bp->bio_bcount);
1546                 db_printf("  resid: %ld\n", bp->bio_resid);
1547                 db_printf("  completed: %jd\n", (intmax_t)bp->bio_completed);
1548                 db_printf("  children: %u\n", bp->bio_children);
1549                 db_printf("  inbed: %u\n", bp->bio_inbed);
1550                 db_printf("  error: %d\n", bp->bio_error);
1551                 db_printf("  parent: %p\n", bp->bio_parent);
1552                 db_printf("  driver1: %p\n", bp->bio_driver1);
1553                 db_printf("  driver2: %p\n", bp->bio_driver2);
1554                 db_printf("  caller1: %p\n", bp->bio_caller1);
1555                 db_printf("  caller2: %p\n", bp->bio_caller2);
1556                 db_printf("  bio_from: %p\n", bp->bio_from);
1557                 db_printf("  bio_to: %p\n", bp->bio_to);
1558
1559 #if defined(BUF_TRACKING) || defined(FULL_BUF_TRACKING)
1560                 db_printf("  bio_track_bp: %p\n", bp->bio_track_bp);
1561 #endif
1562         }
1563 }
1564
1565 #undef  gprintf
1566 #undef  gprintln
1567 #undef  ADDFLAG
1568
1569 #endif  /* DDB */