1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2013 Allied Telesis Labs NZ
6 * Copyright (C) 2022 YADRO
10 /* Neighbour Discovery for IPv6 */
17 #include <linux/delay.h>
19 /* IPv6 destination address of packet waiting for ND */
20 struct in6_addr net_nd_sol_packet_ip6 = ZERO_IPV6_ADDR;
21 /* IPv6 address we are expecting ND advert from */
22 static struct in6_addr net_nd_rep_packet_ip6 = ZERO_IPV6_ADDR;
23 /* MAC destination address of packet waiting for ND */
24 uchar *net_nd_packet_mac;
25 /* pointer to packet waiting to be transmitted after ND is resolved */
26 uchar *net_nd_tx_packet;
27 static uchar net_nd_packet_buf[PKTSIZE_ALIGN + PKTALIGN];
28 /* size of packet waiting to be transmitted */
29 int net_nd_tx_packet_size;
30 /* the timer for ND resolution */
31 ulong net_nd_timer_start;
32 /* the number of requests we have sent so far */
34 struct in6_addr all_routers = ALL_ROUTERS_MULT_ADDR;
36 #define MAX_RTR_SOLICITATIONS 3
37 /* The maximum time to delay sending the first router solicitation message. */
38 #define MAX_SOLICITATION_DELAY 1 // 1 second
39 /* The time to wait before sending the next router solicitation message. */
40 #define RTR_SOLICITATION_INTERVAL 4000 // 4 seconds
42 #define IP6_NDISC_OPT_SPACE(len) (((len) + 2 + 7) & ~7)
45 * ndisc_insert_option() - Insert an option into a neighbor discovery packet
47 * @opt: pointer to the option element of the neighbor discovery packet
48 * @type: option type to insert
49 * @data: option data to insert
51 * Return: the number of bytes inserted (which may be >= len)
53 static int ndisc_insert_option(__u8 *opt, int type, u8 *data, int len)
55 int space = IP6_NDISC_OPT_SPACE(len);
59 memcpy(&opt[2], data, len);
62 /* fill the remainder with 0 */
64 memset(&opt[len], '\0', space - len);
70 * ndisc_extract_enetaddr() - Extract the Ethernet address from a ND packet
72 * Note that the link layer address could be anything but the only networking
73 * media that u-boot supports is Ethernet so we assume we're extracting a 6
74 * byte Ethernet MAC address.
76 * @ndisc: pointer to ND packet
77 * @enetaddr: extracted MAC addr
79 static void ndisc_extract_enetaddr(struct nd_msg *ndisc, uchar enetaddr[6])
81 memcpy(enetaddr, &ndisc->opt[2], 6);
85 * ndisc_has_option() - Check if the ND packet has the specified option set
87 * @ip6: pointer to IPv6 header
88 * @type: option type to check
89 * Return: 1 if ND has that option, 0 therwise
91 static int ndisc_has_option(struct ip6_hdr *ip6, __u8 type)
93 struct nd_msg *ndisc = (struct nd_msg *)(((uchar *)ip6) + IP6_HDR_SIZE);
95 if (ip6->payload_len <= sizeof(struct icmp6hdr))
98 return ndisc->opt[0] == type;
101 static void ip6_send_ns(struct in6_addr *neigh_addr)
103 struct in6_addr dst_adr;
104 unsigned char enetaddr[6];
111 debug("sending neighbor solicitation for %pI6c our address %pI6c\n",
112 neigh_addr, &net_link_local_ip6);
114 /* calculate src, dest IPv6 addr and dest Eth addr */
115 ip6_make_snma(&dst_adr, neigh_addr);
116 ip6_make_mult_ethdstaddr(enetaddr, &dst_adr);
117 len = sizeof(struct icmp6hdr) + IN6ADDRSZ +
118 IP6_NDISC_OPT_SPACE(INETHADDRSZ);
120 pkt = (uchar *)net_tx_packet;
121 pkt += net_set_ether(pkt, enetaddr, PROT_IP6);
122 pkt += ip6_add_hdr(pkt, &net_link_local_ip6, &dst_adr, PROT_ICMPV6,
123 IPV6_NDISC_HOPLIMIT, len);
126 msg = (struct nd_msg *)pkt;
127 msg->icmph.icmp6_type = IPV6_NDISC_NEIGHBOUR_SOLICITATION;
128 msg->icmph.icmp6_code = 0;
129 memset(&msg->icmph.icmp6_cksum, 0, sizeof(__be16));
130 memset(&msg->icmph.icmp6_unused, 0, sizeof(__be32));
132 /* Set the target address and llsaddr option */
133 net_copy_ip6(&msg->target, neigh_addr);
134 ndisc_insert_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, net_ethaddr,
138 pcsum = csum_partial((__u8 *)msg, len, 0);
139 csum = csum_ipv6_magic(&net_link_local_ip6, &dst_adr,
140 len, PROT_ICMPV6, pcsum);
141 msg->icmph.icmp6_cksum = csum;
145 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
149 * ip6_send_rs() - Send IPv6 Router Solicitation Message.
151 * A router solicitation is sent to discover a router. RS message creation is
152 * based on RFC 4861 section 4.1. Router Solicitation Message Format.
154 void ip6_send_rs(void)
156 unsigned char enetaddr[6];
162 static unsigned int retry_count;
164 if (!ip6_is_unspecified_addr(&net_gateway6) &&
165 net_prefix_length != 0) {
166 net_set_state(NETLOOP_SUCCESS);
168 } else if (retry_count >= MAX_RTR_SOLICITATIONS) {
169 net_set_state(NETLOOP_FAIL);
170 net_set_timeout_handler(0, NULL);
175 printf("ROUTER SOLICITATION %d\n", retry_count + 1);
177 ip6_make_mult_ethdstaddr(enetaddr, &all_routers);
179 * ICMP length is the size of ICMP header (8) + one option (8) = 16.
180 * The option is 2 bytes of type and length + 6 bytes for MAC.
182 icmp_len = sizeof(struct icmp6hdr) + IP6_NDISC_OPT_SPACE(INETHADDRSZ);
184 pkt = (uchar *)net_tx_packet;
185 pkt += net_set_ether(pkt, enetaddr, PROT_IP6);
186 pkt += ip6_add_hdr(pkt, &net_link_local_ip6, &all_routers, PROT_ICMPV6,
187 IPV6_NDISC_HOPLIMIT, icmp_len);
190 msg = (struct rs_msg *)pkt;
191 msg->icmph.icmp6_type = IPV6_NDISC_ROUTER_SOLICITATION;
192 msg->icmph.icmp6_code = 0;
193 memset(&msg->icmph.icmp6_cksum, 0, sizeof(__be16));
194 memset(&msg->icmph.icmp6_unused, 0, sizeof(__be32));
196 /* Set the llsaddr option */
197 ndisc_insert_option(msg->opt, ND_OPT_SOURCE_LL_ADDR, net_ethaddr,
201 pcsum = csum_partial((__u8 *)msg, icmp_len, 0);
202 csum = csum_ipv6_magic(&net_link_local_ip6, &all_routers,
203 icmp_len, PROT_ICMPV6, pcsum);
204 msg->icmph.icmp6_cksum = csum;
207 /* Wait up to 1 second if it is the first try to get the RA */
208 if (retry_count == 0)
209 udelay(((unsigned int)rand() % 1000000) * MAX_SOLICITATION_DELAY);
212 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
215 net_set_timeout_handler(RTR_SOLICITATION_INTERVAL, ip6_send_rs);
219 ip6_send_na(uchar *eth_dst_addr, struct in6_addr *neigh_addr,
220 struct in6_addr *target)
227 debug("sending neighbor advertisement for %pI6c to %pI6c (%pM)\n",
228 target, neigh_addr, eth_dst_addr);
230 len = sizeof(struct icmp6hdr) + IN6ADDRSZ +
231 IP6_NDISC_OPT_SPACE(INETHADDRSZ);
233 pkt = (uchar *)net_tx_packet;
234 pkt += net_set_ether(pkt, eth_dst_addr, PROT_IP6);
235 pkt += ip6_add_hdr(pkt, &net_link_local_ip6, neigh_addr,
236 PROT_ICMPV6, IPV6_NDISC_HOPLIMIT, len);
239 msg = (struct nd_msg *)pkt;
240 msg->icmph.icmp6_type = IPV6_NDISC_NEIGHBOUR_ADVERTISEMENT;
241 msg->icmph.icmp6_code = 0;
242 memset(&msg->icmph.icmp6_cksum, 0, sizeof(__be16));
243 memset(&msg->icmph.icmp6_unused, 0, sizeof(__be32));
244 msg->icmph.icmp6_dataun.u_nd_advt.solicited = 1;
245 msg->icmph.icmp6_dataun.u_nd_advt.override = 1;
246 /* Set the target address and lltargetaddr option */
247 net_copy_ip6(&msg->target, target);
248 ndisc_insert_option(msg->opt, ND_OPT_TARGET_LL_ADDR, net_ethaddr,
252 csum = csum_ipv6_magic(&net_link_local_ip6,
253 neigh_addr, len, PROT_ICMPV6,
254 csum_partial((__u8 *)msg, len, 0));
255 msg->icmph.icmp6_cksum = csum;
259 net_send_packet(net_tx_packet, (pkt - net_tx_packet));
262 void ndisc_request(void)
264 if (!ip6_addr_in_subnet(&net_ip6, &net_nd_sol_packet_ip6,
265 net_prefix_length)) {
266 if (ip6_is_unspecified_addr(&net_gateway6)) {
267 puts("## Warning: gatewayip6 is needed but not set\n");
268 net_nd_rep_packet_ip6 = net_nd_sol_packet_ip6;
270 net_nd_rep_packet_ip6 = net_gateway6;
273 net_nd_rep_packet_ip6 = net_nd_sol_packet_ip6;
276 ip6_send_ns(&net_nd_rep_packet_ip6);
279 int ndisc_timeout_check(void)
283 if (ip6_is_unspecified_addr(&net_nd_sol_packet_ip6))
288 /* check for NDISC timeout */
289 if ((t - net_nd_timer_start) > NDISC_TIMEOUT) {
291 if (net_nd_try >= NDISC_TIMEOUT_COUNT) {
292 puts("\nNeighbour discovery retry count exceeded; "
295 net_set_state(NETLOOP_FAIL);
297 net_nd_timer_start = t;
305 * ndisc_init() - Make initial steps for ND state machine.
306 * Usually move variables into initial state.
308 void ndisc_init(void)
310 net_nd_packet_mac = NULL;
311 net_nd_tx_packet = NULL;
312 net_nd_sol_packet_ip6 = net_null_addr_ip6;
313 net_nd_rep_packet_ip6 = net_null_addr_ip6;
314 net_nd_tx_packet_size = 0;
315 net_nd_tx_packet = &net_nd_packet_buf[0] + (PKTALIGN - 1);
316 net_nd_tx_packet -= (ulong)net_nd_tx_packet % PKTALIGN;
320 * validate_ra() - Validate the router advertisement message.
322 * @ip6: Pointer to the router advertisement packet
324 * Check if the router advertisement message is valid. Conditions are
325 * according to RFC 4861 section 6.1.2. Validation of Router Advertisement
328 * Return: true if the message is valid and false if it is invalid.
330 bool validate_ra(struct ip6_hdr *ip6)
332 struct icmp6hdr *icmp = (struct icmp6hdr *)(ip6 + 1);
334 /* ICMP length (derived from the IP length) should be 16 or more octets. */
335 if (ip6->payload_len < 16)
338 /* Source IP Address should be a valid link-local address. */
339 if ((ntohs(ip6->saddr.s6_addr16[0]) & IPV6_LINK_LOCAL_MASK) !=
340 IPV6_LINK_LOCAL_PREFIX)
344 * The IP Hop Limit field should have a value of 255, i.e., the packet
345 * could not possibly have been forwarded by a router.
347 if (ip6->hop_limit != 255)
350 /* ICMP checksum has already been checked in net_ip6_handler. */
352 if (icmp->icmp6_code != 0)
359 * process_ra() - Process the router advertisement packet.
361 * @ip6: Pointer to the router advertisement packet
362 * @len: Length of the router advertisement packet
364 * Process the received router advertisement message.
365 * Although RFC 4861 requires retaining at least two router addresses, we only
366 * keep one because of the U-Boot limitations and its goal of lightweight code.
368 * Return: 0 - RA is a default router and contains valid prefix information.
369 * Non-zero - RA options are invalid or do not indicate it is a default router
370 * or do not contain valid prefix information.
372 int process_ra(struct ip6_hdr *ip6, int len)
374 /* Pointer to the ICMP section of the packet */
375 struct icmp6hdr *icmp = (struct icmp6hdr *)(ip6 + 1);
376 struct ra_msg *msg = (struct ra_msg *)icmp;
377 int remaining_option_len = len - IP6_HDR_SIZE - sizeof(struct ra_msg);
378 unsigned short int option_len; /* Length of each option */
379 /* Pointer to the ICMPv6 message options */
380 unsigned char *option = NULL;
381 /* 8-bit identifier of the type of ICMPv6 option */
382 unsigned char type = 0;
383 struct icmp6_ra_prefix_info *prefix = NULL;
385 /* Ignore the packet if router lifetime is 0. */
386 if (!icmp->icmp6_rt_lifetime)
389 /* Processing the options */
391 while (remaining_option_len > 0) {
392 /* The 2nd byte of the option is its length. */
393 option_len = option[1];
394 /* All included options should have a positive length. */
399 /* All option types except Prefix Information are ignored. */
401 case ND_OPT_SOURCE_LL_ADDR:
402 case ND_OPT_TARGET_LL_ADDR:
403 case ND_OPT_REDIRECT_HDR:
406 case ND_OPT_PREFIX_INFO:
407 prefix = (struct icmp6_ra_prefix_info *)option;
408 /* The link-local prefix 0xfe80::/10 is ignored. */
409 if ((ntohs(prefix->prefix.s6_addr16[0]) &
410 IPV6_LINK_LOCAL_MASK) == IPV6_LINK_LOCAL_PREFIX)
412 if (prefix->on_link && ntohl(prefix->valid_lifetime)) {
413 net_prefix_length = prefix->prefix_len;
414 net_gateway6 = ip6->saddr;
419 debug("Unknown IPv6 Neighbor Discovery Option 0x%x\n",
423 option_len <<= 3; /* Option length is a multiple of 8. */
424 remaining_option_len -= option_len;
425 option += option_len;
428 return -EADDRNOTAVAIL;
431 int ndisc_receive(struct ethernet_hdr *et, struct ip6_hdr *ip6, int len)
433 struct icmp6hdr *icmp =
434 (struct icmp6hdr *)(((uchar *)ip6) + IP6_HDR_SIZE);
435 struct nd_msg *ndisc = (struct nd_msg *)icmp;
436 uchar neigh_eth_addr[6];
437 int err = 0; // The error code returned calling functions.
439 switch (icmp->icmp6_type) {
440 case IPV6_NDISC_NEIGHBOUR_SOLICITATION:
441 debug("received neighbor solicitation for %pI6c from %pI6c\n",
442 &ndisc->target, &ip6->saddr);
443 if (ip6_is_our_addr(&ndisc->target) &&
444 ndisc_has_option(ip6, ND_OPT_SOURCE_LL_ADDR)) {
445 ndisc_extract_enetaddr(ndisc, neigh_eth_addr);
446 ip6_send_na(neigh_eth_addr, &ip6->saddr,
451 case IPV6_NDISC_NEIGHBOUR_ADVERTISEMENT:
452 /* are we waiting for a reply ? */
453 if (ip6_is_unspecified_addr(&net_nd_sol_packet_ip6))
456 if ((memcmp(&ndisc->target, &net_nd_rep_packet_ip6,
457 sizeof(struct in6_addr)) == 0) &&
458 ndisc_has_option(ip6, ND_OPT_TARGET_LL_ADDR)) {
459 ndisc_extract_enetaddr(ndisc, neigh_eth_addr);
461 /* save address for later use */
462 if (!net_nd_packet_mac)
463 net_nd_packet_mac = neigh_eth_addr;
465 /* modify header, and transmit it */
466 memcpy(((struct ethernet_hdr *)net_nd_tx_packet)->et_dest,
469 net_send_packet(net_nd_tx_packet,
470 net_nd_tx_packet_size);
472 /* no ND request pending now */
473 net_nd_sol_packet_ip6 = net_null_addr_ip6;
474 net_nd_tx_packet_size = 0;
475 net_nd_packet_mac = NULL;
478 case IPV6_NDISC_ROUTER_SOLICITATION:
480 case IPV6_NDISC_ROUTER_ADVERTISEMENT:
481 debug("Received router advertisement for %pI6c from %pI6c\n",
482 &ip6->daddr, &ip6->saddr);
484 * If gateway and prefix are set, the RA packet is ignored. The
485 * reason is that the U-Boot code is supposed to be as compact
486 * as possible and does not need to take care of multiple
487 * routers. In addition to that, U-Boot does not want to handle
488 * scenarios like a router setting its lifetime to zero to
489 * indicate it is not routing anymore. U-Boot program has a
490 * short life when the system boots up and does not need such
493 if (!ip6_is_unspecified_addr(&net_gateway6) &&
494 net_prefix_length != 0) {
497 if (!validate_ra(ip6)) {
498 debug("Invalid router advertisement message.\n");
501 err = process_ra(ip6, len);
503 debug("Ignored router advertisement. Error: %d\n", err);
505 printf("Set gatewayip6: %pI6c, prefix_length: %d\n",
506 &net_gateway6, net_prefix_length);
509 debug("Unexpected ICMPv6 type 0x%x\n", icmp->icmp6_type);