blob: a8bfee65a0e58b5e72d9ccd07ec1dbfd33cbdd13 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landleyad8071f2005-04-30 03:49:37 +00002/*
3 * RFC3927 ZeroConf IPv4 Link-Local addressing
4 * (see <http://www.zeroconf.org/>)
5 *
6 * Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
7 * Copyright (C) 2004 by David Brownell
8 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +00009 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Rob Landleyad8071f2005-04-30 03:49:37 +000010 */
11
12/*
Rob Landleyad8071f2005-04-30 03:49:37 +000013 * ZCIP just manages the 169.254.*.* addresses. That network is not
14 * routed at the IP level, though various proxies or bridges can
15 * certainly be used. Its naming is built over multicast DNS.
16 */
17
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000018//#define DEBUG
Rob Landleye3752e52005-05-03 03:28:55 +000019
20// TODO:
21// - more real-world usage/testing, especially daemon mode
22// - kernel packet filters to reduce scheduling noise
23// - avoid silent script failures, especially under load...
24// - link status monitoring (restart on link-up; stop on link-down)
25
Rob Landley53433b32006-06-22 22:28:29 +000026#include "busybox.h"
Rob Landleyad8071f2005-04-30 03:49:37 +000027#include <syslog.h>
28#include <poll.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000029#include <sys/wait.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000030#include <netinet/ether.h>
31#include <net/ethernet.h>
32#include <net/if.h>
33#include <net/if_arp.h>
34
35#include <linux/if_packet.h>
36#include <linux/sockios.h>
Rob Landleye3752e52005-05-03 03:28:55 +000037
Rob Landleyad8071f2005-04-30 03:49:37 +000038
Bernhard Reutner-Fischerec351c32005-12-13 10:28:25 +000039struct arp_packet {
Rob Landleyad8071f2005-04-30 03:49:37 +000040 struct ether_header hdr;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000041 struct ether_arp arp;
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000042} ATTRIBUTE_PACKED;
Rob Landleyad8071f2005-04-30 03:49:37 +000043
Rob Landleybc68cd12006-03-10 19:22:06 +000044enum {
Rob Landleyad8071f2005-04-30 03:49:37 +000045/* 169.254.0.0 */
Rob Landleybc68cd12006-03-10 19:22:06 +000046 LINKLOCAL_ADDR = 0xa9fe0000,
Rob Landleyad8071f2005-04-30 03:49:37 +000047
48/* protocol timeout parameters, specified in seconds */
Rob Landleybc68cd12006-03-10 19:22:06 +000049 PROBE_WAIT = 1,
50 PROBE_MIN = 1,
51 PROBE_MAX = 2,
52 PROBE_NUM = 3,
53 MAX_CONFLICTS = 10,
54 RATE_LIMIT_INTERVAL = 60,
55 ANNOUNCE_WAIT = 2,
56 ANNOUNCE_NUM = 2,
57 ANNOUNCE_INTERVAL = 2,
58 DEFEND_INTERVAL = 10
59};
Rob Landleyad8071f2005-04-30 03:49:37 +000060
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000061/* States during the configuration process. */
62enum {
63 PROBE = 0,
64 RATE_LIMIT_PROBE,
65 ANNOUNCE,
66 MONITOR,
67 DEFEND
68};
Rob Landleyad8071f2005-04-30 03:49:37 +000069
Denis Vlasenkoaf906a32006-09-03 12:29:53 +000070#define VDBG(fmt,args...) \
Rob Landleye3752e52005-05-03 03:28:55 +000071 do { } while (0)
Rob Landleye3752e52005-05-03 03:28:55 +000072
Denis Vlasenko67b23e62006-10-03 21:00:06 +000073static unsigned opts;
Denis Vlasenkoa9abecd2006-09-03 12:28:32 +000074#define FOREGROUND (opts & 1)
75#define QUIT (opts & 2)
76
Rob Landleye3752e52005-05-03 03:28:55 +000077/**
Rob Landleyad8071f2005-04-30 03:49:37 +000078 * Pick a random link local IP address on 169.254/16, except that
79 * the first and last 256 addresses are reserved.
80 */
Rob Landley53433b32006-06-22 22:28:29 +000081static void pick(struct in_addr *ip)
Rob Landleyad8071f2005-04-30 03:49:37 +000082{
Denis Vlasenkoaf906a32006-09-03 12:29:53 +000083 unsigned tmp;
Rob Landleyad8071f2005-04-30 03:49:37 +000084
85 /* use cheaper math than lrand48() mod N */
86 do {
87 tmp = (lrand48() >> 16) & IN_CLASSB_HOST;
88 } while (tmp > (IN_CLASSB_HOST - 0x0200));
89 ip->s_addr = htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
90}
91
Denis Vlasenkoaf906a32006-09-03 12:29:53 +000092/* TODO: we need a flag to direct bb_[p]error_msg output to stderr. */
93
Rob Landleye3752e52005-05-03 03:28:55 +000094/**
Rob Landleyad8071f2005-04-30 03:49:37 +000095 * Broadcast an ARP packet.
96 */
Denis Vlasenkoaf906a32006-09-03 12:29:53 +000097static void 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;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000102 memset(&p, 0, sizeof(p));
Rob Landleyad8071f2005-04-30 03:49:37 +0000103
Rob Landleye3752e52005-05-03 03:28:55 +0000104 // ether header
Rob Landleyad8071f2005-04-30 03:49:37 +0000105 p.hdr.ether_type = htons(ETHERTYPE_ARP);
106 memcpy(p.hdr.ether_shost, source_addr, ETH_ALEN);
107 memset(p.hdr.ether_dhost, 0xff, ETH_ALEN);
108
Rob Landleye3752e52005-05-03 03:28:55 +0000109 // arp request
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000110 p.arp.arp_hrd = htons(ARPHRD_ETHER);
111 p.arp.arp_pro = htons(ETHERTYPE_IP);
112 p.arp.arp_hln = ETH_ALEN;
113 p.arp.arp_pln = 4;
114 p.arp.arp_op = htons(op);
115 memcpy(&p.arp.arp_sha, source_addr, ETH_ALEN);
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000116 memcpy(&p.arp.arp_spa, &source_ip, sizeof(p.arp.arp_spa));
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000117 memcpy(&p.arp.arp_tha, target_addr, ETH_ALEN);
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000118 memcpy(&p.arp.arp_tpa, &target_ip, sizeof(p.arp.arp_tpa));
Rob Landleyad8071f2005-04-30 03:49:37 +0000119
Rob Landleye3752e52005-05-03 03:28:55 +0000120 // send it
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000121 if (sendto(fd, &p, sizeof(p), 0, saddr, sizeof(*saddr)) < 0) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000122 bb_perror_msg("sendto");
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000123 //return -errno;
Rob Landleyad8071f2005-04-30 03:49:37 +0000124 }
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000125 // Currently all callers ignore errors, that's why returns are
126 // commented out...
127 //return 0;
Rob Landleyad8071f2005-04-30 03:49:37 +0000128}
129
Rob Landleye3752e52005-05-03 03:28:55 +0000130/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000131 * Run a script.
132 */
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000133static int run(const char *script, const char *arg, const char *intf, struct in_addr *ip)
Rob Landleyad8071f2005-04-30 03:49:37 +0000134{
135 int pid, status;
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000136 const char *why;
Rob Landleyad8071f2005-04-30 03:49:37 +0000137
Denis Vlasenkoa9abecd2006-09-03 12:28:32 +0000138 if(1) { //always true: if (script != NULL)
Rob Landleye3752e52005-05-03 03:28:55 +0000139 VDBG("%s run %s %s\n", intf, script, arg);
Rob Landleyad8071f2005-04-30 03:49:37 +0000140 if (ip != NULL) {
141 char *addr = inet_ntoa(*ip);
Rob Landleye3752e52005-05-03 03:28:55 +0000142 setenv("ip", addr, 1);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000143 bb_info_msg("%s %s %s", arg, intf, addr);
Rob Landleyad8071f2005-04-30 03:49:37 +0000144 }
145
146 pid = vfork();
Rob Landleye3752e52005-05-03 03:28:55 +0000147 if (pid < 0) { // error
Rob Landleyad8071f2005-04-30 03:49:37 +0000148 why = "vfork";
149 goto bad;
Rob Landleye3752e52005-05-03 03:28:55 +0000150 } else if (pid == 0) { // child
Rob Landleyad8071f2005-04-30 03:49:37 +0000151 execl(script, script, arg, NULL);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000152 bb_perror_msg("execl");
Rob Landleye3752e52005-05-03 03:28:55 +0000153 _exit(EXIT_FAILURE);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000154 }
Rob Landleyad8071f2005-04-30 03:49:37 +0000155
156 if (waitpid(pid, &status, 0) <= 0) {
157 why = "waitpid";
158 goto bad;
159 }
160 if (WEXITSTATUS(status) != 0) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000161 bb_error_msg("script %s failed, exit=%d",
162 script, WEXITSTATUS(status));
Rob Landleyad8071f2005-04-30 03:49:37 +0000163 return -errno;
164 }
165 }
166 return 0;
167bad:
168 status = -errno;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000169 bb_perror_msg("%s %s, %s", arg, intf, why);
Rob Landleyad8071f2005-04-30 03:49:37 +0000170 return status;
171}
172
Rob Landleye3752e52005-05-03 03:28:55 +0000173
174/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000175 * Return milliseconds of random delay, up to "secs" seconds.
176 */
Rob Landley88621d72006-08-29 19:41:06 +0000177static unsigned ATTRIBUTE_ALWAYS_INLINE ms_rdelay(unsigned secs)
Rob Landleyad8071f2005-04-30 03:49:37 +0000178{
179 return lrand48() % (secs * 1000);
180}
181
Rob Landleye3752e52005-05-03 03:28:55 +0000182/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000183 * main program
184 */
Bernhard Reutner-Fischer38d66152005-10-21 10:43:11 +0000185
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000186/* Used to be auto variables on main() stack, but
187 * most of them were zero-inited. Moving them to bss
188 * is more space-efficient.
189 */
190static const struct in_addr null_ip; // = { 0 };
191static const struct ether_addr null_addr; // = { {0, 0, 0, 0, 0, 0} };
192
193static struct sockaddr saddr; // memset(0);
194static struct in_addr ip; // = { 0 };
195static struct ifreq ifr; //memset(0);
196
197static char *intf; // = NULL;
198static char *script; // = NULL;
199static suseconds_t timeout; // = 0; // milliseconds
200static unsigned conflicts; // = 0;
201static unsigned nprobes; // = 0;
202static unsigned nclaims; // = 0;
203static int ready; // = 0;
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000204static int verbose; // = 0;
205static int state = PROBE;
206
Denis Vlasenko06af2162007-02-03 17:28:39 +0000207int zcip_main(int argc, char *argv[]);
Rob Landleyad8071f2005-04-30 03:49:37 +0000208int zcip_main(int argc, char *argv[])
209{
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000210 struct ether_addr eth_addr;
Denis Vlasenko89ef65f2007-01-29 23:43:18 +0000211 const char *why;
Rob Landleyad8071f2005-04-30 03:49:37 +0000212 int fd;
Denis Vlasenko035aae52006-09-03 12:23:56 +0000213
Rob Landleye3752e52005-05-03 03:28:55 +0000214 // parse commandline: prog [options] ifname script
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000215 char *r_opt;
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000216 opt_complementary = "vv:vf"; // -v accumulates and implies -f
217 opts = getopt32(argc, argv, "fqr:v", &r_opt, &verbose);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000218 if (!FOREGROUND) {
219 /* Do it early, before all bb_xx_msg calls */
220 logmode = LOGMODE_SYSLOG;
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000221 openlog(applet_name, 0, LOG_DAEMON);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000222 }
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000223 if (opts & 4) { // -r n.n.n.n
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000224 if (inet_aton(r_opt, &ip) == 0
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000225 || (ntohl(ip.s_addr) & IN_CLASSB_NET) != LINKLOCAL_ADDR
226 ) {
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000227 bb_error_msg_and_die("invalid link address");
Rob Landleye3752e52005-05-03 03:28:55 +0000228 }
Rob Landleyad8071f2005-04-30 03:49:37 +0000229 }
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000230 argc -= optind;
231 argv += optind;
232 if (argc != 2)
Rob Landley53433b32006-06-22 22:28:29 +0000233 bb_show_usage();
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000234 intf = argv[0];
235 script = argv[1];
236 setenv("interface", intf, 1);
Rob Landleyad8071f2005-04-30 03:49:37 +0000237
Rob Landleye3752e52005-05-03 03:28:55 +0000238 // initialize the interface (modprobe, ifup, etc)
Rob Landleyad8071f2005-04-30 03:49:37 +0000239 if (run(script, "init", intf, NULL) < 0)
240 return EXIT_FAILURE;
241
Rob Landleye3752e52005-05-03 03:28:55 +0000242 // initialize saddr
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000243 //memset(&saddr, 0, sizeof(saddr));
244 safe_strncpy(saddr.sa_data, intf, sizeof(saddr.sa_data));
Rob Landleyad8071f2005-04-30 03:49:37 +0000245
Rob Landleye3752e52005-05-03 03:28:55 +0000246 // open an ARP socket
Denis Vlasenko035aae52006-09-03 12:23:56 +0000247 fd = xsocket(PF_PACKET, SOCK_PACKET, htons(ETH_P_ARP));
248 // bind to the interface's ARP socket
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000249 xbind(fd, &saddr, sizeof(saddr));
Denis Vlasenko035aae52006-09-03 12:23:56 +0000250
251 // get the interface's ethernet address
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000252 //memset(&ifr, 0, sizeof(ifr));
253 strncpy(ifr.ifr_name, intf, sizeof(ifr.ifr_name));
Denis Vlasenko035aae52006-09-03 12:23:56 +0000254 if (ioctl(fd, SIOCGIFHWADDR, &ifr) < 0) {
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000255 bb_perror_msg_and_die("get ethernet address");
Rob Landleyad8071f2005-04-30 03:49:37 +0000256 }
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000257 memcpy(&eth_addr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
Rob Landleyad8071f2005-04-30 03:49:37 +0000258
Denis Vlasenko035aae52006-09-03 12:23:56 +0000259 // start with some stable ip address, either a function of
260 // the hardware address or else the last address we used.
261 // NOTE: the sequence of addresses we try changes only
262 // depending on when we detect conflicts.
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000263 // (SVID 3 bogon: who says that "short" is always 16 bits?)
264 seed48( (unsigned short*)&ifr.ifr_hwaddr.sa_data );
Denis Vlasenko035aae52006-09-03 12:23:56 +0000265 if (ip.s_addr == 0)
266 pick(&ip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000267
Rob Landleye3752e52005-05-03 03:28:55 +0000268 // FIXME cases to handle:
269 // - zcip already running!
270 // - link already has local address... just defend/update
Rob Landleyad8071f2005-04-30 03:49:37 +0000271
Rob Landleye3752e52005-05-03 03:28:55 +0000272 // daemonize now; don't delay system startup
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000273 if (!FOREGROUND) {
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000274 /* bb_daemonize(); - bad, will close fd! */
275 xdaemon(0, 0);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000276 bb_info_msg("start, interface %s", intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000277 }
278
Rob Landleye3752e52005-05-03 03:28:55 +0000279 // run the dynamic address negotiation protocol,
280 // restarting after address conflicts:
281 // - start with some address we want to try
282 // - short random delay
283 // - arp probes to see if another host else uses it
284 // - arp announcements that we're claiming it
285 // - use it
286 // - defend it, within limits
Rob Landleyad8071f2005-04-30 03:49:37 +0000287 while (1) {
288 struct pollfd fds[1];
289 struct timeval tv1;
290 struct arp_packet p;
291
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000292 int source_ip_conflict = 0;
293 int target_ip_conflict = 0;
294
Rob Landleyad8071f2005-04-30 03:49:37 +0000295 fds[0].fd = fd;
296 fds[0].events = POLLIN;
297 fds[0].revents = 0;
298
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000299 // poll, being ready to adjust current timeout
Rob Landley00c051e2006-06-30 14:05:19 +0000300 if (!timeout) {
Rob Landleyad8071f2005-04-30 03:49:37 +0000301 timeout = ms_rdelay(PROBE_WAIT);
Rob Landleye3752e52005-05-03 03:28:55 +0000302 // FIXME setsockopt(fd, SO_ATTACH_FILTER, ...) to
303 // make the kernel filter out all packets except
304 // ones we'd care about.
Rob Landleyad8071f2005-04-30 03:49:37 +0000305 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000306 // set tv1 to the point in time when we timeout
Rob Landley00c051e2006-06-30 14:05:19 +0000307 gettimeofday(&tv1, NULL);
308 tv1.tv_usec += (timeout % 1000) * 1000;
309 while (tv1.tv_usec > 1000000) {
310 tv1.tv_usec -= 1000000;
311 tv1.tv_sec++;
312 }
313 tv1.tv_sec += timeout / 1000;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000314
Rob Landleye3752e52005-05-03 03:28:55 +0000315 VDBG("...wait %ld %s nprobes=%d, nclaims=%d\n",
316 timeout, intf, nprobes, nclaims);
Rob Landleyad8071f2005-04-30 03:49:37 +0000317 switch (poll(fds, 1, timeout)) {
318
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000319 // timeout
Rob Landleyad8071f2005-04-30 03:49:37 +0000320 case 0:
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000321 VDBG("state = %d\n", state);
322 switch (state) {
323 case PROBE:
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000324 // timeouts in the PROBE state mean no conflicting ARP packets
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000325 // have been received, so we can progress through the states
Rob Landleyad8071f2005-04-30 03:49:37 +0000326 if (nprobes < PROBE_NUM) {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000327 nprobes++;
328 VDBG("probe/%d %s@%s\n",
329 nprobes, intf, inet_ntoa(ip));
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000330 arp(fd, &saddr, ARPOP_REQUEST,
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000331 &eth_addr, null_ip,
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000332 &null_addr, ip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000333 timeout = PROBE_MIN * 1000;
334 timeout += ms_rdelay(PROBE_MAX
335 - PROBE_MIN);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000336 }
337 else {
338 // Switch to announce state.
339 state = ANNOUNCE;
340 nclaims = 0;
341 VDBG("announce/%d %s@%s\n",
342 nclaims, intf, inet_ntoa(ip));
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000343 arp(fd, &saddr, ARPOP_REQUEST,
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000344 &eth_addr, ip,
345 &eth_addr, ip);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000346 timeout = ANNOUNCE_INTERVAL * 1000;
347 }
348 break;
349 case RATE_LIMIT_PROBE:
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000350 // timeouts in the RATE_LIMIT_PROBE state mean no conflicting ARP packets
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000351 // have been received, so we can move immediately to the announce state
352 state = ANNOUNCE;
353 nclaims = 0;
Rob Landleye3752e52005-05-03 03:28:55 +0000354 VDBG("announce/%d %s@%s\n",
355 nclaims, intf, inet_ntoa(ip));
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000356 arp(fd, &saddr, ARPOP_REQUEST,
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000357 &eth_addr, ip,
358 &eth_addr, ip);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000359 timeout = ANNOUNCE_INTERVAL * 1000;
360 break;
361 case ANNOUNCE:
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000362 // timeouts in the ANNOUNCE state mean no conflicting ARP packets
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000363 // have been received, so we can progress through the states
Rob Landleyad8071f2005-04-30 03:49:37 +0000364 if (nclaims < ANNOUNCE_NUM) {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000365 nclaims++;
366 VDBG("announce/%d %s@%s\n",
367 nclaims, intf, inet_ntoa(ip));
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000368 arp(fd, &saddr, ARPOP_REQUEST,
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000369 &eth_addr, ip,
370 &eth_addr, ip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000371 timeout = ANNOUNCE_INTERVAL * 1000;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000372 }
373 else {
374 // Switch to monitor state.
375 state = MONITOR;
Rob Landleye3752e52005-05-03 03:28:55 +0000376 // link is ok to use earlier
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000377 // FIXME update filters
Rob Landleyad8071f2005-04-30 03:49:37 +0000378 run(script, "config", intf, &ip);
379 ready = 1;
380 conflicts = 0;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000381 timeout = -1; // Never timeout in the monitor state.
Rob Landleyad8071f2005-04-30 03:49:37 +0000382
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000383 // NOTE: all other exit paths
Rob Landleye3752e52005-05-03 03:28:55 +0000384 // should deconfig ...
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000385 if (QUIT)
Rob Landleyad8071f2005-04-30 03:49:37 +0000386 return EXIT_SUCCESS;
Rob Landleyad8071f2005-04-30 03:49:37 +0000387 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000388 break;
389 case DEFEND:
390 // We won! No ARP replies, so just go back to monitor.
391 state = MONITOR;
392 timeout = -1;
393 conflicts = 0;
394 break;
395 default:
396 // Invalid, should never happen. Restart the whole protocol.
397 state = PROBE;
398 pick(&ip);
399 timeout = 0;
400 nprobes = 0;
401 nclaims = 0;
402 break;
403 } // switch (state)
404 break; // case 0 (timeout)
Rob Landleye3752e52005-05-03 03:28:55 +0000405 // packets arriving
Rob Landleyad8071f2005-04-30 03:49:37 +0000406 case 1:
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000407 // We need to adjust the timeout in case we didn't receive
408 // a conflicting packet.
Rob Landleyad8071f2005-04-30 03:49:37 +0000409 if (timeout > 0) {
410 struct timeval tv2;
Rob Landleye3752e52005-05-03 03:28:55 +0000411
Rob Landleyad8071f2005-04-30 03:49:37 +0000412 gettimeofday(&tv2, NULL);
413 if (timercmp(&tv1, &tv2, <)) {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000414 // Current time is greater than the expected timeout time.
415 // Should never happen.
416 VDBG("missed an expected timeout\n");
Paul Foxef81ce62006-03-29 23:01:33 +0000417 timeout = 0;
Rob Landleyad8071f2005-04-30 03:49:37 +0000418 } else {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000419 VDBG("adjusting timeout\n");
Rob Landleyad8071f2005-04-30 03:49:37 +0000420 timersub(&tv1, &tv2, &tv1);
421 timeout = 1000 * tv1.tv_sec
422 + tv1.tv_usec / 1000;
423 }
424 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000425
Rob Landleyad8071f2005-04-30 03:49:37 +0000426 if ((fds[0].revents & POLLIN) == 0) {
427 if (fds[0].revents & POLLERR) {
Rob Landleye3752e52005-05-03 03:28:55 +0000428 // FIXME: links routinely go down;
429 // this shouldn't necessarily exit.
Denis Vlasenko65113e82006-09-03 12:31:59 +0000430 bb_error_msg("%s: poll error", intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000431 if (ready) {
Rob Landleye3752e52005-05-03 03:28:55 +0000432 run(script, "deconfig",
433 intf, &ip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000434 }
435 return EXIT_FAILURE;
436 }
437 continue;
438 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000439
Rob Landleye3752e52005-05-03 03:28:55 +0000440 // read ARP packet
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000441 if (recv(fd, &p, sizeof(p), 0) < 0) {
Rob Landleyad8071f2005-04-30 03:49:37 +0000442 why = "recv";
443 goto bad;
444 }
445 if (p.hdr.ether_type != htons(ETHERTYPE_ARP))
446 continue;
Rob Landleye3752e52005-05-03 03:28:55 +0000447
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000448#ifdef DEBUG
449 {
450 struct ether_addr * sha = (struct ether_addr *) p.arp.arp_sha;
451 struct ether_addr * tha = (struct ether_addr *) p.arp.arp_tha;
452 struct in_addr * spa = (struct in_addr *) p.arp.arp_spa;
453 struct in_addr * tpa = (struct in_addr *) p.arp.arp_tpa;
454 VDBG("%s recv arp type=%d, op=%d,\n",
Rob Landleye3752e52005-05-03 03:28:55 +0000455 intf, ntohs(p.hdr.ether_type),
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000456 ntohs(p.arp.arp_op));
457 VDBG("\tsource=%s %s\n",
458 ether_ntoa(sha),
459 inet_ntoa(*spa));
460 VDBG("\ttarget=%s %s\n",
461 ether_ntoa(tha),
462 inet_ntoa(*tpa));
463 }
464#endif
465 if (p.arp.arp_op != htons(ARPOP_REQUEST)
466 && p.arp.arp_op != htons(ARPOP_REPLY))
Rob Landleyad8071f2005-04-30 03:49:37 +0000467 continue;
468
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000469 if (memcmp(p.arp.arp_spa, &ip.s_addr, sizeof(struct in_addr)) == 0 &&
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000470 memcmp(&eth_addr, &p.arp.arp_sha, ETH_ALEN) != 0) {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000471 source_ip_conflict = 1;
472 }
473 if (memcmp(p.arp.arp_tpa, &ip.s_addr, sizeof(struct in_addr)) == 0 &&
474 p.arp.arp_op == htons(ARPOP_REQUEST) &&
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000475 memcmp(&eth_addr, &p.arp.arp_tha, ETH_ALEN) != 0) {
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000476 target_ip_conflict = 1;
477 }
Rob Landleyad8071f2005-04-30 03:49:37 +0000478
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000479 VDBG("state = %d, source ip conflict = %d, target ip conflict = %d\n",
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000480 state, source_ip_conflict, target_ip_conflict);
481 switch (state) {
482 case PROBE:
483 case ANNOUNCE:
484 // When probing or announcing, check for source IP conflicts
485 // and other hosts doing ARP probes (target IP conflicts).
486 if (source_ip_conflict || target_ip_conflict) {
487 conflicts++;
488 if (conflicts >= MAX_CONFLICTS) {
489 VDBG("%s ratelimit\n", intf);
490 timeout = RATE_LIMIT_INTERVAL * 1000;
491 state = RATE_LIMIT_PROBE;
Rob Landleyad8071f2005-04-30 03:49:37 +0000492 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000493
494 // restart the whole protocol
495 pick(&ip);
496 timeout = 0;
497 nprobes = 0;
498 nclaims = 0;
499 }
500 break;
501 case MONITOR:
502 // If a conflict, we try to defend with a single ARP probe.
503 if (source_ip_conflict) {
504 VDBG("monitor conflict -- defending\n");
505 state = DEFEND;
506 timeout = DEFEND_INTERVAL * 1000;
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000507 arp(fd, &saddr,
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000508 ARPOP_REQUEST,
Denis Vlasenko60e3dd62006-09-03 12:26:06 +0000509 &eth_addr, ip,
510 &eth_addr, ip);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000511 }
512 break;
513 case DEFEND:
514 // Well, we tried. Start over (on conflict).
515 if (source_ip_conflict) {
516 state = PROBE;
517 VDBG("defend conflict -- starting over\n");
Rob Landleyad8071f2005-04-30 03:49:37 +0000518 ready = 0;
519 run(script, "deconfig", intf, &ip);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000520
521 // restart the whole protocol
522 pick(&ip);
523 timeout = 0;
524 nprobes = 0;
525 nclaims = 0;
Rob Landleyad8071f2005-04-30 03:49:37 +0000526 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000527 break;
528 default:
529 // Invalid, should never happen. Restart the whole protocol.
530 VDBG("invalid state -- starting over\n");
531 state = PROBE;
Rob Landleyad8071f2005-04-30 03:49:37 +0000532 pick(&ip);
533 timeout = 0;
534 nprobes = 0;
535 nclaims = 0;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000536 break;
537 } // switch state
Rob Landleyad8071f2005-04-30 03:49:37 +0000538
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000539 break; // case 1 (packets arriving)
Rob Landleyad8071f2005-04-30 03:49:37 +0000540 default:
541 why = "poll";
542 goto bad;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000543 } // switch poll
Rob Landleyad8071f2005-04-30 03:49:37 +0000544 }
545bad:
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000546 bb_perror_msg("%s, %s", intf, why);
Rob Landleyad8071f2005-04-30 03:49:37 +0000547 return EXIT_FAILURE;
548}