netgraph.c revision 200420
1/*-
2 * Copyright (c) 1996-1999 Whistle Communications, Inc.
3 * All rights reserved.
4 *
5 * Subject to the following obligations and disclaimer of warranty, use and
6 * redistribution of this software, in source or object code forms, with or
7 * without modifications are expressly permitted by Whistle Communications;
8 * provided, however, that:
9 * 1. Any and all reproductions of the source or object code must include the
10 *    copyright notice above and the following disclaimer of warranties; and
11 * 2. No rights are granted, in any manner or form, to use Whistle
12 *    Communications, Inc. trademarks, including the mark "WHISTLE
13 *    COMMUNICATIONS" on advertising, endorsements, or otherwise except as
14 *    such appears in the above copyright notice or in the software.
15 *
16 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
17 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
18 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
19 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
21 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
22 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
23 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
24 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
25 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
26 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
27 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
28 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
32 * OF SUCH DAMAGE.
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/usr.bin/netstat/netgraph.c 200420 2009-12-11 23:35:38Z delphij $");
37
38#include <sys/param.h>
39#include <sys/queue.h>
40#include <sys/socket.h>
41#include <sys/socketvar.h>
42#include <sys/protosw.h>
43#include <sys/linker.h>
44
45#include <net/route.h>
46
47#include <netgraph.h>
48#include <netgraph/ng_message.h>
49#include <netgraph/ng_socket.h>
50#include <netgraph/ng_socketvar.h>
51
52#include <nlist.h>
53#include <stdint.h>
54#include <stdio.h>
55#include <string.h>
56#include <err.h>
57#include "netstat.h"
58
59static	int first = 1;
60static	int csock = -1;
61
62void
63netgraphprotopr(u_long off, const char *name, int af1 __unused,
64    int proto __unused)
65{
66	struct ngpcb *this, *next;
67	struct ngpcb ngpcb;
68	struct ngsock info;
69	struct socket sockb;
70	int debug = 1;
71
72	/* If symbol not found, try looking in the KLD module */
73	if (off == 0) {
74		const char *const modname = "ng_socket.ko";
75/* XXX We should get "mpath" from "sysctl kern.module_path" */
76		const char *mpath[] = { "/", "/boot/", "/modules/", NULL };
77		struct nlist sym[] = { { .n_name = "_ngsocklist" },
78				       { .n_name = NULL } };
79		const char **pre;
80		struct kld_file_stat ks;
81		int fileid;
82
83		/* Can't do this for core dumps. */
84		if (!live)
85			return;
86
87		/* See if module is loaded */
88		if ((fileid = kldfind(modname)) < 0) {
89			if (debug)
90				warn("kldfind(%s)", modname);
91			return;
92		}
93
94		/* Get module info */
95		memset(&ks, 0, sizeof(ks));
96		ks.version = sizeof(struct kld_file_stat);
97		if (kldstat(fileid, &ks) < 0) {
98			if (debug)
99				warn("kldstat(%d)", fileid);
100			return;
101		}
102
103		/* Get symbol table from module file */
104		for (pre = mpath; *pre; pre++) {
105			char path[MAXPATHLEN];
106
107			snprintf(path, sizeof(path), "%s%s", *pre, modname);
108			if (nlist(path, sym) == 0)
109				break;
110		}
111
112		/* Did we find it? */
113		if (sym[0].n_value == 0) {
114			if (debug)
115				warnx("%s not found", modname);
116			return;
117		}
118
119		/* Symbol found at load address plus symbol offset */
120		off = (u_long) ks.address + sym[0].n_value;
121	}
122
123	/* Get pointer to first socket */
124	kread(off, (char *)&this, sizeof(this));
125
126	/* Get my own socket node */
127	if (csock == -1)
128		NgMkSockNode(NULL, &csock, NULL);
129
130	for (; this != NULL; this = next) {
131		u_char rbuf[sizeof(struct ng_mesg) + sizeof(struct nodeinfo)];
132		struct ng_mesg *resp = (struct ng_mesg *) rbuf;
133		struct nodeinfo *ni = (struct nodeinfo *) resp->data;
134		char path[64];
135
136		/* Read in ngpcb structure */
137		kread((u_long)this, (char *)&ngpcb, sizeof(ngpcb));
138		next = LIST_NEXT(&ngpcb, socks);
139
140		/* Read in socket structure */
141		kread((u_long)ngpcb.ng_socket, (char *)&sockb, sizeof(sockb));
142
143		/* Check type of socket */
144		if (strcmp(name, "ctrl") == 0 && ngpcb.type != NG_CONTROL)
145			continue;
146		if (strcmp(name, "data") == 0 && ngpcb.type != NG_DATA)
147			continue;
148
149		/* Do headline */
150		if (first) {
151			printf("Netgraph sockets\n");
152			if (Aflag)
153				printf("%-8.8s ", "PCB");
154			printf("%-5.5s %-6.6s %-6.6s %-14.14s %s\n",
155			    "Type", "Recv-Q", "Send-Q",
156			    "Node Address", "#Hooks");
157			first = 0;
158		}
159
160		/* Show socket */
161		if (Aflag)
162			printf("%8lx ", (u_long) this);
163		printf("%-5.5s %6u %6u ",
164		    name, sockb.so_rcv.sb_cc, sockb.so_snd.sb_cc);
165
166		/* Get ngsock structure */
167		if (ngpcb.sockdata == 0)	/* unconnected data socket */
168			goto finish;
169		kread((u_long)ngpcb.sockdata, (char *)&info, sizeof(info));
170
171		/* Get info on associated node */
172		if (info.node == 0 || csock == -1)
173			goto finish;
174		snprintf(path, sizeof(path), "[%lx]:", (u_long) info.node);
175		if (NgSendMsg(csock, path,
176		    NGM_GENERIC_COOKIE, NGM_NODEINFO, NULL, 0) < 0)
177			goto finish;
178		if (NgRecvMsg(csock, resp, sizeof(rbuf), NULL) < 0)
179			goto finish;
180
181		/* Display associated node info */
182		if (*ni->name != '\0')
183			snprintf(path, sizeof(path), "%s:", ni->name);
184		printf("%-14.14s %4d", path, ni->hooks);
185finish:
186		putchar('\n');
187	}
188}
189
190