1999-09-16 00:12:18 +04:00
|
|
|
/* $NetBSD: route.c,v 1.40 1999/09/15 20:12:18 is Exp $ */
|
1995-10-04 00:42:34 +03:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
1994-05-13 12:08:09 +04:00
|
|
|
* Copyright (c) 1983, 1988, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 21:04:42 +03:00
|
|
|
*
|
|
|
|
* 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-10-19 09:49:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
#ifndef lint
|
1995-10-04 00:42:34 +03:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "from: @(#)route.c 8.3 (Berkeley) 3/9/94";
|
|
|
|
#else
|
1999-09-16 00:12:18 +04:00
|
|
|
__RCSID("$NetBSD: route.c,v 1.40 1999/09/15 20:12:18 is Exp $");
|
1995-10-04 00:42:34 +03:00
|
|
|
#endif
|
1993-03-21 21:04:42 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
1994-05-13 12:08:09 +04:00
|
|
|
#include <sys/protosw.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/mbuf.h>
|
1998-10-31 09:42:22 +03:00
|
|
|
#include <sys/un.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#include <net/if.h>
|
1994-05-13 12:08:09 +04:00
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_types.h>
|
1995-03-28 21:18:59 +04:00
|
|
|
#define _KERNEL
|
1993-03-21 21:04:42 +03:00
|
|
|
#include <net/route.h>
|
1995-03-28 21:18:59 +04:00
|
|
|
#undef _KERNEL
|
1993-03-21 21:04:42 +03:00
|
|
|
#include <netinet/in.h>
|
1997-04-03 08:46:44 +04:00
|
|
|
#include <netatalk/at.h>
|
1998-10-31 09:42:22 +03:00
|
|
|
#include <netiso/iso.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#include <netns/ns.h>
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
#include <sys/sysctl.h>
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1999-07-01 22:40:35 +04:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
1998-07-12 07:20:13 +04:00
|
|
|
#include <err.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <stdio.h>
|
1994-05-13 12:08:09 +04:00
|
|
|
#include <stdlib.h>
|
1993-03-21 21:04:42 +03:00
|
|
|
#include <string.h>
|
1994-05-13 12:08:09 +04:00
|
|
|
#include <unistd.h>
|
1998-07-12 07:20:13 +04:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
#include "netstat.h"
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
#define kget(p, d) (kread((u_long)(p), (char *)&(d), sizeof (d)))
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1999-09-03 08:26:31 +04:00
|
|
|
/* alignment constraint for routing socket */
|
|
|
|
#define ROUNDUP(a) \
|
|
|
|
((a) > 0 ? (1 + (((a) - 1) | (sizeof(long) - 1))) : sizeof(long))
|
|
|
|
#define ADVANCE(x, n) (x += ROUNDUP((n)->sa_len))
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Definitions for showing gateway flags.
|
|
|
|
*/
|
|
|
|
struct bits {
|
|
|
|
short b_mask;
|
|
|
|
char b_val;
|
|
|
|
} bits[] = {
|
|
|
|
{ RTF_UP, 'U' },
|
|
|
|
{ RTF_GATEWAY, 'G' },
|
|
|
|
{ RTF_HOST, 'H' },
|
1994-05-13 12:08:09 +04:00
|
|
|
{ RTF_REJECT, 'R' },
|
1993-03-21 21:04:42 +03:00
|
|
|
{ RTF_DYNAMIC, 'D' },
|
|
|
|
{ RTF_MODIFIED, 'M' },
|
1994-05-13 12:08:09 +04:00
|
|
|
{ RTF_DONE, 'd' }, /* Completed -- for routing messages only */
|
|
|
|
{ RTF_MASK, 'm' }, /* Mask Present -- for routing messages only */
|
1993-03-21 21:04:42 +03:00
|
|
|
{ RTF_CLONING, 'C' },
|
|
|
|
{ RTF_XRESOLVE, 'X' },
|
|
|
|
{ RTF_LLINFO, 'L' },
|
1994-05-13 12:08:09 +04:00
|
|
|
{ RTF_STATIC, 'S' },
|
|
|
|
{ RTF_PROTO1, '1' },
|
|
|
|
{ RTF_PROTO2, '2' },
|
1993-03-21 21:04:42 +03:00
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
1998-10-31 09:42:22 +03:00
|
|
|
/*
|
|
|
|
* XXX we put all of the sockaddr types in here to force the alignment
|
|
|
|
* to be correct.
|
|
|
|
*/
|
1999-04-03 00:13:40 +04:00
|
|
|
static union sockaddr_union {
|
1994-05-13 12:08:09 +04:00
|
|
|
struct sockaddr u_sa;
|
1998-10-31 09:42:22 +03:00
|
|
|
struct sockaddr_in u_in;
|
|
|
|
struct sockaddr_un u_un;
|
|
|
|
struct sockaddr_iso u_iso;
|
|
|
|
struct sockaddr_at u_at;
|
|
|
|
struct sockaddr_dl u_dl;
|
|
|
|
struct sockaddr_ns u_ns;
|
1994-05-13 12:08:09 +04:00
|
|
|
u_short u_data[128];
|
1999-07-01 22:40:35 +04:00
|
|
|
int u_dummy; /* force word-alignment */
|
1994-05-13 12:08:09 +04:00
|
|
|
} pt_u;
|
|
|
|
|
|
|
|
int do_rtent = 0;
|
|
|
|
struct rtentry rtentry;
|
|
|
|
struct radix_node rnode;
|
|
|
|
struct radix_mask rmask;
|
|
|
|
|
|
|
|
int NewTree = 0;
|
|
|
|
|
|
|
|
static struct sockaddr *kgetsa __P((struct sockaddr *));
|
|
|
|
static void p_tree __P((struct radix_node *));
|
1997-04-03 08:46:44 +04:00
|
|
|
static void p_rtnode __P((void));
|
|
|
|
static void ntreestuff __P((void));
|
1994-05-13 12:08:09 +04:00
|
|
|
static void np_rtentry __P((struct rt_msghdr *));
|
1997-01-02 11:00:55 +03:00
|
|
|
static void p_sockaddr __P((const struct sockaddr *,
|
|
|
|
const struct sockaddr *, int, int));
|
1994-05-13 12:08:09 +04:00
|
|
|
static void p_flags __P((int, char *));
|
|
|
|
static void p_rtentry __P((struct rtentry *));
|
1997-04-03 08:46:44 +04:00
|
|
|
static void ntreestuff __P((void));
|
|
|
|
static u_long forgemask __P((u_long));
|
1998-07-12 07:20:13 +04:00
|
|
|
static void domask __P((char *, size_t, u_long, u_long));
|
1999-07-01 22:40:35 +04:00
|
|
|
#ifdef INET6
|
|
|
|
char *netname6 __P((struct in6_addr *, struct in6_addr *));
|
|
|
|
static char ntop_buf[INET6_ADDRSTRLEN];
|
|
|
|
#endif
|
1993-05-18 11:15:59 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Print routing tables.
|
|
|
|
*/
|
1994-05-13 12:08:09 +04:00
|
|
|
void
|
|
|
|
routepr(rtree)
|
|
|
|
u_long rtree;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
struct radix_node_head *rnh, head;
|
|
|
|
int i;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
printf("Routing tables\n");
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
if (Aflag == 0 && NewTree)
|
|
|
|
ntreestuff();
|
|
|
|
else {
|
|
|
|
if (rtree == 0) {
|
|
|
|
printf("rt_tables: symbol not in namelist\n");
|
|
|
|
return;
|
|
|
|
}
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
kget(rtree, rt_tables);
|
|
|
|
for (i = 0; i <= AF_MAX; i++) {
|
|
|
|
if ((rnh = rt_tables[i]) == 0)
|
|
|
|
continue;
|
|
|
|
kget(rnh, head);
|
|
|
|
if (i == AF_UNSPEC) {
|
|
|
|
if (Aflag && af == 0) {
|
|
|
|
printf("Netmasks:\n");
|
|
|
|
p_tree(head.rnh_treetop);
|
|
|
|
}
|
|
|
|
} else if (af == AF_UNSPEC || af == i) {
|
|
|
|
pr_family(i);
|
|
|
|
do_rtent = 1;
|
|
|
|
pr_rthdr();
|
|
|
|
p_tree(head.rnh_treetop);
|
|
|
|
}
|
|
|
|
}
|
1993-07-11 17:54:14 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
/*
|
|
|
|
* Print address family header before a section of the routing table.
|
|
|
|
*/
|
1993-07-11 17:54:14 +04:00
|
|
|
void
|
1994-05-13 12:08:09 +04:00
|
|
|
pr_family(af)
|
|
|
|
int af;
|
1993-07-11 17:54:14 +04:00
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
char *afname;
|
|
|
|
|
|
|
|
switch (af) {
|
1993-07-11 17:54:14 +04:00
|
|
|
case AF_INET:
|
1994-05-13 12:08:09 +04:00
|
|
|
afname = "Internet";
|
|
|
|
break;
|
1999-07-01 22:40:35 +04:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
afname = "Internet6";
|
|
|
|
break;
|
|
|
|
#endif
|
1994-05-13 12:08:09 +04:00
|
|
|
case AF_NS:
|
|
|
|
afname = "XNS";
|
1993-07-11 17:54:14 +04:00
|
|
|
break;
|
|
|
|
case AF_ISO:
|
1994-05-13 12:08:09 +04:00
|
|
|
afname = "ISO";
|
|
|
|
break;
|
1997-04-03 08:46:44 +04:00
|
|
|
case AF_APPLETALK:
|
|
|
|
afname = "AppleTalk";
|
|
|
|
break;
|
1994-05-13 12:08:09 +04:00
|
|
|
case AF_CCITT:
|
|
|
|
afname = "X.25";
|
1993-07-11 17:54:14 +04:00
|
|
|
break;
|
|
|
|
default:
|
1994-05-13 12:08:09 +04:00
|
|
|
afname = NULL;
|
|
|
|
break;
|
1993-07-11 17:54:14 +04:00
|
|
|
}
|
1994-05-13 12:08:09 +04:00
|
|
|
if (afname)
|
|
|
|
printf("\n%s:\n", afname);
|
|
|
|
else
|
|
|
|
printf("\nProtocol Family %d:\n", af);
|
1993-07-11 17:54:14 +04:00
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
/* column widths; each followed by one space */
|
1999-07-01 22:40:35 +04:00
|
|
|
#ifndef INET6
|
1997-04-10 19:45:58 +04:00
|
|
|
#define WID_DST 18 /* width of destination column */
|
1994-05-13 12:08:09 +04:00
|
|
|
#define WID_GW 18 /* width of gateway column */
|
1999-07-01 22:40:35 +04:00
|
|
|
#else
|
|
|
|
#define WID_DST (nflag ? 28 : 18) /* width of destination column */
|
|
|
|
#define WID_GW (nflag ? 26 : 18) /* width of gateway column */
|
|
|
|
#endif /* INET6 */
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
/*
|
|
|
|
* Print header for routing table columns.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
pr_rthdr()
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
if (Aflag)
|
|
|
|
printf("%-8.8s ","Address");
|
1995-08-10 10:24:52 +04:00
|
|
|
printf("%-*.*s %-*.*s %-6.6s %6.6s%8.8s %6.6s %s\n",
|
1994-05-13 12:08:09 +04:00
|
|
|
WID_DST, WID_DST, "Destination",
|
|
|
|
WID_GW, WID_GW, "Gateway",
|
1995-08-10 10:24:52 +04:00
|
|
|
"Flags", "Refs", "Use", "Mtu", "Interface");
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static struct sockaddr *
|
1993-03-21 21:04:42 +03:00
|
|
|
kgetsa(dst)
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr *dst;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
kget(dst, pt_u.u_sa);
|
1994-05-13 12:08:09 +04:00
|
|
|
if (pt_u.u_sa.sa_len > sizeof (pt_u.u_sa))
|
|
|
|
kread((u_long)dst, (char *)pt_u.u_data, pt_u.u_sa.sa_len);
|
1993-03-21 21:04:42 +03:00
|
|
|
return (&pt_u.u_sa);
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-03-21 21:04:42 +03:00
|
|
|
p_tree(rn)
|
1994-05-13 12:08:09 +04:00
|
|
|
struct radix_node *rn;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
again:
|
|
|
|
kget(rn, rnode);
|
|
|
|
if (rnode.rn_b < 0) {
|
|
|
|
if (Aflag)
|
1997-04-03 08:46:44 +04:00
|
|
|
printf("%-8.8lx ", (u_long) rn);
|
1994-05-13 12:08:09 +04:00
|
|
|
if (rnode.rn_flags & RNF_ROOT) {
|
|
|
|
if (Aflag)
|
|
|
|
printf("(root node)%s",
|
1993-03-21 21:04:42 +03:00
|
|
|
rnode.rn_dupedkey ? " =>\n" : "\n");
|
1994-05-13 12:08:09 +04:00
|
|
|
} else if (do_rtent) {
|
1993-03-21 21:04:42 +03:00
|
|
|
kget(rn, rtentry);
|
|
|
|
p_rtentry(&rtentry);
|
|
|
|
if (Aflag)
|
|
|
|
p_rtnode();
|
|
|
|
} else {
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode.rn_key),
|
1997-01-02 11:00:55 +03:00
|
|
|
NULL, 0, 44);
|
1993-03-21 21:04:42 +03:00
|
|
|
putchar('\n');
|
|
|
|
}
|
1997-04-03 08:46:44 +04:00
|
|
|
if ((rn = rnode.rn_dupedkey) != NULL)
|
1993-03-21 21:04:42 +03:00
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
if (Aflag && do_rtent) {
|
1997-04-03 08:46:44 +04:00
|
|
|
printf("%-8.8lx ", (u_long) rn);
|
1993-03-21 21:04:42 +03:00
|
|
|
p_rtnode();
|
|
|
|
}
|
|
|
|
rn = rnode.rn_r;
|
|
|
|
p_tree(rnode.rn_l);
|
|
|
|
p_tree(rn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-03-21 21:04:42 +03:00
|
|
|
p_rtnode()
|
|
|
|
{
|
|
|
|
struct radix_mask *rm = rnode.rn_mklist;
|
1998-07-12 07:20:13 +04:00
|
|
|
char nbuf[20];
|
1994-05-13 12:08:09 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
if (rnode.rn_b < 0) {
|
|
|
|
if (rnode.rn_mask) {
|
|
|
|
printf("\t mask ");
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode.rn_mask),
|
1997-01-02 11:00:55 +03:00
|
|
|
NULL, 0, -1);
|
1993-03-21 21:04:42 +03:00
|
|
|
} else if (rm == 0)
|
|
|
|
return;
|
|
|
|
} else {
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(nbuf, sizeof nbuf, "(%d)", rnode.rn_b);
|
1997-04-03 08:46:44 +04:00
|
|
|
printf("%6.6s %8.8lx : %8.8lx", nbuf, (u_long) rnode.rn_l,
|
|
|
|
(u_long) rnode.rn_r);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
while (rm) {
|
|
|
|
kget(rm, rmask);
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(nbuf, sizeof nbuf, " %d refs, ", rmask.rm_refs);
|
1997-04-03 08:46:44 +04:00
|
|
|
printf(" mk = %8.8lx {(%d),%s", (u_long) rm,
|
|
|
|
-1 - rmask.rm_b, rmask.rm_refs ? nbuf : " ");
|
1997-01-02 11:00:55 +03:00
|
|
|
if (rmask.rm_flags & RNF_NORMAL) {
|
|
|
|
struct radix_node rnode_aux;
|
|
|
|
printf(" <normal>, ");
|
|
|
|
kget(rmask.rm_leaf, rnode_aux);
|
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rnode_aux.rn_mask),
|
|
|
|
NULL, 0, -1);
|
|
|
|
} else
|
1998-07-12 07:20:13 +04:00
|
|
|
p_sockaddr(kgetsa((struct sockaddr *)rmask.rm_mask),
|
|
|
|
NULL, 0, -1);
|
1993-03-21 21:04:42 +03:00
|
|
|
putchar('}');
|
1997-04-03 08:46:44 +04:00
|
|
|
if ((rm = rmask.rm_mklist) != NULL)
|
1993-03-21 21:04:42 +03:00
|
|
|
printf(" ->");
|
|
|
|
}
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-03-21 21:04:42 +03:00
|
|
|
ntreestuff()
|
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
size_t needed;
|
|
|
|
int mib[6];
|
1993-03-21 21:04:42 +03:00
|
|
|
char *buf, *next, *lim;
|
1997-10-19 09:49:56 +04:00
|
|
|
struct rt_msghdr *rtm;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1998-07-12 07:20:13 +04:00
|
|
|
mib[0] = CTL_NET;
|
|
|
|
mib[1] = PF_ROUTE;
|
|
|
|
mib[2] = 0;
|
|
|
|
mib[3] = 0;
|
|
|
|
mib[4] = NET_RT_DUMP;
|
|
|
|
mib[5] = 0;
|
|
|
|
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
|
|
|
|
err(1, "route sysctl estimate");
|
1993-03-21 21:04:42 +03:00
|
|
|
if ((buf = malloc(needed)) == 0)
|
1998-07-12 07:20:13 +04:00
|
|
|
errx(1, "out of space");
|
|
|
|
if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
|
|
|
|
err(1, "sysctl of routing table");
|
1993-03-21 21:04:42 +03:00
|
|
|
lim = buf + needed;
|
|
|
|
for (next = buf; next < lim; next += rtm->rtm_msglen) {
|
|
|
|
rtm = (struct rt_msghdr *)next;
|
|
|
|
np_rtentry(rtm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-03-21 21:04:42 +03:00
|
|
|
np_rtentry(rtm)
|
1997-10-19 09:49:56 +04:00
|
|
|
struct rt_msghdr *rtm;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr *sa = (struct sockaddr *)(rtm + 1);
|
1994-05-13 12:08:09 +04:00
|
|
|
#ifdef notdef
|
|
|
|
static int masks_done, banner_printed;
|
|
|
|
#endif
|
|
|
|
static int old_af;
|
1993-03-21 21:04:42 +03:00
|
|
|
int af = 0, interesting = RTF_UP | RTF_GATEWAY | RTF_HOST;
|
|
|
|
|
1999-09-16 00:12:18 +04:00
|
|
|
if (Lflag && (rtm->rtm_flags & RTF_LLINFO))
|
|
|
|
return;
|
1993-03-21 21:04:42 +03:00
|
|
|
#ifdef notdef
|
|
|
|
/* for the moment, netmasks are skipped over */
|
|
|
|
if (!banner_printed) {
|
|
|
|
printf("Netmasks:\n");
|
|
|
|
banner_printed = 1;
|
|
|
|
}
|
|
|
|
if (masks_done == 0) {
|
|
|
|
if (rtm->rtm_addrs != RTA_DST ) {
|
|
|
|
masks_done = 1;
|
|
|
|
af = sa->sa_family;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
af = sa->sa_family;
|
|
|
|
if (af != old_af) {
|
1994-05-13 12:08:09 +04:00
|
|
|
pr_family(af);
|
1993-03-21 21:04:42 +03:00
|
|
|
old_af = af;
|
|
|
|
}
|
|
|
|
if (rtm->rtm_addrs == RTA_DST)
|
1997-01-02 11:00:55 +03:00
|
|
|
p_sockaddr(sa, NULL, 0, 36);
|
1993-03-21 21:04:42 +03:00
|
|
|
else {
|
1997-01-02 11:00:55 +03:00
|
|
|
p_sockaddr(sa, NULL, rtm->rtm_flags, 16);
|
1999-09-03 08:26:31 +04:00
|
|
|
sa = (struct sockaddr *)(ROUNDUP(sa->sa_len) + (char *)sa);
|
1997-01-02 11:00:55 +03:00
|
|
|
p_sockaddr(sa, NULL, 0, 18);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
p_flags(rtm->rtm_flags & interesting, "%-6.6s ");
|
|
|
|
putchar('\n');
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1997-01-02 11:00:55 +03:00
|
|
|
p_sockaddr(sa, mask, flags, width)
|
|
|
|
const struct sockaddr *sa, *mask;
|
1994-05-13 12:08:09 +04:00
|
|
|
int flags, width;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
char workbuf[128], *cplim;
|
1997-10-19 09:49:56 +04:00
|
|
|
char *cp = workbuf;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
switch(sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr_in *sin = (struct sockaddr_in *)sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1997-01-02 11:00:55 +03:00
|
|
|
if (sin->sin_addr.s_addr == INADDR_ANY)
|
|
|
|
cp = "default";
|
|
|
|
else if (flags & RTF_HOST)
|
|
|
|
cp = routename(sin->sin_addr.s_addr);
|
|
|
|
else if (mask)
|
|
|
|
cp = netname(sin->sin_addr.s_addr,
|
1997-03-18 06:40:10 +03:00
|
|
|
((struct sockaddr_in *)mask)->sin_addr.s_addr);
|
1997-01-02 11:00:55 +03:00
|
|
|
else
|
|
|
|
cp = netname(sin->sin_addr.s_addr, INADDR_ANY);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1994-05-13 12:08:09 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1999-07-01 22:40:35 +04:00
|
|
|
#ifdef INET6
|
|
|
|
case AF_INET6:
|
|
|
|
{
|
|
|
|
struct in6_addr *in6 = &((struct sockaddr_in6 *)sa)->sin6_addr;
|
|
|
|
|
|
|
|
if (flags & RTF_HOST)
|
|
|
|
cp = routename6((char *)in6);
|
|
|
|
else if (mask) {
|
|
|
|
cp = netname6(in6,
|
|
|
|
&((struct sockaddr_in6 *)mask)->sin6_addr);
|
|
|
|
} else
|
|
|
|
cp = (char *)inet_ntop(AF_INET6, in6, ntop_buf,
|
|
|
|
sizeof(ntop_buf));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-01-11 15:31:53 +03:00
|
|
|
#ifndef SMALL
|
1997-04-03 08:46:44 +04:00
|
|
|
case AF_APPLETALK:
|
|
|
|
case 0:
|
|
|
|
{
|
|
|
|
if (!(flags & RTF_HOST) && mask)
|
|
|
|
cp = atalk_print2(sa,mask,11);
|
|
|
|
else
|
|
|
|
cp = atalk_print(sa,11);
|
|
|
|
break;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
case AF_NS:
|
1997-01-02 11:06:24 +03:00
|
|
|
cp = ns_print((struct sockaddr *)sa);
|
1993-07-11 17:54:14 +04:00
|
|
|
break;
|
1999-01-11 15:31:53 +03:00
|
|
|
#endif
|
1993-07-11 17:54:14 +04:00
|
|
|
|
|
|
|
case AF_LINK:
|
1994-05-13 12:08:09 +04:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr_dl *sdl = (struct sockaddr_dl *)sa;
|
1994-05-13 12:08:09 +04:00
|
|
|
|
|
|
|
if (sdl->sdl_nlen == 0 && sdl->sdl_alen == 0 &&
|
|
|
|
sdl->sdl_slen == 0)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(workbuf, sizeof workbuf, "link#%d",
|
|
|
|
sdl->sdl_index);
|
1994-05-13 12:08:09 +04:00
|
|
|
else switch (sdl->sdl_type) {
|
1997-03-26 04:49:44 +03:00
|
|
|
case IFT_FDDI:
|
1994-05-13 12:08:09 +04:00
|
|
|
case IFT_ETHER:
|
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
int i;
|
|
|
|
u_char *lla = (u_char *)sdl->sdl_data +
|
1994-05-13 12:08:09 +04:00
|
|
|
sdl->sdl_nlen;
|
|
|
|
|
|
|
|
cplim = "";
|
|
|
|
for (i = 0; i < sdl->sdl_alen; i++, lla++) {
|
1998-07-12 07:20:13 +04:00
|
|
|
/* XXX */
|
1997-03-26 04:49:44 +03:00
|
|
|
cp += sprintf(cp, "%s%02x", cplim, *lla);
|
1994-05-13 12:08:09 +04:00
|
|
|
cplim = ":";
|
|
|
|
}
|
|
|
|
cp = workbuf;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
cp = link_ntoa(sdl);
|
|
|
|
break;
|
|
|
|
}
|
1993-07-11 17:54:14 +04:00
|
|
|
break;
|
1994-05-13 12:08:09 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
u_char *s = (u_char *)sa->sa_data, *slim;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
slim = sa->sa_len + (u_char *) sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
cplim = cp + sizeof(workbuf) - 6;
|
|
|
|
cp += sprintf(cp, "(%d)", sa->sa_family);
|
1994-03-07 12:19:56 +03:00
|
|
|
while (s < slim && cp < cplim) {
|
|
|
|
cp += sprintf(cp, " %02x", *s++);
|
|
|
|
if (s < slim)
|
1994-05-13 12:08:09 +04:00
|
|
|
cp += sprintf(cp, "%02x", *s++);
|
1994-03-07 12:19:56 +03:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
cp = workbuf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (width < 0 )
|
|
|
|
printf("%s ", cp);
|
|
|
|
else {
|
|
|
|
if (nflag)
|
|
|
|
printf("%-*s ", width, cp);
|
|
|
|
else
|
|
|
|
printf("%-*.*s ", width, width, cp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-03-21 21:04:42 +03:00
|
|
|
p_flags(f, format)
|
1997-10-19 09:49:56 +04:00
|
|
|
int f;
|
1993-07-11 17:54:14 +04:00
|
|
|
char *format;
|
|
|
|
{
|
|
|
|
char name[33], *flags;
|
1997-10-19 09:49:56 +04:00
|
|
|
struct bits *p = bits;
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1998-07-12 07:20:13 +04:00
|
|
|
for (flags = name; p->b_mask && flags - name < sizeof(name); p++)
|
1993-07-11 17:54:14 +04:00
|
|
|
if (p->b_mask & f)
|
|
|
|
*flags++ = p->b_val;
|
|
|
|
*flags = '\0';
|
|
|
|
printf(format, name);
|
|
|
|
}
|
|
|
|
|
1999-04-03 00:13:40 +04:00
|
|
|
static struct sockaddr *sockcopy __P((struct sockaddr *,
|
|
|
|
union sockaddr_union *));
|
1999-04-01 12:14:11 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* copy a sockaddr into an allocated region, allocate at least sockaddr
|
|
|
|
* bytes and zero unused
|
|
|
|
*/
|
|
|
|
static struct sockaddr *
|
1999-04-03 00:13:40 +04:00
|
|
|
sockcopy(sp, dp)
|
1999-04-01 12:14:11 +04:00
|
|
|
struct sockaddr *sp;
|
1999-04-03 00:13:40 +04:00
|
|
|
union sockaddr_union *dp;
|
1999-04-01 12:14:11 +04:00
|
|
|
{
|
1999-04-03 00:13:40 +04:00
|
|
|
int len;
|
1999-04-01 12:14:11 +04:00
|
|
|
|
1999-04-03 00:13:40 +04:00
|
|
|
if (sp == 0 || sp->sa_len == 0)
|
|
|
|
(void)memset(dp, 0, sizeof (*sp));
|
|
|
|
else {
|
|
|
|
len = (sp->sa_len >= sizeof (*sp)) ? sp->sa_len : sizeof (*sp);
|
|
|
|
(void)memcpy(dp, sp, len);
|
|
|
|
}
|
|
|
|
return ((struct sockaddr *)dp);
|
1999-04-01 12:14:11 +04:00
|
|
|
}
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
static void
|
1993-07-11 17:54:14 +04:00
|
|
|
p_rtentry(rt)
|
1997-10-19 09:49:56 +04:00
|
|
|
struct rtentry *rt;
|
1993-07-11 17:54:14 +04:00
|
|
|
{
|
1994-05-13 12:08:09 +04:00
|
|
|
static struct ifnet ifnet, *lastif;
|
1999-04-03 00:13:40 +04:00
|
|
|
union sockaddr_union addr_un, mask_un;
|
1999-04-01 12:14:11 +04:00
|
|
|
struct sockaddr *addr, *mask;
|
1993-07-11 17:54:14 +04:00
|
|
|
|
1999-09-16 00:12:18 +04:00
|
|
|
if (Lflag && (rt->rt_flags & RTF_LLINFO))
|
|
|
|
return;
|
|
|
|
|
1999-07-01 22:40:35 +04:00
|
|
|
memset(&addr_un, 0, sizeof(addr_un));
|
|
|
|
memset(&mask_un, 0, sizeof(mask_un));
|
1999-04-03 00:13:40 +04:00
|
|
|
addr = sockcopy(kgetsa(rt_key(rt)), &addr_un);
|
1999-04-01 12:14:11 +04:00
|
|
|
if (rt_mask(rt))
|
1999-04-03 00:13:40 +04:00
|
|
|
mask = sockcopy(kgetsa(rt_mask(rt)), &mask_un);
|
1997-01-02 11:00:55 +03:00
|
|
|
else
|
1999-07-01 22:40:35 +04:00
|
|
|
mask = sockcopy(NULL, &mask_un);
|
1999-04-01 12:14:11 +04:00
|
|
|
p_sockaddr(addr, mask, rt->rt_flags, WID_DST);
|
1997-01-02 11:00:55 +03:00
|
|
|
p_sockaddr(kgetsa(rt->rt_gateway), NULL, RTF_HOST, WID_GW);
|
1993-07-11 17:54:14 +04:00
|
|
|
p_flags(rt->rt_flags, "%-6.6s ");
|
1998-05-15 02:48:49 +04:00
|
|
|
printf("%6d %8lu ", rt->rt_refcnt, rt->rt_use);
|
1995-08-10 10:24:52 +04:00
|
|
|
if (rt->rt_rmx.rmx_mtu)
|
1998-05-15 02:48:49 +04:00
|
|
|
printf("%6lu", rt->rt_rmx.rmx_mtu);
|
1995-08-10 10:24:52 +04:00
|
|
|
else
|
1998-05-15 00:55:51 +04:00
|
|
|
printf("%6s", "-");
|
|
|
|
putchar((rt->rt_rmx.rmx_locks & RTV_MTU) ? 'L' : ' ');
|
1994-05-13 12:08:09 +04:00
|
|
|
if (rt->rt_ifp) {
|
|
|
|
if (rt->rt_ifp != lastif) {
|
|
|
|
kget(rt->rt_ifp, ifnet);
|
|
|
|
lastif = rt->rt_ifp;
|
|
|
|
}
|
1996-05-07 06:55:00 +04:00
|
|
|
printf(" %.16s%s", ifnet.if_xname,
|
1994-05-13 12:08:09 +04:00
|
|
|
rt->rt_nodes[0].rn_dupedkey ? " =>" : "");
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1994-05-13 12:08:09 +04:00
|
|
|
putchar('\n');
|
1999-01-15 22:06:25 +03:00
|
|
|
if (vflag) {
|
|
|
|
printf("\texpire %10lu%c recvpipe %10ld%c "
|
|
|
|
"sendpipe %10ld%c\n",
|
|
|
|
rt->rt_rmx.rmx_expire,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_EXPIRE) ? 'L' : ' ',
|
|
|
|
rt->rt_rmx.rmx_recvpipe,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_RPIPE) ? 'L' : ' ',
|
|
|
|
rt->rt_rmx.rmx_sendpipe,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_SPIPE) ? 'L' : ' ');
|
|
|
|
printf("\tssthresh %10lu%c rtt %10ld%c "
|
|
|
|
"rttvar %10ld%c\n",
|
|
|
|
rt->rt_rmx.rmx_ssthresh,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_SSTHRESH) ? 'L' : ' ',
|
|
|
|
rt->rt_rmx.rmx_rtt,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_RTT) ? 'L' : ' ',
|
|
|
|
rt->rt_rmx.rmx_rttvar,
|
|
|
|
(rt->rt_rmx.rmx_locks & RTV_RTTVAR) ? 'L' : ' ');
|
|
|
|
}
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
routename(in)
|
1995-07-03 07:25:19 +04:00
|
|
|
u_int32_t in;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
char *cp;
|
1993-03-21 21:04:42 +03:00
|
|
|
static char line[MAXHOSTNAMELEN + 1];
|
|
|
|
struct hostent *hp;
|
|
|
|
static char domain[MAXHOSTNAMELEN + 1];
|
|
|
|
static int first = 1;
|
|
|
|
|
|
|
|
if (first) {
|
|
|
|
first = 0;
|
1998-07-06 10:45:41 +04:00
|
|
|
if (gethostname(domain, MAXHOSTNAMELEN) == 0) {
|
|
|
|
domain[sizeof(domain) - 1] = '\0';
|
|
|
|
if ((cp = strchr(domain, '.')))
|
|
|
|
(void)strcpy(domain, cp + 1);
|
|
|
|
else
|
|
|
|
domain[0] = 0;
|
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
domain[0] = 0;
|
|
|
|
}
|
|
|
|
cp = 0;
|
|
|
|
if (!nflag) {
|
|
|
|
hp = gethostbyaddr((char *)&in, sizeof (struct in_addr),
|
|
|
|
AF_INET);
|
|
|
|
if (hp) {
|
1997-10-19 09:49:56 +04:00
|
|
|
if ((cp = strchr(hp->h_name, '.')) &&
|
1993-03-21 21:04:42 +03:00
|
|
|
!strcmp(cp + 1, domain))
|
|
|
|
*cp = 0;
|
|
|
|
cp = hp->h_name;
|
|
|
|
}
|
|
|
|
}
|
1998-07-12 07:20:13 +04:00
|
|
|
if (cp) {
|
1993-03-21 21:04:42 +03:00
|
|
|
strncpy(line, cp, sizeof(line) - 1);
|
1998-07-12 07:20:13 +04:00
|
|
|
line[sizeof(line) - 1] = '\0';
|
|
|
|
} else {
|
1993-03-21 21:04:42 +03:00
|
|
|
#define C(x) ((x) & 0xff)
|
1994-05-13 12:08:09 +04:00
|
|
|
in = ntohl(in);
|
1998-07-12 07:20:13 +04:00
|
|
|
snprintf(line, sizeof line, "%u.%u.%u.%u",
|
1994-05-13 12:08:09 +04:00
|
|
|
C(in >> 24), C(in >> 16), C(in >> 8), C(in));
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
return (line);
|
|
|
|
}
|
|
|
|
|
1997-01-02 11:00:55 +03:00
|
|
|
static u_long
|
|
|
|
forgemask(a)
|
|
|
|
u_long a;
|
|
|
|
{
|
|
|
|
u_long m;
|
|
|
|
|
|
|
|
if (IN_CLASSA(a))
|
|
|
|
m = IN_CLASSA_NET;
|
|
|
|
else if (IN_CLASSB(a))
|
|
|
|
m = IN_CLASSB_NET;
|
|
|
|
else
|
|
|
|
m = IN_CLASSC_NET;
|
|
|
|
return (m);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
1998-07-12 07:20:13 +04:00
|
|
|
domask(dst, dlen, addr, mask)
|
1997-01-02 11:00:55 +03:00
|
|
|
char *dst;
|
1998-07-12 07:20:13 +04:00
|
|
|
size_t dlen;
|
1997-01-02 11:00:55 +03:00
|
|
|
u_long addr, mask;
|
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
int b, i;
|
1997-01-02 11:00:55 +03:00
|
|
|
|
|
|
|
if (!mask || (forgemask(addr) == mask)) {
|
|
|
|
*dst = '\0';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
i = 0;
|
|
|
|
for (b = 0; b < 32; b++)
|
|
|
|
if (mask & (1 << b)) {
|
1997-10-19 09:49:56 +04:00
|
|
|
int bb;
|
1997-01-02 11:00:55 +03:00
|
|
|
|
|
|
|
i = b;
|
|
|
|
for (bb = b+1; bb < 32; bb++)
|
|
|
|
if (!(mask & (1 << bb))) {
|
|
|
|
i = -1; /* noncontig */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == -1)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(dst, dlen, "&0x%lx", mask);
|
1997-01-02 11:00:55 +03:00
|
|
|
else
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(dst, dlen, "/%d", 32-i);
|
1997-01-02 11:00:55 +03:00
|
|
|
}
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Return the name of the network whose address is given.
|
|
|
|
* The address is assumed to be that of a net or subnet, not a host.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
netname(in, mask)
|
1995-07-03 07:25:19 +04:00
|
|
|
u_int32_t in, mask;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
char *cp = 0;
|
1997-01-02 11:00:55 +03:00
|
|
|
static char line[MAXHOSTNAMELEN + 4];
|
1993-03-21 21:04:42 +03:00
|
|
|
struct netent *np = 0;
|
1997-01-02 11:00:55 +03:00
|
|
|
u_int32_t net, omask;
|
1997-10-19 09:49:56 +04:00
|
|
|
u_int32_t i;
|
1993-03-21 21:04:42 +03:00
|
|
|
int subnetshift;
|
|
|
|
|
1997-01-02 11:00:55 +03:00
|
|
|
i = ntohl(in);
|
1997-03-18 06:40:10 +03:00
|
|
|
omask = mask = ntohl(mask);
|
1997-01-02 11:00:55 +03:00
|
|
|
if (!nflag && i != INADDR_ANY) {
|
1995-07-03 07:25:19 +04:00
|
|
|
if (mask == INADDR_ANY) {
|
1997-01-02 11:00:55 +03:00
|
|
|
switch (mask = forgemask(i)) {
|
|
|
|
case IN_CLASSA_NET:
|
1993-03-21 21:04:42 +03:00
|
|
|
subnetshift = 8;
|
1997-01-02 11:00:55 +03:00
|
|
|
break;
|
|
|
|
case IN_CLASSB_NET:
|
1993-03-21 21:04:42 +03:00
|
|
|
subnetshift = 8;
|
1997-01-02 11:00:55 +03:00
|
|
|
break;
|
|
|
|
case IN_CLASSC_NET:
|
1993-03-21 21:04:42 +03:00
|
|
|
subnetshift = 4;
|
1997-01-02 11:00:55 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
abort();
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If there are more bits than the standard mask
|
|
|
|
* would suggest, subnets must be in use.
|
|
|
|
* Guess at the subnet mask, assuming reasonable
|
|
|
|
* width subnet fields.
|
|
|
|
*/
|
1997-01-02 11:00:55 +03:00
|
|
|
while (i &~ mask)
|
1993-03-21 21:04:42 +03:00
|
|
|
mask = (long)mask >> subnetshift;
|
|
|
|
}
|
1997-01-02 11:00:55 +03:00
|
|
|
net = i & mask;
|
1998-12-05 16:14:04 +03:00
|
|
|
/*
|
|
|
|
* Note: shift the hosts bits out in octet units, since
|
|
|
|
* not all versions of getnetbyaddr() do this for us (e.g.
|
|
|
|
* the current `etc/networks' parser).
|
|
|
|
*/
|
|
|
|
while ((mask & 0xff) == 0)
|
|
|
|
mask >>= 8, net >>= 8;
|
1993-03-21 21:04:42 +03:00
|
|
|
np = getnetbyaddr(net, AF_INET);
|
|
|
|
if (np)
|
|
|
|
cp = np->n_name;
|
1994-05-13 12:08:09 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
if (cp)
|
|
|
|
strncpy(line, cp, sizeof(line) - 1);
|
1997-01-02 11:00:55 +03:00
|
|
|
else if ((i & 0xffffff) == 0)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(line, sizeof line, "%u", C(i >> 24));
|
1997-01-02 11:00:55 +03:00
|
|
|
else if ((i & 0xffff) == 0)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(line, sizeof line, "%u.%u", C(i >> 24)
|
|
|
|
, C(i >> 16));
|
1997-01-02 11:00:55 +03:00
|
|
|
else if ((i & 0xff) == 0)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(line, sizeof line, "%u.%u.%u", C(i >> 24),
|
|
|
|
C(i >> 16), C(i >> 8));
|
1993-03-21 21:04:42 +03:00
|
|
|
else
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(line, sizeof line, "%u.%u.%u.%u", C(i >> 24),
|
1997-01-02 11:00:55 +03:00
|
|
|
C(i >> 16), C(i >> 8), C(i));
|
1998-07-12 07:20:13 +04:00
|
|
|
domask(line + strlen(line), sizeof(line) - strlen(line), i, omask);
|
1993-03-21 21:04:42 +03:00
|
|
|
return (line);
|
|
|
|
}
|
|
|
|
|
1999-07-01 22:40:35 +04:00
|
|
|
#ifdef INET6
|
|
|
|
char *
|
|
|
|
netname6(in6, mask)
|
|
|
|
struct in6_addr *in6;
|
|
|
|
struct in6_addr *mask;
|
|
|
|
{
|
|
|
|
static char line[MAXHOSTNAMELEN + 1];
|
|
|
|
struct in6_addr net6;
|
|
|
|
u_char *p;
|
|
|
|
u_char *lim;
|
|
|
|
int masklen, final = 0, illegal = 0;
|
1999-09-03 08:26:31 +04:00
|
|
|
int i;
|
1999-07-01 22:40:35 +04:00
|
|
|
|
|
|
|
net6 = *in6;
|
1999-09-03 08:26:31 +04:00
|
|
|
for (i = 0; i < sizeof(net6); i++)
|
|
|
|
net6.s6_addr[i] &= mask->s6_addr[i];
|
1999-07-01 22:40:35 +04:00
|
|
|
|
|
|
|
masklen = 0;
|
|
|
|
lim = (u_char *)mask + 16;
|
|
|
|
for (p = (u_char *)mask; p < lim; p++) {
|
|
|
|
if (final && *p) {
|
|
|
|
illegal++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (*p & 0xff) {
|
|
|
|
case 0xff:
|
|
|
|
masklen += 8;
|
|
|
|
break;
|
|
|
|
case 0xfe:
|
|
|
|
masklen += 7;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0xfc:
|
|
|
|
masklen += 6;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0xf8:
|
|
|
|
masklen += 5;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0xf0:
|
|
|
|
masklen += 4;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0xe0:
|
|
|
|
masklen += 3;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0xc0:
|
|
|
|
masklen += 2;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0x80:
|
|
|
|
masklen += 1;
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
case 0x00:
|
|
|
|
final++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
final++;
|
|
|
|
illegal++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (masklen == 0 && IN6_IS_ADDR_UNSPECIFIED(in6))
|
|
|
|
return("default");
|
|
|
|
|
|
|
|
if (illegal)
|
|
|
|
fprintf(stderr, "illegal prefixlen\n");
|
|
|
|
sprintf(line, "%s/%d", inet_ntop(AF_INET6, &net6, ntop_buf,
|
|
|
|
sizeof(ntop_buf)),
|
|
|
|
masklen);
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
routename6(in6)
|
|
|
|
char *in6;
|
|
|
|
{
|
|
|
|
static char line[MAXHOSTNAMELEN + 1];
|
|
|
|
sprintf(line, "%s", inet_ntop(AF_INET6, in6, ntop_buf,
|
|
|
|
sizeof(ntop_buf)));
|
|
|
|
return line;
|
|
|
|
}
|
|
|
|
#endif /*INET6*/
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Print routing statistics
|
|
|
|
*/
|
1994-05-13 12:08:09 +04:00
|
|
|
void
|
1993-03-21 21:04:42 +03:00
|
|
|
rt_stats(off)
|
1994-04-01 13:18:06 +04:00
|
|
|
u_long off;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
struct rtstat rtstat;
|
|
|
|
|
|
|
|
if (off == 0) {
|
|
|
|
printf("rtstat: symbol not in namelist\n");
|
|
|
|
return;
|
|
|
|
}
|
1994-05-13 12:08:09 +04:00
|
|
|
kread(off, (char *)&rtstat, sizeof (rtstat));
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("routing:\n");
|
|
|
|
printf("\t%u bad routing redirect%s\n",
|
|
|
|
rtstat.rts_badredirect, plural(rtstat.rts_badredirect));
|
|
|
|
printf("\t%u dynamically created route%s\n",
|
|
|
|
rtstat.rts_dynamic, plural(rtstat.rts_dynamic));
|
|
|
|
printf("\t%u new gateway%s due to redirects\n",
|
|
|
|
rtstat.rts_newgateway, plural(rtstat.rts_newgateway));
|
|
|
|
printf("\t%u destination%s found unreachable\n",
|
|
|
|
rtstat.rts_unreach, plural(rtstat.rts_unreach));
|
|
|
|
printf("\t%u use%s of a wildcard route\n",
|
|
|
|
rtstat.rts_wildcard, plural(rtstat.rts_wildcard));
|
|
|
|
}
|
|
|
|
short ns_nullh[] = {0,0,0};
|
|
|
|
short ns_bh[] = {-1,-1,-1};
|
|
|
|
|
|
|
|
char *
|
1994-05-13 12:08:09 +04:00
|
|
|
ns_print(sa)
|
1997-01-02 11:04:26 +03:00
|
|
|
struct sockaddr *sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr_ns *sns = (struct sockaddr_ns*)sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
struct ns_addr work;
|
1998-07-12 07:20:13 +04:00
|
|
|
union {
|
|
|
|
union ns_net net_e;
|
|
|
|
u_long long_e;
|
|
|
|
} net;
|
1993-03-21 21:04:42 +03:00
|
|
|
u_short port;
|
|
|
|
static char mybuf[50], cport[10], chost[25];
|
|
|
|
char *host = "";
|
1997-10-19 09:49:56 +04:00
|
|
|
char *p;
|
|
|
|
u_char *q;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
work = sns->sns_addr;
|
|
|
|
port = ntohs(work.x_port);
|
|
|
|
work.x_port = 0;
|
|
|
|
net.net_e = work.x_net;
|
|
|
|
if (ns_nullhost(work) && net.long_e == 0) {
|
|
|
|
if (port ) {
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(mybuf, sizeof mybuf, "*.%xH", port);
|
1993-03-21 21:04:42 +03:00
|
|
|
upHex(mybuf);
|
|
|
|
} else
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(mybuf, sizeof mybuf, "*.*");
|
1993-03-21 21:04:42 +03:00
|
|
|
return (mybuf);
|
|
|
|
}
|
|
|
|
|
1997-10-19 09:49:56 +04:00
|
|
|
if (memcmp(ns_bh, work.x_host.c_host, 6) == 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
host = "any";
|
1997-10-19 09:49:56 +04:00
|
|
|
} else if (memcmp(ns_nullh, work.x_host.c_host, 6) == 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
host = "*";
|
|
|
|
} else {
|
|
|
|
q = work.x_host.c_host;
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(chost, sizeof chost, "%02x%02x%02x%02x%02x%02xH",
|
1993-03-21 21:04:42 +03:00
|
|
|
q[0], q[1], q[2], q[3], q[4], q[5]);
|
1994-05-13 12:08:09 +04:00
|
|
|
for (p = chost; *p == '0' && p < chost + 12; p++)
|
|
|
|
continue;
|
1993-03-21 21:04:42 +03:00
|
|
|
host = p;
|
|
|
|
}
|
|
|
|
if (port)
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(cport, sizeof cport, ".%xH", htons(port));
|
1993-03-21 21:04:42 +03:00
|
|
|
else
|
|
|
|
*cport = 0;
|
|
|
|
|
1998-07-12 07:20:13 +04:00
|
|
|
(void)snprintf(mybuf, sizeof mybuf, "%xH.%s%s", (int)ntohl(net.long_e),
|
|
|
|
host, cport);
|
1993-03-21 21:04:42 +03:00
|
|
|
upHex(mybuf);
|
1998-07-12 07:20:13 +04:00
|
|
|
return (mybuf);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
1994-05-13 12:08:09 +04:00
|
|
|
ns_phost(sa)
|
|
|
|
struct sockaddr *sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
struct sockaddr_ns *sns = (struct sockaddr_ns *)sa;
|
1993-03-21 21:04:42 +03:00
|
|
|
struct sockaddr_ns work;
|
|
|
|
static union ns_net ns_zeronet;
|
|
|
|
char *p;
|
1994-05-13 12:08:09 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
work = *sns;
|
|
|
|
work.sns_addr.x_port = 0;
|
|
|
|
work.sns_addr.x_net = ns_zeronet;
|
|
|
|
|
1994-05-13 12:08:09 +04:00
|
|
|
p = ns_print((struct sockaddr *)&work);
|
1998-07-12 07:20:13 +04:00
|
|
|
if (strncmp("0H.", p, 3) == 0)
|
|
|
|
p += 3;
|
|
|
|
return (p);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1994-05-13 12:08:09 +04:00
|
|
|
|
|
|
|
void
|
1993-03-21 21:04:42 +03:00
|
|
|
upHex(p0)
|
1994-05-13 12:08:09 +04:00
|
|
|
char *p0;
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1997-10-19 09:49:56 +04:00
|
|
|
char *p = p0;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1998-07-12 07:20:13 +04:00
|
|
|
for (; *p; p++)
|
|
|
|
switch (*p) {
|
|
|
|
case 'a':
|
|
|
|
case 'b':
|
|
|
|
case 'c':
|
|
|
|
case 'd':
|
|
|
|
case 'e':
|
|
|
|
case 'f':
|
|
|
|
*p += ('A' - 'a');
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|