The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/geom/geom_dump.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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: releng/7.4/sys/geom/geom_dump.c 207065 2010-04-22 14:54:54Z jh $");
   38 
   39 #include <sys/param.h>
   40 #include <sys/sbuf.h>
   41 #include <sys/systm.h>
   42 #include <sys/malloc.h>
   43 #include <machine/stdarg.h>
   44 
   45 #include <geom/geom.h>
   46 #include <geom/geom_int.h>
   47 
   48 
   49 static void
   50 g_confdot_consumer(struct sbuf *sb, struct g_consumer *cp)
   51 {
   52 
   53         sbuf_printf(sb, "z%p [label=\"r%dw%de%d\"];\n",
   54             cp, cp->acr, cp->acw, cp->ace);
   55         if (cp->provider)
   56                 sbuf_printf(sb, "z%p -> z%p;\n", cp, cp->provider);
   57 }
   58 
   59 static void
   60 g_confdot_provider(struct sbuf *sb, struct g_provider *pp)
   61 {
   62 
   63         sbuf_printf(sb, "z%p [shape=hexagon,label=\"%s\\nr%dw%de%d\\nerr#%d\"];\n",
   64             pp, pp->name, pp->acr, pp->acw, pp->ace, pp->error);
   65 }
   66 
   67 static void
   68 g_confdot_geom(struct sbuf *sb, struct g_geom *gp)
   69 {
   70         struct g_consumer *cp;
   71         struct g_provider *pp;
   72 
   73         sbuf_printf(sb, "z%p [shape=box,label=\"%s\\n%s\\nr#%d\"];\n",
   74             gp, gp->class->name, gp->name, gp->rank);
   75         LIST_FOREACH(cp, &gp->consumer, consumer) {
   76                 g_confdot_consumer(sb, cp);
   77                 sbuf_printf(sb, "z%p -> z%p;\n", gp, cp);
   78         }
   79 
   80         LIST_FOREACH(pp, &gp->provider, provider) {
   81                 g_confdot_provider(sb, pp);
   82                 sbuf_printf(sb, "z%p -> z%p;\n", pp, gp);
   83         }
   84 }
   85 
   86 static void
   87 g_confdot_class(struct sbuf *sb, struct g_class *mp)
   88 {
   89         struct g_geom *gp;
   90 
   91         LIST_FOREACH(gp, &mp->geom, geom)
   92                 g_confdot_geom(sb, gp);
   93 }
   94 
   95 void
   96 g_confdot(void *p, int flag )
   97 {
   98         struct g_class *mp;
   99         struct sbuf *sb;
  100 
  101         KASSERT(flag != EV_CANCEL, ("g_confdot was cancelled"));
  102         sb = p;
  103         g_topology_assert();
  104         sbuf_printf(sb, "digraph geom {\n");
  105         LIST_FOREACH(mp, &g_classes, class)
  106                 g_confdot_class(sb, mp);
  107         sbuf_printf(sb, "};\n");
  108         sbuf_finish(sb);
  109 }
  110 
  111 static void
  112 g_conftxt_geom(struct sbuf *sb, struct g_geom *gp, int level)
  113 {
  114         struct g_provider *pp;
  115         struct g_consumer *cp;
  116 
  117         if (gp->flags & G_GEOM_WITHER)
  118                 return;
  119         LIST_FOREACH(pp, &gp->provider, provider) {
  120                 sbuf_printf(sb, "%d %s %s %ju %u", level, gp->class->name,
  121                     pp->name, (uintmax_t)pp->mediasize, pp->sectorsize);
  122                 if (gp->dumpconf != NULL)
  123                         gp->dumpconf(sb, NULL, gp, NULL, pp);
  124                 sbuf_printf(sb, "\n");
  125                 LIST_FOREACH(cp, &pp->consumers, consumers)
  126                         g_conftxt_geom(sb, cp->geom, level + 1);
  127         }
  128 }
  129 
  130 static void
  131 g_conftxt_class(struct sbuf *sb, struct g_class *mp)
  132 {
  133         struct g_geom *gp;
  134 
  135         LIST_FOREACH(gp, &mp->geom, geom)
  136                 g_conftxt_geom(sb, gp, 0);
  137 }
  138 
  139 void
  140 g_conftxt(void *p, int flag)
  141 {
  142         struct g_class *mp;
  143         struct sbuf *sb;
  144 
  145         KASSERT(flag != EV_CANCEL, ("g_conftxt was cancelled"));
  146         sb = p;
  147         g_topology_assert();
  148         LIST_FOREACH(mp, &g_classes, class) {
  149                 if (!strcmp(mp->name, "DISK") || !strcmp(mp->name, "MD"))
  150                         g_conftxt_class(sb, mp);
  151         }
  152         sbuf_finish(sb);
  153 }
  154 
  155 
  156 static void
  157 g_conf_print_escaped(struct sbuf *sb, const char *fmt, const char *str)
  158 {
  159         struct sbuf *s;
  160         const u_char *c;
  161 
  162         s = sbuf_new_auto();
  163 
  164         for (c = str; *c != '\0'; c++) {
  165                 if (*c == '&' || *c == '<' || *c == '>' ||
  166                     *c == '\'' || *c == '"' || *c > 0x7e)
  167                         sbuf_printf(s, "&#x%X;", *c);
  168                 else if (*c == '\t' || *c == '\n' || *c == '\r' || *c > 0x1f)
  169                         sbuf_putc(s, *c);
  170                 else
  171                         sbuf_putc(s, '?');
  172         }
  173         sbuf_finish(s);
  174         sbuf_printf(sb, fmt, sbuf_data(s));
  175         sbuf_delete(s);
  176 }
  177 
  178 static void
  179 g_conf_consumer(struct sbuf *sb, struct g_consumer *cp)
  180 {
  181 
  182         sbuf_printf(sb, "\t<consumer id=\"%p\">\n", cp);
  183         sbuf_printf(sb, "\t  <geom ref=\"%p\"/>\n", cp->geom);
  184         if (cp->provider != NULL)
  185                 sbuf_printf(sb, "\t  <provider ref=\"%p\"/>\n", cp->provider);
  186         sbuf_printf(sb, "\t  <mode>r%dw%de%d</mode>\n",
  187             cp->acr, cp->acw, cp->ace);
  188         if (cp->geom->flags & G_GEOM_WITHER)
  189                 ;
  190         else if (cp->geom->dumpconf != NULL) {
  191                 sbuf_printf(sb, "\t  <config>\n");
  192                 cp->geom->dumpconf(sb, "\t    ", cp->geom, cp, NULL);
  193                 sbuf_printf(sb, "\t  </config>\n");
  194         }
  195         sbuf_printf(sb, "\t</consumer>\n");
  196 }
  197 
  198 static void
  199 g_conf_provider(struct sbuf *sb, struct g_provider *pp)
  200 {
  201 
  202         sbuf_printf(sb, "\t<provider id=\"%p\">\n", pp);
  203         sbuf_printf(sb, "\t  <geom ref=\"%p\"/>\n", pp->geom);
  204         sbuf_printf(sb, "\t  <mode>r%dw%de%d</mode>\n",
  205             pp->acr, pp->acw, pp->ace);
  206         g_conf_print_escaped(sb, "\t  <name>%s</name>\n", pp->name);
  207         sbuf_printf(sb, "\t  <mediasize>%jd</mediasize>\n",
  208             (intmax_t)pp->mediasize);
  209         sbuf_printf(sb, "\t  <sectorsize>%u</sectorsize>\n", pp->sectorsize);
  210         if (pp->geom->flags & G_GEOM_WITHER)
  211                 ;
  212         else if (pp->geom->dumpconf != NULL) {
  213                 sbuf_printf(sb, "\t  <config>\n");
  214                 pp->geom->dumpconf(sb, "\t    ", pp->geom, NULL, pp);
  215                 sbuf_printf(sb, "\t  </config>\n");
  216         }
  217         sbuf_printf(sb, "\t</provider>\n");
  218 }
  219 
  220 
  221 static void
  222 g_conf_geom(struct sbuf *sb, struct g_geom *gp, struct g_provider *pp, struct g_consumer *cp)
  223 {
  224         struct g_consumer *cp2;
  225         struct g_provider *pp2;
  226 
  227         sbuf_printf(sb, "    <geom id=\"%p\">\n", gp);
  228         sbuf_printf(sb, "      <class ref=\"%p\"/>\n", gp->class);
  229         g_conf_print_escaped(sb, "      <name>%s</name>\n", gp->name);
  230         sbuf_printf(sb, "      <rank>%d</rank>\n", gp->rank);
  231         if (gp->flags & G_GEOM_WITHER)
  232                 sbuf_printf(sb, "      <wither/>\n");
  233         else if (gp->dumpconf != NULL) {
  234                 sbuf_printf(sb, "      <config>\n");
  235                 gp->dumpconf(sb, "\t", gp, NULL, NULL);
  236                 sbuf_printf(sb, "      </config>\n");
  237         }
  238         LIST_FOREACH(cp2, &gp->consumer, consumer) {
  239                 if (cp != NULL && cp != cp2)
  240                         continue;
  241                 g_conf_consumer(sb, cp2);
  242         }
  243 
  244         LIST_FOREACH(pp2, &gp->provider, provider) {
  245                 if (pp != NULL && pp != pp2)
  246                         continue;
  247                 g_conf_provider(sb, pp2);
  248         }
  249         sbuf_printf(sb, "    </geom>\n");
  250 }
  251 
  252 static void
  253 g_conf_class(struct sbuf *sb, struct g_class *mp, struct g_geom *gp, struct g_provider *pp, struct g_consumer *cp)
  254 {
  255         struct g_geom *gp2;
  256 
  257         sbuf_printf(sb, "  <class id=\"%p\">\n", mp);
  258         g_conf_print_escaped(sb, "    <name>%s</name>\n", mp->name);
  259         LIST_FOREACH(gp2, &mp->geom, geom) {
  260                 if (gp != NULL && gp != gp2)
  261                         continue;
  262                 g_conf_geom(sb, gp2, pp, cp);
  263         }
  264         sbuf_printf(sb, "  </class>\n");
  265 }
  266 
  267 void
  268 g_conf_specific(struct sbuf *sb, struct g_class *mp, struct g_geom *gp, struct g_provider *pp, struct g_consumer *cp)
  269 {
  270         struct g_class *mp2;
  271 
  272         g_topology_assert();
  273         sbuf_printf(sb, "<mesh>\n");
  274         LIST_FOREACH(mp2, &g_classes, class) {
  275                 if (mp != NULL && mp != mp2)
  276                         continue;
  277                 g_conf_class(sb, mp2, gp, pp, cp);
  278         }
  279         sbuf_printf(sb, "</mesh>\n");
  280         sbuf_finish(sb);
  281 }
  282 
  283 void
  284 g_confxml(void *p, int flag)
  285 {
  286 
  287         KASSERT(flag != EV_CANCEL, ("g_confxml was cancelled"));
  288         g_topology_assert();
  289         g_conf_specific(p, NULL, NULL, NULL, NULL);
  290 }
  291 
  292 void
  293 g_trace(int level, const char *fmt, ...)
  294 {
  295         va_list ap;
  296 
  297         if (!(g_debugflags & level))
  298                 return;
  299         va_start(ap, fmt);
  300         vprintf(fmt, ap);
  301         va_end(ap);
  302         printf("\n");
  303 }

Cache object: f8fa594c8e504e2dab156bc1c390fd89


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.