blob: 2bca7de12ab4274fede6faf57b8c609e58d7b3ca [file] [log] [blame]
Joe Hershbergerd22c3382012-05-23 08:00:12 +00001/*
2 * RFC3927 ZeroConf IPv4 Link-Local addressing
3 * (see <http://www.zeroconf.org/>)
4 *
5 * Copied from BusyBox - networking/zcip.c
6 *
7 * Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
8 * Copyright (C) 2004 by David Brownell
9 * Copyright (C) 2010 by Joe Hershberger
10 *
11 * Licensed under the GPL v2 or later
12 */
13
14#include <common.h>
15#include <net.h>
16#include "arp.h"
17#include "net_rand.h"
18
19/* We don't need more than 32 bits of the counter */
20#define MONOTONIC_MS() ((unsigned)get_timer(0) * (1000 / CONFIG_SYS_HZ))
21
22enum {
23/* 169.254.0.0 */
24 LINKLOCAL_ADDR = 0xa9fe0000,
25
26 IN_CLASSB_NET = 0xffff0000,
27 IN_CLASSB_HOST = 0x0000ffff,
28
29/* protocol timeout parameters, specified in seconds */
30 PROBE_WAIT = 1,
31 PROBE_MIN = 1,
32 PROBE_MAX = 2,
33 PROBE_NUM = 3,
34 MAX_CONFLICTS = 10,
35 RATE_LIMIT_INTERVAL = 60,
36 ANNOUNCE_WAIT = 2,
37 ANNOUNCE_NUM = 2,
38 ANNOUNCE_INTERVAL = 2,
39 DEFEND_INTERVAL = 10
40};
41
42/* States during the configuration process. */
43static enum ll_state_t {
44 PROBE = 0,
45 RATE_LIMIT_PROBE,
46 ANNOUNCE,
47 MONITOR,
48 DEFEND,
49 DISABLED
50} state = DISABLED;
51
Joe Hershberger049a95a2015-04-08 01:41:01 -050052static struct in_addr ip;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000053static int timeout_ms = -1;
54static unsigned deadline_ms;
55static unsigned conflicts;
56static unsigned nprobes;
57static unsigned nclaims;
58static int ready;
Michael Walle99e139d2012-06-05 11:33:15 +000059static unsigned int seed;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000060
61static void link_local_timeout(void);
62
63/**
64 * Pick a random link local IP address on 169.254/16, except that
65 * the first and last 256 addresses are reserved.
66 */
Joe Hershberger049a95a2015-04-08 01:41:01 -050067static struct in_addr pick(void)
Joe Hershbergerd22c3382012-05-23 08:00:12 +000068{
69 unsigned tmp;
Joe Hershberger049a95a2015-04-08 01:41:01 -050070 struct in_addr ip;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000071
72 do {
Michael Walle99e139d2012-06-05 11:33:15 +000073 tmp = rand_r(&seed) & IN_CLASSB_HOST;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000074 } while (tmp > (IN_CLASSB_HOST - 0x0200));
Joe Hershberger049a95a2015-04-08 01:41:01 -050075 ip.s_addr = htonl((LINKLOCAL_ADDR + 0x0100) + tmp);
76 return ip;
Joe Hershbergerd22c3382012-05-23 08:00:12 +000077}
78
79/**
80 * Return milliseconds of random delay, up to "secs" seconds.
81 */
82static inline unsigned random_delay_ms(unsigned secs)
83{
Michael Walle99e139d2012-06-05 11:33:15 +000084 return rand_r(&seed) % (secs * 1000);
Joe Hershbergerd22c3382012-05-23 08:00:12 +000085}
86
87static void configure_wait(void)
88{
89 if (timeout_ms == -1)
90 return;
91
92 /* poll, being ready to adjust current timeout */
93 if (!timeout_ms)
94 timeout_ms = random_delay_ms(PROBE_WAIT);
95
96 /* set deadline_ms to the point in time when we timeout */
97 deadline_ms = MONOTONIC_MS() + timeout_ms;
98
Joe Hershberger4ef8d532012-05-23 08:01:04 +000099 debug_cond(DEBUG_DEV_PKT, "...wait %d %s nprobes=%u, nclaims=%u\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000100 timeout_ms, eth_get_name(), nprobes, nclaims);
101
102 NetSetTimeout(timeout_ms, link_local_timeout);
103}
104
105void link_local_start(void)
106{
Joe Hershberger049a95a2015-04-08 01:41:01 -0500107 ip = getenv_ip("llipaddr");
108 if (ip.s_addr != 0 &&
109 (ntohl(ip.s_addr) & IN_CLASSB_NET) != LINKLOCAL_ADDR) {
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000110 puts("invalid link address");
111 net_set_state(NETLOOP_FAIL);
112 return;
113 }
Joe Hershberger049a95a2015-04-08 01:41:01 -0500114 net_netmask.s_addr = IN_CLASSB_NET;
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000115
Michael Walle99e139d2012-06-05 11:33:15 +0000116 seed = seed_mac();
Joe Hershberger049a95a2015-04-08 01:41:01 -0500117 if (ip.s_addr == 0)
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000118 ip = pick();
119
120 state = PROBE;
121 timeout_ms = 0;
122 conflicts = 0;
123 nprobes = 0;
124 nclaims = 0;
125 ready = 0;
126
127 configure_wait();
128}
129
130static void link_local_timeout(void)
131{
132 switch (state) {
133 case PROBE:
134 /* timeouts in the PROBE state mean no conflicting ARP packets
135 have been received, so we can progress through the states */
136 if (nprobes < PROBE_NUM) {
Joe Hershberger049a95a2015-04-08 01:41:01 -0500137 struct in_addr zero_ip = {.s_addr = 0};
138
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000139 nprobes++;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000140 debug_cond(DEBUG_LL_STATE, "probe/%u %s@%pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000141 nprobes, eth_get_name(), &ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500142 arp_raw_request(zero_ip, net_null_ethaddr, ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000143 timeout_ms = PROBE_MIN * 1000;
144 timeout_ms += random_delay_ms(PROBE_MAX - PROBE_MIN);
145 } else {
146 /* Switch to announce state */
147 state = ANNOUNCE;
148 nclaims = 0;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000149 debug_cond(DEBUG_LL_STATE, "announce/%u %s@%pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000150 nclaims, eth_get_name(), &ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500151 arp_raw_request(ip, net_ethaddr, ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000152 timeout_ms = ANNOUNCE_INTERVAL * 1000;
153 }
154 break;
155 case RATE_LIMIT_PROBE:
156 /* timeouts in the RATE_LIMIT_PROBE state mean no conflicting
157 ARP packets have been received, so we can move immediately
158 to the announce state */
159 state = ANNOUNCE;
160 nclaims = 0;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000161 debug_cond(DEBUG_LL_STATE, "announce/%u %s@%pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000162 nclaims, eth_get_name(), &ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500163 arp_raw_request(ip, net_ethaddr, ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000164 timeout_ms = ANNOUNCE_INTERVAL * 1000;
165 break;
166 case ANNOUNCE:
167 /* timeouts in the ANNOUNCE state mean no conflicting ARP
168 packets have been received, so we can progress through
169 the states */
170 if (nclaims < ANNOUNCE_NUM) {
171 nclaims++;
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000172 debug_cond(DEBUG_LL_STATE, "announce/%u %s@%pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000173 nclaims, eth_get_name(), &ip);
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500174 arp_raw_request(ip, net_ethaddr, ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000175 timeout_ms = ANNOUNCE_INTERVAL * 1000;
176 } else {
177 /* Switch to monitor state */
178 state = MONITOR;
179 printf("Successfully assigned %pI4\n", &ip);
Joe Hershberger049a95a2015-04-08 01:41:01 -0500180 net_copy_ip(&net_ip, &ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000181 ready = 1;
182 conflicts = 0;
183 timeout_ms = -1;
184 /* Never timeout in the monitor state */
185 NetSetTimeout(0, NULL);
186
187 /* NOTE: all other exit paths should deconfig ... */
188 net_set_state(NETLOOP_SUCCESS);
189 return;
190 }
191 break;
192 case DEFEND:
193 /* We won! No ARP replies, so just go back to monitor */
194 state = MONITOR;
195 timeout_ms = -1;
196 conflicts = 0;
197 break;
198 default:
199 /* Invalid, should never happen. Restart the whole protocol */
200 state = PROBE;
201 ip = pick();
202 timeout_ms = 0;
203 nprobes = 0;
204 nclaims = 0;
205 break;
206 }
207 configure_wait();
208}
209
210void link_local_receive_arp(struct arp_hdr *arp, int len)
211{
212 int source_ip_conflict;
213 int target_ip_conflict;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500214 struct in_addr null_ip = {.s_addr = 0};
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000215
216 if (state == DISABLED)
217 return;
218
219 /* We need to adjust the timeout in case we didn't receive a
220 conflicting packet. */
221 if (timeout_ms > 0) {
222 unsigned diff = deadline_ms - MONOTONIC_MS();
223 if ((int)(diff) < 0) {
224 /* Current time is greater than the expected timeout
225 time. This should never happen */
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000226 debug_cond(DEBUG_LL_STATE,
227 "missed an expected timeout\n");
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000228 timeout_ms = 0;
229 } else {
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000230 debug_cond(DEBUG_INT_STATE, "adjusting timeout\n");
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000231 timeout_ms = diff | 1; /* never 0 */
232 }
233 }
benoit.thebaudeau@advansb6841152012-07-19 01:19:34 +0000234#if 0
235 /* XXX Don't bother with ethernet link just yet */
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000236 if ((fds[0].revents & POLLIN) == 0) {
237 if (fds[0].revents & POLLERR) {
Wolfgang Denk3fe63832012-07-10 09:18:33 +0200238 /*
239 * FIXME: links routinely go down;
240 */
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000241 bb_error_msg("iface %s is down", eth_get_name());
242 if (ready) {
243 run(argv, "deconfig", &ip);
244 }
245 return EXIT_FAILURE;
246 }
247 continue;
248 }
benoit.thebaudeau@advansb6841152012-07-19 01:19:34 +0000249#endif
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000250
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000251 debug_cond(DEBUG_INT_STATE, "%s recv arp type=%d, op=%d,\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000252 eth_get_name(), ntohs(arp->ar_pro),
253 ntohs(arp->ar_op));
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000254 debug_cond(DEBUG_INT_STATE, "\tsource=%pM %pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000255 &arp->ar_sha,
256 &arp->ar_spa);
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000257 debug_cond(DEBUG_INT_STATE, "\ttarget=%pM %pI4\n",
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000258 &arp->ar_tha,
259 &arp->ar_tpa);
260
261 if (arp->ar_op != htons(ARPOP_REQUEST)
262 && arp->ar_op != htons(ARPOP_REPLY)
263 ) {
264 configure_wait();
265 return;
266 }
267
268 source_ip_conflict = 0;
269 target_ip_conflict = 0;
270
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500271 if (memcmp(&arp->ar_spa, &ip, ARP_PLEN) == 0 &&
272 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0)
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000273 source_ip_conflict = 1;
Joe Hershberger5da7cf82013-02-08 14:18:53 -0600274
275 /*
276 * According to RFC 3927, section 2.2.1:
277 * Check if packet is an ARP probe by checking for a null source IP
278 * then check that target IP is equal to ours and source hw addr
279 * is not equal to ours. This condition should cause a conflict only
280 * during probe.
281 */
282 if (arp->ar_op == htons(ARPOP_REQUEST) &&
283 memcmp(&arp->ar_spa, &null_ip, ARP_PLEN) == 0 &&
284 memcmp(&arp->ar_tpa, &ip, ARP_PLEN) == 0 &&
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500285 memcmp(&arp->ar_sha, net_ethaddr, ARP_HLEN) != 0) {
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000286 target_ip_conflict = 1;
287 }
288
Joe Hershberger4ef8d532012-05-23 08:01:04 +0000289 debug_cond(DEBUG_NET_PKT,
290 "state = %d, source ip conflict = %d, target ip conflict = "
291 "%d\n", state, source_ip_conflict, target_ip_conflict);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000292 switch (state) {
293 case PROBE:
294 case ANNOUNCE:
295 /* When probing or announcing, check for source IP conflicts
296 and other hosts doing ARP probes (target IP conflicts). */
297 if (source_ip_conflict || target_ip_conflict) {
298 conflicts++;
299 state = PROBE;
300 if (conflicts >= MAX_CONFLICTS) {
301 debug("%s ratelimit\n", eth_get_name());
302 timeout_ms = RATE_LIMIT_INTERVAL * 1000;
303 state = RATE_LIMIT_PROBE;
304 }
305
306 /* restart the whole protocol */
307 ip = pick();
308 timeout_ms = 0;
309 nprobes = 0;
310 nclaims = 0;
311 }
312 break;
313 case MONITOR:
314 /* If a conflict, we try to defend with a single ARP probe */
315 if (source_ip_conflict) {
316 debug("monitor conflict -- defending\n");
317 state = DEFEND;
318 timeout_ms = DEFEND_INTERVAL * 1000;
Joe Hershberger0adb5b72015-04-08 01:41:04 -0500319 arp_raw_request(ip, net_ethaddr, ip);
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000320 }
321 break;
322 case DEFEND:
323 /* Well, we tried. Start over (on conflict) */
324 if (source_ip_conflict) {
325 state = PROBE;
326 debug("defend conflict -- starting over\n");
327 ready = 0;
Joe Hershberger049a95a2015-04-08 01:41:01 -0500328 net_ip.s_addr = 0;
Joe Hershbergerd22c3382012-05-23 08:00:12 +0000329
330 /* restart the whole protocol */
331 ip = pick();
332 timeout_ms = 0;
333 nprobes = 0;
334 nclaims = 0;
335 }
336 break;
337 default:
338 /* Invalid, should never happen. Restart the whole protocol */
339 debug("invalid state -- starting over\n");
340 state = PROBE;
341 ip = pick();
342 timeout_ms = 0;
343 nprobes = 0;
344 nclaims = 0;
345 break;
346 }
347 configure_wait();
348}