Remove my changes. PATH_PORTS is not checked for multiple entries as
[dragonfly.git] / usr.bin / systat / netcmds.c
blobedf8a3edee2b1560e922a66ee32e880d491eebea
1 /*-
2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
33 * @(#)netcmds.c 8.1 (Berkeley) 6/6/93
34 * $FreeBSD: src/usr.bin/systat/netcmds.c,v 1.9 1999/08/28 01:06:04 peter Exp $
35 * $DragonFly: src/usr.bin/systat/netcmds.c,v 1.3 2003/10/04 20:36:51 hmp Exp $
39 * Common network command support routines.
41 #include <sys/param.h>
42 #include <sys/queue.h>
43 #include <sys/socket.h>
44 #include <sys/socketvar.h>
45 #include <sys/protosw.h>
47 #include <net/route.h>
48 #include <netinet/in.h>
49 #include <netinet/in_systm.h>
50 #include <netinet/ip.h>
51 #include <netinet/in_pcb.h>
52 #include <arpa/inet.h>
54 #include <netdb.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <ctype.h>
58 #include "systat.h"
59 #include "extern.h"
61 #define streq(a,b) (strcmp(a,b)==0)
63 static struct hitem {
64 struct in_addr addr;
65 int onoff;
66 } *hosts;
68 int nports, nhosts, protos;
70 static void changeitems(char *, int);
71 static int selectproto(char *);
72 static void showprotos(void);
73 static int selectport(long, int);
74 static void showports(void);
75 static int selecthost(struct in_addr *, int);
76 static void showhosts(void);
78 int
79 netcmd(char *cmd, char *args)
82 if (prefix(cmd, "proto")) {
83 if (*args == '\0') {
84 move(CMDLINE, 0);
85 clrtoeol();
86 addstr("which proto?");
87 } else if (!selectproto(args)) {
88 error("%s: Unknown protocol.", args);
90 return (1);
92 if (prefix(cmd, "ignore") || prefix(cmd, "display")) {
93 changeitems(args, prefix(cmd, "display"));
94 return (1);
96 if (prefix(cmd, "reset")) {
97 selectproto(0);
98 selecthost(0, 0);
99 selectport(-1, 0);
100 return (1);
102 if (prefix(cmd, "show")) {
103 move(CMDLINE, 0); clrtoeol();
104 if (*args == '\0') {
105 showprotos();
106 showhosts();
107 showports();
108 return (1);
110 if (prefix(args, "protos"))
111 showprotos();
112 else if (prefix(args, "hosts"))
113 showhosts();
114 else if (prefix(args, "ports"))
115 showports();
116 else
117 addstr("show what?");
118 return (1);
120 return (0);
124 static void
125 changeitems(char *args, int onoff)
127 register char *cp;
128 struct servent *sp;
129 struct hostent *hp;
130 struct in_addr in;
131 char *index();
133 cp = index(args, '\n');
134 if (cp)
135 *cp = '\0';
136 for (;;args = cp) {
137 for (cp = args; *cp && isspace(*cp); cp++)
139 args = cp;
140 for (; *cp && !isspace(*cp); cp++)
142 if (*cp)
143 *cp++ = '\0';
144 if (cp - args == 0)
145 break;
146 sp = getservbyname(args,
147 protos == TCP ? "tcp" : protos == UDP ? "udp" : 0);
148 if (sp) {
149 selectport(sp->s_port, onoff);
150 continue;
152 hp = gethostbyname(args);
153 if (hp == 0) {
154 in.s_addr = inet_addr(args);
155 if (in.s_addr == -1) {
156 error("%s: unknown host or port", args);
157 continue;
159 } else
160 in = *(struct in_addr *)hp->h_addr;
161 selecthost(&in, onoff);
165 static int
166 selectproto(char *proto)
169 if (proto == 0 || streq(proto, "all"))
170 protos = TCP | UDP;
171 else if (streq(proto, "tcp"))
172 protos = TCP;
173 else if (streq(proto, "udp"))
174 protos = UDP;
175 else
176 return (0);
178 return (protos);
181 static void
182 showprotos(void)
185 if ((protos&TCP) == 0)
186 addch('!');
187 addstr("tcp ");
188 if ((protos&UDP) == 0)
189 addch('!');
190 addstr("udp ");
193 static struct pitem {
194 long port;
195 int onoff;
196 } *ports;
198 static int
199 selectport(long port, int onoff)
201 register struct pitem *p;
203 if (port == -1) {
204 if (ports == 0)
205 return (0);
206 free((char *)ports), ports = 0;
207 nports = 0;
208 return (1);
210 for (p = ports; p < ports+nports; p++)
211 if (p->port == port) {
212 p->onoff = onoff;
213 return (0);
215 if (nports == 0)
216 ports = (struct pitem *)malloc(sizeof (*p));
217 else
218 ports = (struct pitem *)realloc(ports, (nports+1)*sizeof (*p));
219 p = &ports[nports++];
220 p->port = port;
221 p->onoff = onoff;
222 return (1);
226 checkport(register struct inpcb *inp)
228 register struct pitem *p;
230 if (ports)
231 for (p = ports; p < ports+nports; p++)
232 if (p->port == inp->inp_lport || p->port == inp->inp_fport)
233 return (p->onoff);
234 return (1);
237 static void
238 showports(void)
240 register struct pitem *p;
241 struct servent *sp;
243 for (p = ports; p < ports+nports; p++) {
244 sp = getservbyport(p->port,
245 protos == TCP|UDP ? 0 : protos == TCP ? "tcp" : "udp");
246 if (!p->onoff)
247 addch('!');
248 if (sp)
249 printw("%s ", sp->s_name);
250 else
251 printw("%d ", p->port);
255 static int
256 selecthost(struct in_addr *in, int onoff)
258 register struct hitem *p;
260 if (in == 0) {
261 if (hosts == 0)
262 return (0);
263 free((char *)hosts), hosts = 0;
264 nhosts = 0;
265 return (1);
267 for (p = hosts; p < hosts+nhosts; p++)
268 if (p->addr.s_addr == in->s_addr) {
269 p->onoff = onoff;
270 return (0);
272 if (nhosts == 0)
273 hosts = (struct hitem *)malloc(sizeof (*p));
274 else
275 hosts = (struct hitem *)realloc(hosts, (nhosts+1)*sizeof (*p));
276 p = &hosts[nhosts++];
277 p->addr = *in;
278 p->onoff = onoff;
279 return (1);
283 checkhost(register struct inpcb *inp)
285 register struct hitem *p;
287 if (hosts)
288 for (p = hosts; p < hosts+nhosts; p++)
289 if (p->addr.s_addr == inp->inp_laddr.s_addr ||
290 p->addr.s_addr == inp->inp_faddr.s_addr)
291 return (p->onoff);
292 return (1);
295 static void
296 showhosts(void)
298 register struct hitem *p;
299 struct hostent *hp;
301 for (p = hosts; p < hosts+nhosts; p++) {
302 hp = gethostbyaddr((char *)&p->addr, sizeof (p->addr), AF_INET);
303 if (!p->onoff)
304 addch('!');
305 printw("%s ", hp ? hp->h_name : (char *)inet_ntoa(p->addr));