blob: 69a5816ebffd1aa5f22067710a14c164460d69da [file] [log] [blame]
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +00001/* vi: set sw=4 ts=4: */
2/*
3 * arp.c - Manipulate the system ARP cache
4 *
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.
9 *
10 * Author: Fred N. van Kempen, <waltje at uwalt.nl.mugnet.org>
11 * Busybox port: Paul van Gool <pvangool at mimotech.com>
12 *
13 * modified for getopt32 by Arne Bernin <arne [at] alamut.de>
14 */
15
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage:#define arp_trivial_usage
17//usage: "\n[-vn] [-H HWTYPE] [-i IF] -a [HOSTNAME]"
18//usage: "\n[-v] [-i IF] -d HOSTNAME [pub]"
19//usage: "\n[-v] [-H HWTYPE] [-i IF] -s HOSTNAME HWADDR [temp]"
20//usage: "\n[-v] [-H HWTYPE] [-i IF] -s HOSTNAME HWADDR [netmask MASK] pub"
21//usage: "\n[-v] [-H HWTYPE] [-i IF] -Ds HOSTNAME IFACE [netmask MASK] pub"
22//usage:#define arp_full_usage "\n\n"
23//usage: "Manipulate ARP cache\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020024//usage: "\n -a Display (all) hosts"
Denys Vlasenko06af5692013-02-04 16:18:58 +010025//usage: "\n -d Delete ARP entry"
26//usage: "\n -s Set new entry"
Pere Orga5bc8c002011-04-11 03:29:49 +020027//usage: "\n -v Verbose"
28//usage: "\n -n Don't resolve names"
29//usage: "\n -i IF Network interface"
Denys Vlasenko06af5692013-02-04 16:18:58 +010030//usage: "\n -D Read HWADDR from IFACE"
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage: "\n -A,-p AF Protocol family"
32//usage: "\n -H HWTYPE Hardware address type"
33
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000034#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020035#include "common_bufsiz.h"
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000036#include "inet_common.h"
37
38#include <arpa/inet.h>
39#include <net/if.h>
40#include <net/if_arp.h>
41#include <netinet/ether.h>
42#include <netpacket/packet.h>
43
44#define DEBUG 0
45
46#define DFLT_AF "inet"
47#define DFLT_HW "ether"
48
Denis Vlasenko4d476922008-11-13 00:05:17 +000049enum {
50 ARP_OPT_A = (1 << 0),
51 ARP_OPT_p = (1 << 1),
52 ARP_OPT_H = (1 << 2),
53 ARP_OPT_t = (1 << 3),
54 ARP_OPT_i = (1 << 4),
55 ARP_OPT_a = (1 << 5),
56 ARP_OPT_d = (1 << 6),
57 ARP_OPT_n = (1 << 7), /* do not resolve addresses */
58 ARP_OPT_D = (1 << 8), /* HW-address is devicename */
59 ARP_OPT_s = (1 << 9),
60 ARP_OPT_v = (1 << 10) * DEBUG, /* debugging output flag */
61};
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000062
Denis Vlasenko4d476922008-11-13 00:05:17 +000063enum {
64 sockfd = 3, /* active socket descriptor */
65};
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000066
Denis Vlasenko4d476922008-11-13 00:05:17 +000067struct globals {
68 const struct aftype *ap; /* current address family */
69 const struct hwtype *hw; /* current hardware type */
70 const char *device; /* current device */
71 smallint hw_set; /* flag if hw-type was set (-H) */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010072} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020073#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko4d476922008-11-13 00:05:17 +000074#define ap (G.ap )
75#define hw (G.hw )
76#define device (G.device )
77#define hw_set (G.hw_set )
78#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +020079 setup_common_bufsiz(); \
Denis Vlasenko4d476922008-11-13 00:05:17 +000080 device = ""; \
81} while (0)
82
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000083
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000084static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +000085 "pub\0"
86 "priv\0"
87 "temp\0"
88 "trail\0"
89 "dontpub\0"
90 "auto\0"
91 "dev\0"
92 "netmask\0";
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000093
94/* Delete an entry from the ARP cache. */
95/* Called only from main, once */
96static int arp_del(char **args)
97{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000098 char *host;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000099 struct arpreq req;
100 struct sockaddr sa;
101 int flags = 0;
102 int err;
103
104 memset(&req, 0, sizeof(req));
105
106 /* Resolve the host name. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000107 host = *args;
108 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000109 bb_herror_msg_and_die("%s", host);
110 }
111
112 /* If a host has more than one address, use the correct one! */
113 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
114
115 if (hw_set)
116 req.arp_ha.sa_family = hw->type;
117
118 req.arp_flags = ATF_PERM;
119 args++;
120 while (*args != NULL) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000121 switch (index_in_strings(options, *args)) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000122 case 0: /* "pub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000123 flags |= 1;
124 args++;
125 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000126 case 1: /* "priv" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000127 flags |= 2;
128 args++;
129 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000130 case 2: /* "temp" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000131 req.arp_flags &= ~ATF_PERM;
132 args++;
133 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000134 case 3: /* "trail" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000135 req.arp_flags |= ATF_USETRAILERS;
136 args++;
137 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000138 case 4: /* "dontpub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000139#ifdef HAVE_ATF_DONTPUB
140 req.arp_flags |= ATF_DONTPUB;
141#else
142 bb_error_msg("feature ATF_DONTPUB is not supported");
143#endif
144 args++;
145 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000146 case 5: /* "auto" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000147#ifdef HAVE_ATF_MAGIC
148 req.arp_flags |= ATF_MAGIC;
149#else
150 bb_error_msg("feature ATF_MAGIC is not supported");
151#endif
152 args++;
153 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000154 case 6: /* "dev" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000155 if (*++args == NULL)
156 bb_show_usage();
157 device = *args;
158 args++;
159 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000160 case 7: /* "netmask" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000161 if (*++args == NULL)
162 bb_show_usage();
163 if (strcmp(*args, "255.255.255.255") != 0) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000164 host = *args;
165 if (ap->input(host, &sa) < 0) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000166 bb_herror_msg_and_die("%s", host);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000167 }
168 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
169 req.arp_flags |= ATF_NETMASK;
170 }
171 args++;
172 break;
173 default:
174 bb_show_usage();
175 break;
176 }
177 }
178 if (flags == 0)
179 flags = 3;
180
Denys Vlasenkoee772a02016-07-04 17:38:01 +0200181 strncpy_IFNAMSIZ(req.arp_dev, device);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000182
183 err = -1;
184
185 /* Call the kernel. */
186 if (flags & 2) {
187 if (option_mask32 & ARP_OPT_v)
188 bb_error_msg("SIOCDARP(nopub)");
189 err = ioctl(sockfd, SIOCDARP, &req);
190 if (err < 0) {
191 if (errno == ENXIO) {
192 if (flags & 1)
193 goto nopub;
194 printf("No ARP entry for %s\n", host);
195 return -1;
196 }
197 bb_perror_msg_and_die("SIOCDARP(priv)");
198 }
199 }
200 if ((flags & 1) && err) {
201 nopub:
202 req.arp_flags |= ATF_PUBL;
203 if (option_mask32 & ARP_OPT_v)
204 bb_error_msg("SIOCDARP(pub)");
205 if (ioctl(sockfd, SIOCDARP, &req) < 0) {
206 if (errno == ENXIO) {
207 printf("No ARP entry for %s\n", host);
208 return -1;
209 }
210 bb_perror_msg_and_die("SIOCDARP(pub)");
211 }
212 }
213 return 0;
214}
215
216/* Get the hardware address to a specified interface name */
Denys Vlasenko06af5692013-02-04 16:18:58 +0100217static void arp_getdevhw(char *ifname, struct sockaddr *sa)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000218{
219 struct ifreq ifr;
220 const struct hwtype *xhw;
221
Denys Vlasenkoee772a02016-07-04 17:38:01 +0200222 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000223 ioctl_or_perror_and_die(sockfd, SIOCGIFHWADDR, &ifr,
Denys Vlasenko06af5692013-02-04 16:18:58 +0100224 "can't get HW-Address for '%s'", ifname);
225 if (hw_set && (ifr.ifr_hwaddr.sa_family != hw->type)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000226 bb_error_msg_and_die("protocol type mismatch");
227 }
228 memcpy(sa, &(ifr.ifr_hwaddr), sizeof(struct sockaddr));
229
230 if (option_mask32 & ARP_OPT_v) {
231 xhw = get_hwntype(ifr.ifr_hwaddr.sa_family);
232 if (!xhw || !xhw->print) {
233 xhw = get_hwntype(-1);
234 }
235 bb_error_msg("device '%s' has HW address %s '%s'",
Denys Vlasenko06af5692013-02-04 16:18:58 +0100236 ifname, xhw->name,
237 xhw->print((unsigned char *) &ifr.ifr_hwaddr.sa_data));
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000238 }
239}
240
241/* Set an entry in the ARP cache. */
242/* Called only from main, once */
243static int arp_set(char **args)
244{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000245 char *host;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000246 struct arpreq req;
247 struct sockaddr sa;
248 int flags;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000249
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000250 memset(&req, 0, sizeof(req));
251
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000252 host = *args++;
253 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000254 bb_herror_msg_and_die("%s", host);
255 }
256 /* If a host has more than one address, use the correct one! */
257 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
258
259 /* Fetch the hardware address. */
260 if (*args == NULL) {
261 bb_error_msg_and_die("need hardware address");
262 }
263 if (option_mask32 & ARP_OPT_D) {
Denys Vlasenko06af5692013-02-04 16:18:58 +0100264 arp_getdevhw(*args++, &req.arp_ha);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000265 } else {
266 if (hw->input(*args++, &req.arp_ha) < 0) {
267 bb_error_msg_and_die("invalid hardware address");
268 }
269 }
270
271 /* Check out any modifiers. */
272 flags = ATF_PERM | ATF_COM;
273 while (*args != NULL) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000274 switch (index_in_strings(options, *args)) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000275 case 0: /* "pub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000276 flags |= ATF_PUBL;
277 args++;
278 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000279 case 1: /* "priv" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000280 flags &= ~ATF_PUBL;
281 args++;
282 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000283 case 2: /* "temp" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000284 flags &= ~ATF_PERM;
285 args++;
286 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000287 case 3: /* "trail" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000288 flags |= ATF_USETRAILERS;
289 args++;
290 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000291 case 4: /* "dontpub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000292#ifdef HAVE_ATF_DONTPUB
293 flags |= ATF_DONTPUB;
294#else
295 bb_error_msg("feature ATF_DONTPUB is not supported");
296#endif
297 args++;
298 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000299 case 5: /* "auto" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000300#ifdef HAVE_ATF_MAGIC
301 flags |= ATF_MAGIC;
302#else
303 bb_error_msg("feature ATF_MAGIC is not supported");
304#endif
305 args++;
306 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000307 case 6: /* "dev" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000308 if (*++args == NULL)
309 bb_show_usage();
310 device = *args;
311 args++;
312 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000313 case 7: /* "netmask" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000314 if (*++args == NULL)
315 bb_show_usage();
316 if (strcmp(*args, "255.255.255.255") != 0) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000317 host = *args;
318 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000319 bb_herror_msg_and_die("%s", host);
320 }
321 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
322 flags |= ATF_NETMASK;
323 }
324 args++;
325 break;
326 default:
327 bb_show_usage();
328 break;
329 }
330 }
331
332 /* Fill in the remainder of the request. */
333 req.arp_flags = flags;
334
Denys Vlasenkoee772a02016-07-04 17:38:01 +0200335 strncpy_IFNAMSIZ(req.arp_dev, device);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000336
337 /* Call the kernel. */
338 if (option_mask32 & ARP_OPT_v)
339 bb_error_msg("SIOCSARP()");
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000340 xioctl(sockfd, SIOCSARP, &req);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000341 return 0;
342}
343
344
345/* Print the contents of an ARP request block. */
346static void
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000347arp_disp(const char *name, char *ip, int type, int arp_flags,
Denys Vlasenko69675782013-01-14 01:34:48 +0100348 char *hwa, char *mask, char *dev)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000349{
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000350 static const int arp_masks[] = {
Denis Vlasenkof45c4f42008-06-16 04:09:25 +0000351 ATF_PERM, ATF_PUBL,
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000352#ifdef HAVE_ATF_MAGIC
353 ATF_MAGIC,
354#endif
355#ifdef HAVE_ATF_DONTPUB
356 ATF_DONTPUB,
357#endif
358 ATF_USETRAILERS,
359 };
360 static const char arp_labels[] ALIGN1 = "PERM\0""PUP\0"
361#ifdef HAVE_ATF_MAGIC
362 "AUTO\0"
363#endif
364#ifdef HAVE_ATF_DONTPUB
365 "DONTPUB\0"
366#endif
367 "TRAIL\0"
368 ;
369
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000370 const struct hwtype *xhw;
371
372 xhw = get_hwntype(type);
373 if (xhw == NULL)
374 xhw = get_hwtype(DFLT_HW);
375
376 printf("%s (%s) at ", name, ip);
377
378 if (!(arp_flags & ATF_COM)) {
379 if (arp_flags & ATF_PUBL)
380 printf("* ");
381 else
382 printf("<incomplete> ");
383 } else {
384 printf("%s [%s] ", hwa, xhw->name);
385 }
386
387 if (arp_flags & ATF_NETMASK)
388 printf("netmask %s ", mask);
389
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000390 print_flags_separated(arp_masks, arp_labels, arp_flags, " ");
391 printf(" on %s\n", dev);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000392}
393
394/* Display the contents of the ARP cache in the kernel. */
395/* Called only from main, once */
396static int arp_show(char *name)
397{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000398 const char *host;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000399 const char *hostname;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000400 FILE *fp;
401 struct sockaddr sa;
402 int type, flags;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000403 int num;
404 unsigned entries = 0, shown = 0;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000405 char ip[128];
406 char hwa[128];
407 char mask[128];
408 char line[128];
409 char dev[128];
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000410
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000411 host = NULL;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000412 if (name != NULL) {
413 /* Resolve the host name. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000414 if (ap->input(name, &sa) < 0) {
415 bb_herror_msg_and_die("%s", name);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000416 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000417 host = xstrdup(ap->sprint(&sa, 1));
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000418 }
Denis Vlasenko5415c852008-07-21 23:05:26 +0000419 fp = xfopen_for_read("/proc/net/arp");
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000420 /* Bypass header -- read one line */
421 fgets(line, sizeof(line), fp);
422
423 /* Read the ARP cache entries. */
424 while (fgets(line, sizeof(line), fp)) {
425
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000426 mask[0] = '-'; mask[1] = '\0';
427 dev[0] = '-'; dev[1] = '\0';
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000428 /* All these strings can't overflow
429 * because fgets above reads limited amount of data */
430 num = sscanf(line, "%s 0x%x 0x%x %s %s %s\n",
Denys Vlasenko69675782013-01-14 01:34:48 +0100431 ip, &type, &flags, hwa, mask, dev);
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000432 if (num < 4)
433 break;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000434
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000435 entries++;
436 /* if the user specified hw-type differs, skip it */
437 if (hw_set && (type != hw->type))
438 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000439
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000440 /* if the user specified address differs, skip it */
441 if (host && strcmp(ip, host) != 0)
442 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000443
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000444 /* if the user specified device differs, skip it */
445 if (device[0] && strcmp(dev, device) != 0)
446 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000447
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000448 shown++;
449 /* This IS ugly but it works -be */
450 hostname = "?";
451 if (!(option_mask32 & ARP_OPT_n)) {
452 if (ap->input(ip, &sa) < 0)
453 hostname = ip;
454 else
455 hostname = ap->sprint(&sa, (option_mask32 & ARP_OPT_n) | 0x8000);
456 if (strcmp(hostname, ip) == 0)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000457 hostname = "?";
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000458 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000459
460 arp_disp(hostname, ip, type, flags, hwa, mask, dev);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000461 }
462 if (option_mask32 & ARP_OPT_v)
Denys Vlasenko327f5502013-11-29 16:45:45 +0100463 printf("Entries: %u\tSkipped: %u\tFound: %u\n",
Denys Vlasenko69675782013-01-14 01:34:48 +0100464 entries, entries - shown, shown);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000465
466 if (!shown) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000467 if (hw_set || host || device[0])
Denys Vlasenko327f5502013-11-29 16:45:45 +0100468 printf("No match found in %u entries\n", entries);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000469 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000470 if (ENABLE_FEATURE_CLEAN_UP) {
471 free((char*)host);
472 fclose(fp);
473 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000474 return 0;
475}
476
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000477int arp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000478int arp_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000479{
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100480 const char *hw_type;
Denis Vlasenkoec7e7ae2008-08-15 20:14:23 +0000481 const char *protocol;
Denis Vlasenko4d476922008-11-13 00:05:17 +0000482 unsigned opts;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000483
Denis Vlasenko4d476922008-11-13 00:05:17 +0000484 INIT_G();
485
486 xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sockfd);
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100487
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000488 ap = get_aftype(DFLT_AF);
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100489 /* Defaults are always supported */
490 //if (!ap)
491 // bb_error_msg_and_die("%s: %s not supported", DFLT_AF, "address family");
492 hw = get_hwtype(DFLT_HW);
493 //if (!hw)
494 // bb_error_msg_and_die("%s: %s not supported", DFLT_HW, "hardware type");
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000495
Denis Vlasenko4d476922008-11-13 00:05:17 +0000496 opts = getopt32(argv, "A:p:H:t:i:adnDsv", &protocol, &protocol,
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000497 &hw_type, &hw_type, &device);
498 argv += optind;
Denis Vlasenko4d476922008-11-13 00:05:17 +0000499 if (opts & (ARP_OPT_A | ARP_OPT_p)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000500 ap = get_aftype(protocol);
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100501 if (!ap)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000502 bb_error_msg_and_die("%s: unknown %s", protocol, "address family");
503 }
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100504 if (opts & (ARP_OPT_H | ARP_OPT_t)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000505 hw = get_hwtype(hw_type);
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100506 if (!hw)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000507 bb_error_msg_and_die("%s: unknown %s", hw_type, "hardware type");
508 hw_set = 1;
509 }
Denis Vlasenko4d476922008-11-13 00:05:17 +0000510 //if (opts & ARP_OPT_i)... -i
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000511
512 if (ap->af != AF_INET) {
513 bb_error_msg_and_die("%s: kernel only supports 'inet'", ap->name);
514 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000515 if (hw->alen <= 0) {
516 bb_error_msg_and_die("%s: %s without ARP support",
Denys Vlasenko69675782013-01-14 01:34:48 +0100517 hw->name, "hardware type");
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000518 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000519
520 /* Now see what we have to do here... */
Denis Vlasenko4d476922008-11-13 00:05:17 +0000521 if (opts & (ARP_OPT_d | ARP_OPT_s)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000522 if (argv[0] == NULL)
523 bb_error_msg_and_die("need host name");
Denis Vlasenko4d476922008-11-13 00:05:17 +0000524 if (opts & ARP_OPT_s)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000525 return arp_set(argv);
526 return arp_del(argv);
527 }
Kuleshov Alekseya8816da2013-02-04 15:14:20 +0100528
Denis Vlasenko4d476922008-11-13 00:05:17 +0000529 //if (opts & ARP_OPT_a) - default
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000530 return arp_show(argv[0]);
531}