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