1 /* vi: set sw=4 ts=4: */
3 * arp.c - Manipulate the system ARP cache
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
10 * Author: Fred N. van Kempen, <waltje at uwalt.nl.mugnet.org>
11 * Busybox port: Paul van Gool <pvangool at mimotech.com>
13 * modified for getopt32 by Arne Bernin <arne [at] alamut.de>
16 //config: bool "arp (11 kb)"
18 //config: select PLATFORM_LINUX
20 //config: Manipulate the system ARP cache.
22 //applet:IF_ARP(APPLET(arp, BB_DIR_SBIN, BB_SUID_DROP))
24 //kbuild:lib-$(CONFIG_ARP) += arp.o interface.o
26 //usage:#define arp_trivial_usage
27 //usage: "\n[-vn] [-H HWTYPE] [-i IF] -a [HOSTNAME]"
28 //usage: "\n[-v] [-i IF] -d HOSTNAME [pub]"
29 //usage: "\n[-v] [-H HWTYPE] [-i IF] -s HOSTNAME HWADDR [temp]"
30 //usage: "\n[-v] [-H HWTYPE] [-i IF] -s HOSTNAME HWADDR [netmask MASK] pub"
31 //usage: "\n[-v] [-H HWTYPE] [-i IF] -Ds HOSTNAME IFACE [netmask MASK] pub"
32 //usage:#define arp_full_usage "\n\n"
33 //usage: "Manipulate ARP cache\n"
34 //usage: "\n -a Display (all) hosts"
35 //usage: "\n -d Delete ARP entry"
36 //usage: "\n -s Set new entry"
37 //usage: "\n -v Verbose"
38 //usage: "\n -n Don't resolve names"
39 //usage: "\n -i IF Network interface"
40 //usage: "\n -D Read HWADDR from IFACE"
41 //usage: "\n -A,-p AF Protocol family"
42 //usage: "\n -H HWTYPE Hardware address type"
45 #include "common_bufsiz.h"
46 #include "inet_common.h"
48 #include <arpa/inet.h>
50 #include <net/if_arp.h>
51 #include <netinet/ether.h>
52 #include <netpacket/packet.h>
56 #define DFLT_AF "inet"
57 #define DFLT_HW "ether"
67 ARP_OPT_n = (1 << 7), /* do not resolve addresses */
68 ARP_OPT_D = (1 << 8), /* HW-address is devicename */
70 ARP_OPT_v = (1 << 10) * DEBUG, /* debugging output flag */
74 sockfd = 3, /* active socket descriptor */
78 const struct aftype *ap; /* current address family */
79 const struct hwtype *hw; /* current hardware type */
80 const char *device; /* current device */
81 smallint hw_set; /* flag if hw-type was set (-H) */
83 #define G (*(struct globals*)bb_common_bufsiz1)
86 #define device (G.device )
87 #define hw_set (G.hw_set )
88 #define INIT_G() do { \
89 setup_common_bufsiz(); \
94 static const char options[] ALIGN1 =
104 /* Delete an entry from the ARP cache. */
105 /* Called only from main, once */
106 static int arp_del(char **args)
114 memset(&req, 0, sizeof(req));
116 /* Resolve the host name. */
118 if (ap->input(host, &sa) < 0) {
119 bb_herror_msg_and_die("%s", host);
122 /* If a host has more than one address, use the correct one! */
123 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
126 req.arp_ha.sa_family = hw->type;
128 req.arp_flags = ATF_PERM;
130 while (*args != NULL) {
131 switch (index_in_strings(options, *args)) {
141 req.arp_flags &= ~ATF_PERM;
144 case 3: /* "trail" */
145 req.arp_flags |= ATF_USETRAILERS;
148 case 4: /* "dontpub" */
149 #ifdef HAVE_ATF_DONTPUB
150 req.arp_flags |= ATF_DONTPUB;
152 bb_error_msg("feature ATF_DONTPUB is not supported");
157 #ifdef HAVE_ATF_MAGIC
158 req.arp_flags |= ATF_MAGIC;
160 bb_error_msg("feature ATF_MAGIC is not supported");
170 case 7: /* "netmask" */
173 if (strcmp(*args, "255.255.255.255") != 0) {
175 if (ap->input(host, &sa) < 0) {
176 bb_herror_msg_and_die("%s", host);
178 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
179 req.arp_flags |= ATF_NETMASK;
191 strncpy_IFNAMSIZ(req.arp_dev, device);
195 /* Call the kernel. */
197 if (option_mask32 & ARP_OPT_v)
198 bb_error_msg("SIOCDARP(nopub)");
199 err = ioctl(sockfd, SIOCDARP, &req);
201 if (errno == ENXIO) {
204 printf("No ARP entry for %s\n", host);
207 bb_perror_msg_and_die("SIOCDARP(priv)");
210 if ((flags & 1) && err) {
212 req.arp_flags |= ATF_PUBL;
213 if (option_mask32 & ARP_OPT_v)
214 bb_error_msg("SIOCDARP(pub)");
215 if (ioctl(sockfd, SIOCDARP, &req) < 0) {
216 if (errno == ENXIO) {
217 printf("No ARP entry for %s\n", host);
220 bb_perror_msg_and_die("SIOCDARP(pub)");
226 /* Get the hardware address to a specified interface name */
227 static void arp_getdevhw(char *ifname, struct sockaddr *sa)
230 const struct hwtype *xhw;
232 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
233 ioctl_or_perror_and_die(sockfd, SIOCGIFHWADDR, &ifr,
234 "can't get HW-Address for '%s'", ifname);
235 if (hw_set && (ifr.ifr_hwaddr.sa_family != hw->type)) {
236 bb_error_msg_and_die("protocol type mismatch");
238 memcpy(sa, &(ifr.ifr_hwaddr), sizeof(struct sockaddr));
240 if (option_mask32 & ARP_OPT_v) {
241 xhw = get_hwntype(ifr.ifr_hwaddr.sa_family);
242 if (!xhw || !xhw->print) {
243 xhw = get_hwntype(-1);
245 bb_error_msg("device '%s' has HW address %s '%s'",
247 xhw->print((unsigned char *) &ifr.ifr_hwaddr.sa_data));
251 /* Set an entry in the ARP cache. */
252 /* Called only from main, once */
253 static int arp_set(char **args)
260 memset(&req, 0, sizeof(req));
263 if (ap->input(host, &sa) < 0) {
264 bb_herror_msg_and_die("%s", host);
266 /* If a host has more than one address, use the correct one! */
267 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
269 /* Fetch the hardware address. */
271 bb_error_msg_and_die("need hardware address");
273 if (option_mask32 & ARP_OPT_D) {
274 arp_getdevhw(*args++, &req.arp_ha);
276 if (hw->input(*args++, &req.arp_ha) < 0) {
277 bb_error_msg_and_die("invalid hardware address");
281 /* Check out any modifiers. */
282 flags = ATF_PERM | ATF_COM;
283 while (*args != NULL) {
284 switch (index_in_strings(options, *args)) {
297 case 3: /* "trail" */
298 flags |= ATF_USETRAILERS;
301 case 4: /* "dontpub" */
302 #ifdef HAVE_ATF_DONTPUB
303 flags |= ATF_DONTPUB;
305 bb_error_msg("feature ATF_DONTPUB is not supported");
310 #ifdef HAVE_ATF_MAGIC
313 bb_error_msg("feature ATF_MAGIC is not supported");
323 case 7: /* "netmask" */
326 if (strcmp(*args, "255.255.255.255") != 0) {
328 if (ap->input(host, &sa) < 0) {
329 bb_herror_msg_and_die("%s", host);
331 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
332 flags |= ATF_NETMASK;
342 /* Fill in the remainder of the request. */
343 req.arp_flags = flags;
345 strncpy_IFNAMSIZ(req.arp_dev, device);
347 /* Call the kernel. */
348 if (option_mask32 & ARP_OPT_v)
349 bb_error_msg("SIOCSARP()");
350 xioctl(sockfd, SIOCSARP, &req);
355 /* Print the contents of an ARP request block. */
357 arp_disp(const char *name, char *ip, int type, int arp_flags,
358 char *hwa, char *mask, char *dev)
360 static const int arp_masks[] = {
362 #ifdef HAVE_ATF_MAGIC
365 #ifdef HAVE_ATF_DONTPUB
370 static const char arp_labels[] ALIGN1 = "PERM\0""PUP\0"
371 #ifdef HAVE_ATF_MAGIC
374 #ifdef HAVE_ATF_DONTPUB
380 const struct hwtype *xhw;
382 xhw = get_hwntype(type);
384 xhw = get_hwtype(DFLT_HW);
386 printf("%s (%s) at ", name, ip);
388 if (!(arp_flags & ATF_COM)) {
389 if (arp_flags & ATF_PUBL)
392 printf("<incomplete> ");
394 printf("%s [%s] ", hwa, xhw->name);
397 if (arp_flags & ATF_NETMASK)
398 printf("netmask %s ", mask);
400 print_flags_separated(arp_masks, arp_labels, arp_flags, " ");
401 printf(" on %s\n", dev);
404 /* Display the contents of the ARP cache in the kernel. */
405 /* Called only from main, once */
406 static int arp_show(char *name)
409 const char *hostname;
414 unsigned entries = 0, shown = 0;
423 /* Resolve the host name. */
424 if (ap->input(name, &sa) < 0) {
425 bb_herror_msg_and_die("%s", name);
427 host = xstrdup(ap->sprint(&sa, 1));
429 fp = xfopen_for_read("/proc/net/arp");
430 /* Bypass header -- read one line */
431 fgets(line, sizeof(line), fp);
433 /* Read the ARP cache entries. */
434 while (fgets(line, sizeof(line), fp)) {
436 mask[0] = '-'; mask[1] = '\0';
437 dev[0] = '-'; dev[1] = '\0';
438 /* All these strings can't overflow
439 * because fgets above reads limited amount of data */
440 num = sscanf(line, "%s 0x%x 0x%x %s %s %s\n",
441 ip, &type, &flags, hwa, mask, dev);
446 /* if the user specified hw-type differs, skip it */
447 if (hw_set && (type != hw->type))
450 /* if the user specified address differs, skip it */
451 if (host && strcmp(ip, host) != 0)
454 /* if the user specified device differs, skip it */
455 if (device[0] && strcmp(dev, device) != 0)
459 /* This IS ugly but it works -be */
461 if (!(option_mask32 & ARP_OPT_n)) {
462 if (ap->input(ip, &sa) < 0)
465 hostname = ap->sprint(&sa, (option_mask32 & ARP_OPT_n) | 0x8000);
466 if (strcmp(hostname, ip) == 0)
470 arp_disp(hostname, ip, type, flags, hwa, mask, dev);
472 if (option_mask32 & ARP_OPT_v)
473 printf("Entries: %u\tSkipped: %u\tFound: %u\n",
474 entries, entries - shown, shown);
477 if (hw_set || host || device[0])
478 printf("No match found in %u entries\n", entries);
480 if (ENABLE_FEATURE_CLEAN_UP) {
487 int arp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
488 int arp_main(int argc UNUSED_PARAM, char **argv)
491 const char *protocol;
496 xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sockfd);
498 ap = get_aftype(DFLT_AF);
499 /* Defaults are always supported */
501 // bb_error_msg_and_die("%s: %s not supported", DFLT_AF, "address family");
502 hw = get_hwtype(DFLT_HW);
504 // bb_error_msg_and_die("%s: %s not supported", DFLT_HW, "hardware type");
506 opts = getopt32(argv, "A:p:H:t:i:adnDsv", &protocol, &protocol,
507 &hw_type, &hw_type, &device);
509 if (opts & (ARP_OPT_A | ARP_OPT_p)) {
510 ap = get_aftype(protocol);
512 bb_error_msg_and_die("%s: unknown %s", protocol, "address family");
514 if (opts & (ARP_OPT_H | ARP_OPT_t)) {
515 hw = get_hwtype(hw_type);
517 bb_error_msg_and_die("%s: unknown %s", hw_type, "hardware type");
520 //if (opts & ARP_OPT_i)... -i
522 if (ap->af != AF_INET) {
523 bb_error_msg_and_die("%s: kernel only supports 'inet'", ap->name);
526 bb_error_msg_and_die("%s: %s without ARP support",
527 hw->name, "hardware type");
530 /* Now see what we have to do here... */
531 if (opts & (ARP_OPT_d | ARP_OPT_s)) {
533 bb_error_msg_and_die("need host name");
534 if (opts & ARP_OPT_s)
535 return arp_set(argv);
536 return arp_del(argv);
539 //if (opts & ARP_OPT_a) - default
540 return arp_show(argv[0]);