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