123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541 |
- #include "libbb.h"
- #include "common_bufsiz.h"
- #include "inet_common.h"
- #include <arpa/inet.h>
- #include <net/if.h>
- #include <net/if_arp.h>
- #include <netinet/ether.h>
- #include <netpacket/packet.h>
- #define DEBUG 0
- #define DFLT_AF "inet"
- #define DFLT_HW "ether"
- enum {
- ARP_OPT_A = (1 << 0),
- ARP_OPT_p = (1 << 1),
- ARP_OPT_H = (1 << 2),
- ARP_OPT_t = (1 << 3),
- ARP_OPT_i = (1 << 4),
- ARP_OPT_a = (1 << 5),
- ARP_OPT_d = (1 << 6),
- ARP_OPT_n = (1 << 7),
- ARP_OPT_D = (1 << 8),
- ARP_OPT_s = (1 << 9),
- ARP_OPT_v = (1 << 10) * DEBUG,
- };
- enum {
- sockfd = 3,
- };
- struct globals {
- const struct aftype *ap;
- const struct hwtype *hw;
- const char *device;
- smallint hw_set;
- } FIX_ALIASING;
- #define G (*(struct globals*)bb_common_bufsiz1)
- #define ap (G.ap )
- #define hw (G.hw )
- #define device (G.device )
- #define hw_set (G.hw_set )
- #define INIT_G() do { \
- setup_common_bufsiz(); \
- device = ""; \
- } while (0)
- static const char options[] ALIGN1 =
- "pub\0"
- "priv\0"
- "temp\0"
- "trail\0"
- "dontpub\0"
- "auto\0"
- "dev\0"
- "netmask\0";
- static int arp_del(char **args)
- {
- char *host;
- struct arpreq req;
- struct sockaddr sa;
- int flags = 0;
- int err;
- memset(&req, 0, sizeof(req));
-
- host = *args;
- if (ap->input(host, &sa) < 0) {
- bb_herror_msg_and_die("%s", host);
- }
-
- memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
- if (hw_set)
- req.arp_ha.sa_family = hw->type;
- req.arp_flags = ATF_PERM;
- args++;
- while (*args != NULL) {
- switch (index_in_strings(options, *args)) {
- case 0:
- flags |= 1;
- args++;
- break;
- case 1:
- flags |= 2;
- args++;
- break;
- case 2:
- req.arp_flags &= ~ATF_PERM;
- args++;
- break;
- case 3:
- req.arp_flags |= ATF_USETRAILERS;
- args++;
- break;
- case 4:
- #ifdef HAVE_ATF_DONTPUB
- req.arp_flags |= ATF_DONTPUB;
- #else
- bb_error_msg("feature ATF_DONTPUB is not supported");
- #endif
- args++;
- break;
- case 5:
- #ifdef HAVE_ATF_MAGIC
- req.arp_flags |= ATF_MAGIC;
- #else
- bb_error_msg("feature ATF_MAGIC is not supported");
- #endif
- args++;
- break;
- case 6:
- if (*++args == NULL)
- bb_show_usage();
- device = *args;
- args++;
- break;
- case 7:
- if (*++args == NULL)
- bb_show_usage();
- if (strcmp(*args, "255.255.255.255") != 0) {
- host = *args;
- if (ap->input(host, &sa) < 0) {
- bb_herror_msg_and_die("%s", host);
- }
- memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
- req.arp_flags |= ATF_NETMASK;
- }
- args++;
- break;
- default:
- bb_show_usage();
- break;
- }
- }
- if (flags == 0)
- flags = 3;
- strncpy_IFNAMSIZ(req.arp_dev, device);
- err = -1;
-
- if (flags & 2) {
- if (option_mask32 & ARP_OPT_v)
- bb_error_msg("SIOCDARP(nopub)");
- err = ioctl(sockfd, SIOCDARP, &req);
- if (err < 0) {
- if (errno == ENXIO) {
- if (flags & 1)
- goto nopub;
- printf("No ARP entry for %s\n", host);
- return -1;
- }
- bb_perror_msg_and_die("SIOCDARP(priv)");
- }
- }
- if ((flags & 1) && err) {
- nopub:
- req.arp_flags |= ATF_PUBL;
- if (option_mask32 & ARP_OPT_v)
- bb_error_msg("SIOCDARP(pub)");
- if (ioctl(sockfd, SIOCDARP, &req) < 0) {
- if (errno == ENXIO) {
- printf("No ARP entry for %s\n", host);
- return -1;
- }
- bb_perror_msg_and_die("SIOCDARP(pub)");
- }
- }
- return 0;
- }
- static void arp_getdevhw(char *ifname, struct sockaddr *sa)
- {
- struct ifreq ifr;
- const struct hwtype *xhw;
- strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
- ioctl_or_perror_and_die(sockfd, SIOCGIFHWADDR, &ifr,
- "can't get HW-Address for '%s'", ifname);
- if (hw_set && (ifr.ifr_hwaddr.sa_family != hw->type)) {
- bb_error_msg_and_die("protocol type mismatch");
- }
- memcpy(sa, &(ifr.ifr_hwaddr), sizeof(struct sockaddr));
- if (option_mask32 & ARP_OPT_v) {
- xhw = get_hwntype(ifr.ifr_hwaddr.sa_family);
- if (!xhw || !xhw->print) {
- xhw = get_hwntype(-1);
- }
- bb_error_msg("device '%s' has HW address %s '%s'",
- ifname, xhw->name,
- xhw->print((unsigned char *) &ifr.ifr_hwaddr.sa_data));
- }
- }
- static int arp_set(char **args)
- {
- char *host;
- struct arpreq req;
- struct sockaddr sa;
- int flags;
- memset(&req, 0, sizeof(req));
- host = *args++;
- if (ap->input(host, &sa) < 0) {
- bb_herror_msg_and_die("%s", host);
- }
-
- memcpy(&req.arp_pa, &sa, sizeof(struct sockaddr));
-
- if (*args == NULL) {
- bb_error_msg_and_die("need hardware address");
- }
- if (option_mask32 & ARP_OPT_D) {
- arp_getdevhw(*args++, &req.arp_ha);
- } else {
- if (hw->input(*args++, &req.arp_ha) < 0) {
- bb_error_msg_and_die("invalid hardware address");
- }
- }
-
- flags = ATF_PERM | ATF_COM;
- while (*args != NULL) {
- switch (index_in_strings(options, *args)) {
- case 0:
- flags |= ATF_PUBL;
- args++;
- break;
- case 1:
- flags &= ~ATF_PUBL;
- args++;
- break;
- case 2:
- flags &= ~ATF_PERM;
- args++;
- break;
- case 3:
- flags |= ATF_USETRAILERS;
- args++;
- break;
- case 4:
- #ifdef HAVE_ATF_DONTPUB
- flags |= ATF_DONTPUB;
- #else
- bb_error_msg("feature ATF_DONTPUB is not supported");
- #endif
- args++;
- break;
- case 5:
- #ifdef HAVE_ATF_MAGIC
- flags |= ATF_MAGIC;
- #else
- bb_error_msg("feature ATF_MAGIC is not supported");
- #endif
- args++;
- break;
- case 6:
- if (*++args == NULL)
- bb_show_usage();
- device = *args;
- args++;
- break;
- case 7:
- if (*++args == NULL)
- bb_show_usage();
- if (strcmp(*args, "255.255.255.255") != 0) {
- host = *args;
- if (ap->input(host, &sa) < 0) {
- bb_herror_msg_and_die("%s", host);
- }
- memcpy(&req.arp_netmask, &sa, sizeof(struct sockaddr));
- flags |= ATF_NETMASK;
- }
- args++;
- break;
- default:
- bb_show_usage();
- break;
- }
- }
-
- req.arp_flags = flags;
- strncpy_IFNAMSIZ(req.arp_dev, device);
-
- if (option_mask32 & ARP_OPT_v)
- bb_error_msg("SIOCSARP()");
- xioctl(sockfd, SIOCSARP, &req);
- return 0;
- }
- static void
- arp_disp(const char *name, char *ip, int type, int arp_flags,
- char *hwa, char *mask, char *dev)
- {
- static const int arp_masks[] = {
- ATF_PERM, ATF_PUBL,
- #ifdef HAVE_ATF_MAGIC
- ATF_MAGIC,
- #endif
- #ifdef HAVE_ATF_DONTPUB
- ATF_DONTPUB,
- #endif
- ATF_USETRAILERS,
- };
- static const char arp_labels[] ALIGN1 = "PERM\0""PUP\0"
- #ifdef HAVE_ATF_MAGIC
- "AUTO\0"
- #endif
- #ifdef HAVE_ATF_DONTPUB
- "DONTPUB\0"
- #endif
- "TRAIL\0"
- ;
- const struct hwtype *xhw;
- xhw = get_hwntype(type);
- if (xhw == NULL)
- xhw = get_hwtype(DFLT_HW);
- printf("%s (%s) at ", name, ip);
- if (!(arp_flags & ATF_COM)) {
- if (arp_flags & ATF_PUBL)
- printf("* ");
- else
- printf("<incomplete> ");
- } else {
- printf("%s [%s] ", hwa, xhw->name);
- }
- if (arp_flags & ATF_NETMASK)
- printf("netmask %s ", mask);
- print_flags_separated(arp_masks, arp_labels, arp_flags, " ");
- printf(" on %s\n", dev);
- }
- static int arp_show(char *name)
- {
- const char *host;
- const char *hostname;
- FILE *fp;
- struct sockaddr sa;
- int type, flags;
- int num;
- unsigned entries = 0, shown = 0;
- char ip[128];
- char hwa[128];
- char mask[128];
- char line[128];
- char dev[128];
- host = NULL;
- if (name != NULL) {
-
- if (ap->input(name, &sa) < 0) {
- bb_herror_msg_and_die("%s", name);
- }
- host = xstrdup(ap->sprint(&sa, 1));
- }
- fp = xfopen_for_read("/proc/net/arp");
-
- fgets(line, sizeof(line), fp);
-
- while (fgets(line, sizeof(line), fp)) {
- mask[0] = '-'; mask[1] = '\0';
- dev[0] = '-'; dev[1] = '\0';
-
- num = sscanf(line, "%s 0x%x 0x%x %s %s %s\n",
- ip, &type, &flags, hwa, mask, dev);
- if (num < 4)
- break;
- entries++;
-
- if (hw_set && (type != hw->type))
- continue;
-
- if (host && strcmp(ip, host) != 0)
- continue;
-
- if (device[0] && strcmp(dev, device) != 0)
- continue;
- shown++;
-
- hostname = "?";
- if (!(option_mask32 & ARP_OPT_n)) {
- if (ap->input(ip, &sa) < 0)
- hostname = ip;
- else
- hostname = ap->sprint(&sa, (option_mask32 & ARP_OPT_n) | 0x8000);
- if (strcmp(hostname, ip) == 0)
- hostname = "?";
- }
- arp_disp(hostname, ip, type, flags, hwa, mask, dev);
- }
- if (option_mask32 & ARP_OPT_v)
- printf("Entries: %u\tSkipped: %u\tFound: %u\n",
- entries, entries - shown, shown);
- if (!shown) {
- if (hw_set || host || device[0])
- printf("No match found in %u entries\n", entries);
- }
- if (ENABLE_FEATURE_CLEAN_UP) {
- free((char*)host);
- fclose(fp);
- }
- return 0;
- }
- int arp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
- int arp_main(int argc UNUSED_PARAM, char **argv)
- {
- const char *hw_type;
- const char *protocol;
- unsigned opts;
- INIT_G();
- xmove_fd(xsocket(AF_INET, SOCK_DGRAM, 0), sockfd);
- ap = get_aftype(DFLT_AF);
-
-
-
- hw = get_hwtype(DFLT_HW);
-
-
- opts = getopt32(argv, "A:p:H:t:i:adnDsv", &protocol, &protocol,
- &hw_type, &hw_type, &device);
- argv += optind;
- if (opts & (ARP_OPT_A | ARP_OPT_p)) {
- ap = get_aftype(protocol);
- if (!ap)
- bb_error_msg_and_die("%s: unknown %s", protocol, "address family");
- }
- if (opts & (ARP_OPT_H | ARP_OPT_t)) {
- hw = get_hwtype(hw_type);
- if (!hw)
- bb_error_msg_and_die("%s: unknown %s", hw_type, "hardware type");
- hw_set = 1;
- }
-
- if (ap->af != AF_INET) {
- bb_error_msg_and_die("%s: kernel only supports 'inet'", ap->name);
- }
- if (hw->alen <= 0) {
- bb_error_msg_and_die("%s: %s without ARP support",
- hw->name, "hardware type");
- }
-
- if (opts & (ARP_OPT_d | ARP_OPT_s)) {
- if (argv[0] == NULL)
- bb_error_msg_and_die("need host name");
- if (opts & ARP_OPT_s)
- return arp_set(argv);
- return arp_del(argv);
- }
-
- return arp_show(argv[0]);
- }
|