NetBSD/usr.bin/systat/netcmds.c

336 lines
6.8 KiB
C
Raw Normal View History

/* $NetBSD: netcmds.c,v 1.12 2000/01/04 15:12:42 itojun Exp $ */
1995-01-20 11:30:50 +03:00
/*-
* Copyright (c) 1980, 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-21 11:04:56 +04:00
#include <sys/cdefs.h>
1995-01-20 11:30:50 +03:00
#ifndef lint
#if 0
1995-01-20 11:30:50 +03:00
static char sccsid[] = "@(#)netcmds.c 8.1 (Berkeley) 6/6/93";
#endif
__RCSID("$NetBSD: netcmds.c,v 1.12 2000/01/04 15:12:42 itojun Exp $");
1995-01-20 11:30:50 +03:00
#endif /* not lint */
/*
* Common network command support routines.
*/
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/mbuf.h>
#include <sys/protosw.h>
#include <net/route.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/in_pcb.h>
#include <arpa/inet.h>
1995-01-20 11:30:50 +03:00
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "systat.h"
#include "extern.h"
#define streq(a,b) (strcmp(a,b)==0)
static struct hitem {
struct in_addr addr;
int onoff;
} *hosts = NULL;
1995-01-20 11:30:50 +03:00
int nports, nhosts, protos;
static void changeitems __P((char *, int));
1997-07-21 11:04:56 +04:00
static void selectproto __P((char *));
1995-01-20 11:30:50 +03:00
static void showprotos __P((void));
static int selectport __P((long, int));
static void showports __P((void));
static int selecthost __P((struct in_addr *, int));
static void showhosts __P((void));
/* please note: there are also some netstat commands in netstat.c */
void
netstat_display (args)
char *args;
1995-01-20 11:30:50 +03:00
{
changeitems(args, 1);
}
1995-01-20 11:30:50 +03:00
void
netstat_ignore (args)
char *args;
{
changeitems(args, 0);
}
void
netstat_reset (args)
char *args;
{
selectproto(0);
selecthost(0, 0);
selectport(-1, 0);
}
void
netstat_show (args)
char *args;
{
move(CMDLINE, 0); clrtoeol();
if (*args == '\0') {
showprotos();
showhosts();
showports();
return;
1995-01-20 11:30:50 +03:00
}
if (strstr(args, "protos") == args)
showprotos();
else if (strstr(args, "hosts") == args)
showhosts();
else if (strstr(args, "ports") == args)
showports();
else
addstr("show what?");
1995-01-20 11:30:50 +03:00
}
void
netstat_tcp (args)
char *args;
{
selectproto("tcp");
}
void
netstat_udp (args)
char *args;
{
selectproto("udp");
}
1995-01-20 11:30:50 +03:00
static void
changeitems(args, onoff)
char *args;
int onoff;
{
char *cp;
1995-01-20 11:30:50 +03:00
struct servent *sp;
struct hostent *hp;
struct in_addr in;
cp = strchr(args, '\n');
1995-01-20 11:30:50 +03:00
if (cp)
*cp = '\0';
for (;;args = cp) {
for (cp = args; *cp && isspace(*cp); cp++)
;
args = cp;
for (; *cp && !isspace(*cp); cp++)
;
if (*cp)
*cp++ = '\0';
if (cp - args == 0)
break;
sp = getservbyname(args,
protos == TCP ? "tcp" : protos == UDP ? "udp" : 0);
if (sp) {
selectport(sp->s_port, onoff);
continue;
}
1995-05-21 21:14:38 +04:00
if (inet_aton(args, &in) == 0) {
hp = gethostbyname(args);
if (hp == 0) {
1995-01-20 11:30:50 +03:00
error("%s: unknown host or port", args);
continue;
}
1995-05-21 21:14:38 +04:00
memcpy(&in, hp->h_addr, hp->h_length);
}
1995-01-20 11:30:50 +03:00
selecthost(&in, onoff);
}
}
1997-07-21 11:04:56 +04:00
static void
1995-01-20 11:30:50 +03:00
selectproto(proto)
char *proto;
{
if (proto == 0 || streq(proto, "all"))
1997-07-21 11:04:56 +04:00
protos = TCP|UDP;
1995-01-20 11:30:50 +03:00
else if (streq(proto, "tcp"))
1997-07-21 11:04:56 +04:00
protos = TCP;
1995-01-20 11:30:50 +03:00
else if (streq(proto, "udp"))
1997-07-21 11:04:56 +04:00
protos = UDP;
1995-01-20 11:30:50 +03:00
}
static void
showprotos()
{
if ((protos & TCP) == 0)
1995-01-20 11:30:50 +03:00
addch('!');
addstr("tcp ");
if ((protos & UDP) == 0)
1995-01-20 11:30:50 +03:00
addch('!');
addstr("udp ");
}
static struct pitem {
long port;
int onoff;
} *ports = NULL;
1995-01-20 11:30:50 +03:00
static int
selectport(port, onoff)
long port;
int onoff;
{
struct pitem *p;
1995-01-20 11:30:50 +03:00
if (port == -1) {
if (ports == NULL)
1995-01-20 11:30:50 +03:00
return (0);
free(ports);
ports = NULL;
1995-01-20 11:30:50 +03:00
nports = 0;
return (1);
}
for (p = ports; p < ports+nports; p++)
if (p->port == port) {
p->onoff = onoff;
return (0);
}
p = (struct pitem *)realloc(ports, (nports+1)*sizeof (*p));
if (p == NULL) {
error("malloc failed");
die(0);
}
ports = p;
1995-01-20 11:30:50 +03:00
p = &ports[nports++];
p->port = port;
p->onoff = onoff;
return (1);
}
int
checkport(inp)
struct inpcb *inp;
1995-01-20 11:30:50 +03:00
{
struct pitem *p;
1995-01-20 11:30:50 +03:00
if (ports)
for (p = ports; p < ports+nports; p++)
if (p->port == inp->inp_lport || p->port == inp->inp_fport)
return (p->onoff);
return (1);
}
static void
showports()
{
struct pitem *p;
1995-01-20 11:30:50 +03:00
struct servent *sp;
for (p = ports; p < ports+nports; p++) {
sp = getservbyport(p->port,
1997-07-21 11:04:56 +04:00
protos == (TCP|UDP) ? 0 : protos == TCP ? "tcp" : "udp");
1995-01-20 11:30:50 +03:00
if (!p->onoff)
addch('!');
if (sp)
printw("%s ", sp->s_name);
else
printw("%d ", p->port);
}
}
static int
selecthost(in, onoff)
struct in_addr *in;
int onoff;
{
struct hitem *p;
1995-01-20 11:30:50 +03:00
if (in == 0) {
if (hosts == 0)
return (0);
free((char *)hosts), hosts = 0;
nhosts = 0;
return (1);
}
for (p = hosts; p < hosts+nhosts; p++)
if (p->addr.s_addr == in->s_addr) {
p->onoff = onoff;
return (0);
}
p = (struct hitem *)realloc(hosts, (nhosts+1)*sizeof (*p));
if (p == NULL) {
error("malloc failed");
die(0);
}
hosts = p;
1995-01-20 11:30:50 +03:00
p = &hosts[nhosts++];
p->addr = *in;
p->onoff = onoff;
return (1);
}
int
checkhost(inp)
struct inpcb *inp;
1995-01-20 11:30:50 +03:00
{
struct hitem *p;
1995-01-20 11:30:50 +03:00
if (hosts)
for (p = hosts; p < hosts+nhosts; p++)
if (p->addr.s_addr == inp->inp_laddr.s_addr ||
p->addr.s_addr == inp->inp_faddr.s_addr)
return (p->onoff);
1995-01-20 11:30:50 +03:00
return (1);
}
static void
showhosts()
{
struct hitem *p;
1995-01-20 11:30:50 +03:00
struct hostent *hp;
for (p = hosts; p < hosts+nhosts; p++) {
hp = gethostbyaddr((char *)&p->addr, sizeof (p->addr), AF_INET);
if (!p->onoff)
addch('!');
printw("%s ", hp ? hp->h_name : inet_ntoa(p->addr));
1995-01-20 11:30:50 +03:00
}
}