1994-05-26 05:23:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1984, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Sun Microsystems, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-05-03 21:06:42 +00:00
|
|
|
#if 0
|
1994-05-26 05:23:31 +00:00
|
|
|
#ifndef lint
|
1996-02-08 21:05:52 +00:00
|
|
|
static char const copyright[] =
|
1994-05-26 05:23:31 +00:00
|
|
|
"@(#) Copyright (c) 1984, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1996-02-08 21:05:52 +00:00
|
|
|
static char const sccsid[] = "@(#)from: arp.c 8.2 (Berkeley) 1/2/94";
|
1994-05-26 05:23:31 +00:00
|
|
|
#endif /* not lint */
|
2003-05-03 21:06:42 +00:00
|
|
|
#endif
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* arp - display, set, and delete arp table entries
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/socket.h>
|
1996-02-08 21:05:52 +00:00
|
|
|
#include <sys/sockio.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
#include <sys/sysctl.h>
|
1996-02-08 21:05:52 +00:00
|
|
|
#include <sys/ioctl.h>
|
1996-12-10 17:11:53 +00:00
|
|
|
#include <sys/time.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <net/if_dl.h>
|
|
|
|
#include <net/if_types.h>
|
|
|
|
#include <net/route.h>
|
2002-05-09 00:37:57 +00:00
|
|
|
#include <net/iso88025.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/if_ether.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2002-12-27 10:09:04 +00:00
|
|
|
#include <ctype.h>
|
1997-09-03 06:32:31 +00:00
|
|
|
#include <err.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
#include <errno.h>
|
1997-09-03 06:32:31 +00:00
|
|
|
#include <netdb.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
#include <nlist.h>
|
1997-09-03 06:32:31 +00:00
|
|
|
#include <paths.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
#include <stdio.h>
|
1996-02-08 21:05:52 +00:00
|
|
|
#include <stdlib.h>
|
2002-04-01 21:13:17 +00:00
|
|
|
#include <string.h>
|
1996-02-08 21:05:52 +00:00
|
|
|
#include <strings.h>
|
1997-09-03 06:32:31 +00:00
|
|
|
#include <unistd.h>
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2004-04-13 08:34:52 +00:00
|
|
|
typedef void (action_fn)(struct sockaddr_dl *sdl,
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *s_in, struct rt_msghdr *rtm);
|
2004-04-13 08:34:52 +00:00
|
|
|
|
|
|
|
static int search(u_long addr, action_fn *action);
|
|
|
|
static action_fn print_entry;
|
|
|
|
static action_fn nuke_entry;
|
|
|
|
|
2013-01-31 08:55:21 +00:00
|
|
|
static int delete(char *host);
|
2004-04-13 08:34:52 +00:00
|
|
|
static void usage(void);
|
|
|
|
static int set(int argc, char **argv);
|
2005-06-09 15:27:46 +00:00
|
|
|
static int get(char *host);
|
2004-04-13 08:34:52 +00:00
|
|
|
static int file(char *name);
|
2004-04-13 14:16:37 +00:00
|
|
|
static struct rt_msghdr *rtmsg(int cmd,
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *dst, struct sockaddr_dl *sdl);
|
2005-06-09 15:27:46 +00:00
|
|
|
static int get_ether_addr(in_addr_t ipaddr, struct ether_addr *hwaddr);
|
2013-01-31 08:55:21 +00:00
|
|
|
static struct sockaddr_in *getaddr(char *host);
|
2005-06-09 15:27:46 +00:00
|
|
|
static int valid_type(int type);
|
2004-04-13 08:34:52 +00:00
|
|
|
|
1997-11-13 01:16:57 +00:00
|
|
|
static int nflag; /* no reverse dns lookups */
|
2003-07-18 13:48:06 +00:00
|
|
|
static char *rifname;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2010-02-15 14:29:17 +00:00
|
|
|
static time_t expire_time;
|
2013-01-31 08:55:21 +00:00
|
|
|
static int flags, doing_proxy;
|
2004-04-13 14:16:37 +00:00
|
|
|
|
1997-11-13 01:16:57 +00:00
|
|
|
/* which function we're supposed to do */
|
|
|
|
#define F_GET 1
|
|
|
|
#define F_SET 2
|
|
|
|
#define F_FILESET 3
|
|
|
|
#define F_REPLACE 4
|
|
|
|
#define F_DELETE 5
|
|
|
|
|
|
|
|
#define SETFUNC(f) { if (func) usage(); func = (f); }
|
|
|
|
|
1996-02-08 21:05:52 +00:00
|
|
|
int
|
2001-06-07 12:35:53 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
1997-11-13 01:16:57 +00:00
|
|
|
int ch, func = 0;
|
|
|
|
int rtn = 0;
|
2004-04-13 08:34:52 +00:00
|
|
|
int aflag = 0; /* do it for all entries */
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2003-07-18 13:48:06 +00:00
|
|
|
while ((ch = getopt(argc, argv, "andfsSi:")) != -1)
|
2009-08-14 18:18:51 +00:00
|
|
|
switch(ch) {
|
1994-05-26 05:23:31 +00:00
|
|
|
case 'a':
|
1997-11-13 01:16:57 +00:00
|
|
|
aflag = 1;
|
|
|
|
break;
|
1994-05-26 05:23:31 +00:00
|
|
|
case 'd':
|
1997-11-13 01:16:57 +00:00
|
|
|
SETFUNC(F_DELETE);
|
|
|
|
break;
|
1994-05-26 05:23:31 +00:00
|
|
|
case 'n':
|
|
|
|
nflag = 1;
|
1997-11-13 01:16:57 +00:00
|
|
|
break;
|
1996-02-08 21:05:52 +00:00
|
|
|
case 'S':
|
1997-11-13 01:16:57 +00:00
|
|
|
SETFUNC(F_REPLACE);
|
|
|
|
break;
|
1994-05-26 05:23:31 +00:00
|
|
|
case 's':
|
1997-11-13 01:16:57 +00:00
|
|
|
SETFUNC(F_SET);
|
|
|
|
break;
|
1995-08-03 03:56:48 +00:00
|
|
|
case 'f' :
|
1997-11-13 01:16:57 +00:00
|
|
|
SETFUNC(F_FILESET);
|
|
|
|
break;
|
2003-07-18 13:48:06 +00:00
|
|
|
case 'i':
|
|
|
|
rifname = optarg;
|
|
|
|
break;
|
1994-05-26 05:23:31 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
1997-11-13 01:16:57 +00:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (!func)
|
|
|
|
func = F_GET;
|
2003-07-18 13:48:06 +00:00
|
|
|
if (rifname) {
|
2006-01-10 05:17:16 +00:00
|
|
|
if (func != F_GET && !(func == F_DELETE && aflag))
|
2003-07-18 13:48:06 +00:00
|
|
|
errx(1, "-i not applicable to this operation");
|
|
|
|
if (if_nametoindex(rifname) == 0) {
|
|
|
|
if (errno == ENXIO)
|
|
|
|
errx(1, "interface %s does not exist", rifname);
|
|
|
|
else
|
|
|
|
err(1, "if_nametoindex(%s)", rifname);
|
|
|
|
}
|
|
|
|
}
|
1997-11-13 01:16:57 +00:00
|
|
|
switch (func) {
|
|
|
|
case F_GET:
|
|
|
|
if (aflag) {
|
|
|
|
if (argc != 0)
|
|
|
|
usage();
|
|
|
|
search(0, print_entry);
|
|
|
|
} else {
|
|
|
|
if (argc != 1)
|
|
|
|
usage();
|
2005-06-09 15:27:46 +00:00
|
|
|
rtn = get(argv[0]);
|
1997-11-13 01:16:57 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case F_SET:
|
|
|
|
case F_REPLACE:
|
2001-06-07 12:35:53 +00:00
|
|
|
if (argc < 2 || argc > 6)
|
1997-11-13 01:16:57 +00:00
|
|
|
usage();
|
|
|
|
if (func == F_REPLACE)
|
2013-01-31 08:55:21 +00:00
|
|
|
(void)delete(argv[0]);
|
1997-11-13 01:16:57 +00:00
|
|
|
rtn = set(argc, argv) ? 1 : 0;
|
|
|
|
break;
|
|
|
|
case F_DELETE:
|
|
|
|
if (aflag) {
|
|
|
|
if (argc != 0)
|
|
|
|
usage();
|
|
|
|
search(0, nuke_entry);
|
2013-09-23 18:12:25 +00:00
|
|
|
} else {
|
|
|
|
if (argc != 1)
|
|
|
|
usage();
|
2013-01-31 08:55:21 +00:00
|
|
|
rtn = delete(argv[0]);
|
2013-09-23 18:12:25 +00:00
|
|
|
}
|
1997-11-13 01:16:57 +00:00
|
|
|
break;
|
|
|
|
case F_FILESET:
|
|
|
|
if (argc != 1)
|
|
|
|
usage();
|
|
|
|
rtn = file(argv[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-06-09 15:27:46 +00:00
|
|
|
return (rtn);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Process a file to set standard arp entries
|
|
|
|
*/
|
2004-04-13 08:34:52 +00:00
|
|
|
static int
|
1996-02-08 21:05:52 +00:00
|
|
|
file(char *name)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int i, retval;
|
2003-01-17 08:10:43 +00:00
|
|
|
char line[100], arg[5][50], *args[5], *p;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
1997-09-03 06:32:31 +00:00
|
|
|
if ((fp = fopen(name, "r")) == NULL)
|
2004-04-09 14:27:28 +00:00
|
|
|
err(1, "cannot open %s", name);
|
1994-05-26 05:23:31 +00:00
|
|
|
args[0] = &arg[0][0];
|
|
|
|
args[1] = &arg[1][0];
|
|
|
|
args[2] = &arg[2][0];
|
|
|
|
args[3] = &arg[3][0];
|
|
|
|
args[4] = &arg[4][0];
|
|
|
|
retval = 0;
|
2007-03-06 09:32:41 +00:00
|
|
|
while(fgets(line, sizeof(line), fp) != NULL) {
|
2003-01-17 08:10:43 +00:00
|
|
|
if ((p = strchr(line, '#')) != NULL)
|
|
|
|
*p = '\0';
|
|
|
|
for (p = line; isblank(*p); p++);
|
2003-03-05 15:53:18 +00:00
|
|
|
if (*p == '\n' || *p == '\0')
|
2002-12-27 10:09:04 +00:00
|
|
|
continue;
|
2003-01-17 08:10:43 +00:00
|
|
|
i = sscanf(p, "%49s %49s %49s %49s %49s", arg[0], arg[1],
|
2000-01-17 01:44:16 +00:00
|
|
|
arg[2], arg[3], arg[4]);
|
1994-05-26 05:23:31 +00:00
|
|
|
if (i < 2) {
|
1997-09-03 06:32:31 +00:00
|
|
|
warnx("bad line: %s", line);
|
1994-05-26 05:23:31 +00:00
|
|
|
retval = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (set(i, args))
|
|
|
|
retval = 1;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
/*
|
2013-01-31 08:55:21 +00:00
|
|
|
* Given a hostname, fills up a (static) struct sockaddr_in with
|
2004-04-13 14:16:37 +00:00
|
|
|
* the address of the host and returns a pointer to the
|
|
|
|
* structure.
|
|
|
|
*/
|
2013-01-31 08:55:21 +00:00
|
|
|
static struct sockaddr_in *
|
2004-04-13 14:16:37 +00:00
|
|
|
getaddr(char *host)
|
|
|
|
{
|
|
|
|
struct hostent *hp;
|
2013-01-31 08:55:21 +00:00
|
|
|
static struct sockaddr_in reply;
|
2004-04-13 14:16:37 +00:00
|
|
|
|
|
|
|
bzero(&reply, sizeof(reply));
|
|
|
|
reply.sin_len = sizeof(reply);
|
|
|
|
reply.sin_family = AF_INET;
|
|
|
|
reply.sin_addr.s_addr = inet_addr(host);
|
|
|
|
if (reply.sin_addr.s_addr == INADDR_NONE) {
|
|
|
|
if (!(hp = gethostbyname(host))) {
|
|
|
|
warnx("%s: %s", host, hstrerror(h_errno));
|
2005-06-09 15:27:46 +00:00
|
|
|
return (NULL);
|
2004-04-13 14:16:37 +00:00
|
|
|
}
|
|
|
|
bcopy((char *)hp->h_addr, (char *)&reply.sin_addr,
|
|
|
|
sizeof reply.sin_addr);
|
|
|
|
}
|
2005-06-09 15:27:46 +00:00
|
|
|
return (&reply);
|
2004-04-13 14:16:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2005-06-09 15:27:46 +00:00
|
|
|
* Returns true if the type is a valid one for ARP.
|
2004-04-13 14:16:37 +00:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
valid_type(int type)
|
|
|
|
{
|
2005-06-09 15:27:46 +00:00
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
switch (type) {
|
|
|
|
case IFT_ETHER:
|
|
|
|
case IFT_FDDI:
|
|
|
|
case IFT_ISO88023:
|
|
|
|
case IFT_ISO88024:
|
|
|
|
case IFT_ISO88025:
|
|
|
|
case IFT_L2VLAN:
|
2005-11-03 00:56:43 +00:00
|
|
|
case IFT_BRIDGE:
|
2005-06-09 15:27:46 +00:00
|
|
|
return (1);
|
|
|
|
default:
|
|
|
|
return (0);
|
2004-04-13 14:16:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-26 05:23:31 +00:00
|
|
|
/*
|
1995-05-30 03:57:47 +00:00
|
|
|
* Set an individual arp entry
|
1994-05-26 05:23:31 +00:00
|
|
|
*/
|
2004-04-13 14:16:37 +00:00
|
|
|
static int
|
1996-02-08 21:05:52 +00:00
|
|
|
set(int argc, char **argv)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *addr;
|
|
|
|
struct sockaddr_in *dst; /* what are we looking for */
|
2004-04-09 14:27:28 +00:00
|
|
|
struct sockaddr_dl *sdl;
|
2004-04-13 08:34:52 +00:00
|
|
|
struct rt_msghdr *rtm;
|
2002-04-06 09:01:44 +00:00
|
|
|
struct ether_addr *ea;
|
1994-05-26 05:23:31 +00:00
|
|
|
char *host = argv[0], *eaddr = argv[1];
|
2005-06-09 15:27:46 +00:00
|
|
|
struct sockaddr_dl sdl_m;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
argc -= 2;
|
|
|
|
argv += 2;
|
2004-04-13 08:34:52 +00:00
|
|
|
|
|
|
|
bzero(&sdl_m, sizeof(sdl_m));
|
|
|
|
sdl_m.sdl_len = sizeof(sdl_m);
|
|
|
|
sdl_m.sdl_family = AF_LINK;
|
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
dst = getaddr(host);
|
|
|
|
if (dst == NULL)
|
|
|
|
return (1);
|
2013-01-31 08:55:21 +00:00
|
|
|
doing_proxy = flags = expire_time = 0;
|
1994-05-26 05:23:31 +00:00
|
|
|
while (argc-- > 0) {
|
|
|
|
if (strncmp(argv[0], "temp", 4) == 0) {
|
2010-11-30 16:00:59 +00:00
|
|
|
struct timespec tp;
|
2010-11-30 16:14:19 +00:00
|
|
|
int max_age;
|
|
|
|
size_t len = sizeof(max_age);
|
|
|
|
|
2010-11-30 16:00:59 +00:00
|
|
|
clock_gettime(CLOCK_MONOTONIC, &tp);
|
2010-11-30 16:14:19 +00:00
|
|
|
if (sysctlbyname("net.link.ether.inet.max_age",
|
|
|
|
&max_age, &len, NULL, 0) != 0)
|
|
|
|
err(1, "sysctlbyname");
|
|
|
|
expire_time = tp.tv_sec + max_age;
|
2008-03-18 21:45:27 +00:00
|
|
|
} else if (strncmp(argv[0], "pub", 3) == 0) {
|
1994-05-26 05:23:31 +00:00
|
|
|
flags |= RTF_ANNOUNCE;
|
2001-06-07 12:35:53 +00:00
|
|
|
doing_proxy = 1;
|
|
|
|
if (argc && strncmp(argv[1], "only", 3) == 0) {
|
2013-01-31 08:55:21 +00:00
|
|
|
/*
|
|
|
|
* Compatibility: in pre FreeBSD 8 times
|
|
|
|
* the "only" keyword used to mean that
|
|
|
|
* an ARP entry should be announced, but
|
|
|
|
* not installed into routing table.
|
|
|
|
*/
|
2001-06-07 12:35:53 +00:00
|
|
|
argc--; argv++;
|
|
|
|
}
|
2008-03-18 21:45:27 +00:00
|
|
|
} else if (strncmp(argv[0], "blackhole", 9) == 0) {
|
2008-12-25 06:44:19 +00:00
|
|
|
if (flags & RTF_REJECT) {
|
|
|
|
printf("Choose one of blackhole or reject, not both.\n");
|
|
|
|
}
|
2008-03-18 21:45:27 +00:00
|
|
|
flags |= RTF_BLACKHOLE;
|
|
|
|
} else if (strncmp(argv[0], "reject", 6) == 0) {
|
2008-12-25 06:44:19 +00:00
|
|
|
if (flags & RTF_BLACKHOLE) {
|
|
|
|
printf("Choose one of blackhole or reject, not both.\n");
|
|
|
|
}
|
2008-03-18 21:45:27 +00:00
|
|
|
flags |= RTF_REJECT;
|
1994-05-26 05:23:31 +00:00
|
|
|
} else if (strncmp(argv[0], "trail", 5) == 0) {
|
2004-04-13 14:16:37 +00:00
|
|
|
/* XXX deprecated and undocumented feature */
|
1994-05-26 05:23:31 +00:00
|
|
|
printf("%s: Sending trailers is no longer supported\n",
|
|
|
|
host);
|
|
|
|
}
|
|
|
|
argv++;
|
|
|
|
}
|
2002-04-06 09:01:44 +00:00
|
|
|
ea = (struct ether_addr *)LLADDR(&sdl_m);
|
1996-02-08 21:05:52 +00:00
|
|
|
if (doing_proxy && !strcmp(eaddr, "auto")) {
|
2004-04-13 14:16:37 +00:00
|
|
|
if (!get_ether_addr(dst->sin_addr.s_addr, ea)) {
|
2001-02-27 09:02:10 +00:00
|
|
|
printf("no interface found for %s\n",
|
2004-04-13 14:16:37 +00:00
|
|
|
inet_ntoa(dst->sin_addr));
|
1996-02-08 21:05:52 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2002-04-06 09:01:44 +00:00
|
|
|
sdl_m.sdl_alen = ETHER_ADDR_LEN;
|
1996-02-08 21:05:52 +00:00
|
|
|
} else {
|
2004-04-13 14:16:37 +00:00
|
|
|
struct ether_addr *ea1 = ether_aton(eaddr);
|
|
|
|
|
2006-02-09 12:49:39 +00:00
|
|
|
if (ea1 == NULL) {
|
2004-04-13 14:16:37 +00:00
|
|
|
warnx("invalid Ethernet address '%s'", eaddr);
|
2006-02-09 12:49:39 +00:00
|
|
|
return (1);
|
|
|
|
} else {
|
2004-04-13 14:16:37 +00:00
|
|
|
*ea = *ea1;
|
2002-04-06 09:01:44 +00:00
|
|
|
sdl_m.sdl_alen = ETHER_ADDR_LEN;
|
2004-04-13 14:16:37 +00:00
|
|
|
}
|
1996-02-08 21:05:52 +00:00
|
|
|
}
|
2009-12-30 21:35:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* In the case a proxy-arp entry is being added for
|
|
|
|
* a remote end point, the RTF_ANNOUNCE flag in the
|
|
|
|
* RTM_GET command is an indication to the kernel
|
|
|
|
* routing code that the interface associated with
|
|
|
|
* the prefix route covering the local end of the
|
|
|
|
* PPP link should be returned, on which ARP applies.
|
|
|
|
*/
|
|
|
|
rtm = rtmsg(RTM_GET, dst, &sdl_m);
|
|
|
|
if (rtm == NULL) {
|
|
|
|
warn("%s", host);
|
|
|
|
return (1);
|
|
|
|
}
|
2013-01-31 08:55:21 +00:00
|
|
|
addr = (struct sockaddr_in *)(rtm + 1);
|
2009-12-30 21:35:34 +00:00
|
|
|
sdl = (struct sockaddr_dl *)(SA_SIZE(addr) + (char *)addr);
|
2004-04-13 14:16:37 +00:00
|
|
|
|
2009-12-30 21:35:34 +00:00
|
|
|
if ((sdl->sdl_family != AF_LINK) ||
|
|
|
|
(rtm->rtm_flags & RTF_GATEWAY) ||
|
|
|
|
!valid_type(sdl->sdl_type)) {
|
1994-05-26 05:23:31 +00:00
|
|
|
printf("cannot intuit interface index and type for %s\n", host);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
sdl_m.sdl_type = sdl->sdl_type;
|
|
|
|
sdl_m.sdl_index = sdl->sdl_index;
|
2005-06-09 15:00:31 +00:00
|
|
|
return (rtmsg(RTM_ADD, dst, &sdl_m) == NULL);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display an individual arp entry
|
|
|
|
*/
|
2005-06-09 15:27:46 +00:00
|
|
|
static int
|
1996-02-08 21:05:52 +00:00
|
|
|
get(char *host)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *addr;
|
2004-04-13 14:16:37 +00:00
|
|
|
|
|
|
|
addr = getaddr(host);
|
|
|
|
if (addr == NULL)
|
2005-06-09 15:27:46 +00:00
|
|
|
return (1);
|
2004-04-13 08:34:52 +00:00
|
|
|
if (0 == search(addr->sin_addr.s_addr, print_entry)) {
|
2003-07-18 13:48:06 +00:00
|
|
|
printf("%s (%s) -- no entry",
|
2001-12-10 06:42:56 +00:00
|
|
|
host, inet_ntoa(addr->sin_addr));
|
2003-07-18 13:48:06 +00:00
|
|
|
if (rifname)
|
|
|
|
printf(" on %s", rifname);
|
|
|
|
printf("\n");
|
2005-06-09 15:27:46 +00:00
|
|
|
return (1);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
2005-06-09 15:27:46 +00:00
|
|
|
return (0);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1995-05-30 03:57:47 +00:00
|
|
|
* Delete an arp entry
|
1994-05-26 05:23:31 +00:00
|
|
|
*/
|
2004-04-13 08:34:52 +00:00
|
|
|
static int
|
2013-01-31 08:55:21 +00:00
|
|
|
delete(char *host)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *addr, *dst;
|
2004-04-13 08:34:52 +00:00
|
|
|
struct rt_msghdr *rtm;
|
1994-05-26 05:23:31 +00:00
|
|
|
struct sockaddr_dl *sdl;
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
struct sockaddr_dl sdl_m;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
dst = getaddr(host);
|
|
|
|
if (dst == NULL)
|
2005-06-09 15:27:46 +00:00
|
|
|
return (1);
|
2009-12-30 21:35:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform a regular entry delete first.
|
|
|
|
*/
|
|
|
|
flags &= ~RTF_ANNOUNCE;
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* setup the data structure to notify the kernel
|
|
|
|
* it is the ARP entry the RTM_GET is interested
|
|
|
|
* in
|
|
|
|
*/
|
|
|
|
bzero(&sdl_m, sizeof(sdl_m));
|
|
|
|
sdl_m.sdl_len = sizeof(sdl_m);
|
|
|
|
sdl_m.sdl_family = AF_LINK;
|
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
for (;;) { /* try twice */
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
rtm = rtmsg(RTM_GET, dst, &sdl_m);
|
2004-04-13 14:16:37 +00:00
|
|
|
if (rtm == NULL) {
|
|
|
|
warn("%s", host);
|
1994-05-26 05:23:31 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2013-01-31 08:55:21 +00:00
|
|
|
addr = (struct sockaddr_in *)(rtm + 1);
|
2004-04-13 14:16:37 +00:00
|
|
|
sdl = (struct sockaddr_dl *)(SA_SIZE(addr) + (char *)addr);
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* With the new L2/L3 restructure, the route
|
|
|
|
* returned is a prefix route. The important
|
|
|
|
* piece of information from the previous
|
|
|
|
* RTM_GET is the interface index. In the
|
|
|
|
* case of ECMP, the kernel will traverse
|
|
|
|
* the route group for the given entry.
|
|
|
|
*/
|
|
|
|
if (sdl->sdl_family == AF_LINK &&
|
2004-04-13 14:16:37 +00:00
|
|
|
!(rtm->rtm_flags & RTF_GATEWAY) &&
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
valid_type(sdl->sdl_type) ) {
|
|
|
|
addr->sin_addr.s_addr = dst->sin_addr.s_addr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2009-12-30 21:35:34 +00:00
|
|
|
/*
|
|
|
|
* Regualar entry delete failed, now check if there
|
|
|
|
* is a proxy-arp entry to remove.
|
|
|
|
*/
|
|
|
|
if (flags & RTF_ANNOUNCE) {
|
2004-04-13 14:16:37 +00:00
|
|
|
fprintf(stderr, "delete: cannot locate %s\n",host);
|
|
|
|
return (1);
|
|
|
|
}
|
2009-12-30 21:35:34 +00:00
|
|
|
|
|
|
|
flags |= RTF_ANNOUNCE;
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
2008-12-26 19:45:24 +00:00
|
|
|
rtm->rtm_flags |= RTF_LLDATA;
|
2004-04-13 14:16:37 +00:00
|
|
|
if (rtmsg(RTM_DELETE, dst, NULL) != NULL) {
|
2001-12-10 06:42:56 +00:00
|
|
|
printf("%s (%s) deleted\n", host, inet_ntoa(addr->sin_addr));
|
1996-02-08 21:05:52 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
return (1);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
2009-12-30 21:35:34 +00:00
|
|
|
|
1994-05-26 05:23:31 +00:00
|
|
|
/*
|
1997-11-13 01:16:57 +00:00
|
|
|
* Search the arp table and do some action on matching entries
|
1994-05-26 05:23:31 +00:00
|
|
|
*/
|
2004-04-13 08:34:52 +00:00
|
|
|
static int
|
|
|
|
search(u_long addr, action_fn *action)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
|
|
|
int mib[6];
|
|
|
|
size_t needed;
|
2009-12-29 15:48:04 +00:00
|
|
|
char *lim, *buf, *next;
|
1994-05-26 05:23:31 +00:00
|
|
|
struct rt_msghdr *rtm;
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *sin2;
|
1994-05-26 05:23:31 +00:00
|
|
|
struct sockaddr_dl *sdl;
|
2003-07-18 13:48:06 +00:00
|
|
|
char ifname[IF_NAMESIZE];
|
2005-01-24 13:27:24 +00:00
|
|
|
int st, found_entry = 0;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
mib[0] = CTL_NET;
|
|
|
|
mib[1] = PF_ROUTE;
|
|
|
|
mib[2] = 0;
|
|
|
|
mib[3] = AF_INET;
|
|
|
|
mib[4] = NET_RT_FLAGS;
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
#ifdef RTF_LLINFO
|
1994-05-26 05:23:31 +00:00
|
|
|
mib[5] = RTF_LLINFO;
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
#else
|
|
|
|
mib[5] = 0;
|
|
|
|
#endif
|
1994-05-26 05:23:31 +00:00
|
|
|
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
|
2004-04-09 14:27:28 +00:00
|
|
|
err(1, "route-sysctl-estimate");
|
2004-04-13 14:16:37 +00:00
|
|
|
if (needed == 0) /* empty table */
|
2004-04-13 08:34:52 +00:00
|
|
|
return 0;
|
2005-01-24 13:27:24 +00:00
|
|
|
buf = NULL;
|
2005-01-24 17:01:48 +00:00
|
|
|
for (;;) {
|
2009-12-29 15:48:04 +00:00
|
|
|
buf = reallocf(buf, needed);
|
|
|
|
if (buf == NULL)
|
2005-01-24 13:27:24 +00:00
|
|
|
errx(1, "could not reallocate memory");
|
|
|
|
st = sysctl(mib, 6, buf, &needed, NULL, 0);
|
2005-01-24 17:01:48 +00:00
|
|
|
if (st == 0 || errno != ENOMEM)
|
|
|
|
break;
|
|
|
|
needed += needed / 8;
|
|
|
|
}
|
2005-01-24 13:27:24 +00:00
|
|
|
if (st == -1)
|
2004-04-09 14:27:28 +00:00
|
|
|
err(1, "actual retrieval of routing table");
|
1994-05-26 05:23:31 +00:00
|
|
|
lim = buf + needed;
|
|
|
|
for (next = buf; next < lim; next += rtm->rtm_msglen) {
|
|
|
|
rtm = (struct rt_msghdr *)next;
|
2013-01-31 08:55:21 +00:00
|
|
|
sin2 = (struct sockaddr_in *)(rtm + 1);
|
2004-06-08 13:08:19 +00:00
|
|
|
sdl = (struct sockaddr_dl *)((char *)sin2 + SA_SIZE(sin2));
|
2003-07-18 13:48:06 +00:00
|
|
|
if (rifname && if_indextoname(sdl->sdl_index, ifname) &&
|
|
|
|
strcmp(ifname, rifname))
|
|
|
|
continue;
|
1994-05-26 05:23:31 +00:00
|
|
|
if (addr) {
|
2001-12-10 06:42:56 +00:00
|
|
|
if (addr != sin2->sin_addr.s_addr)
|
1994-05-26 05:23:31 +00:00
|
|
|
continue;
|
|
|
|
found_entry = 1;
|
|
|
|
}
|
2001-12-10 06:42:56 +00:00
|
|
|
(*action)(sdl, sin2, rtm);
|
1997-11-13 01:16:57 +00:00
|
|
|
}
|
2001-05-02 19:07:46 +00:00
|
|
|
free(buf);
|
2005-06-09 15:27:46 +00:00
|
|
|
return (found_entry);
|
1997-11-13 01:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display an arp entry
|
|
|
|
*/
|
2010-06-11 19:35:05 +00:00
|
|
|
static char lifname[IF_NAMESIZE];
|
|
|
|
static int64_t lifindex = -1;
|
|
|
|
|
2004-04-13 08:34:52 +00:00
|
|
|
static void
|
1997-11-13 01:16:57 +00:00
|
|
|
print_entry(struct sockaddr_dl *sdl,
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *addr, struct rt_msghdr *rtm)
|
1997-11-13 01:16:57 +00:00
|
|
|
{
|
2001-06-07 12:35:53 +00:00
|
|
|
const char *host;
|
1997-11-13 01:16:57 +00:00
|
|
|
struct hostent *hp;
|
2002-05-08 00:55:29 +00:00
|
|
|
struct iso88025_sockaddr_dl_data *trld;
|
1999-03-10 10:11:43 +00:00
|
|
|
int seg;
|
1997-11-13 01:16:57 +00:00
|
|
|
|
|
|
|
if (nflag == 0)
|
2001-12-10 06:42:56 +00:00
|
|
|
hp = gethostbyaddr((caddr_t)&(addr->sin_addr),
|
|
|
|
sizeof addr->sin_addr, AF_INET);
|
1997-11-13 01:16:57 +00:00
|
|
|
else
|
|
|
|
hp = 0;
|
|
|
|
if (hp)
|
|
|
|
host = hp->h_name;
|
|
|
|
else {
|
|
|
|
host = "?";
|
|
|
|
if (h_errno == TRY_AGAIN)
|
|
|
|
nflag = 1;
|
|
|
|
}
|
2001-12-10 06:42:56 +00:00
|
|
|
printf("%s (%s) at ", host, inet_ntoa(addr->sin_addr));
|
2004-06-13 10:57:10 +00:00
|
|
|
if (sdl->sdl_alen) {
|
2004-12-24 22:16:38 +00:00
|
|
|
if ((sdl->sdl_type == IFT_ETHER ||
|
2005-11-03 00:56:43 +00:00
|
|
|
sdl->sdl_type == IFT_L2VLAN ||
|
|
|
|
sdl->sdl_type == IFT_BRIDGE) &&
|
2004-06-13 10:57:10 +00:00
|
|
|
sdl->sdl_alen == ETHER_ADDR_LEN)
|
|
|
|
printf("%s", ether_ntoa((struct ether_addr *)LLADDR(sdl)));
|
|
|
|
else {
|
|
|
|
int n = sdl->sdl_nlen > 0 ? sdl->sdl_nlen + 1 : 0;
|
|
|
|
|
|
|
|
printf("%s", link_ntoa(sdl) + n);
|
|
|
|
}
|
|
|
|
} else
|
1997-11-13 01:16:57 +00:00
|
|
|
printf("(incomplete)");
|
2010-06-11 19:35:05 +00:00
|
|
|
if (sdl->sdl_index != lifindex &&
|
|
|
|
if_indextoname(sdl->sdl_index, lifname) != NULL) {
|
|
|
|
lifindex = sdl->sdl_index;
|
|
|
|
printf(" on %s", lifname);
|
|
|
|
} else if (sdl->sdl_index == lifindex)
|
|
|
|
printf(" on %s", lifname);
|
1997-11-13 01:16:57 +00:00
|
|
|
if (rtm->rtm_rmx.rmx_expire == 0)
|
|
|
|
printf(" permanent");
|
2010-02-15 14:29:17 +00:00
|
|
|
else {
|
2010-11-30 15:57:00 +00:00
|
|
|
static struct timespec tp;
|
|
|
|
if (tp.tv_sec == 0)
|
|
|
|
clock_gettime(CLOCK_MONOTONIC, &tp);
|
|
|
|
if ((expire_time = rtm->rtm_rmx.rmx_expire - tp.tv_sec) > 0)
|
2010-02-15 14:29:17 +00:00
|
|
|
printf(" expires in %d seconds", (int)expire_time);
|
|
|
|
else
|
|
|
|
printf(" expired");
|
|
|
|
}
|
This main goals of this project are:
1. separating L2 tables (ARP, NDP) from the L3 routing tables
2. removing as much locking dependencies among these layers as
possible to allow for some parallelism in the search operations
3. simplify the logic in the routing code,
The most notable end result is the obsolescent of the route
cloning (RTF_CLONING) concept, which translated into code reduction
in both IPv4 ARP and IPv6 NDP related modules, and size reduction in
struct rtentry{}. The change in design obsoletes the semantics of
RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland
applications such as "arp" and "ndp" have been modified to reflect
those changes. The output from "netstat -r" shows only the routing
entries.
Quite a few developers have contributed to this project in the
past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and
Andre Oppermann. And most recently:
- Kip Macy revised the locking code completely, thus completing
the last piece of the puzzle, Kip has also been conducting
active functional testing
- Sam Leffler has helped me improving/refactoring the code, and
provided valuable reviews
- Julian Elischer setup the perforce tree for me and has helped
me maintaining that branch before the svn conversion
2008-12-15 06:10:57 +00:00
|
|
|
if (rtm->rtm_flags & RTF_ANNOUNCE)
|
|
|
|
printf(" published");
|
|
|
|
switch(sdl->sdl_type) {
|
2004-04-13 08:34:52 +00:00
|
|
|
case IFT_ETHER:
|
1999-03-10 10:11:43 +00:00
|
|
|
printf(" [ethernet]");
|
|
|
|
break;
|
2004-04-13 08:34:52 +00:00
|
|
|
case IFT_ISO88025:
|
1999-03-10 10:11:43 +00:00
|
|
|
printf(" [token-ring]");
|
2002-05-08 00:55:29 +00:00
|
|
|
trld = SDL_ISO88025(sdl);
|
|
|
|
if (trld->trld_rcf != 0) {
|
|
|
|
printf(" rt=%x", ntohs(trld->trld_rcf));
|
|
|
|
for (seg = 0;
|
|
|
|
seg < ((TR_RCF_RIFLEN(trld->trld_rcf) - 2 ) / 2);
|
|
|
|
seg++)
|
2002-05-09 00:37:57 +00:00
|
|
|
printf(":%x", ntohs(*(trld->trld_route[seg])));
|
2002-05-08 00:55:29 +00:00
|
|
|
}
|
1999-03-10 10:11:43 +00:00
|
|
|
break;
|
2004-04-13 08:34:52 +00:00
|
|
|
case IFT_FDDI:
|
2001-10-19 00:33:26 +00:00
|
|
|
printf(" [fddi]");
|
|
|
|
break;
|
2004-04-13 08:34:52 +00:00
|
|
|
case IFT_ATM:
|
2001-10-19 00:33:26 +00:00
|
|
|
printf(" [atm]");
|
|
|
|
break;
|
2004-04-13 08:34:52 +00:00
|
|
|
case IFT_L2VLAN:
|
2001-04-04 15:14:06 +00:00
|
|
|
printf(" [vlan]");
|
|
|
|
break;
|
2004-06-13 10:57:10 +00:00
|
|
|
case IFT_IEEE1394:
|
|
|
|
printf(" [firewire]");
|
|
|
|
break;
|
2005-11-03 00:56:43 +00:00
|
|
|
case IFT_BRIDGE:
|
|
|
|
printf(" [bridge]");
|
|
|
|
break;
|
2004-04-13 08:34:52 +00:00
|
|
|
default:
|
2002-04-07 12:05:05 +00:00
|
|
|
break;
|
1999-03-10 10:11:43 +00:00
|
|
|
}
|
|
|
|
|
1997-11-13 01:16:57 +00:00
|
|
|
printf("\n");
|
1999-03-10 10:11:43 +00:00
|
|
|
|
1997-11-13 01:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nuke an arp entry
|
|
|
|
*/
|
2004-04-13 08:34:52 +00:00
|
|
|
static void
|
2001-12-10 06:42:56 +00:00
|
|
|
nuke_entry(struct sockaddr_dl *sdl __unused,
|
2013-01-31 08:55:21 +00:00
|
|
|
struct sockaddr_in *addr, struct rt_msghdr *rtm __unused)
|
1997-11-13 01:16:57 +00:00
|
|
|
{
|
|
|
|
char ip[20];
|
|
|
|
|
2001-12-10 06:42:56 +00:00
|
|
|
snprintf(ip, sizeof(ip), "%s", inet_ntoa(addr->sin_addr));
|
2013-01-31 08:55:21 +00:00
|
|
|
delete(ip);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
2004-04-13 08:34:52 +00:00
|
|
|
static void
|
1996-02-08 21:05:52 +00:00
|
|
|
usage(void)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
1997-11-13 01:16:57 +00:00
|
|
|
fprintf(stderr, "%s\n%s\n%s\n%s\n%s\n%s\n%s\n",
|
2003-07-18 13:48:06 +00:00
|
|
|
"usage: arp [-n] [-i interface] hostname",
|
|
|
|
" arp [-n] [-i interface] -a",
|
2001-06-07 12:35:53 +00:00
|
|
|
" arp -d hostname [pub]",
|
2006-01-10 16:15:58 +00:00
|
|
|
" arp -d [-i interface] -a",
|
2008-12-25 06:44:19 +00:00
|
|
|
" arp -s hostname ether_addr [temp] [reject | blackhole] [pub [only]]",
|
|
|
|
" arp -S hostname ether_addr [temp] [reject | blackhole] [pub [only]]",
|
1997-09-03 06:32:31 +00:00
|
|
|
" arp -f filename");
|
1994-05-26 05:23:31 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2004-04-13 08:34:52 +00:00
|
|
|
static struct rt_msghdr *
|
2013-01-31 08:55:21 +00:00
|
|
|
rtmsg(int cmd, struct sockaddr_in *dst, struct sockaddr_dl *sdl)
|
1994-05-26 05:23:31 +00:00
|
|
|
{
|
|
|
|
static int seq;
|
|
|
|
int rlen;
|
2004-04-13 08:34:52 +00:00
|
|
|
int l;
|
2008-01-10 04:26:44 +00:00
|
|
|
struct sockaddr_in so_mask, *som = &so_mask;
|
2004-04-13 08:34:52 +00:00
|
|
|
static int s = -1;
|
|
|
|
static pid_t pid;
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
struct rt_msghdr m_rtm;
|
|
|
|
char m_space[512];
|
|
|
|
} m_rtmsg;
|
|
|
|
|
2004-04-09 14:27:28 +00:00
|
|
|
struct rt_msghdr *rtm = &m_rtmsg.m_rtm;
|
|
|
|
char *cp = m_rtmsg.m_space;
|
2004-04-13 08:34:52 +00:00
|
|
|
|
|
|
|
if (s < 0) { /* first time: open socket, get pid */
|
|
|
|
s = socket(PF_ROUTE, SOCK_RAW, 0);
|
|
|
|
if (s < 0)
|
|
|
|
err(1, "socket");
|
|
|
|
pid = getpid();
|
|
|
|
}
|
|
|
|
bzero(&so_mask, sizeof(so_mask));
|
|
|
|
so_mask.sin_len = 8;
|
|
|
|
so_mask.sin_addr.s_addr = 0xffffffff;
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
errno = 0;
|
2004-04-13 14:16:37 +00:00
|
|
|
/*
|
|
|
|
* XXX RTM_DELETE relies on a previous RTM_GET to fill the buffer
|
|
|
|
* appropriately.
|
|
|
|
*/
|
1994-05-26 05:23:31 +00:00
|
|
|
if (cmd == RTM_DELETE)
|
|
|
|
goto doit;
|
|
|
|
bzero((char *)&m_rtmsg, sizeof(m_rtmsg));
|
|
|
|
rtm->rtm_flags = flags;
|
|
|
|
rtm->rtm_version = RTM_VERSION;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
default:
|
1997-09-03 06:32:31 +00:00
|
|
|
errx(1, "internal wrong cmd");
|
1994-05-26 05:23:31 +00:00
|
|
|
case RTM_ADD:
|
|
|
|
rtm->rtm_addrs |= RTA_GATEWAY;
|
|
|
|
rtm->rtm_rmx.rmx_expire = expire_time;
|
|
|
|
rtm->rtm_inits = RTV_EXPIRE;
|
2008-12-26 19:45:24 +00:00
|
|
|
rtm->rtm_flags |= (RTF_HOST | RTF_STATIC | RTF_LLDATA);
|
1994-05-26 05:23:31 +00:00
|
|
|
if (doing_proxy) {
|
2013-01-31 08:55:21 +00:00
|
|
|
rtm->rtm_addrs |= RTA_NETMASK;
|
|
|
|
rtm->rtm_flags &= ~RTF_HOST;
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case RTM_GET:
|
|
|
|
rtm->rtm_addrs |= RTA_DST;
|
|
|
|
}
|
2009-06-11 07:50:36 +00:00
|
|
|
#define NEXTADDR(w, s) \
|
|
|
|
do { \
|
|
|
|
if ((s) != NULL && rtm->rtm_addrs & (w)) { \
|
|
|
|
bcopy((s), cp, sizeof(*(s))); \
|
|
|
|
cp += SA_SIZE(s); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
1994-05-26 05:23:31 +00:00
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
NEXTADDR(RTA_DST, dst);
|
|
|
|
NEXTADDR(RTA_GATEWAY, sdl);
|
2008-01-10 04:26:44 +00:00
|
|
|
NEXTADDR(RTA_NETMASK, som);
|
1994-05-26 05:23:31 +00:00
|
|
|
|
|
|
|
rtm->rtm_msglen = cp - (char *)&m_rtmsg;
|
|
|
|
doit:
|
|
|
|
l = rtm->rtm_msglen;
|
|
|
|
rtm->rtm_seq = ++seq;
|
|
|
|
rtm->rtm_type = cmd;
|
|
|
|
if ((rlen = write(s, (char *)&m_rtmsg, l)) < 0) {
|
|
|
|
if (errno != ESRCH || cmd != RTM_DELETE) {
|
1997-09-03 06:32:31 +00:00
|
|
|
warn("writing to routing socket");
|
2005-06-09 15:27:46 +00:00
|
|
|
return (NULL);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
l = read(s, (char *)&m_rtmsg, sizeof(m_rtmsg));
|
|
|
|
} while (l > 0 && (rtm->rtm_seq != seq || rtm->rtm_pid != pid));
|
|
|
|
if (l < 0)
|
1997-09-03 06:32:31 +00:00
|
|
|
warn("read from routing socket");
|
2005-06-09 15:27:46 +00:00
|
|
|
return (rtm);
|
1994-05-26 05:23:31 +00:00
|
|
|
}
|
|
|
|
|
1996-02-08 21:05:52 +00:00
|
|
|
/*
|
|
|
|
* get_ether_addr - get the hardware address of an interface on the
|
|
|
|
* the same subnet as ipaddr.
|
|
|
|
*/
|
|
|
|
#define MAX_IFS 32
|
|
|
|
|
2004-04-13 08:34:52 +00:00
|
|
|
static int
|
2005-06-09 15:27:46 +00:00
|
|
|
get_ether_addr(in_addr_t ipaddr, struct ether_addr *hwaddr)
|
1996-02-08 21:05:52 +00:00
|
|
|
{
|
|
|
|
struct ifreq *ifr, *ifend, *ifp;
|
2005-06-09 15:27:46 +00:00
|
|
|
in_addr_t ina, mask;
|
1996-02-08 21:05:52 +00:00
|
|
|
struct sockaddr_dl *dla;
|
|
|
|
struct ifreq ifreq;
|
|
|
|
struct ifconf ifc;
|
|
|
|
struct ifreq ifs[MAX_IFS];
|
2001-12-10 06:42:56 +00:00
|
|
|
int sock;
|
2004-04-13 14:16:37 +00:00
|
|
|
int retval = 0;
|
1996-02-08 21:05:52 +00:00
|
|
|
|
2001-12-10 06:42:56 +00:00
|
|
|
sock = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (sock < 0)
|
1997-09-03 06:32:31 +00:00
|
|
|
err(1, "socket");
|
1996-02-08 21:05:52 +00:00
|
|
|
|
|
|
|
ifc.ifc_len = sizeof(ifs);
|
|
|
|
ifc.ifc_req = ifs;
|
2002-03-20 01:31:15 +00:00
|
|
|
if (ioctl(sock, SIOCGIFCONF, &ifc) < 0) {
|
1997-09-03 06:32:31 +00:00
|
|
|
warnx("ioctl(SIOCGIFCONF)");
|
2004-04-13 14:16:37 +00:00
|
|
|
goto done;
|
1996-02-08 21:05:52 +00:00
|
|
|
}
|
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
#define NEXTIFR(i) \
|
|
|
|
((struct ifreq *)((char *)&(i)->ifr_addr \
|
|
|
|
+ MAX((i)->ifr_addr.sa_len, sizeof((i)->ifr_addr))) )
|
|
|
|
|
1996-02-08 21:05:52 +00:00
|
|
|
/*
|
2004-04-13 14:16:37 +00:00
|
|
|
* Scan through looking for an interface with an Internet
|
|
|
|
* address on the same subnet as `ipaddr'.
|
|
|
|
*/
|
|
|
|
ifend = (struct ifreq *)(ifc.ifc_buf + ifc.ifc_len);
|
|
|
|
for (ifr = ifc.ifc_req; ifr < ifend; ifr = NEXTIFR(ifr) ) {
|
|
|
|
if (ifr->ifr_addr.sa_family != AF_INET)
|
|
|
|
continue;
|
|
|
|
strncpy(ifreq.ifr_name, ifr->ifr_name,
|
|
|
|
sizeof(ifreq.ifr_name));
|
2006-10-13 12:38:43 +00:00
|
|
|
ifreq.ifr_addr = ifr->ifr_addr;
|
2004-04-13 14:16:37 +00:00
|
|
|
/*
|
|
|
|
* Check that the interface is up,
|
|
|
|
* and not point-to-point or loopback.
|
|
|
|
*/
|
|
|
|
if (ioctl(sock, SIOCGIFFLAGS, &ifreq) < 0)
|
|
|
|
continue;
|
|
|
|
if ((ifreq.ifr_flags &
|
|
|
|
(IFF_UP|IFF_BROADCAST|IFF_POINTOPOINT|
|
|
|
|
IFF_LOOPBACK|IFF_NOARP))
|
|
|
|
!= (IFF_UP|IFF_BROADCAST))
|
|
|
|
continue;
|
|
|
|
/*
|
|
|
|
* Get its netmask and check that it's on
|
|
|
|
* the right subnet.
|
|
|
|
*/
|
|
|
|
if (ioctl(sock, SIOCGIFNETMASK, &ifreq) < 0)
|
|
|
|
continue;
|
|
|
|
mask = ((struct sockaddr_in *)
|
|
|
|
&ifreq.ifr_addr)->sin_addr.s_addr;
|
|
|
|
ina = ((struct sockaddr_in *)
|
|
|
|
&ifr->ifr_addr)->sin_addr.s_addr;
|
|
|
|
if ((ipaddr & mask) == (ina & mask))
|
|
|
|
break; /* ok, we got it! */
|
1996-02-08 21:05:52 +00:00
|
|
|
}
|
|
|
|
|
2004-04-13 14:16:37 +00:00
|
|
|
if (ifr >= ifend)
|
|
|
|
goto done;
|
1996-02-08 21:05:52 +00:00
|
|
|
|
|
|
|
/*
|
2004-04-13 14:16:37 +00:00
|
|
|
* Now scan through again looking for a link-level address
|
|
|
|
* for this interface.
|
|
|
|
*/
|
1996-02-08 21:05:52 +00:00
|
|
|
ifp = ifr;
|
2004-04-13 14:16:37 +00:00
|
|
|
for (ifr = ifc.ifc_req; ifr < ifend; ifr = NEXTIFR(ifr))
|
|
|
|
if (strcmp(ifp->ifr_name, ifr->ifr_name) == 0 &&
|
|
|
|
ifr->ifr_addr.sa_family == AF_LINK)
|
|
|
|
break;
|
|
|
|
if (ifr >= ifend)
|
|
|
|
goto done;
|
|
|
|
/*
|
|
|
|
* Found the link-level address - copy it out
|
|
|
|
*/
|
|
|
|
dla = (struct sockaddr_dl *) &ifr->ifr_addr;
|
|
|
|
memcpy(hwaddr, LLADDR(dla), dla->sdl_alen);
|
|
|
|
printf("using interface %s for proxy with address ",
|
|
|
|
ifp->ifr_name);
|
|
|
|
printf("%s\n", ether_ntoa(hwaddr));
|
|
|
|
retval = dla->sdl_alen;
|
|
|
|
done:
|
|
|
|
close(sock);
|
2005-06-09 15:27:46 +00:00
|
|
|
return (retval);
|
1996-02-08 21:05:52 +00:00
|
|
|
}
|