blob: e25f01755149428bc100a0727d34136125c26c91 [file] [log] [blame]
Rob Landleyad8071f2005-04-30 03:49:37 +00001/*
2 * RFC3927 ZeroConf IPv4 Link-Local addressing
3 * (see <http://www.zeroconf.org/>)
4 *
5 * Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
6 * Copyright (C) 2004 by David Brownell
7 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Rob Landleyad8071f2005-04-30 03:49:37 +00009 */
10
11/*
Rob Landleyad8071f2005-04-30 03:49:37 +000012 * ZCIP just manages the 169.254.*.* addresses. That network is not
13 * routed at the IP level, though various proxies or bridges can
14 * certainly be used. Its naming is built over multicast DNS.
15 */
16
Rob Landleye3752e52005-05-03 03:28:55 +000017// #define DEBUG
18
19// TODO:
20// - more real-world usage/testing, especially daemon mode
21// - kernel packet filters to reduce scheduling noise
22// - avoid silent script failures, especially under load...
23// - link status monitoring (restart on link-up; stop on link-down)
24
Rob Landley53433b32006-06-22 22:28:29 +000025#include "busybox.h"
Rob Landleyad8071f2005-04-30 03:49:37 +000026#include <errno.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000027#include <string.h>
28#include <syslog.h>
29#include <poll.h>
30#include <time.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000031
Rob Landleyad8071f2005-04-30 03:49:37 +000032#include <sys/wait.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000033
Rob Landleyad8071f2005-04-30 03:49:37 +000034#include <netinet/ether.h>
35#include <net/ethernet.h>
36#include <net/if.h>
37#include <net/if_arp.h>
38
39#include <linux/if_packet.h>
40#include <linux/sockios.h>
Rob Landleye3752e52005-05-03 03:28:55 +000041
Rob Landleyad8071f2005-04-30 03:49:37 +000042
Bernhard Reutner-Fischerec351c32005-12-13 10:28:25 +000043struct arp_packet {
Rob Landleyad8071f2005-04-30 03:49:37 +000044 struct ether_header hdr;
Rob Landleye3752e52005-05-03 03:28:55 +000045 // FIXME this part is netinet/if_ether.h "struct ether_arp"
Rob Landleyad8071f2005-04-30 03:49:37 +000046 struct arphdr arp;
47 struct ether_addr source_addr;
48 struct in_addr source_ip;
49 struct ether_addr target_addr;
50 struct in_addr target_ip;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000051} ATTRIBUTE_PACKED;
Rob Landleyad8071f2005-04-30 03:49:37 +000052
Rob Landleybc68cd12006-03-10 19:22:06 +000053enum {
Rob Landleyad8071f2005-04-30 03:49:37 +000054/* 169.254.0.0 */
Rob Landleybc68cd12006-03-10 19:22:06 +000055 LINKLOCAL_ADDR = 0xa9fe0000,
Rob Landleyad8071f2005-04-30 03:49:37 +000056
57/* protocol timeout parameters, specified in seconds */
Rob Landleybc68cd12006-03-10 19:22:06 +000058 PROBE_WAIT = 1,
59 PROBE_MIN = 1,
60 PROBE_MAX = 2,
61 PROBE_NUM = 3,
62 MAX_CONFLICTS = 10,
63 RATE_LIMIT_INTERVAL = 60,
64 ANNOUNCE_WAIT = 2,
65 ANNOUNCE_NUM = 2,
66 ANNOUNCE_INTERVAL = 2,
67 DEFEND_INTERVAL = 10
68};
Rob Landleyad8071f2005-04-30 03:49:37 +000069
Rob Landleyad8071f2005-04-30 03:49:37 +000070static const struct in_addr null_ip = { 0 };
71static const struct ether_addr null_addr = { {0, 0, 0, 0, 0, 0} };
72
Rob Landleye3752e52005-05-03 03:28:55 +000073static int verbose = 0;
Rob Landleyad8071f2005-04-30 03:49:37 +000074
Rob Landleye3752e52005-05-03 03:28:55 +000075#define DBG(fmt,args...) \
76 do { } while (0)
77#define VDBG DBG
Rob Landleye3752e52005-05-03 03:28:55 +000078
79/**
Rob Landleyad8071f2005-04-30 03:49:37 +000080 * Pick a random link local IP address on 169.254/16, except that
81 * the first and last 256 addresses are reserved.
82 */
Rob Landley53433b32006-06-22 22:28:29 +000083static void pick(struct in_addr *ip)
Rob Landleyad8071f2005-04-30 03:49:37 +000084{
85 unsigned tmp;
86
87 /* use cheaper math than lrand48() mod N */
88 do {
89 tmp = (lrand48() >> 16) & IN_CLASSB_HOST;
90 } while (tmp > (IN_CLASSB_HOST - 0x0200));
91 ip->s_addr = htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
92}
93
Rob Landleye3752e52005-05-03 03:28:55 +000094/**
Rob Landleyad8071f2005-04-30 03:49:37 +000095 * Broadcast an ARP packet.
96 */
Rob Landley53433b32006-06-22 22:28:29 +000097static int arp(int fd, struct sockaddr *saddr, int op,
Rob Landleyad8071f2005-04-30 03:49:37 +000098 const struct ether_addr *source_addr, struct in_addr source_ip,
99 const struct ether_addr *target_addr, struct in_addr target_ip)
100{
101 struct arp_packet p;
102
Rob Landleye3752e52005-05-03 03:28:55 +0000103 // ether header
Rob Landleyad8071f2005-04-30 03:49:37 +0000104 p.hdr.ether_type = htons(ETHERTYPE_ARP);
105 memcpy(p.hdr.ether_shost, source_addr, ETH_ALEN);
106 memset(p.hdr.ether_dhost, 0xff, ETH_ALEN);
107
Rob Landleye3752e52005-05-03 03:28:55 +0000108 // arp request
Rob Landleyad8071f2005-04-30 03:49:37 +0000109 p.arp.ar_hrd = htons(ARPHRD_ETHER);
110 p.arp.ar_pro = htons(ETHERTYPE_IP);
111 p.arp.ar_hln = ETH_ALEN;
112 p.arp.ar_pln = 4;
113 p.arp.ar_op = htons(op);
114 memcpy(&p.source_addr, source_addr, ETH_ALEN);
115 memcpy(&p.source_ip, &source_ip, sizeof (p.source_ip));
116 memcpy(&p.target_addr, target_addr, ETH_ALEN);
117 memcpy(&p.target_ip, &target_ip, sizeof (p.target_ip));
118
Rob Landleye3752e52005-05-03 03:28:55 +0000119 // send it
Rob Landleyad8071f2005-04-30 03:49:37 +0000120 if (sendto(fd, &p, sizeof (p), 0, saddr, sizeof (*saddr)) < 0) {
Rob Landleye3752e52005-05-03 03:28:55 +0000121 perror("sendto");
Rob Landleyad8071f2005-04-30 03:49:37 +0000122 return -errno;
123 }
124 return 0;
125}
126
Rob Landleye3752e52005-05-03 03:28:55 +0000127/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000128 * Run a script.
129 */
Rob Landley53433b32006-06-22 22:28:29 +0000130static int run(char *script, char *arg, char *intf, struct in_addr *ip)
Rob Landleyad8071f2005-04-30 03:49:37 +0000131{
132 int pid, status;
133 char *why;
134
135 if (script != NULL) {
Rob Landleye3752e52005-05-03 03:28:55 +0000136 VDBG("%s run %s %s\n", intf, script, arg);
Rob Landleyad8071f2005-04-30 03:49:37 +0000137 if (ip != NULL) {
138 char *addr = inet_ntoa(*ip);
Rob Landleye3752e52005-05-03 03:28:55 +0000139 setenv("ip", addr, 1);
Rob Landleyad8071f2005-04-30 03:49:37 +0000140 syslog(LOG_INFO, "%s %s %s", arg, intf, addr);
141 }
142
143 pid = vfork();
Rob Landleye3752e52005-05-03 03:28:55 +0000144 if (pid < 0) { // error
Rob Landleyad8071f2005-04-30 03:49:37 +0000145 why = "vfork";
146 goto bad;
Rob Landleye3752e52005-05-03 03:28:55 +0000147 } else if (pid == 0) { // child
Rob Landleyad8071f2005-04-30 03:49:37 +0000148 execl(script, script, arg, NULL);
Rob Landleye3752e52005-05-03 03:28:55 +0000149 perror("execl");
150 _exit(EXIT_FAILURE);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000151 }
Rob Landleyad8071f2005-04-30 03:49:37 +0000152
153 if (waitpid(pid, &status, 0) <= 0) {
154 why = "waitpid";
155 goto bad;
156 }
157 if (WEXITSTATUS(status) != 0) {
Rob Landley53433b32006-06-22 22:28:29 +0000158 bb_error_msg("script %s failed, exit=%d\n",
159 script, WEXITSTATUS(status));
Rob Landleyad8071f2005-04-30 03:49:37 +0000160 return -errno;
161 }
162 }
163 return 0;
164bad:
165 status = -errno;
166 syslog(LOG_ERR, "%s %s, %s error: %s",
167 arg, intf, why, strerror(errno));
168 return status;
169}
170
Rob Landleye3752e52005-05-03 03:28:55 +0000171
172/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000173 * Return milliseconds of random delay, up to "secs" seconds.
174 */
Rob Landley53433b32006-06-22 22:28:29 +0000175static inline unsigned ms_rdelay(unsigned secs)
Rob Landleyad8071f2005-04-30 03:49:37 +0000176{
177 return lrand48() % (secs * 1000);
178}
179
Rob Landleye3752e52005-05-03 03:28:55 +0000180/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000181 * main program
182 */
Bernhard Reutner-Fischer38d66152005-10-21 10:43:11 +0000183
Rob Landleyad8071f2005-04-30 03:49:37 +0000184int zcip_main(int argc, char *argv[])
185{
186 char *intf = NULL;
187 char *script = NULL;
Rob Landleye3752e52005-05-03 03:28:55 +0000188 int quit = 0;
189 int foreground = 0;
190
Rob Landleyad8071f2005-04-30 03:49:37 +0000191 char *why;
192 struct sockaddr saddr;
193 struct ether_addr addr;
194 struct in_addr ip = { 0 };
195 int fd;
196 int ready = 0;
Rob Landleye3752e52005-05-03 03:28:55 +0000197 suseconds_t timeout = 0; // milliseconds
Rob Landleyad8071f2005-04-30 03:49:37 +0000198 time_t defend = 0;
199 unsigned conflicts = 0;
200 unsigned nprobes = 0;
201 unsigned nclaims = 0;
Rob Landleye3752e52005-05-03 03:28:55 +0000202 int t;
Rob Landleyad8071f2005-04-30 03:49:37 +0000203
Rob Landleye3752e52005-05-03 03:28:55 +0000204 // parse commandline: prog [options] ifname script
Rob Landleye3752e52005-05-03 03:28:55 +0000205 while ((t = getopt(argc, argv, "fqr:v")) != EOF) {
206 switch (t) {
207 case 'f':
208 foreground = 1;
209 continue;
210 case 'q':
211 quit = 1;
212 continue;
213 case 'r':
214 if (inet_aton(optarg, &ip) == 0
215 || (ntohl(ip.s_addr) & IN_CLASSB_NET)
216 != LINKLOCAL_ADDR) {
Rob Landley53433b32006-06-22 22:28:29 +0000217 bb_error_msg_and_die("invalid link address");
Rob Landleye3752e52005-05-03 03:28:55 +0000218 }
219 continue;
220 case 'v':
Rob Landleye3752e52005-05-03 03:28:55 +0000221 verbose++;
222 foreground = 1;
223 continue;
224 default:
Rob Landley53433b32006-06-22 22:28:29 +0000225 bb_error_msg_and_die("bad option");
Rob Landleye3752e52005-05-03 03:28:55 +0000226 }
Rob Landleyad8071f2005-04-30 03:49:37 +0000227 }
Rob Landleye3752e52005-05-03 03:28:55 +0000228 if (optind < argc - 1) {
229 intf = argv[optind++];
230 setenv("interface", intf, 1);
231 script = argv[optind++];
Rob Landleyad8071f2005-04-30 03:49:37 +0000232 }
Rob Landleye3752e52005-05-03 03:28:55 +0000233 if (optind != argc || !intf)
Rob Landley53433b32006-06-22 22:28:29 +0000234 bb_show_usage();
235 openlog(bb_applet_name, 0, LOG_DAEMON);
Rob Landleyad8071f2005-04-30 03:49:37 +0000236
Rob Landleye3752e52005-05-03 03:28:55 +0000237 // initialize the interface (modprobe, ifup, etc)
Rob Landleyad8071f2005-04-30 03:49:37 +0000238 if (run(script, "init", intf, NULL) < 0)
239 return EXIT_FAILURE;
240
Rob Landleye3752e52005-05-03 03:28:55 +0000241 // initialize saddr
Rob Landleyad8071f2005-04-30 03:49:37 +0000242 memset(&saddr, 0, sizeof (saddr));
Rob Landley768945b2006-06-25 00:34:52 +0000243 safe_strncpy(saddr.sa_data, intf, sizeof (saddr.sa_data));
Rob Landleyad8071f2005-04-30 03:49:37 +0000244
Rob Landleye3752e52005-05-03 03:28:55 +0000245 // open an ARP socket
Rob Landleyad8071f2005-04-30 03:49:37 +0000246 if ((fd = socket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP))) < 0) {
247 why = "open";
248fail:
Rob Landleye3752e52005-05-03 03:28:55 +0000249 foreground = 1;
Rob Landleyad8071f2005-04-30 03:49:37 +0000250 goto bad;
251 }
Rob Landleye3752e52005-05-03 03:28:55 +0000252 // bind to the interface's ARP socket
Rob Landleyad8071f2005-04-30 03:49:37 +0000253 if (bind(fd, &saddr, sizeof (saddr)) < 0) {
254 why = "bind";
255 goto fail;
256 } else {
257 struct ifreq ifr;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000258 unsigned short seed[3];
Rob Landleyad8071f2005-04-30 03:49:37 +0000259
Rob Landleye3752e52005-05-03 03:28:55 +0000260 // get the interface's ethernet address
Rob Landleyad8071f2005-04-30 03:49:37 +0000261 memset(&ifr, 0, sizeof (ifr));
262 strncpy(ifr.ifr_name, intf, sizeof (ifr.ifr_name));
263 if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
264 why = "get ethernet address";
265 goto fail;
266 }
267 memcpy(&addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
268
Rob Landleye3752e52005-05-03 03:28:55 +0000269 // start with some stable ip address, either a function of
270 // the hardware address or else the last address we used.
271 // NOTE: the sequence of addresses we try changes only
272 // depending on when we detect conflicts.
Rob Landleyad8071f2005-04-30 03:49:37 +0000273 memcpy(seed, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
274 seed48(seed);
275 if (ip.s_addr == 0)
276 pick(&ip);
277 }
278
Rob Landleye3752e52005-05-03 03:28:55 +0000279 // FIXME cases to handle:
280 // - zcip already running!
281 // - link already has local address... just defend/update
Rob Landleyad8071f2005-04-30 03:49:37 +0000282
Rob Landleye3752e52005-05-03 03:28:55 +0000283 // daemonize now; don't delay system startup
284 if (!foreground) {
285 if (daemon(0, verbose) < 0) {
Rob Landleyad8071f2005-04-30 03:49:37 +0000286 why = "daemon";
287 goto bad;
288 }
289 syslog(LOG_INFO, "start, interface %s", intf);
290 }
291
Rob Landleye3752e52005-05-03 03:28:55 +0000292 // run the dynamic address negotiation protocol,
293 // restarting after address conflicts:
294 // - start with some address we want to try
295 // - short random delay
296 // - arp probes to see if another host else uses it
297 // - arp announcements that we're claiming it
298 // - use it
299 // - defend it, within limits
Rob Landleyad8071f2005-04-30 03:49:37 +0000300 while (1) {
301 struct pollfd fds[1];
302 struct timeval tv1;
303 struct arp_packet p;
304
305 fds[0].fd = fd;
306 fds[0].events = POLLIN;
307 fds[0].revents = 0;
308
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000309 // poll, being ready to adjust current timeout
Rob Landleyad8071f2005-04-30 03:49:37 +0000310 if (timeout > 0) {
311 gettimeofday(&tv1, NULL);
312 tv1.tv_usec += (timeout % 1000) * 1000;
313 while (tv1.tv_usec > 1000000) {
314 tv1.tv_usec -= 1000000;
315 tv1.tv_sec++;
316 }
317 tv1.tv_sec += timeout / 1000;
318 } else if (timeout == 0) {
319 timeout = ms_rdelay(PROBE_WAIT);
Rob Landleye3752e52005-05-03 03:28:55 +0000320 // FIXME setsockopt(fd, SO_ATTACH_FILTER, ...) to
321 // make the kernel filter out all packets except
322 // ones we'd care about.
Rob Landleyad8071f2005-04-30 03:49:37 +0000323 }
Rob Landleye3752e52005-05-03 03:28:55 +0000324 VDBG("...wait %ld %s nprobes=%d, nclaims=%d\n",
325 timeout, intf, nprobes, nclaims);
Rob Landleyad8071f2005-04-30 03:49:37 +0000326 switch (poll(fds, 1, timeout)) {
327
Rob Landleye3752e52005-05-03 03:28:55 +0000328 // timeouts trigger protocol transitions
Rob Landleyad8071f2005-04-30 03:49:37 +0000329 case 0:
Rob Landleye3752e52005-05-03 03:28:55 +0000330 // probes
Rob Landleyad8071f2005-04-30 03:49:37 +0000331 if (nprobes < PROBE_NUM) {
332 nprobes++;
Rob Landleye3752e52005-05-03 03:28:55 +0000333 VDBG("probe/%d %s@%s\n",
334 nprobes, intf, inet_ntoa(ip));
Rob Landleyad8071f2005-04-30 03:49:37 +0000335 (void)arp(fd, &saddr, ARPOP_REQUEST,
336 &addr, null_ip,
337 &null_addr, ip);
338 if (nprobes < PROBE_NUM) {
339 timeout = PROBE_MIN * 1000;
340 timeout += ms_rdelay(PROBE_MAX
341 - PROBE_MIN);
342 } else
343 timeout = ANNOUNCE_WAIT * 1000;
344 }
Rob Landleye3752e52005-05-03 03:28:55 +0000345 // then announcements
Rob Landleyad8071f2005-04-30 03:49:37 +0000346 else if (nclaims < ANNOUNCE_NUM) {
347 nclaims++;
Rob Landleye3752e52005-05-03 03:28:55 +0000348 VDBG("announce/%d %s@%s\n",
349 nclaims, intf, inet_ntoa(ip));
Rob Landleyad8071f2005-04-30 03:49:37 +0000350 (void)arp(fd, &saddr, ARPOP_REQUEST,
351 &addr, ip,
352 &addr, ip);
353 if (nclaims < ANNOUNCE_NUM) {
354 timeout = ANNOUNCE_INTERVAL * 1000;
355 } else {
Rob Landleye3752e52005-05-03 03:28:55 +0000356 // link is ok to use earlier
Rob Landleyad8071f2005-04-30 03:49:37 +0000357 run(script, "config", intf, &ip);
358 ready = 1;
359 conflicts = 0;
360 timeout = -1;
361
Rob Landleye3752e52005-05-03 03:28:55 +0000362 // NOTE: all other exit paths
363 // should deconfig ...
364 if (quit)
Rob Landleyad8071f2005-04-30 03:49:37 +0000365 return EXIT_SUCCESS;
Rob Landleye3752e52005-05-03 03:28:55 +0000366 // FIXME update filters
Rob Landleyad8071f2005-04-30 03:49:37 +0000367 }
368 }
369 break;
370
Rob Landleye3752e52005-05-03 03:28:55 +0000371 // packets arriving
Rob Landleyad8071f2005-04-30 03:49:37 +0000372 case 1:
Rob Landleye3752e52005-05-03 03:28:55 +0000373 // maybe adjust timeout
Rob Landleyad8071f2005-04-30 03:49:37 +0000374 if (timeout > 0) {
375 struct timeval tv2;
Rob Landleye3752e52005-05-03 03:28:55 +0000376
Rob Landleyad8071f2005-04-30 03:49:37 +0000377 gettimeofday(&tv2, NULL);
378 if (timercmp(&tv1, &tv2, <)) {
Paul Foxef81ce62006-03-29 23:01:33 +0000379 timeout = 0;
Rob Landleyad8071f2005-04-30 03:49:37 +0000380 } else {
381 timersub(&tv1, &tv2, &tv1);
382 timeout = 1000 * tv1.tv_sec
383 + tv1.tv_usec / 1000;
384 }
385 }
386 if ((fds[0].revents & POLLIN) == 0) {
387 if (fds[0].revents & POLLERR) {
Rob Landleye3752e52005-05-03 03:28:55 +0000388 // FIXME: links routinely go down;
389 // this shouldn't necessarily exit.
Rob Landley53433b32006-06-22 22:28:29 +0000390 bb_error_msg("%s: poll error\n", intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000391 if (ready) {
Rob Landleye3752e52005-05-03 03:28:55 +0000392 run(script, "deconfig",
393 intf, &ip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000394 }
395 return EXIT_FAILURE;
396 }
397 continue;
398 }
Rob Landleye3752e52005-05-03 03:28:55 +0000399 // read ARP packet
Rob Landleyad8071f2005-04-30 03:49:37 +0000400 if (recv(fd, &p, sizeof (p), 0) < 0) {
401 why = "recv";
402 goto bad;
403 }
404 if (p.hdr.ether_type != htons(ETHERTYPE_ARP))
405 continue;
Rob Landleye3752e52005-05-03 03:28:55 +0000406
407 VDBG("%s recv arp type=%d, op=%d,\n",
408 intf, ntohs(p.hdr.ether_type),
409 ntohs(p.arp.ar_op));
410 VDBG("\tsource=%s %s\n",
411 ether_ntoa(&p.source_addr),
412 inet_ntoa(p.source_ip));
413 VDBG("\ttarget=%s %s\n",
414 ether_ntoa(&p.target_addr),
415 inet_ntoa(p.target_ip));
Rob Landleyad8071f2005-04-30 03:49:37 +0000416 if (p.arp.ar_op != htons(ARPOP_REQUEST)
417 && p.arp.ar_op != htons(ARPOP_REPLY))
418 continue;
419
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000420 // some cases are always conflicts
Rob Landleyad8071f2005-04-30 03:49:37 +0000421 if ((p.source_ip.s_addr == ip.s_addr)
422 && (memcmp(&addr, &p.source_addr,
423 ETH_ALEN) != 0)) {
424collision:
Rob Landleye3752e52005-05-03 03:28:55 +0000425 VDBG("%s ARP conflict from %s\n", intf,
426 ether_ntoa(&p.source_addr));
Rob Landleyad8071f2005-04-30 03:49:37 +0000427 if (ready) {
428 time_t now = time(0);
429
430 if ((defend + DEFEND_INTERVAL)
431 < now) {
432 defend = now;
433 (void)arp(fd, &saddr,
434 ARPOP_REQUEST,
435 &addr, ip,
436 &addr, ip);
Rob Landleye3752e52005-05-03 03:28:55 +0000437 VDBG("%s defend\n", intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000438 timeout = -1;
439 continue;
440 }
441 defend = now;
442 ready = 0;
443 run(script, "deconfig", intf, &ip);
Rob Landleye3752e52005-05-03 03:28:55 +0000444 // FIXME rm filters: setsockopt(fd,
445 // SO_DETACH_FILTER, ...)
Rob Landleyad8071f2005-04-30 03:49:37 +0000446 }
447 conflicts++;
448 if (conflicts >= MAX_CONFLICTS) {
Rob Landleye3752e52005-05-03 03:28:55 +0000449 VDBG("%s ratelimit\n", intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000450 sleep(RATE_LIMIT_INTERVAL);
451 }
Rob Landleye3752e52005-05-03 03:28:55 +0000452 // restart the whole protocol
Rob Landleyad8071f2005-04-30 03:49:37 +0000453 pick(&ip);
454 timeout = 0;
455 nprobes = 0;
456 nclaims = 0;
457 }
Rob Landleye3752e52005-05-03 03:28:55 +0000458 // two hosts probing one address is a collision too
Rob Landleyad8071f2005-04-30 03:49:37 +0000459 else if (p.target_ip.s_addr == ip.s_addr
460 && nclaims == 0
461 && p.arp.ar_op == htons(ARPOP_REQUEST)
462 && memcmp(&addr, &p.target_addr,
463 ETH_ALEN) != 0) {
464 goto collision;
465 }
466 break;
467
468 default:
469 why = "poll";
470 goto bad;
471 }
472 }
473bad:
Rob Landleye3752e52005-05-03 03:28:55 +0000474 if (foreground)
475 perror(why);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000476 else
Rob Landleyad8071f2005-04-30 03:49:37 +0000477 syslog(LOG_ERR, "%s %s, %s error: %s",
Rob Landley53433b32006-06-22 22:28:29 +0000478 bb_applet_name, intf, why, strerror(errno));
Rob Landleyad8071f2005-04-30 03:49:37 +0000479 return EXIT_FAILURE;
480}