Pre-2.0 release, MFC firewire disk changes to properly detach SIMs.
[dragonfly.git] / test / debug / wildcardinfo.c
blob1728bbd8f2cbac64621d967b57ae124d3d6b0061
1 /*
2 * WILDCARDINFO.C
4 * cc -I/usr/src/sys wildcardinfo.c -o /usr/local/bin/wildcardinfo -lkvm
6 * wildcardinfo
8 * Dump the tcbinfo[] array and wildcard hash table for each cpu.
10 * Copyright (c) 2004 The DragonFly Project. All rights reserved.
12 * This code is derived from software contributed to The DragonFly Project
13 * by Matthew Dillon <dillon@backplane.com>
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in
23 * the documentation and/or other materials provided with the
24 * distribution.
25 * 3. Neither the name of The DragonFly Project nor the names of its
26 * contributors may be used to endorse or promote products derived
27 * from this software without specific, prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
32 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
33 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
34 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
35 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
37 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
38 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
39 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 * SUCH DAMAGE.
42 * $DragonFly: src/test/debug/wildcardinfo.c,v 1.1 2005/04/05 02:49:15 dillon Exp $
45 #define _KERNEL_STRUCTURES_
46 #include <sys/param.h>
47 #include <sys/user.h>
48 #include <sys/malloc.h>
49 #include <sys/signalvar.h>
50 #include <sys/socket.h>
51 #include <sys/socketvar.h>
52 #include <net/route.h>
53 #include <net/if.h>
54 #include <net/if_var.h>
55 #include <net/netisr.h>
56 #include <netinet/in_systm.h>
57 #include <netinet/in.h>
58 #include <netinet/ip.h>
59 #include <netinet/in_pcb.h>
60 #include <netinet/in_var.h>
61 #include <arpa/inet.h>
63 #include <stdio.h>
64 #include <stdlib.h>
65 #include <string.h>
66 #include <fcntl.h>
67 #include <kvm.h>
68 #include <nlist.h>
69 #include <getopt.h>
71 struct nlist Nl[] = {
72 { "_ncpus" },
73 { "_tcbinfo" },
74 { NULL }
77 static void dumptcb(kvm_t *kd, intptr_t tcbinfo);
78 static void dumpinpcontainerhead(kvm_t *kd, int index, void *kptr);
79 static void kkread(kvm_t *kd, u_long addr, void *buf, size_t nbytes);
81 int
82 main(int ac, char **av)
84 kvm_t *kd;
85 int i;
86 int ch;
87 int ncpus;
88 const char *corefile = NULL;
89 const char *sysfile = NULL;
91 while ((ch = getopt(ac, av, "M:N:")) != -1) {
92 switch(ch) {
93 case 'M':
94 corefile = optarg;
95 break;
96 case 'N':
97 sysfile = optarg;
98 break;
99 default:
100 fprintf(stderr, "%s [-M core] [-N system]\n", av[0]);
101 exit(1);
105 if ((kd = kvm_open(sysfile, corefile, NULL, O_RDONLY, "kvm:")) == NULL) {
106 perror("kvm_open");
107 exit(1);
109 if (kvm_nlist(kd, Nl) != 0) {
110 perror("kvm_nlist");
111 exit(1);
113 kkread(kd, Nl[0].n_value, &ncpus, sizeof(ncpus));
114 for (i = 0; i < ncpus; ++i) {
115 printf("CPU %d\n", i);
116 dumptcb(kd, (intptr_t)Nl[1].n_value + i * sizeof(struct inpcbinfo));
118 return(0);
121 static
122 void
123 dumptcb(kvm_t *kd, intptr_t tcbaddr)
125 struct inpcbinfo info;
126 int i;
128 kkread(kd, tcbaddr, &info, sizeof(info));
129 printf(" hashbase %p\n", info.hashbase);
130 printf(" hashmask %ld\n", info.hashmask);
131 printf(" porthashbase %p\n", info.porthashbase);
132 printf(" porthashmask %lu\n", info.porthashmask);
133 printf(" wildcardhashbase %p\n", info.wildcardhashbase);
134 printf(" wildcardhashmask %lu\n", info.wildcardhashmask);
135 printf(" lastport %d\n", (int)info.lastport);
136 printf(" lastlow %d\n", (int)info.lastlow);
137 printf(" lasthi %d\n", (int)info.lasthi);
138 printf(" ipi_zone %p\n", info.ipi_zone);
139 printf(" ipi_count %d\n", (int)info.ipi_count);
140 printf(" ipi_gencnt %lld\n", (long long)info.ipi_gencnt);
141 printf(" cpu %d\n", info.cpu);
142 for (i = 0; i <= info.wildcardhashmask; ++i)
143 dumpinpcontainerhead(kd, i, info.wildcardhashbase + i);
146 static
147 void
148 dumpinpcontainerhead(kvm_t *kd, int index, void *kptr)
150 struct inpcontainerhead head;
151 struct inpcontainer node;
152 struct inpcb pcb;
154 kkread(kd, (intptr_t)kptr, &head, sizeof(head));
155 if (head.lh_first == NULL)
156 return;
157 printf("\tinpcontainer list at index %d {\n", index);
158 for (kptr = head.lh_first; kptr; kptr = node.ic_list.le_next) {
159 kkread(kd, (intptr_t)kptr, &node, sizeof(node));
160 printf("\t inpcontainer %p inpcb %p", kptr, node.ic_inp);
161 if (node.ic_inp) {
162 printf(" {\n");
163 kkread(kd, (intptr_t)node.ic_inp, &pcb, sizeof(pcb));
164 printf("\t\tlocal %s:%d foreign %s:%d\n",
165 inet_ntoa(pcb.inp_inc.inc_laddr),
166 ntohs(pcb.inp_inc.inc_lport),
167 inet_ntoa(pcb.inp_inc.inc_faddr),
168 ntohs(pcb.inp_inc.inc_fport));
169 printf("\t }");
171 printf("\n");
173 printf("\t}\n");
176 static void
177 kkread(kvm_t *kd, u_long addr, void *buf, size_t nbytes)
179 if (kvm_read(kd, addr, buf, nbytes) != nbytes) {
180 perror("kvm_read");
181 exit(1);