2 * arp This file contains an implementation of the command
3 * that maintains the kernel's ARP cache. It is derived
4 * from Berkeley UNIX arp(8), but cleaner and with sup-
5 * port for devices other than Ethernet.
7 * NET-TOOLS A collection of programs that form the base set of the
8 * NET-3 Networking Distribution for the LINUX operating
11 * Version: $Id: arp.c,v 1.21 2001/05/06 02:14:07 ecki Exp $
13 * Maintainer: Bernd 'eckes' Eckenfels, <net-tools@lina.inka.de>
15 * Author: Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
18 * (based on work from Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>)
19 * Alan Cox : modified for NET3
20 * Andrew Tridgell : proxy arp netmasks
21 * Bernd Eckenfels : -n option
22 * Bernd Eckenfels : Use only /proc for display
23 * {1.60} Bernd Eckenfels : new arpcode (-i) for 1.3.42 but works
25 * {1.61} Bernd Eckenfels : more verbose messages
26 * {1.62} Bernd Eckenfels : check -t for hw adresses and try to
27 * explain EINVAL (jeff)
28 *970125 {1.63} Bernd Eckenfels : -a print hardwarename instead of tiltle
29 *970201 {1.64} Bernd Eckenfels : net-features.h support
30 *970203 {1.65} Bernd Eckenfels : "#define" in "#if",
31 * -H|-A additional to -t|-p
32 *970214 {1.66} Bernd Eckenfels : Fix optarg required for -H and -A
33 *970412 {1.67} Bernd Eckenfels : device=""; is default
34 *970514 {1.68} Bernd Eckenfels : -N and -D
35 *970517 {1.69} Bernd Eckenfels : usage() fixed
36 *970622 {1.70} Bernd Eckenfels : arp -d priv
37 *970106 {1.80} Bernd Eckenfels : new syntax without -D and with "dev <If>",
38 * ATF_MAGIC, ATF_DONTPUB support.
39 * Typo fix (Debian Bug#5728 Giuliano Procida)
40 *970803 {1.81} Bernd Eckenfels : removed junk comment line 1
41 *970925 {1.82} Bernd Eckenfels : include fix for libc6
42 *980213 (1.83) Phil Blundell: set ATF_COM on new entries
43 *980629 (1.84) Arnaldo Carvalho de Melo: gettext instead of catgets
44 *990101 {1.85} Bernd Eckenfels fixed usage and return codes
45 *990105 (1.86) Phil Blundell: don't ignore EINVAL in arp_set
46 *991121 (1.87) Bernd Eckenfels: yes --device has a mandatory arg
47 *010404 (1.88) Arnaldo Carvalho de Melo: use setlocale
49 * This program is free software; you can redistribute it
50 * and/or modify it under the terms of the GNU General
51 * Public License as published by the Free Software
52 * Foundation; either version 2 of the License, or (at
53 * your option) any later version.
55 #include <sys/types.h>
56 #include <sys/socket.h>
57 #include <sys/ioctl.h>
59 /* #include <linux/netdevice.h> */
60 /* #include <linux/if_arp.h> */
61 #include <net/if_arp.h>
70 #include "net-support.h"
71 #include "pathnames.h"
77 #define DFLT_AF "inet"
78 #define DFLT_HW "ether"
81 #include "lib/net-features.h"
83 char *Release
= RELEASE
, *Version
= "arp 1.88 (2001-04-04)";
85 int opt_n
= 0; /* do not resolve addresses */
86 int opt_N
= 0; /* use symbolic names */
87 int opt_v
= 0; /* debugging output flag */
88 int opt_D
= 0; /* HW-address is devicename */
89 int opt_e
= 0; /* 0=BSD output, 1=new linux */
90 int opt_a
= 0; /* all entries, substring match */
91 struct aftype
*ap
; /* current address family */
92 struct hwtype
*hw
; /* current hardware type */
93 int sockfd
= 0; /* active socket descriptor */
94 int hw_set
= 0; /* flag if hw-type was set (-H) */
95 char device
[16] = ""; /* current device */
96 static void usage(void);
98 /* Delete an entry from the ARP cache. */
99 static int arp_del(char **args
)
107 memset((char *) &req
, 0, sizeof(req
));
109 /* Resolve the host name. */
111 fprintf(stderr
, _("arp: need host name\n"));
114 safe_strncpy(host
, *args
, (sizeof host
));
115 if (ap
->input(0, host
, &sa
) < 0) {
119 /* If a host has more than one address, use the correct one! */
120 memcpy((char *) &req
.arp_pa
, (char *) &sa
, sizeof(struct sockaddr
));
123 req
.arp_ha
.sa_family
= hw
->type
;
125 req
.arp_flags
= ATF_PERM
;
127 while (*args
!= NULL
) {
129 fprintf(stderr
, "args=%s\n", *args
);
130 if (!strcmp(*args
, "pub")) {
135 if (!strcmp(*args
, "priv")) {
140 if (!strcmp(*args
, "temp")) {
141 req
.arp_flags
&= ~ATF_PERM
;
145 if (!strcmp(*args
, "trail")) {
146 req
.arp_flags
|= ATF_USETRAILERS
;
150 if (!strcmp(*args
, "dontpub")) {
151 #ifdef HAVE_ATF_DONTPUB
152 req
.arp_flags
|= ATF_DONTPUB
;
154 ENOSUPP("arp", "ATF_DONTPUB");
159 if (!strcmp(*args
, "auto")) {
160 #ifdef HAVE_ATF_MAGIC
161 req
.arp_flags
|= ATF_MAGIC
;
163 ENOSUPP("arp", "ATF_MAGIC");
168 if (!strcmp(*args
, "dev")) {
171 safe_strncpy(device
, *args
, sizeof(device
));
175 if (!strcmp(*args
, "netmask")) {
178 if (strcmp(*args
, "255.255.255.255") != 0) {
180 if (ap
->input(0, host
, &sa
) < 0) {
184 memcpy((char *) &req
.arp_netmask
, (char *) &sa
,
185 sizeof(struct sockaddr
));
186 req
.arp_flags
|= ATF_NETMASK
;
196 strcpy(req
.arp_dev
, device
);
200 /* Call the kernel. */
203 fprintf(stderr
, "arp: SIOCDARP(nopub)\n");
204 if ((err
= ioctl(sockfd
, SIOCDARP
, &req
) < 0)) {
205 if (errno
== ENXIO
) {
208 printf(_("No ARP entry for %s\n"), host
);
211 perror("SIOCDARP(priv)");
215 if ((flags
& 1) && (err
)) {
217 req
.arp_flags
|= ATF_PUBL
;
219 fprintf(stderr
, "arp: SIOCDARP(pub)\n");
220 if (ioctl(sockfd
, SIOCDARP
, &req
) < 0) {
221 if (errno
== ENXIO
) {
222 printf(_("No ARP entry for %s\n"), host
);
225 perror("SIOCDARP(pub)");
232 /* Get the hardware address to a specified interface name */
233 static int arp_getdevhw(char *ifname
, struct sockaddr
*sa
, struct hwtype
*hw
)
238 strcpy(ifr
.ifr_name
, ifname
);
239 if (ioctl(sockfd
, SIOCGIFHWADDR
, &ifr
) < 0) {
240 fprintf(stderr
, _("arp: cant get HW-Address for `%s': %s.\n"), ifname
, strerror(errno
));
243 if (hw
&& (ifr
.ifr_hwaddr
.sa_family
!= hw
->type
)) {
244 fprintf(stderr
, _("arp: protocol type mismatch.\n"));
247 memcpy((char *) sa
, (char *) &(ifr
.ifr_hwaddr
), sizeof(struct sockaddr
));
250 if (!(xhw
= get_hwntype(ifr
.ifr_hwaddr
.sa_family
)) || (xhw
->print
== 0)) {
251 xhw
= get_hwntype(-1);
253 fprintf(stderr
, _("arp: device `%s' has HW address %s `%s'.\n"), ifname
, xhw
->name
, xhw
->print((char *)&ifr
.ifr_hwaddr
.sa_data
));
258 /* Set an entry in the ARP cache. */
259 static int arp_set(char **args
)
266 memset((char *) &req
, 0, sizeof(req
));
268 /* Resolve the host name. */
270 fprintf(stderr
, _("arp: need host name\n"));
273 safe_strncpy(host
, *args
++, (sizeof host
));
274 if (ap
->input(0, host
, &sa
) < 0) {
278 /* If a host has more than one address, use the correct one! */
279 memcpy((char *) &req
.arp_pa
, (char *) &sa
, sizeof(struct sockaddr
));
281 /* Fetch the hardware address. */
283 fprintf(stderr
, _("arp: need hardware address\n"));
287 if (arp_getdevhw(*args
++, &req
.arp_ha
, hw_set
? hw
: NULL
) < 0)
290 if (hw
->input(*args
++, &req
.arp_ha
) < 0) {
291 fprintf(stderr
, _("arp: invalid hardware address\n"));
296 /* Check out any modifiers. */
297 flags
= ATF_PERM
| ATF_COM
;
298 while (*args
!= NULL
) {
299 if (!strcmp(*args
, "temp")) {
304 if (!strcmp(*args
, "pub")) {
309 if (!strcmp(*args
, "priv")) {
314 if (!strcmp(*args
, "trail")) {
315 flags
|= ATF_USETRAILERS
;
319 if (!strcmp(*args
, "dontpub")) {
320 #ifdef HAVE_ATF_DONTPUB
321 flags
|= ATF_DONTPUB
;
323 ENOSUPP("arp", "ATF_DONTPUB");
328 if (!strcmp(*args
, "auto")) {
329 #ifdef HAVE_ATF_MAGIC
332 ENOSUPP("arp", "ATF_MAGIC");
337 if (!strcmp(*args
, "dev")) {
340 safe_strncpy(device
, *args
, sizeof(device
));
344 if (!strcmp(*args
, "netmask")) {
347 if (strcmp(*args
, "255.255.255.255") != 0) {
349 if (ap
->input(0, host
, &sa
) < 0) {
353 memcpy((char *) &req
.arp_netmask
, (char *) &sa
,
354 sizeof(struct sockaddr
));
355 flags
|= ATF_NETMASK
;
363 /* Fill in the remainder of the request. */
364 req
.arp_flags
= flags
;
366 strcpy(req
.arp_dev
, device
);
368 /* Call the kernel. */
370 fprintf(stderr
, "arp: SIOCSARP()\n");
371 if (ioctl(sockfd
, SIOCSARP
, &req
) < 0) {
379 /* Process an EtherFile */
380 static int arp_file(char *name
)
387 if ((fp
= fopen(name
, "r")) == NULL
) {
388 fprintf(stderr
, _("arp: cannot open etherfile %s !\n"), name
);
391 /* Read the lines in the file. */
393 while (fgets(buff
, sizeof(buff
), fp
) != (char *) NULL
) {
396 fprintf(stderr
, ">> %s", buff
);
397 if ((sp
= strchr(buff
, '\n')) != (char *) NULL
)
399 if (buff
[0] == '#' || buff
[0] == '\0')
402 argc
= getargs(buff
, args
);
404 fprintf(stderr
, _("arp: format error on line %u of etherfile %s !\n"),
408 if (strchr (args
[0], ':') != NULL
) {
409 /* We have a correct ethers file, switch hw adress and hostname
416 if (arp_set(args
) != 0)
417 fprintf(stderr
, _("arp: cannot set entry on line %u of etherfile %s !\n"),
426 /* Print the contents of an ARP request block. */
427 static void arp_disp_2(char *name
, int type
, int arp_flags
, char *hwa
, char *mask
, char *dev
)
429 static int title
= 0;
433 xhw
= get_hwntype(type
);
435 xhw
= get_hwtype(DFLT_HW
);
438 printf(_("Address HWtype HWaddress Flags Mask Iface\n"));
440 /* Setup the flags. */
442 if (arp_flags
& ATF_COM
)
444 if (arp_flags
& ATF_PERM
)
446 if (arp_flags
& ATF_PUBL
)
448 #ifdef HAVE_ATF_MAGIC
449 if (arp_flags
& ATF_MAGIC
)
452 #ifdef HAVE_ATF_DONTPUB
453 if (arp_flags
& ATF_DONTPUB
)
456 if (arp_flags
& ATF_USETRAILERS
)
459 if (!(arp_flags
& ATF_NETMASK
))
462 printf("%-23.23s ", name
);
464 if (!(arp_flags
& ATF_COM
)) {
465 if (arp_flags
& ATF_PUBL
)
466 printf("%-8.8s%-20.20s", "*", "*");
468 printf("%-8.8s%-20.20s", "", _("(incomplete)"));
470 printf("%-8.8s%-20.20s", xhw
->name
, hwa
);
473 printf("%-6.6s%-15.15s %s\n", flags
, mask
, dev
);
476 /* Print the contents of an ARP request block. */
477 static void arp_disp(char *name
, char *ip
, int type
, int arp_flags
, char *hwa
, char *mask
, char *dev
)
481 xhw
= get_hwntype(type
);
483 xhw
= get_hwtype(DFLT_HW
);
485 printf(_("%s (%s) at "), name
, ip
);
487 if (!(arp_flags
& ATF_COM
)) {
488 if (arp_flags
& ATF_PUBL
)
491 printf(_("<incomplete> "));
493 printf("%s [%s] ", hwa
, xhw
->name
);
496 if (arp_flags
& ATF_NETMASK
)
497 printf(_("netmask %s "), mask
);
499 if (arp_flags
& ATF_PERM
)
501 if (arp_flags
& ATF_PUBL
)
503 #ifdef HAVE_ATF_MAGIC
504 if (arp_flags
& ATF_MAGIC
)
507 #ifdef HAVE_ATF_DONTPUB
508 if (arp_flags
& ATF_DONTPUB
)
511 if (arp_flags
& ATF_USETRAILERS
)
514 printf(_("on %s\n"), dev
);
518 /* Display the contents of the ARP cache in the kernel. */
519 static int arp_show(char *name
)
531 int num
, entries
= 0, showed
= 0;
536 /* Resolve the host name. */
537 safe_strncpy(host
, name
, (sizeof host
));
538 if (ap
->input(0, host
, &sa
) < 0) {
542 safe_strncpy(host
, ap
->sprint(&sa
, 1), sizeof(host
));
544 /* Open the PROCps kernel table. */
545 if ((fp
= fopen(_PATH_PROCNET_ARP
, "r")) == NULL
) {
546 perror(_PATH_PROCNET_ARP
);
549 /* Bypass header -- read until newline */
550 if (fgets(line
, sizeof(line
), fp
) != (char *) NULL
) {
553 /* Read the ARP cache entries. */
554 for (; fgets(line
, sizeof(line
), fp
);) {
555 num
= sscanf(line
, "%s 0x%x 0x%x %100s %100s %100s\n",
556 ip
, &type
, &flags
, hwa
, mask
, dev
);
561 /* if the user specified hw-type differs, skip it */
562 if (hw_set
&& (type
!= hw
->type
))
565 /* if the user specified address differs, skip it */
566 if (host
[0] && strcmp(ip
, host
))
569 /* if the user specified device differs, skip it */
570 if (device
[0] && strcmp(dev
, device
))
574 /* This IS ugly but it works -be */
578 if (ap
->input(0, ip
, &sa
) < 0)
581 hostname
= ap
->sprint(&sa
, opt_n
| 0x8000);
582 if (strcmp(hostname
, ip
) == 0)
587 arp_disp_2(hostname
[0] == '?' ? ip
: hostname
, type
, flags
, hwa
, mask
, dev
);
589 arp_disp(hostname
, ip
, type
, flags
, hwa
, mask
, dev
);
593 printf(_("Entries: %d\tSkipped: %d\tFound: %d\n"), entries
, entries
- showed
, showed
);
596 if (host
[0] && !opt_a
)
597 printf(_("%s (%s) -- no entry\n"), name
, host
);
598 else if (hw_set
|| host
[0] || device
[0]) {
599 printf(_("arp: in %d entries no match found.\n"), entries
);
606 static void version(void)
608 fprintf(stderr
, "%s\n%s\n%s\n", Release
, Version
, Features
);
612 static void usage(void)
614 fprintf(stderr
, _("Usage:\n arp [-vn] [<HW>] [-i <if>] [-a] [<hostname>] <-Display ARP cache\n"));
615 fprintf(stderr
, _(" arp [-v] [-i <if>] -d <hostname> [pub][nopub] <-Delete ARP entry\n"));
616 fprintf(stderr
, _(" arp [-vnD] [<HW>] [-i <if>] -f [<filename>] <-Add entry from file\n"));
617 fprintf(stderr
, _(" arp [-v] [<HW>] [-i <if>] -s <hostname> <hwaddr> [temp][nopub] <-Add entry\n"));
618 fprintf(stderr
, _(" arp [-v] [<HW>] [-i <if>] -s <hostname> <hwaddr> [netmask <nm>] pub <-''-\n"));
619 fprintf(stderr
, _(" arp [-v] [<HW>] [-i <if>] -Ds <hostname> <if> [netmask <nm>] pub <-''-\n\n"));
621 fprintf(stderr
, _(" -a display (all) hosts in alternative (BSD) style\n"));
622 fprintf(stderr
, _(" -s, --set set a new ARP entry\n"));
623 fprintf(stderr
, _(" -d, --delete delete a specified entry\n"));
624 fprintf(stderr
, _(" -v, --verbose be verbose\n"));
625 fprintf(stderr
, _(" -n, --numeric don't resolve names\n"));
626 fprintf(stderr
, _(" -i, --device specify network interface (e.g. eth0)\n"));
627 fprintf(stderr
, _(" -D, --use-device read <hwaddr> from given device\n"));
628 fprintf(stderr
, _(" -A, -p, --protocol specify protocol family\n"));
629 fprintf(stderr
, _(" -f, --file read new entries from file or from /etc/ethers\n\n"));
631 fprintf(stderr
, _(" <HW>=Use '-H <hw>' to specify hardware address type. Default: %s\n"), DFLT_HW
);
632 fprintf(stderr
, _(" List of possible hardware types (which support ARP):\n"));
633 print_hwlist(1); /* 1 = ARPable */
637 int main(int argc
, char **argv
)
640 struct option longopts
[] =
642 {"verbose", 0, 0, 'v'},
643 {"version", 0, 0, 'V'},
645 {"delete", 0, 0, 'd'},
647 {"numeric", 0, 0, 'n'},
649 {"protocol", 1, 0, 'A'},
650 {"hw-type", 1, 0, 'H'},
651 {"device", 1, 0, 'i'},
653 {"use-device", 0, 0, 'D'},
654 {"symbolic", 0, 0, 'N'},
659 setlocale (LC_ALL
, "");
660 bindtextdomain("net-tools", "/usr/share/locale");
661 textdomain("net-tools");
664 /* Initialize variables... */
665 if ((hw
= get_hwtype(DFLT_HW
)) == NULL
) {
666 fprintf(stderr
, _("%s: hardware type not supported!\n"), DFLT_HW
);
669 if ((ap
= get_aftype(DFLT_AF
)) == NULL
) {
670 fprintf(stderr
, _("%s: address family not supported!\n"), DFLT_AF
);
675 /* Fetch the command-line arguments. */
677 while ((i
= getopt_long(argc
, argv
, "A:H:adfp:nsei:t:vh?DNV", longopts
, &lop
)) != EOF
)
705 fprintf(stderr
, _("arp: -N not yet supported.\n"));
713 ap
= get_aftype(optarg
);
715 fprintf(stderr
, _("arp: %s: unknown address family.\n"),
722 hw
= get_hwtype(optarg
);
724 fprintf(stderr
, _("arp: %s: unknown hardware type.\n"),
731 safe_strncpy(device
, optarg
, sizeof(device
));
742 if (ap
->af
!= AF_INET
) {
743 fprintf(stderr
, _("arp: %s: kernel only supports 'inet'.\n"),
748 /* If not hw type specified get default */
750 if ((hw
= get_hwtype(DFLT_HW
)) == NULL
) {
751 fprintf(stderr
, _("%s: hardware type not supported!\n"), DFLT_HW
);
756 fprintf(stderr
, _("arp: %s: hardware type without ARP support.\n"),
760 if ((sockfd
= socket(AF_INET
, SOCK_DGRAM
, 0)) < 0) {
764 /* Now see what we have to do here... */
768 what
= arp_show(argv
[optind
]);
771 case 1: /* show an ARP entry in the cache */
772 what
= arp_show(argv
[optind
]);
775 case 2: /* process an EtherFile */
776 what
= arp_file(argv
[optind
] ? argv
[optind
] : "/etc/ethers");
779 case 3: /* delete an ARP entry from the cache */
780 what
= arp_del(&argv
[optind
]);
783 case 4: /* set an ARP entry in the cache */
784 what
= arp_set(&argv
[optind
]);