blob: 9d2c671bc37992d3faefb857c4ebd124c5aaef13 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9e598412003-01-09 10:06:01 +00002/*
3 * arping.c - Ping hosts by ARP requests/replies
4 *
Rob Landley8ea52052006-03-30 21:50:57 +00005 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath9e598412003-01-09 10:06:01 +00006 *
7 * Author: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Busybox port: Nick Fedchik <nick@fedchik.org.ua>
9 */
10
Glenn L McGrath9e598412003-01-09 10:06:01 +000011#include <arpa/inet.h>
12#include <net/if.h>
13#include <netinet/ether.h>
14#include <netpacket/packet.h>
15
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000016#include "libbb.h"
Glenn L McGrath9e598412003-01-09 10:06:01 +000017
Denis Vlasenko459be352007-06-17 19:09:05 +000018/* We don't expect to see 1000+ seconds delay, unsigned is enough */
19#define MONOTONIC_US() ((unsigned)monotonic_us())
20
Denis Vlasenko459be352007-06-17 19:09:05 +000021enum {
22 DAD = 1,
23 UNSOLICITED = 2,
24 ADVERT = 4,
25 QUIET = 8,
26 QUIT_ON_REPLY = 16,
27 BCAST_ONLY = 32,
28 UNICASTING = 64
Rob Landley8ea52052006-03-30 21:50:57 +000029};
Rob Landley8ea52052006-03-30 21:50:57 +000030
Denis Vlasenkofff9b692007-11-23 09:15:26 +000031struct globals {
32 struct in_addr src;
33 struct in_addr dst;
34 struct sockaddr_ll me;
35 struct sockaddr_ll he;
Denis Vlasenkoa09300a2007-11-25 12:40:56 +000036 int sock_fd;
Denis Vlasenkofff9b692007-11-23 09:15:26 +000037
38 int count; // = -1;
39 unsigned last;
40 unsigned timeout_us;
41 unsigned start;
42
43 unsigned sent;
44 unsigned brd_sent;
45 unsigned received;
46 unsigned brd_recv;
47 unsigned req_recv;
48};
49#define G (*(struct globals*)&bb_common_bufsiz1)
50#define src (G.src )
51#define dst (G.dst )
52#define me (G.me )
53#define he (G.he )
Denis Vlasenkoa09300a2007-11-25 12:40:56 +000054#define sock_fd (G.sock_fd )
Denis Vlasenkofff9b692007-11-23 09:15:26 +000055#define count (G.count )
56#define last (G.last )
57#define timeout_us (G.timeout_us)
58#define start (G.start )
59#define sent (G.sent )
60#define brd_sent (G.brd_sent )
61#define received (G.received )
62#define brd_recv (G.brd_recv )
63#define req_recv (G.req_recv )
64#define INIT_G() \
65 do { \
66 count = -1; \
67 } while (0)
Glenn L McGrath9e598412003-01-09 10:06:01 +000068
Denis Vlasenkoa6b3a1f2008-04-25 08:13:36 +000069// If GNUisms are not available...
70//static void *mempcpy(void *_dst, const void *_src, int n)
71//{
72// memcpy(_dst, _src, n);
73// return (char*)_dst + n;
74//}
75
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000076static int send_pack(struct in_addr *src_addr,
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000077 struct in_addr *dst_addr, struct sockaddr_ll *ME,
78 struct sockaddr_ll *HE)
Glenn L McGrath9e598412003-01-09 10:06:01 +000079{
80 int err;
Denis Vlasenko459be352007-06-17 19:09:05 +000081 unsigned char buf[256];
Glenn L McGrath9e598412003-01-09 10:06:01 +000082 struct arphdr *ah = (struct arphdr *) buf;
83 unsigned char *p = (unsigned char *) (ah + 1);
84
Glenn L McGrath9e598412003-01-09 10:06:01 +000085 ah->ar_hrd = htons(ARPHRD_ETHER);
86 ah->ar_pro = htons(ETH_P_IP);
87 ah->ar_hln = ME->sll_halen;
88 ah->ar_pln = 4;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000089 ah->ar_op = option_mask32 & ADVERT ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
Glenn L McGrath9e598412003-01-09 10:06:01 +000090
Denis Vlasenkoa6b3a1f2008-04-25 08:13:36 +000091 p = mempcpy(p, &ME->sll_addr, ah->ar_hln);
92 p = mempcpy(p, src_addr, 4);
Glenn L McGrath9e598412003-01-09 10:06:01 +000093
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000094 if (option_mask32 & ADVERT)
Denis Vlasenkoa6b3a1f2008-04-25 08:13:36 +000095 p = mempcpy(p, &ME->sll_addr, ah->ar_hln);
Glenn L McGrath9e598412003-01-09 10:06:01 +000096 else
Denis Vlasenkoa6b3a1f2008-04-25 08:13:36 +000097 p = mempcpy(p, &HE->sll_addr, ah->ar_hln);
Glenn L McGrath9e598412003-01-09 10:06:01 +000098
Denis Vlasenkoa6b3a1f2008-04-25 08:13:36 +000099 p = mempcpy(p, dst_addr, 4);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000100
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000101 err = sendto(sock_fd, buf, p - buf, 0, (struct sockaddr *) HE, sizeof(*HE));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000102 if (err == p - buf) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000103 last = MONOTONIC_US();
Glenn L McGrath9e598412003-01-09 10:06:01 +0000104 sent++;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000105 if (!(option_mask32 & UNICASTING))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000106 brd_sent++;
107 }
108 return err;
109}
110
Denis Vlasenko459be352007-06-17 19:09:05 +0000111static void finish(void) ATTRIBUTE_NORETURN;
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000112static void finish(void)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000113{
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000114 if (!(option_mask32 & QUIET)) {
115 printf("Sent %u probe(s) (%u broadcast(s))\n"
116 "Received %u repl%s"
117 " (%u request(s), %u broadcast(s))\n",
Bernhard Reutner-Fischerebd13552006-04-03 12:29:12 +0000118 sent, brd_sent,
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000119 received, (received == 1) ? "ies" : "y",
120 req_recv, brd_recv);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000121 }
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000122 if (option_mask32 & DAD)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000123 exit(!!received);
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000124 if (option_mask32 & UNSOLICITED)
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000125 exit(EXIT_SUCCESS);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000126 exit(!received);
127}
128
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000129static void catcher(void)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000130{
Denis Vlasenko459be352007-06-17 19:09:05 +0000131 unsigned now;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000132
Denis Vlasenko459be352007-06-17 19:09:05 +0000133 now = MONOTONIC_US();
134 if (start == 0)
135 start = now;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000136
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000137 if (count == 0 || (timeout_us && (now - start) > timeout_us))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000138 finish();
139
Denis Vlasenkofff9b692007-11-23 09:15:26 +0000140 /* count < 0 means "infinite count" */
141 if (count > 0)
142 count--;
Denis Vlasenko459be352007-06-17 19:09:05 +0000143
144 if (last == 0 || (now - last) > 500000) {
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000145 send_pack(&src, &dst, &me, &he);
146 if (count == 0 && (option_mask32 & UNSOLICITED))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000147 finish();
148 }
149 alarm(1);
150}
151
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000152static bool recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000153{
Glenn L McGrath9e598412003-01-09 10:06:01 +0000154 struct arphdr *ah = (struct arphdr *) buf;
155 unsigned char *p = (unsigned char *) (ah + 1);
156 struct in_addr src_ip, dst_ip;
157
Glenn L McGrath9e598412003-01-09 10:06:01 +0000158 /* Filter out wild packets */
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000159 if (FROM->sll_pkttype != PACKET_HOST
160 && FROM->sll_pkttype != PACKET_BROADCAST
161 && FROM->sll_pkttype != PACKET_MULTICAST)
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000162 return false;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000163
164 /* Only these types are recognised */
165 if (ah->ar_op != htons(ARPOP_REQUEST) && ah->ar_op != htons(ARPOP_REPLY))
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000166 return false;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000167
168 /* ARPHRD check and this darned FDDI hack here :-( */
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000169 if (ah->ar_hrd != htons(FROM->sll_hatype)
170 && (FROM->sll_hatype != ARPHRD_FDDI || ah->ar_hrd != htons(ARPHRD_ETHER)))
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000171 return false;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000172
173 /* Protocol must be IP. */
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000174 if (ah->ar_pro != htons(ETH_P_IP)
175 || (ah->ar_pln != 4)
176 || (ah->ar_hln != me.sll_halen)
177 || (len < sizeof(*ah) + 2 * (4 + ah->ar_hln)))
178 return false;
179
Glenn L McGrath9e598412003-01-09 10:06:01 +0000180 memcpy(&src_ip, p + ah->ar_hln, 4);
181 memcpy(&dst_ip, p + ah->ar_hln + 4 + ah->ar_hln, 4);
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000182
183 if (dst.s_addr != src_ip.s_addr)
184 return false;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000185 if (!(option_mask32 & DAD)) {
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000186 if ((src.s_addr != dst_ip.s_addr)
187 || (memcmp(p + ah->ar_hln + 4, &me.sll_addr, ah->ar_hln)))
188 return false;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000189 } else {
190 /* DAD packet was:
191 src_ip = 0 (or some src)
192 src_hw = ME
193 dst_ip = tested address
194 dst_hw = <unspec>
195
196 We fail, if receive request/reply with:
197 src_ip = tested_address
198 src_hw != ME
199 if src_ip in request was not zero, check
200 also that it matches to dst_ip, otherwise
201 dst_ip/dst_hw do not matter.
202 */
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000203 if ((memcmp(p, &me.sll_addr, me.sll_halen) == 0)
204 || (src.s_addr && src.s_addr != dst_ip.s_addr))
205 return false;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000206 }
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000207 if (!(option_mask32 & QUIET)) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000208 int s_printed = 0;
209
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000210 printf("%scast re%s from %s [%s]",
211 FROM->sll_pkttype == PACKET_HOST ? "Uni" : "Broad",
212 ah->ar_op == htons(ARPOP_REPLY) ? "ply" : "quest",
Bernhard Reutner-Fischerebd13552006-04-03 12:29:12 +0000213 inet_ntoa(src_ip),
214 ether_ntoa((struct ether_addr *) p));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000215 if (dst_ip.s_addr != src.s_addr) {
216 printf("for %s ", inet_ntoa(dst_ip));
217 s_printed = 1;
218 }
219 if (memcmp(p + ah->ar_hln + 4, me.sll_addr, ah->ar_hln)) {
220 if (!s_printed)
221 printf("for ");
222 printf("[%s]",
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000223 ether_ntoa((struct ether_addr *) p + ah->ar_hln + 4));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000224 }
Rob Landley8ea52052006-03-30 21:50:57 +0000225
Denis Vlasenko459be352007-06-17 19:09:05 +0000226 if (last) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000227 unsigned diff = MONOTONIC_US() - last;
228 printf(" %u.%03ums\n", diff / 1000, diff % 1000);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000229 } else {
230 printf(" UNSOLICITED?\n");
231 }
232 fflush(stdout);
233 }
234 received++;
235 if (FROM->sll_pkttype != PACKET_HOST)
236 brd_recv++;
237 if (ah->ar_op == htons(ARPOP_REQUEST))
238 req_recv++;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000239 if (option_mask32 & QUIT_ON_REPLY)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000240 finish();
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000241 if (!(option_mask32 & BCAST_ONLY)) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000242 memcpy(he.sll_addr, p, me.sll_halen);
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000243 option_mask32 |= UNICASTING;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000244 }
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000245 return true;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000246}
247
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000248int arping_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000249int arping_main(int argc ATTRIBUTE_UNUSED, char **argv)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000250{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000251 const char *device = "eth0";
Glenn L McGrath9e598412003-01-09 10:06:01 +0000252 char *source = NULL;
253 char *target;
Denis Vlasenko459be352007-06-17 19:09:05 +0000254 unsigned char *packet;
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000255 char *err_str;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000256
Denis Vlasenkofff9b692007-11-23 09:15:26 +0000257 INIT_G();
258
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000259 sock_fd = xsocket(AF_PACKET, SOCK_DGRAM, 0);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000260
Rob Landleyafb94ec2006-07-16 08:06:34 +0000261 // Drop suid root privileges
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000262 // Need to remove SUID_NEVER from applets.h for this to work
263 //xsetuid(getuid());
Glenn L McGrath9e598412003-01-09 10:06:01 +0000264
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000265 err_str = xasprintf("interface %s %%s", device);
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000266 {
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000267 unsigned opt;
Denis Vlasenko1d426652008-03-17 09:09:09 +0000268 char *str_timeout;
Bernhard Reutner-Fischera0f75e22006-04-03 11:52:01 +0000269
270 /* Dad also sets quit_on_reply.
271 * Advert also sets unsolicited.
272 */
Denis Vlasenko1d426652008-03-17 09:09:09 +0000273 opt_complementary = "=1:Df:AU:c+";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000274 opt = getopt32(argv, "DUAqfbc:w:I:s:",
Denis Vlasenko1d426652008-03-17 09:09:09 +0000275 &count, &str_timeout, &device, &source);
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000276 if (opt & 0x80) /* -w: timeout */
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000277 timeout_us = xatou_range(str_timeout, 0, INT_MAX/2000000) * 1000000 + 500000;
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000278 //if (opt & 0x200) /* -s: source */
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000279 option_mask32 &= 0x3f; /* set respective flags */
Glenn L McGrath9e598412003-01-09 10:06:01 +0000280 }
Glenn L McGrath9e598412003-01-09 10:06:01 +0000281
Denis Vlasenko459be352007-06-17 19:09:05 +0000282 target = argv[optind];
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000283
Denis Vlasenko40920822006-10-03 20:28:06 +0000284 xfunc_error_retval = 2;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000285
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000286 {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000287 struct ifreq ifr;
288
289 memset(&ifr, 0, sizeof(ifr));
Denis Vlasenkofff9b692007-11-23 09:15:26 +0000290 strncpy(ifr.ifr_name, device, sizeof(ifr.ifr_name) - 1);
291 /* We use ifr.ifr_name in error msg so that problem
292 * with truncated name will be visible */
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000293 ioctl_or_perror_and_die(sock_fd, SIOCGIFINDEX, &ifr, err_str, "not found");
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000294 me.sll_ifindex = ifr.ifr_ifindex;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000295
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000296 xioctl(sock_fd, SIOCGIFFLAGS, (char *) &ifr);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000297
Glenn L McGrath9e598412003-01-09 10:06:01 +0000298 if (!(ifr.ifr_flags & IFF_UP)) {
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000299 bb_error_msg_and_die(err_str, "is down");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000300 }
301 if (ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK)) {
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000302 bb_error_msg(err_str, "is not ARPable");
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000303 return (option_mask32 & DAD ? 0 : 2);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000304 }
305 }
306
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000307 /* if (!inet_aton(target, &dst)) - not needed */ {
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000308 len_and_sockaddr *lsa;
Denis Vlasenko42823d52007-02-04 02:39:08 +0000309 lsa = xhost_and_af2sockaddr(target, 0, AF_INET);
Bernhard Reutner-Fischer8c69afd2008-01-29 10:33:34 +0000310 memcpy(&dst, &lsa->u.sin.sin_addr.s_addr, 4);
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000311 if (ENABLE_FEATURE_CLEAN_UP)
312 free(lsa);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000313 }
314
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000315 if (source && !inet_aton(source, &src)) {
Rob Landley8ea52052006-03-30 21:50:57 +0000316 bb_error_msg_and_die("invalid source address %s", source);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000317 }
318
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000319 if ((option_mask32 & (DAD|UNSOLICITED)) == UNSOLICITED && src.s_addr == 0)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000320 src = dst;
321
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000322 if (!(option_mask32 & DAD) || src.s_addr) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000323 struct sockaddr_in saddr;
Denis Vlasenko27af5a02006-09-03 12:21:59 +0000324 int probe_fd = xsocket(AF_INET, SOCK_DGRAM, 0);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000325
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000326 if (setsockopt(probe_fd, SOL_SOCKET, SO_BINDTODEVICE, device, strlen(device) + 1) == -1)
327 bb_perror_msg("cannot bind to device %s", device);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000328 memset(&saddr, 0, sizeof(saddr));
329 saddr.sin_family = AF_INET;
330 if (src.s_addr) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000331 /* Check that this is indeed our IP */
Glenn L McGrath9e598412003-01-09 10:06:01 +0000332 saddr.sin_addr = src;
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000333 xbind(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000334 } else { /* !(option_mask32 & DAD) case */
335 /* Find IP address on this iface */
Eric Andersen0cb6f352006-01-30 22:30:41 +0000336 socklen_t alen = sizeof(saddr);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000337
338 saddr.sin_port = htons(1025);
339 saddr.sin_addr = dst;
340
Denis Vlasenko703e2022007-01-22 14:12:08 +0000341 if (setsockopt(probe_fd, SOL_SOCKET, SO_DONTROUTE, &const_int_1, sizeof(const_int_1)) == -1)
Denis Vlasenkofff9b692007-11-23 09:15:26 +0000342 bb_perror_msg("setsockopt(SO_DONTROUTE)");
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000343 xconnect(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
344 if (getsockname(probe_fd, (struct sockaddr *) &saddr, &alen) == -1) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000345 bb_perror_msg_and_die("getsockname");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000346 }
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000347 if (saddr.sin_family != AF_INET)
348 bb_error_msg_and_die("no IP address configured");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000349 src = saddr.sin_addr;
350 }
351 close(probe_fd);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000352 }
Glenn L McGrath9e598412003-01-09 10:06:01 +0000353
354 me.sll_family = AF_PACKET;
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000355 //me.sll_ifindex = ifindex; - done before
Glenn L McGrath9e598412003-01-09 10:06:01 +0000356 me.sll_protocol = htons(ETH_P_ARP);
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000357 xbind(sock_fd, (struct sockaddr *) &me, sizeof(me));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000358
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000359 {
Eric Andersen0cb6f352006-01-30 22:30:41 +0000360 socklen_t alen = sizeof(me);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000361
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000362 if (getsockname(sock_fd, (struct sockaddr *) &me, &alen) == -1) {
363 bb_perror_msg_and_die("getsockname");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000364 }
365 }
366 if (me.sll_halen == 0) {
Bernhard Reutner-Fischerf536b992008-02-11 13:26:54 +0000367 bb_error_msg(err_str, "is not ARPable (no ll address)");
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000368 return (option_mask32 & DAD ? 0 : 2);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000369 }
370 he = me;
371 memset(he.sll_addr, -1, he.sll_halen);
372
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000373 if (!(option_mask32 & QUIET)) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000374 /* inet_ntoa uses static storage, can't use in same printf */
375 printf("ARPING to %s", inet_ntoa(dst));
376 printf(" from %s via %s\n", inet_ntoa(src), device);
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000377 }
Glenn L McGrath9e598412003-01-09 10:06:01 +0000378
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +0000379 signal_SA_RESTART_empty_mask(SIGINT, (void (*)(int))finish);
380 signal_SA_RESTART_empty_mask(SIGALRM, (void (*)(int))catcher);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000381
382 catcher();
383
Denis Vlasenko459be352007-06-17 19:09:05 +0000384 packet = xmalloc(4096);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000385 while (1) {
386 sigset_t sset, osset;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000387 struct sockaddr_ll from;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000388 socklen_t alen = sizeof(from);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000389 int cc;
390
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000391 cc = recvfrom(sock_fd, packet, 4096, 0, (struct sockaddr *) &from, &alen);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000392 if (cc < 0) {
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000393 bb_perror_msg("recvfrom");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000394 continue;
395 }
396 sigemptyset(&sset);
397 sigaddset(&sset, SIGALRM);
398 sigaddset(&sset, SIGINT);
399 sigprocmask(SIG_BLOCK, &sset, &osset);
400 recv_pack(packet, cc, &from);
401 sigprocmask(SIG_SETMASK, &osset, NULL);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000402 }
403}