blob: e79b1b6a1da919a1f665dec7467e466e0d5cd851 [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"
maxwen27116ba2015-08-14 21:41:28 +020025//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"
maxwen27116ba2015-08-14 21:41:28 +020030//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"
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000035#include "inet_common.h"
36
37#include <arpa/inet.h>
38#include <net/if.h>
39#include <net/if_arp.h>
40#include <netinet/ether.h>
41#include <netpacket/packet.h>
42
43#define DEBUG 0
44
45#define DFLT_AF "inet"
46#define DFLT_HW "ether"
47
Denis Vlasenko4d476922008-11-13 00:05:17 +000048enum {
49 ARP_OPT_A = (1 << 0),
50 ARP_OPT_p = (1 << 1),
51 ARP_OPT_H = (1 << 2),
52 ARP_OPT_t = (1 << 3),
53 ARP_OPT_i = (1 << 4),
54 ARP_OPT_a = (1 << 5),
55 ARP_OPT_d = (1 << 6),
56 ARP_OPT_n = (1 << 7), /* do not resolve addresses */
57 ARP_OPT_D = (1 << 8), /* HW-address is devicename */
58 ARP_OPT_s = (1 << 9),
59 ARP_OPT_v = (1 << 10) * DEBUG, /* debugging output flag */
60};
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000061
Denis Vlasenko4d476922008-11-13 00:05:17 +000062enum {
63 sockfd = 3, /* active socket descriptor */
64};
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000065
Denis Vlasenko4d476922008-11-13 00:05:17 +000066struct globals {
67 const struct aftype *ap; /* current address family */
68 const struct hwtype *hw; /* current hardware type */
69 const char *device; /* current device */
70 smallint hw_set; /* flag if hw-type was set (-H) */
71
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010072} FIX_ALIASING;
Denis Vlasenko4d476922008-11-13 00:05:17 +000073#define G (*(struct globals*)&bb_common_bufsiz1)
74#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 { \
79 device = ""; \
80} while (0)
81
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000082
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000083static const char options[] ALIGN1 =
Denis Vlasenko990d0f62007-07-24 15:54:42 +000084 "pub\0"
85 "priv\0"
86 "temp\0"
87 "trail\0"
88 "dontpub\0"
89 "auto\0"
90 "dev\0"
91 "netmask\0";
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000092
93/* Delete an entry from the ARP cache. */
94/* Called only from main, once */
95static int arp_del(char **args)
96{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +000097 char *host;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +000098 struct arpreq req;
99 struct sockaddr sa;
100 int flags = 0;
101 int err;
102
103 memset(&req, 0, sizeof(req));
104
105 /* Resolve the host name. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000106 host = *args;
107 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000108 bb_herror_msg_and_die("%s", host);
109 }
110
111 /* If a host has more than one address, use the correct one! */
112 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
113
114 if (hw_set)
115 req.arp_ha.sa_family = hw->type;
116
117 req.arp_flags = ATF_PERM;
118 args++;
119 while (*args != NULL) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000120 switch (index_in_strings(options, *args)) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000121 case 0: /* "pub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000122 flags |= 1;
123 args++;
124 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000125 case 1: /* "priv" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000126 flags |= 2;
127 args++;
128 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000129 case 2: /* "temp" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000130 req.arp_flags &= ~ATF_PERM;
131 args++;
132 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000133 case 3: /* "trail" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000134 req.arp_flags |= ATF_USETRAILERS;
135 args++;
136 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000137 case 4: /* "dontpub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000138#ifdef HAVE_ATF_DONTPUB
139 req.arp_flags |= ATF_DONTPUB;
140#else
141 bb_error_msg("feature ATF_DONTPUB is not supported");
142#endif
143 args++;
144 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000145 case 5: /* "auto" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000146#ifdef HAVE_ATF_MAGIC
147 req.arp_flags |= ATF_MAGIC;
148#else
149 bb_error_msg("feature ATF_MAGIC is not supported");
150#endif
151 args++;
152 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000153 case 6: /* "dev" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000154 if (*++args == NULL)
155 bb_show_usage();
156 device = *args;
157 args++;
158 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000159 case 7: /* "netmask" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000160 if (*++args == NULL)
161 bb_show_usage();
162 if (strcmp(*args, "255.255.255.255") != 0) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000163 host = *args;
164 if (ap->input(host, &sa) < 0) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000165 bb_herror_msg_and_die("%s", host);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000166 }
167 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
168 req.arp_flags |= ATF_NETMASK;
169 }
170 args++;
171 break;
172 default:
173 bb_show_usage();
174 break;
175 }
176 }
177 if (flags == 0)
178 flags = 3;
179
180 strncpy(req.arp_dev, device, sizeof(req.arp_dev));
181
182 err = -1;
183
184 /* Call the kernel. */
185 if (flags & 2) {
186 if (option_mask32 & ARP_OPT_v)
187 bb_error_msg("SIOCDARP(nopub)");
188 err = ioctl(sockfd, SIOCDARP, &req);
189 if (err < 0) {
190 if (errno == ENXIO) {
191 if (flags & 1)
192 goto nopub;
193 printf("No ARP entry for %s\n", host);
194 return -1;
195 }
196 bb_perror_msg_and_die("SIOCDARP(priv)");
197 }
198 }
199 if ((flags & 1) && err) {
200 nopub:
201 req.arp_flags |= ATF_PUBL;
202 if (option_mask32 & ARP_OPT_v)
203 bb_error_msg("SIOCDARP(pub)");
204 if (ioctl(sockfd, SIOCDARP, &req) < 0) {
205 if (errno == ENXIO) {
206 printf("No ARP entry for %s\n", host);
207 return -1;
208 }
209 bb_perror_msg_and_die("SIOCDARP(pub)");
210 }
211 }
212 return 0;
213}
214
215/* Get the hardware address to a specified interface name */
maxwen27116ba2015-08-14 21:41:28 +0200216static void arp_getdevhw(char *ifname, struct sockaddr *sa)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000217{
218 struct ifreq ifr;
219 const struct hwtype *xhw;
220
221 strcpy(ifr.ifr_name, ifname);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000222 ioctl_or_perror_and_die(sockfd, SIOCGIFHWADDR, &ifr,
maxwen27116ba2015-08-14 21:41:28 +0200223 "can't get HW-Address for '%s'", ifname);
224 if (hw_set && (ifr.ifr_hwaddr.sa_family != hw->type)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000225 bb_error_msg_and_die("protocol type mismatch");
226 }
227 memcpy(sa, &(ifr.ifr_hwaddr), sizeof(struct sockaddr));
228
229 if (option_mask32 & ARP_OPT_v) {
230 xhw = get_hwntype(ifr.ifr_hwaddr.sa_family);
231 if (!xhw || !xhw->print) {
232 xhw = get_hwntype(-1);
233 }
234 bb_error_msg("device '%s' has HW address %s '%s'",
maxwen27116ba2015-08-14 21:41:28 +0200235 ifname, xhw->name,
236 xhw->print((unsigned char *) &ifr.ifr_hwaddr.sa_data));
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000237 }
238}
239
240/* Set an entry in the ARP cache. */
241/* Called only from main, once */
242static int arp_set(char **args)
243{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000244 char *host;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000245 struct arpreq req;
246 struct sockaddr sa;
247 int flags;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000248
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000249 memset(&req, 0, sizeof(req));
250
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000251 host = *args++;
252 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000253 bb_herror_msg_and_die("%s", host);
254 }
255 /* If a host has more than one address, use the correct one! */
256 memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
257
258 /* Fetch the hardware address. */
259 if (*args == NULL) {
260 bb_error_msg_and_die("need hardware address");
261 }
262 if (option_mask32 & ARP_OPT_D) {
maxwen27116ba2015-08-14 21:41:28 +0200263 arp_getdevhw(*args++, &req.arp_ha);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000264 } else {
265 if (hw->input(*args++, &req.arp_ha) < 0) {
266 bb_error_msg_and_die("invalid hardware address");
267 }
268 }
269
270 /* Check out any modifiers. */
271 flags = ATF_PERM | ATF_COM;
272 while (*args != NULL) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000273 switch (index_in_strings(options, *args)) {
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000274 case 0: /* "pub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000275 flags |= ATF_PUBL;
276 args++;
277 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000278 case 1: /* "priv" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000279 flags &= ~ATF_PUBL;
280 args++;
281 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000282 case 2: /* "temp" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000283 flags &= ~ATF_PERM;
284 args++;
285 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000286 case 3: /* "trail" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000287 flags |= ATF_USETRAILERS;
288 args++;
289 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000290 case 4: /* "dontpub" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000291#ifdef HAVE_ATF_DONTPUB
292 flags |= ATF_DONTPUB;
293#else
294 bb_error_msg("feature ATF_DONTPUB is not supported");
295#endif
296 args++;
297 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000298 case 5: /* "auto" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000299#ifdef HAVE_ATF_MAGIC
300 flags |= ATF_MAGIC;
301#else
302 bb_error_msg("feature ATF_MAGIC is not supported");
303#endif
304 args++;
305 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000306 case 6: /* "dev" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000307 if (*++args == NULL)
308 bb_show_usage();
309 device = *args;
310 args++;
311 break;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000312 case 7: /* "netmask" */
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000313 if (*++args == NULL)
314 bb_show_usage();
315 if (strcmp(*args, "255.255.255.255") != 0) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000316 host = *args;
317 if (ap->input(host, &sa) < 0) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000318 bb_herror_msg_and_die("%s", host);
319 }
320 memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
321 flags |= ATF_NETMASK;
322 }
323 args++;
324 break;
325 default:
326 bb_show_usage();
327 break;
328 }
329 }
330
331 /* Fill in the remainder of the request. */
332 req.arp_flags = flags;
333
334 strncpy(req.arp_dev, device, sizeof(req.arp_dev));
335
336 /* Call the kernel. */
337 if (option_mask32 & ARP_OPT_v)
338 bb_error_msg("SIOCSARP()");
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000339 xioctl(sockfd, SIOCSARP, &req);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000340 return 0;
341}
342
343
344/* Print the contents of an ARP request block. */
345static void
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000346arp_disp(const char *name, char *ip, int type, int arp_flags,
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100347 char *hwa, char *mask, char *dev)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000348{
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000349 static const int arp_masks[] = {
Denis Vlasenkof45c4f42008-06-16 04:09:25 +0000350 ATF_PERM, ATF_PUBL,
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000351#ifdef HAVE_ATF_MAGIC
352 ATF_MAGIC,
353#endif
354#ifdef HAVE_ATF_DONTPUB
355 ATF_DONTPUB,
356#endif
357 ATF_USETRAILERS,
358 };
359 static const char arp_labels[] ALIGN1 = "PERM\0""PUP\0"
360#ifdef HAVE_ATF_MAGIC
361 "AUTO\0"
362#endif
363#ifdef HAVE_ATF_DONTPUB
364 "DONTPUB\0"
365#endif
366 "TRAIL\0"
367 ;
368
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000369 const struct hwtype *xhw;
370
371 xhw = get_hwntype(type);
372 if (xhw == NULL)
373 xhw = get_hwtype(DFLT_HW);
374
375 printf("%s (%s) at ", name, ip);
376
377 if (!(arp_flags & ATF_COM)) {
378 if (arp_flags & ATF_PUBL)
379 printf("* ");
380 else
381 printf("<incomplete> ");
382 } else {
383 printf("%s [%s] ", hwa, xhw->name);
384 }
385
386 if (arp_flags & ATF_NETMASK)
387 printf("netmask %s ", mask);
388
Denis Vlasenko53354ac2008-06-07 15:10:29 +0000389 print_flags_separated(arp_masks, arp_labels, arp_flags, " ");
390 printf(" on %s\n", dev);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000391}
392
393/* Display the contents of the ARP cache in the kernel. */
394/* Called only from main, once */
395static int arp_show(char *name)
396{
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000397 const char *host;
Denis Vlasenkoab2aea42007-01-29 22:51:58 +0000398 const char *hostname;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000399 FILE *fp;
400 struct sockaddr sa;
401 int type, flags;
Bernhard Reutner-Fischer42646c52007-01-07 22:12:35 +0000402 int num;
403 unsigned entries = 0, shown = 0;
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000404 char ip[128];
405 char hwa[128];
406 char mask[128];
407 char line[128];
408 char dev[128];
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000409
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000410 host = NULL;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000411 if (name != NULL) {
412 /* Resolve the host name. */
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000413 if (ap->input(name, &sa) < 0) {
414 bb_herror_msg_and_die("%s", name);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000415 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000416 host = xstrdup(ap->sprint(&sa, 1));
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000417 }
Denis Vlasenko5415c852008-07-21 23:05:26 +0000418 fp = xfopen_for_read("/proc/net/arp");
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000419 /* Bypass header -- read one line */
420 fgets(line, sizeof(line), fp);
421
422 /* Read the ARP cache entries. */
423 while (fgets(line, sizeof(line), fp)) {
424
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000425 mask[0] = '-'; mask[1] = '\0';
426 dev[0] = '-'; dev[1] = '\0';
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000427 /* All these strings can't overflow
428 * because fgets above reads limited amount of data */
429 num = sscanf(line, "%s 0x%x 0x%x %s %s %s\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100430 ip, &type, &flags, hwa, mask, dev);
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000431 if (num < 4)
432 break;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000433
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000434 entries++;
435 /* if the user specified hw-type differs, skip it */
436 if (hw_set && (type != hw->type))
437 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000438
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000439 /* if the user specified address differs, skip it */
440 if (host && strcmp(ip, host) != 0)
441 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000442
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000443 /* if the user specified device differs, skip it */
444 if (device[0] && strcmp(dev, device) != 0)
445 continue;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000446
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000447 shown++;
448 /* This IS ugly but it works -be */
449 hostname = "?";
450 if (!(option_mask32 & ARP_OPT_n)) {
451 if (ap->input(ip, &sa) < 0)
452 hostname = ip;
453 else
454 hostname = ap->sprint(&sa, (option_mask32 & ARP_OPT_n) | 0x8000);
455 if (strcmp(hostname, ip) == 0)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000456 hostname = "?";
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000457 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000458
459 arp_disp(hostname, ip, type, flags, hwa, mask, dev);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000460 }
461 if (option_mask32 & ARP_OPT_v)
maxwen27116ba2015-08-14 21:41:28 +0200462 printf("Entries: %u\tSkipped: %u\tFound: %u\n",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100463 entries, entries - shown, shown);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000464
465 if (!shown) {
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000466 if (hw_set || host || device[0])
maxwen27116ba2015-08-14 21:41:28 +0200467 printf("No match found in %u entries\n", entries);
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000468 }
Denis Vlasenko7f2527e2007-03-14 22:11:20 +0000469 if (ENABLE_FEATURE_CLEAN_UP) {
470 free((char*)host);
471 fclose(fp);
472 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000473 return 0;
474}
475
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000476int arp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000477int arp_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000478{
maxwen27116ba2015-08-14 21:41:28 +0200479 const char *hw_type;
Denis Vlasenkoec7e7ae2008-08-15 20:14:23 +0000480 const char *protocol;
Denis Vlasenko4d476922008-11-13 00:05:17 +0000481 unsigned opts;
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000482
Denis Vlasenko4d476922008-11-13 00:05:17 +0000483 INIT_G();
484
485 xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sockfd);
maxwen27116ba2015-08-14 21:41:28 +0200486
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000487 ap = get_aftype(DFLT_AF);
maxwen27116ba2015-08-14 21:41:28 +0200488 /* Defaults are always supported */
489 //if (!ap)
490 // bb_error_msg_and_die("%s: %s not supported", DFLT_AF, "address family");
491 hw = get_hwtype(DFLT_HW);
492 //if (!hw)
493 // bb_error_msg_and_die("%s: %s not supported", DFLT_HW, "hardware type");
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000494
Denis Vlasenko4d476922008-11-13 00:05:17 +0000495 opts = getopt32(argv, "A:p:H:t:i:adnDsv", &protocol, &protocol,
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000496 &hw_type, &hw_type, &device);
497 argv += optind;
Denis Vlasenko4d476922008-11-13 00:05:17 +0000498 if (opts & (ARP_OPT_A | ARP_OPT_p)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000499 ap = get_aftype(protocol);
maxwen27116ba2015-08-14 21:41:28 +0200500 if (!ap)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000501 bb_error_msg_and_die("%s: unknown %s", protocol, "address family");
502 }
maxwen27116ba2015-08-14 21:41:28 +0200503 if (opts & (ARP_OPT_H | ARP_OPT_t)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000504 hw = get_hwtype(hw_type);
maxwen27116ba2015-08-14 21:41:28 +0200505 if (!hw)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000506 bb_error_msg_and_die("%s: unknown %s", hw_type, "hardware type");
507 hw_set = 1;
508 }
Denis Vlasenko4d476922008-11-13 00:05:17 +0000509 //if (opts & ARP_OPT_i)... -i
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000510
511 if (ap->af != AF_INET) {
512 bb_error_msg_and_die("%s: kernel only supports 'inet'", ap->name);
513 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000514 if (hw->alen <= 0) {
515 bb_error_msg_and_die("%s: %s without ARP support",
Tanguy Pruvot823694d2012-11-18 13:20:29 +0100516 hw->name, "hardware type");
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000517 }
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000518
519 /* Now see what we have to do here... */
Denis Vlasenko4d476922008-11-13 00:05:17 +0000520 if (opts & (ARP_OPT_d | ARP_OPT_s)) {
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000521 if (argv[0] == NULL)
522 bb_error_msg_and_die("need host name");
Denis Vlasenko4d476922008-11-13 00:05:17 +0000523 if (opts & ARP_OPT_s)
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000524 return arp_set(argv);
525 return arp_del(argv);
526 }
maxwen27116ba2015-08-14 21:41:28 +0200527
Denis Vlasenko4d476922008-11-13 00:05:17 +0000528 //if (opts & ARP_OPT_a) - default
Denis Vlasenko88e2b1c2007-01-07 19:35:11 +0000529 return arp_show(argv[0]);
530}