2006-04-12 23:25:51 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2003-01-09 15:36:01 +05:30
|
|
|
/*
|
|
|
|
* arping.c - Ping hosts by ARP requests/replies
|
|
|
|
*
|
2006-03-31 03:20:57 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2003-01-09 15:36:01 +05:30
|
|
|
*
|
|
|
|
* Author: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
|
|
|
|
* Busybox port: Nick Fedchik <nick@fedchik.org.ua>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/ether.h>
|
|
|
|
#include <netpacket/packet.h>
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
/* We don't expect to see 1000+ seconds delay, unsigned is enough */
|
|
|
|
#define MONOTONIC_US() ((unsigned)monotonic_us())
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DAD = 1,
|
|
|
|
UNSOLICITED = 2,
|
|
|
|
ADVERT = 4,
|
|
|
|
QUIET = 8,
|
|
|
|
QUIT_ON_REPLY = 16,
|
|
|
|
BCAST_ONLY = 32,
|
|
|
|
UNICASTING = 64
|
2006-03-31 03:20:57 +05:30
|
|
|
};
|
|
|
|
|
2007-11-23 14:45:26 +05:30
|
|
|
struct globals {
|
|
|
|
struct in_addr src;
|
|
|
|
struct in_addr dst;
|
|
|
|
struct sockaddr_ll me;
|
|
|
|
struct sockaddr_ll he;
|
2007-11-25 18:10:56 +05:30
|
|
|
int sock_fd;
|
2007-11-23 14:45:26 +05:30
|
|
|
|
|
|
|
int count; // = -1;
|
|
|
|
unsigned last;
|
|
|
|
unsigned timeout_us;
|
|
|
|
unsigned start;
|
|
|
|
|
|
|
|
unsigned sent;
|
|
|
|
unsigned brd_sent;
|
|
|
|
unsigned received;
|
|
|
|
unsigned brd_recv;
|
|
|
|
unsigned req_recv;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define src (G.src )
|
|
|
|
#define dst (G.dst )
|
|
|
|
#define me (G.me )
|
|
|
|
#define he (G.he )
|
2007-11-25 18:10:56 +05:30
|
|
|
#define sock_fd (G.sock_fd )
|
2007-11-23 14:45:26 +05:30
|
|
|
#define count (G.count )
|
|
|
|
#define last (G.last )
|
|
|
|
#define timeout_us (G.timeout_us)
|
|
|
|
#define start (G.start )
|
|
|
|
#define sent (G.sent )
|
|
|
|
#define brd_sent (G.brd_sent )
|
|
|
|
#define received (G.received )
|
|
|
|
#define brd_recv (G.brd_recv )
|
|
|
|
#define req_recv (G.req_recv )
|
2008-06-25 15:23:17 +05:30
|
|
|
#define INIT_G() do { \
|
|
|
|
count = -1; \
|
|
|
|
} while (0)
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-04-25 13:43:36 +05:30
|
|
|
// If GNUisms are not available...
|
|
|
|
//static void *mempcpy(void *_dst, const void *_src, int n)
|
|
|
|
//{
|
|
|
|
// memcpy(_dst, _src, n);
|
|
|
|
// return (char*)_dst + n;
|
|
|
|
//}
|
|
|
|
|
2007-06-18 05:10:26 +05:30
|
|
|
static int send_pack(struct in_addr *src_addr,
|
2006-12-23 08:18:44 +05:30
|
|
|
struct in_addr *dst_addr, struct sockaddr_ll *ME,
|
|
|
|
struct sockaddr_ll *HE)
|
2003-01-09 15:36:01 +05:30
|
|
|
{
|
|
|
|
int err;
|
2007-06-18 00:39:05 +05:30
|
|
|
unsigned char buf[256];
|
2003-01-09 15:36:01 +05:30
|
|
|
struct arphdr *ah = (struct arphdr *) buf;
|
|
|
|
unsigned char *p = (unsigned char *) (ah + 1);
|
|
|
|
|
|
|
|
ah->ar_hrd = htons(ARPHRD_ETHER);
|
|
|
|
ah->ar_pro = htons(ETH_P_IP);
|
|
|
|
ah->ar_hln = ME->sll_halen;
|
|
|
|
ah->ar_pln = 4;
|
2007-06-18 05:10:26 +05:30
|
|
|
ah->ar_op = option_mask32 & ADVERT ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-04-25 13:43:36 +05:30
|
|
|
p = mempcpy(p, &ME->sll_addr, ah->ar_hln);
|
|
|
|
p = mempcpy(p, src_addr, 4);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-06-18 05:10:26 +05:30
|
|
|
if (option_mask32 & ADVERT)
|
2008-04-25 13:43:36 +05:30
|
|
|
p = mempcpy(p, &ME->sll_addr, ah->ar_hln);
|
2003-01-09 15:36:01 +05:30
|
|
|
else
|
2008-04-25 13:43:36 +05:30
|
|
|
p = mempcpy(p, &HE->sll_addr, ah->ar_hln);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-04-25 13:43:36 +05:30
|
|
|
p = mempcpy(p, dst_addr, 4);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
err = sendto(sock_fd, buf, p - buf, 0, (struct sockaddr *) HE, sizeof(*HE));
|
2003-01-09 15:36:01 +05:30
|
|
|
if (err == p - buf) {
|
2007-11-25 18:10:56 +05:30
|
|
|
last = MONOTONIC_US();
|
2003-01-09 15:36:01 +05:30
|
|
|
sent++;
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & UNICASTING))
|
2003-01-09 15:36:01 +05:30
|
|
|
brd_sent++;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2008-07-05 14:48:54 +05:30
|
|
|
static void finish(void) NORETURN;
|
2005-04-17 01:09:00 +05:30
|
|
|
static void finish(void)
|
2003-01-09 15:36:01 +05:30
|
|
|
{
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & QUIET)) {
|
|
|
|
printf("Sent %u probe(s) (%u broadcast(s))\n"
|
|
|
|
"Received %u repl%s"
|
|
|
|
" (%u request(s), %u broadcast(s))\n",
|
2006-04-03 17:59:12 +05:30
|
|
|
sent, brd_sent,
|
2006-12-23 08:18:44 +05:30
|
|
|
received, (received == 1) ? "ies" : "y",
|
|
|
|
req_recv, brd_recv);
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
2007-06-18 05:10:26 +05:30
|
|
|
if (option_mask32 & DAD)
|
2003-01-09 15:36:01 +05:30
|
|
|
exit(!!received);
|
2007-06-18 05:10:26 +05:30
|
|
|
if (option_mask32 & UNSOLICITED)
|
2008-02-11 18:56:54 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
2003-01-09 15:36:01 +05:30
|
|
|
exit(!received);
|
|
|
|
}
|
|
|
|
|
2005-04-17 01:09:00 +05:30
|
|
|
static void catcher(void)
|
2003-01-09 15:36:01 +05:30
|
|
|
{
|
2007-06-18 00:39:05 +05:30
|
|
|
unsigned now;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
now = MONOTONIC_US();
|
|
|
|
if (start == 0)
|
|
|
|
start = now;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
if (count == 0 || (timeout_us && (now - start) > timeout_us))
|
2003-01-09 15:36:01 +05:30
|
|
|
finish();
|
|
|
|
|
2007-11-23 14:45:26 +05:30
|
|
|
/* count < 0 means "infinite count" */
|
|
|
|
if (count > 0)
|
|
|
|
count--;
|
2007-06-18 00:39:05 +05:30
|
|
|
|
|
|
|
if (last == 0 || (now - last) > 500000) {
|
2007-06-18 05:10:26 +05:30
|
|
|
send_pack(&src, &dst, &me, &he);
|
|
|
|
if (count == 0 && (option_mask32 & UNSOLICITED))
|
2003-01-09 15:36:01 +05:30
|
|
|
finish();
|
|
|
|
}
|
|
|
|
alarm(1);
|
|
|
|
}
|
|
|
|
|
2008-02-11 18:56:54 +05:30
|
|
|
static bool recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
|
2003-01-09 15:36:01 +05:30
|
|
|
{
|
|
|
|
struct arphdr *ah = (struct arphdr *) buf;
|
|
|
|
unsigned char *p = (unsigned char *) (ah + 1);
|
|
|
|
struct in_addr src_ip, dst_ip;
|
2008-12-09 04:26:18 +05:30
|
|
|
/* moves below assume in_addr is 4 bytes big, ensure that */
|
|
|
|
struct BUG_in_addr_must_be_4 {
|
|
|
|
char BUG_in_addr_must_be_4[
|
|
|
|
sizeof(struct in_addr) == 4 ? 1 : -1
|
|
|
|
];
|
|
|
|
char BUG_s_addr_must_be_4[
|
|
|
|
sizeof(src_ip.s_addr) == 4 ? 1 : -1
|
|
|
|
];
|
|
|
|
};
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
/* Filter out wild packets */
|
2006-12-23 08:18:44 +05:30
|
|
|
if (FROM->sll_pkttype != PACKET_HOST
|
|
|
|
&& FROM->sll_pkttype != PACKET_BROADCAST
|
|
|
|
&& FROM->sll_pkttype != PACKET_MULTICAST)
|
2008-02-11 18:56:54 +05:30
|
|
|
return false;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
/* Only these types are recognised */
|
|
|
|
if (ah->ar_op != htons(ARPOP_REQUEST) && ah->ar_op != htons(ARPOP_REPLY))
|
2008-02-11 18:56:54 +05:30
|
|
|
return false;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
/* ARPHRD check and this darned FDDI hack here :-( */
|
2006-12-23 08:18:44 +05:30
|
|
|
if (ah->ar_hrd != htons(FROM->sll_hatype)
|
|
|
|
&& (FROM->sll_hatype != ARPHRD_FDDI || ah->ar_hrd != htons(ARPHRD_ETHER)))
|
2008-02-11 18:56:54 +05:30
|
|
|
return false;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
/* Protocol must be IP. */
|
2008-02-11 18:56:54 +05:30
|
|
|
if (ah->ar_pro != htons(ETH_P_IP)
|
2008-12-09 04:26:18 +05:30
|
|
|
|| (ah->ar_pln != 4)
|
|
|
|
|| (ah->ar_hln != me.sll_halen)
|
|
|
|
|| (len < (int)(sizeof(*ah) + 2 * (4 + ah->ar_hln))))
|
2008-02-11 18:56:54 +05:30
|
|
|
return false;
|
|
|
|
|
2008-12-09 04:26:18 +05:30
|
|
|
move_from_unaligned32(src_ip.s_addr, p + ah->ar_hln);
|
|
|
|
move_from_unaligned32(dst_ip.s_addr, p + ah->ar_hln + 4 + ah->ar_hln);
|
2008-02-11 18:56:54 +05:30
|
|
|
|
|
|
|
if (dst.s_addr != src_ip.s_addr)
|
|
|
|
return false;
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & DAD)) {
|
2008-02-11 18:56:54 +05:30
|
|
|
if ((src.s_addr != dst_ip.s_addr)
|
|
|
|
|| (memcmp(p + ah->ar_hln + 4, &me.sll_addr, ah->ar_hln)))
|
|
|
|
return false;
|
2003-01-09 15:36:01 +05:30
|
|
|
} else {
|
|
|
|
/* DAD packet was:
|
|
|
|
src_ip = 0 (or some src)
|
|
|
|
src_hw = ME
|
|
|
|
dst_ip = tested address
|
|
|
|
dst_hw = <unspec>
|
|
|
|
|
|
|
|
We fail, if receive request/reply with:
|
|
|
|
src_ip = tested_address
|
|
|
|
src_hw != ME
|
|
|
|
if src_ip in request was not zero, check
|
|
|
|
also that it matches to dst_ip, otherwise
|
|
|
|
dst_ip/dst_hw do not matter.
|
|
|
|
*/
|
2008-02-11 18:56:54 +05:30
|
|
|
if ((memcmp(p, &me.sll_addr, me.sll_halen) == 0)
|
2008-12-09 04:26:18 +05:30
|
|
|
|| (src.s_addr && src.s_addr != dst_ip.s_addr))
|
2008-02-11 18:56:54 +05:30
|
|
|
return false;
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & QUIET)) {
|
2003-01-09 15:36:01 +05:30
|
|
|
int s_printed = 0;
|
|
|
|
|
2006-12-23 08:18:44 +05:30
|
|
|
printf("%scast re%s from %s [%s]",
|
|
|
|
FROM->sll_pkttype == PACKET_HOST ? "Uni" : "Broad",
|
|
|
|
ah->ar_op == htons(ARPOP_REPLY) ? "ply" : "quest",
|
2006-04-03 17:59:12 +05:30
|
|
|
inet_ntoa(src_ip),
|
|
|
|
ether_ntoa((struct ether_addr *) p));
|
2003-01-09 15:36:01 +05:30
|
|
|
if (dst_ip.s_addr != src.s_addr) {
|
|
|
|
printf("for %s ", inet_ntoa(dst_ip));
|
|
|
|
s_printed = 1;
|
|
|
|
}
|
|
|
|
if (memcmp(p + ah->ar_hln + 4, me.sll_addr, ah->ar_hln)) {
|
|
|
|
if (!s_printed)
|
|
|
|
printf("for ");
|
|
|
|
printf("[%s]",
|
2006-12-23 08:18:44 +05:30
|
|
|
ether_ntoa((struct ether_addr *) p + ah->ar_hln + 4));
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
2006-03-31 03:20:57 +05:30
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
if (last) {
|
2007-11-25 18:10:56 +05:30
|
|
|
unsigned diff = MONOTONIC_US() - last;
|
|
|
|
printf(" %u.%03ums\n", diff / 1000, diff % 1000);
|
2003-01-09 15:36:01 +05:30
|
|
|
} else {
|
|
|
|
printf(" UNSOLICITED?\n");
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
received++;
|
|
|
|
if (FROM->sll_pkttype != PACKET_HOST)
|
|
|
|
brd_recv++;
|
|
|
|
if (ah->ar_op == htons(ARPOP_REQUEST))
|
|
|
|
req_recv++;
|
2007-06-18 05:10:26 +05:30
|
|
|
if (option_mask32 & QUIT_ON_REPLY)
|
2003-01-09 15:36:01 +05:30
|
|
|
finish();
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & BCAST_ONLY)) {
|
2003-01-09 15:36:01 +05:30
|
|
|
memcpy(he.sll_addr, p, me.sll_halen);
|
2007-06-18 05:10:26 +05:30
|
|
|
option_mask32 |= UNICASTING;
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
2008-02-11 18:56:54 +05:30
|
|
|
return true;
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int arping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int arping_main(int argc UNUSED_PARAM, char **argv)
|
2003-01-09 15:36:01 +05:30
|
|
|
{
|
2007-01-30 04:21:25 +05:30
|
|
|
const char *device = "eth0";
|
2003-01-09 15:36:01 +05:30
|
|
|
char *source = NULL;
|
|
|
|
char *target;
|
2007-06-18 00:39:05 +05:30
|
|
|
unsigned char *packet;
|
2008-02-11 18:56:54 +05:30
|
|
|
char *err_str;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-11-23 14:45:26 +05:30
|
|
|
INIT_G();
|
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
sock_fd = xsocket(AF_PACKET, SOCK_DGRAM, 0);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2006-07-16 13:36:34 +05:30
|
|
|
// Drop suid root privileges
|
2007-11-25 18:10:56 +05:30
|
|
|
// Need to remove SUID_NEVER from applets.h for this to work
|
|
|
|
//xsetuid(getuid());
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-02-11 18:56:54 +05:30
|
|
|
err_str = xasprintf("interface %s %%s", device);
|
2006-03-31 23:32:46 +05:30
|
|
|
{
|
2006-10-04 02:30:06 +05:30
|
|
|
unsigned opt;
|
2008-03-17 14:39:09 +05:30
|
|
|
char *str_timeout;
|
2006-04-03 17:22:01 +05:30
|
|
|
|
|
|
|
/* Dad also sets quit_on_reply.
|
|
|
|
* Advert also sets unsolicited.
|
|
|
|
*/
|
2008-03-17 14:39:09 +05:30
|
|
|
opt_complementary = "=1:Df:AU:c+";
|
2007-08-18 21:02:12 +05:30
|
|
|
opt = getopt32(argv, "DUAqfbc:w:I:s:",
|
2008-03-17 14:39:09 +05:30
|
|
|
&count, &str_timeout, &device, &source);
|
2006-09-23 18:16:30 +05:30
|
|
|
if (opt & 0x80) /* -w: timeout */
|
2007-11-25 18:10:56 +05:30
|
|
|
timeout_us = xatou_range(str_timeout, 0, INT_MAX/2000000) * 1000000 + 500000;
|
2006-09-23 18:16:30 +05:30
|
|
|
//if (opt & 0x200) /* -s: source */
|
2007-06-18 05:10:26 +05:30
|
|
|
option_mask32 &= 0x3f; /* set respective flags */
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
target = argv[optind];
|
2006-03-31 23:32:46 +05:30
|
|
|
|
2006-10-04 01:58:06 +05:30
|
|
|
xfunc_error_retval = 2;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2003-02-09 12:31:33 +05:30
|
|
|
{
|
2003-01-09 15:36:01 +05:30
|
|
|
struct ifreq ifr;
|
|
|
|
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
2008-12-02 23:48:50 +05:30
|
|
|
strncpy_IFNAMSIZ(ifr.ifr_name, device);
|
2007-11-23 14:45:26 +05:30
|
|
|
/* We use ifr.ifr_name in error msg so that problem
|
|
|
|
* with truncated name will be visible */
|
2008-02-11 18:56:54 +05:30
|
|
|
ioctl_or_perror_and_die(sock_fd, SIOCGIFINDEX, &ifr, err_str, "not found");
|
2007-11-25 18:10:56 +05:30
|
|
|
me.sll_ifindex = ifr.ifr_ifindex;
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
xioctl(sock_fd, SIOCGIFFLAGS, (char *) &ifr);
|
2007-07-15 03:37:14 +05:30
|
|
|
|
2003-01-09 15:36:01 +05:30
|
|
|
if (!(ifr.ifr_flags & IFF_UP)) {
|
2008-02-11 18:56:54 +05:30
|
|
|
bb_error_msg_and_die(err_str, "is down");
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
if (ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK)) {
|
2008-02-11 18:56:54 +05:30
|
|
|
bb_error_msg(err_str, "is not ARPable");
|
2007-06-18 05:10:26 +05:30
|
|
|
return (option_mask32 & DAD ? 0 : 2);
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
/* if (!inet_aton(target, &dst)) - not needed */ {
|
2007-01-26 01:14:38 +05:30
|
|
|
len_and_sockaddr *lsa;
|
2007-02-04 08:09:08 +05:30
|
|
|
lsa = xhost_and_af2sockaddr(target, 0, AF_INET);
|
2008-12-09 04:26:18 +05:30
|
|
|
dst = lsa->u.sin.sin_addr;
|
2007-01-26 01:14:38 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(lsa);
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
|
2003-02-09 12:31:33 +05:30
|
|
|
if (source && !inet_aton(source, &src)) {
|
2006-03-31 03:20:57 +05:30
|
|
|
bb_error_msg_and_die("invalid source address %s", source);
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
if ((option_mask32 & (DAD|UNSOLICITED)) == UNSOLICITED && src.s_addr == 0)
|
2003-01-09 15:36:01 +05:30
|
|
|
src = dst;
|
|
|
|
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & DAD) || src.s_addr) {
|
2003-01-09 15:36:01 +05:30
|
|
|
struct sockaddr_in saddr;
|
2006-09-03 17:51:59 +05:30
|
|
|
int probe_fd = xsocket(AF_INET, SOCK_DGRAM, 0);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-12-10 16:42:16 +05:30
|
|
|
setsockopt_bindtodevice(probe_fd, device);
|
2003-01-09 15:36:01 +05:30
|
|
|
memset(&saddr, 0, sizeof(saddr));
|
|
|
|
saddr.sin_family = AF_INET;
|
|
|
|
if (src.s_addr) {
|
2007-11-25 18:10:56 +05:30
|
|
|
/* Check that this is indeed our IP */
|
2003-01-09 15:36:01 +05:30
|
|
|
saddr.sin_addr = src;
|
2006-12-23 08:18:44 +05:30
|
|
|
xbind(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
|
2007-11-25 18:10:56 +05:30
|
|
|
} else { /* !(option_mask32 & DAD) case */
|
|
|
|
/* Find IP address on this iface */
|
2006-01-31 04:00:41 +05:30
|
|
|
socklen_t alen = sizeof(saddr);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
saddr.sin_port = htons(1025);
|
|
|
|
saddr.sin_addr = dst;
|
|
|
|
|
2007-01-22 19:42:08 +05:30
|
|
|
if (setsockopt(probe_fd, SOL_SOCKET, SO_DONTROUTE, &const_int_1, sizeof(const_int_1)) == -1)
|
2007-11-23 14:45:26 +05:30
|
|
|
bb_perror_msg("setsockopt(SO_DONTROUTE)");
|
2006-12-23 08:18:44 +05:30
|
|
|
xconnect(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
|
|
|
|
if (getsockname(probe_fd, (struct sockaddr *) &saddr, &alen) == -1) {
|
2007-11-25 18:10:56 +05:30
|
|
|
bb_perror_msg_and_die("getsockname");
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
2007-11-25 18:10:56 +05:30
|
|
|
if (saddr.sin_family != AF_INET)
|
|
|
|
bb_error_msg_and_die("no IP address configured");
|
2003-01-09 15:36:01 +05:30
|
|
|
src = saddr.sin_addr;
|
|
|
|
}
|
|
|
|
close(probe_fd);
|
2006-12-23 08:18:44 +05:30
|
|
|
}
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
me.sll_family = AF_PACKET;
|
2007-11-25 18:10:56 +05:30
|
|
|
//me.sll_ifindex = ifindex; - done before
|
2003-01-09 15:36:01 +05:30
|
|
|
me.sll_protocol = htons(ETH_P_ARP);
|
2007-11-25 18:10:56 +05:30
|
|
|
xbind(sock_fd, (struct sockaddr *) &me, sizeof(me));
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2003-02-09 12:31:33 +05:30
|
|
|
{
|
2006-01-31 04:00:41 +05:30
|
|
|
socklen_t alen = sizeof(me);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
if (getsockname(sock_fd, (struct sockaddr *) &me, &alen) == -1) {
|
|
|
|
bb_perror_msg_and_die("getsockname");
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
if (me.sll_halen == 0) {
|
2008-02-11 18:56:54 +05:30
|
|
|
bb_error_msg(err_str, "is not ARPable (no ll address)");
|
2007-06-18 05:10:26 +05:30
|
|
|
return (option_mask32 & DAD ? 0 : 2);
|
2003-01-09 15:36:01 +05:30
|
|
|
}
|
|
|
|
he = me;
|
|
|
|
memset(he.sll_addr, -1, he.sll_halen);
|
|
|
|
|
2007-06-18 05:10:26 +05:30
|
|
|
if (!(option_mask32 & QUIET)) {
|
2007-11-25 18:10:56 +05:30
|
|
|
/* inet_ntoa uses static storage, can't use in same printf */
|
|
|
|
printf("ARPING to %s", inet_ntoa(dst));
|
|
|
|
printf(" from %s via %s\n", inet_ntoa(src), device);
|
2003-02-09 12:31:33 +05:30
|
|
|
}
|
2003-01-09 15:36:01 +05:30
|
|
|
|
2008-03-13 04:49:35 +05:30
|
|
|
signal_SA_RESTART_empty_mask(SIGINT, (void (*)(int))finish);
|
|
|
|
signal_SA_RESTART_empty_mask(SIGALRM, (void (*)(int))catcher);
|
2003-01-09 15:36:01 +05:30
|
|
|
|
|
|
|
catcher();
|
|
|
|
|
2007-06-18 00:39:05 +05:30
|
|
|
packet = xmalloc(4096);
|
2003-01-09 15:36:01 +05:30
|
|
|
while (1) {
|
|
|
|
sigset_t sset, osset;
|
|
|
|
struct sockaddr_ll from;
|
2006-01-31 04:00:41 +05:30
|
|
|
socklen_t alen = sizeof(from);
|
2003-01-09 15:36:01 +05:30
|
|
|
int cc;
|
|
|
|
|
2007-11-25 18:10:56 +05:30
|
|
|
cc = recvfrom(sock_fd, packet, 4096, 0, (struct sockaddr *) &from, &alen);
|
2006-12-23 08:18:44 +05:30
|
|
|
if (cc < 0) {
|
2006-09-23 18:16:30 +05:30
|
|
|
bb_perror_msg("recvfrom");
|
2003-01-09 15:36:01 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
sigemptyset(&sset);
|
|
|
|
sigaddset(&sset, SIGALRM);
|
|
|
|
sigaddset(&sset, SIGINT);
|
|
|
|
sigprocmask(SIG_BLOCK, &sset, &osset);
|
|
|
|
recv_pack(packet, cc, &from);
|
|
|
|
sigprocmask(SIG_SETMASK, &osset, NULL);
|
|
|
|
}
|
|
|
|
}
|