19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni *
49b50d902SRodney W. Grimes * Copyright (c) 1980, 1992, 1993
59b50d902SRodney W. Grimes * The Regents of the University of California. All rights reserved.
69b50d902SRodney W. Grimes *
79b50d902SRodney W. Grimes * Redistribution and use in source and binary forms, with or without
89b50d902SRodney W. Grimes * modification, are permitted provided that the following conditions
99b50d902SRodney W. Grimes * are met:
109b50d902SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright
119b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer.
129b50d902SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright
139b50d902SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the
149b50d902SRodney W. Grimes * documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh * 3. Neither the name of the University nor the names of its contributors
169b50d902SRodney W. Grimes * may be used to endorse or promote products derived from this software
179b50d902SRodney W. Grimes * without specific prior written permission.
189b50d902SRodney W. Grimes *
199b50d902SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
209b50d902SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219b50d902SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
229b50d902SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
239b50d902SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
249b50d902SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
259b50d902SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
269b50d902SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
279b50d902SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
289b50d902SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
299b50d902SRodney W. Grimes * SUCH DAMAGE.
309b50d902SRodney W. Grimes */
319b50d902SRodney W. Grimes
329ff712b0SMark Murray
339b50d902SRodney W. Grimes
349b50d902SRodney W. Grimes /*
359b50d902SRodney W. Grimes * Common network command support routines.
369b50d902SRodney W. Grimes */
379b50d902SRodney W. Grimes #include <sys/param.h>
38d8d89152SDavid Greenman #include <sys/queue.h>
399b50d902SRodney W. Grimes #include <sys/socket.h>
409b50d902SRodney W. Grimes #include <sys/socketvar.h>
419b50d902SRodney W. Grimes #include <sys/protosw.h>
429b50d902SRodney W. Grimes
439b50d902SRodney W. Grimes #include <net/route.h>
449b50d902SRodney W. Grimes #include <netinet/in.h>
459b50d902SRodney W. Grimes #include <netinet/in_systm.h>
469b50d902SRodney W. Grimes #include <netinet/ip.h>
479b50d902SRodney W. Grimes #include <netinet/in_pcb.h>
489ec49abdSPeter Wemm #include <arpa/inet.h>
499b50d902SRodney W. Grimes
509ff712b0SMark Murray #include <ctype.h>
519b50d902SRodney W. Grimes #include <netdb.h>
529b50d902SRodney W. Grimes #include <stdlib.h>
539b50d902SRodney W. Grimes #include <string.h>
549ff712b0SMark Murray
559b50d902SRodney W. Grimes #include "systat.h"
569b50d902SRodney W. Grimes #include "extern.h"
579b50d902SRodney W. Grimes
589b50d902SRodney W. Grimes #define streq(a,b) (strcmp(a,b)==0)
599b50d902SRodney W. Grimes
609b50d902SRodney W. Grimes static struct hitem {
619b50d902SRodney W. Grimes struct in_addr addr;
629b50d902SRodney W. Grimes int onoff;
639b50d902SRodney W. Grimes } *hosts;
649b50d902SRodney W. Grimes
659b50d902SRodney W. Grimes int nports, nhosts, protos;
669b50d902SRodney W. Grimes
673f330d7dSWarner Losh static void changeitems(const char *, int);
683f330d7dSWarner Losh static int selectproto(const char *);
693f330d7dSWarner Losh static void showprotos(void);
703f330d7dSWarner Losh static int selectport(long, int);
713f330d7dSWarner Losh static void showports(void);
723f330d7dSWarner Losh static int selecthost(struct in_addr *, int);
733f330d7dSWarner Losh static void showhosts(void);
749b50d902SRodney W. Grimes
759b50d902SRodney W. Grimes int
netcmd(const char * cmd,const char * args)7693b9f504SXin LI netcmd(const char *cmd, const char *args)
779b50d902SRodney W. Grimes {
789b50d902SRodney W. Grimes
7979431394SSteve Price if (prefix(cmd, "proto")) {
8079431394SSteve Price if (*args == '\0') {
8179431394SSteve Price move(CMDLINE, 0);
8279431394SSteve Price clrtoeol();
8379431394SSteve Price addstr("which proto?");
8479431394SSteve Price } else if (!selectproto(args)) {
8579431394SSteve Price error("%s: Unknown protocol.", args);
8679431394SSteve Price }
879b50d902SRodney W. Grimes return (1);
889b50d902SRodney W. Grimes }
899b50d902SRodney W. Grimes if (prefix(cmd, "ignore") || prefix(cmd, "display")) {
909b50d902SRodney W. Grimes changeitems(args, prefix(cmd, "display"));
919b50d902SRodney W. Grimes return (1);
929b50d902SRodney W. Grimes }
939b50d902SRodney W. Grimes if (prefix(cmd, "reset")) {
949b50d902SRodney W. Grimes selectproto(0);
959b50d902SRodney W. Grimes selecthost(0, 0);
969b50d902SRodney W. Grimes selectport(-1, 0);
979b50d902SRodney W. Grimes return (1);
989b50d902SRodney W. Grimes }
999b50d902SRodney W. Grimes if (prefix(cmd, "show")) {
1009b50d902SRodney W. Grimes move(CMDLINE, 0); clrtoeol();
1019b50d902SRodney W. Grimes if (*args == '\0') {
1029b50d902SRodney W. Grimes showprotos();
1039b50d902SRodney W. Grimes showhosts();
1049b50d902SRodney W. Grimes showports();
1059b50d902SRodney W. Grimes return (1);
1069b50d902SRodney W. Grimes }
1079b50d902SRodney W. Grimes if (prefix(args, "protos"))
1089b50d902SRodney W. Grimes showprotos();
1099b50d902SRodney W. Grimes else if (prefix(args, "hosts"))
1109b50d902SRodney W. Grimes showhosts();
1119b50d902SRodney W. Grimes else if (prefix(args, "ports"))
1129b50d902SRodney W. Grimes showports();
1139b50d902SRodney W. Grimes else
1149b50d902SRodney W. Grimes addstr("show what?");
1159b50d902SRodney W. Grimes return (1);
1169b50d902SRodney W. Grimes }
1179b50d902SRodney W. Grimes return (0);
1189b50d902SRodney W. Grimes }
1199b50d902SRodney W. Grimes
1209b50d902SRodney W. Grimes static void
changeitems(const char * args,int onoff)12193b9f504SXin LI changeitems(const char *args, int onoff)
1229b50d902SRodney W. Grimes {
1239ff712b0SMark Murray char *cp, *tmpstr, *tmpstr1;
1249b50d902SRodney W. Grimes struct servent *sp;
1259b50d902SRodney W. Grimes struct hostent *hp;
1269b50d902SRodney W. Grimes struct in_addr in;
1279b50d902SRodney W. Grimes
1289ff712b0SMark Murray tmpstr = tmpstr1 = strdup(args);
129b3608ae1SEd Schouten cp = strchr(tmpstr1, '\n');
1309b50d902SRodney W. Grimes if (cp)
1319b50d902SRodney W. Grimes *cp = '\0';
1329ff712b0SMark Murray for (;;tmpstr1 = cp) {
1339ff712b0SMark Murray for (cp = tmpstr1; *cp && isspace(*cp); cp++)
1349b50d902SRodney W. Grimes ;
1359ff712b0SMark Murray tmpstr1 = cp;
1369b50d902SRodney W. Grimes for (; *cp && !isspace(*cp); cp++)
1379b50d902SRodney W. Grimes ;
1389b50d902SRodney W. Grimes if (*cp)
1399b50d902SRodney W. Grimes *cp++ = '\0';
1409ff712b0SMark Murray if (cp - tmpstr1 == 0)
1419b50d902SRodney W. Grimes break;
1429ff712b0SMark Murray sp = getservbyname(tmpstr1,
1439b50d902SRodney W. Grimes protos == TCP ? "tcp" : protos == UDP ? "udp" : 0);
1449b50d902SRodney W. Grimes if (sp) {
1459b50d902SRodney W. Grimes selectport(sp->s_port, onoff);
1469b50d902SRodney W. Grimes continue;
1479b50d902SRodney W. Grimes }
1489ff712b0SMark Murray hp = gethostbyname(tmpstr1);
14961c2ed54SMarcelo Araujo if (hp == NULL) {
1509ff712b0SMark Murray in.s_addr = inet_addr(tmpstr1);
151482d8831SKevin Lo if (in.s_addr == INADDR_NONE) {
1529ff712b0SMark Murray error("%s: unknown host or port", tmpstr1);
1539b50d902SRodney W. Grimes continue;
1549b50d902SRodney W. Grimes }
1559b50d902SRodney W. Grimes } else
1569b50d902SRodney W. Grimes in = *(struct in_addr *)hp->h_addr;
1579b50d902SRodney W. Grimes selecthost(&in, onoff);
1589b50d902SRodney W. Grimes }
1599ff712b0SMark Murray free(tmpstr);
1609b50d902SRodney W. Grimes }
1619b50d902SRodney W. Grimes
1629b50d902SRodney W. Grimes static int
selectproto(const char * proto)16393b9f504SXin LI selectproto(const char *proto)
1649b50d902SRodney W. Grimes {
1659b50d902SRodney W. Grimes
16661c2ed54SMarcelo Araujo if (proto == NULL || streq(proto, "all"))
16779431394SSteve Price protos = TCP | UDP;
1689b50d902SRodney W. Grimes else if (streq(proto, "tcp"))
16979431394SSteve Price protos = TCP;
1709b50d902SRodney W. Grimes else if (streq(proto, "udp"))
17179431394SSteve Price protos = UDP;
17279431394SSteve Price else
17379431394SSteve Price return (0);
17479431394SSteve Price
17579431394SSteve Price return (protos);
1769b50d902SRodney W. Grimes }
1779b50d902SRodney W. Grimes
1789b50d902SRodney W. Grimes static void
showprotos(void)17993b9f504SXin LI showprotos(void)
1809b50d902SRodney W. Grimes {
1819b50d902SRodney W. Grimes
1829b50d902SRodney W. Grimes if ((protos&TCP) == 0)
1839b50d902SRodney W. Grimes addch('!');
1849b50d902SRodney W. Grimes addstr("tcp ");
1859b50d902SRodney W. Grimes if ((protos&UDP) == 0)
1869b50d902SRodney W. Grimes addch('!');
1879b50d902SRodney W. Grimes addstr("udp ");
1889b50d902SRodney W. Grimes }
1899b50d902SRodney W. Grimes
1909b50d902SRodney W. Grimes static struct pitem {
1919b50d902SRodney W. Grimes long port;
1929b50d902SRodney W. Grimes int onoff;
1939b50d902SRodney W. Grimes } *ports;
1949b50d902SRodney W. Grimes
1959b50d902SRodney W. Grimes static int
selectport(long port,int onoff)19693b9f504SXin LI selectport(long port, int onoff)
1979b50d902SRodney W. Grimes {
19893b9f504SXin LI struct pitem *p;
1999b50d902SRodney W. Grimes
2009b50d902SRodney W. Grimes if (port == -1) {
20161c2ed54SMarcelo Araujo if (ports == NULL)
2029b50d902SRodney W. Grimes return (0);
2039b50d902SRodney W. Grimes free((char *)ports), ports = 0;
2049b50d902SRodney W. Grimes nports = 0;
2059b50d902SRodney W. Grimes return (1);
2069b50d902SRodney W. Grimes }
2079b50d902SRodney W. Grimes for (p = ports; p < ports + nports; p++)
2089b50d902SRodney W. Grimes if (p->port == port) {
2099b50d902SRodney W. Grimes p->onoff = onoff;
2109b50d902SRodney W. Grimes return (0);
2119b50d902SRodney W. Grimes }
2129b50d902SRodney W. Grimes if (nports == 0)
2139b50d902SRodney W. Grimes ports = (struct pitem *)malloc(sizeof (*p));
2149b50d902SRodney W. Grimes else
2159b50d902SRodney W. Grimes ports = (struct pitem *)realloc(ports, (nports+1)*sizeof (*p));
2169b50d902SRodney W. Grimes p = &ports[nports++];
2179b50d902SRodney W. Grimes p->port = port;
2189b50d902SRodney W. Grimes p->onoff = onoff;
2199b50d902SRodney W. Grimes return (1);
2209b50d902SRodney W. Grimes }
2219b50d902SRodney W. Grimes
2229b50d902SRodney W. Grimes int
checkport(struct in_conninfo * inc)223cc65eb4eSGleb Smirnoff checkport(struct in_conninfo *inc)
2249b50d902SRodney W. Grimes {
22593b9f504SXin LI struct pitem *p;
2269b50d902SRodney W. Grimes
2279b50d902SRodney W. Grimes if (ports)
2289b50d902SRodney W. Grimes for (p = ports; p < ports+nports; p++)
229cc65eb4eSGleb Smirnoff if (p->port == inc->inc_lport || p->port == inc->inc_fport)
2309b50d902SRodney W. Grimes return (p->onoff);
2319b50d902SRodney W. Grimes return (1);
2329b50d902SRodney W. Grimes }
2339b50d902SRodney W. Grimes
2349b50d902SRodney W. Grimes static void
showports(void)23593b9f504SXin LI showports(void)
2369b50d902SRodney W. Grimes {
23793b9f504SXin LI struct pitem *p;
2389b50d902SRodney W. Grimes struct servent *sp;
2399b50d902SRodney W. Grimes
2409b50d902SRodney W. Grimes for (p = ports; p < ports+nports; p++) {
2419b50d902SRodney W. Grimes sp = getservbyport(p->port,
242342e2faaSThomas Moestl protos == (TCP|UDP) ? 0 : protos == TCP ? "tcp" : "udp");
2439b50d902SRodney W. Grimes if (!p->onoff)
2449b50d902SRodney W. Grimes addch('!');
2459b50d902SRodney W. Grimes if (sp)
2469b50d902SRodney W. Grimes printw("%s ", sp->s_name);
2479b50d902SRodney W. Grimes else
248*35e941ceSBaptiste Daroussin printw("%ld ", p->port);
2499b50d902SRodney W. Grimes }
2509b50d902SRodney W. Grimes }
2519b50d902SRodney W. Grimes
2529b50d902SRodney W. Grimes static int
selecthost(struct in_addr * in,int onoff)25393b9f504SXin LI selecthost(struct in_addr *in, int onoff)
2549b50d902SRodney W. Grimes {
25593b9f504SXin LI struct hitem *p;
2569b50d902SRodney W. Grimes
25761c2ed54SMarcelo Araujo if (in == NULL) {
25861c2ed54SMarcelo Araujo if (hosts == NULL)
2599b50d902SRodney W. Grimes return (0);
2609b50d902SRodney W. Grimes free((char *)hosts), hosts = 0;
2619b50d902SRodney W. Grimes nhosts = 0;
2629b50d902SRodney W. Grimes return (1);
2639b50d902SRodney W. Grimes }
2649b50d902SRodney W. Grimes for (p = hosts; p < hosts+nhosts; p++)
2659b50d902SRodney W. Grimes if (p->addr.s_addr == in->s_addr) {
2669b50d902SRodney W. Grimes p->onoff = onoff;
2679b50d902SRodney W. Grimes return (0);
2689b50d902SRodney W. Grimes }
2699b50d902SRodney W. Grimes if (nhosts == 0)
2709b50d902SRodney W. Grimes hosts = (struct hitem *)malloc(sizeof (*p));
2719b50d902SRodney W. Grimes else
2729b50d902SRodney W. Grimes hosts = (struct hitem *)realloc(hosts, (nhosts+1)*sizeof (*p));
2739b50d902SRodney W. Grimes p = &hosts[nhosts++];
2749b50d902SRodney W. Grimes p->addr = *in;
2759b50d902SRodney W. Grimes p->onoff = onoff;
2769b50d902SRodney W. Grimes return (1);
2779b50d902SRodney W. Grimes }
2789b50d902SRodney W. Grimes
2799b50d902SRodney W. Grimes int
checkhost(struct in_conninfo * inc)280cc65eb4eSGleb Smirnoff checkhost(struct in_conninfo *inc)
2819b50d902SRodney W. Grimes {
28293b9f504SXin LI struct hitem *p;
2839b50d902SRodney W. Grimes
2849b50d902SRodney W. Grimes if (hosts)
2859b50d902SRodney W. Grimes for (p = hosts; p < hosts+nhosts; p++)
286cc65eb4eSGleb Smirnoff if (p->addr.s_addr == inc->inc_laddr.s_addr ||
287cc65eb4eSGleb Smirnoff p->addr.s_addr == inc->inc_faddr.s_addr)
2889b50d902SRodney W. Grimes return (p->onoff);
2899b50d902SRodney W. Grimes return (1);
2909b50d902SRodney W. Grimes }
2919b50d902SRodney W. Grimes
2929b50d902SRodney W. Grimes static void
showhosts(void)29393b9f504SXin LI showhosts(void)
2949b50d902SRodney W. Grimes {
29593b9f504SXin LI struct hitem *p;
2969b50d902SRodney W. Grimes struct hostent *hp;
2979b50d902SRodney W. Grimes
2989b50d902SRodney W. Grimes for (p = hosts; p < hosts+nhosts; p++) {
2999b50d902SRodney W. Grimes hp = gethostbyaddr((char *)&p->addr, sizeof (p->addr), AF_INET);
3009b50d902SRodney W. Grimes if (!p->onoff)
3019b50d902SRodney W. Grimes addch('!');
3029b50d902SRodney W. Grimes printw("%s ", hp ? hp->h_name : (char *)inet_ntoa(p->addr));
3039b50d902SRodney W. Grimes }
3049b50d902SRodney W. Grimes }
305