Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | /** @file * @brief Network initialization * * Initialize the network IP stack. Create one thread for reading data * from IP stack and passing that data to applications (Rx thread). */ /* * Copyright (c) 2016 Intel Corporation * * SPDX-License-Identifier: Apache-2.0 */ #include <logging/log.h> LOG_MODULE_REGISTER(net_core, CONFIG_NET_CORE_LOG_LEVEL); #include <init.h> #include <kernel.h> #include <toolchain.h> #include <linker/sections.h> #include <string.h> #include <errno.h> #include <net/net_if.h> #include <net/net_mgmt.h> #include <net/net_pkt.h> #include <net/net_core.h> #include <net/dns_resolve.h> #include <net/gptp.h> #include <net/websocket.h> #if defined(CONFIG_NET_LLDP) #include <net/lldp.h> #endif #include "net_private.h" #include "net_shell.h" #include "icmpv6.h" #include "ipv6.h" #include "icmpv4.h" #include "dhcpv4.h" #include "route.h" #include "packet_socket.h" #include "canbus_socket.h" #include "connection.h" #include "udp_internal.h" #include "tcp_internal.h" #include "ipv4_autoconf_internal.h" #include "net_stats.h" static inline enum net_verdict process_data(struct net_pkt *pkt, bool is_loopback) { int ret; bool locally_routed = false; ret = net_packet_socket_input(pkt); if (ret != NET_CONTINUE) { return ret; } #if defined(CONFIG_NET_IPV6_FRAGMENT) /* If the packet is routed back to us when we have reassembled * an IPv6 packet, then do not pass it to L2 as the packet does * not have link layer headers in it. */ if (net_pkt_ipv6_fragment_start(pkt)) { locally_routed = true; } #endif /* If there is no data, then drop the packet. */ if (!pkt->frags) { NET_DBG("Corrupted packet (frags %p)", pkt->frags); net_stats_update_processing_error(net_pkt_iface(pkt)); return NET_DROP; } if (!is_loopback && !locally_routed) { ret = net_if_recv_data(net_pkt_iface(pkt), pkt); if (ret != NET_CONTINUE) { if (ret == NET_DROP) { NET_DBG("Packet %p discarded by L2", pkt); net_stats_update_processing_error( net_pkt_iface(pkt)); } return ret; } } ret = net_canbus_socket_input(pkt); if (ret != NET_CONTINUE) { return ret; } /* L2 has modified the buffer starting point, it is easier * to re-initialize the cursor rather than updating it. */ net_pkt_cursor_init(pkt); /* IP version and header length. */ switch (NET_IPV6_HDR(pkt)->vtc & 0xf0) { #if defined(CONFIG_NET_IPV6) case 0x60: return net_ipv6_input(pkt, is_loopback); #endif #if defined(CONFIG_NET_IPV4) case 0x40: return net_ipv4_input(pkt); #endif } NET_DBG("Unknown IP family packet (0x%x)", NET_IPV6_HDR(pkt)->vtc & 0xf0); net_stats_update_ip_errors_protoerr(net_pkt_iface(pkt)); net_stats_update_ip_errors_vhlerr(net_pkt_iface(pkt)); return NET_DROP; } static void processing_data(struct net_pkt *pkt, bool is_loopback) { switch (process_data(pkt, is_loopback)) { case NET_OK: NET_DBG("Consumed pkt %p", pkt); break; case NET_DROP: default: NET_DBG("Dropping pkt %p", pkt); net_pkt_unref(pkt); break; } } /* Things to setup after we are able to RX and TX */ static void net_post_init(void) { #if defined(CONFIG_NET_LLDP) net_lldp_init(); #endif #if defined(CONFIG_NET_GPTP) net_gptp_init(); #endif } static void init_rx_queues(void) { /* Starting TX side. The ordering is important here and the TX * can only be started when RX side is ready to receive packets. */ net_if_init(); net_tc_rx_init(); /* This will take the interface up and start everything. */ net_if_post_init(); /* Things to init after network interface is working */ net_post_init(); } /* If loopback driver is enabled, then direct packets to it so the address * check is not needed. */ #if defined(CONFIG_NET_IP_ADDR_CHECK) && !defined(CONFIG_NET_LOOPBACK) /* Check if the IPv{4|6} addresses are proper. As this can be expensive, * make this optional. */ static inline int check_ip_addr(struct net_pkt *pkt) { #if defined(CONFIG_NET_IPV6) if (net_pkt_family(pkt) == AF_INET6) { if (net_ipv6_addr_cmp(&NET_IPV6_HDR(pkt)->dst, net_ipv6_unspecified_address())) { NET_DBG("IPv6 dst address missing"); return -EADDRNOTAVAIL; } /* If the destination address is our own, then route it * back to us. */ if (net_ipv6_is_addr_loopback(&NET_IPV6_HDR(pkt)->dst) || net_ipv6_is_my_addr(&NET_IPV6_HDR(pkt)->dst)) { struct in6_addr addr; /* Swap the addresses so that in receiving side * the packet is accepted. */ net_ipaddr_copy(&addr, &NET_IPV6_HDR(pkt)->src); net_ipaddr_copy(&NET_IPV6_HDR(pkt)->src, &NET_IPV6_HDR(pkt)->dst); net_ipaddr_copy(&NET_IPV6_HDR(pkt)->dst, &addr); return 1; } /* If the destination address is interface local scope * multicast address, then loop the data back to us. * The FF01:: multicast addresses are only meant to be used * in local host, so this is similar as how ::1 unicast * addresses are handled. See RFC 3513 ch 2.7 for details. */ if (net_ipv6_is_addr_mcast_iface(&NET_IPV6_HDR(pkt)->dst)) { NET_DBG("IPv6 interface scope mcast dst address"); return 1; } /* The source check must be done after the destination check * as having src ::1 is perfectly ok if dst is ::1 too. */ if (net_ipv6_is_addr_loopback(&NET_IPV6_HDR(pkt)->src)) { NET_DBG("IPv6 loopback src address"); return -EADDRNOTAVAIL; } } else #endif /* CONFIG_NET_IPV6 */ #if defined(CONFIG_NET_IPV4) if (net_pkt_family(pkt) == AF_INET) { if (net_ipv4_addr_cmp(&NET_IPV4_HDR(pkt)->dst, net_ipv4_unspecified_address())) { NET_DBG("IPv4 dst address missing"); return -EADDRNOTAVAIL; } /* If the destination address is our own, then route it * back to us. */ if (net_ipv4_is_addr_loopback(&NET_IPV4_HDR(pkt)->dst) || (net_ipv4_is_addr_bcast(net_pkt_iface(pkt), &NET_IPV4_HDR(pkt)->dst) == false && net_ipv4_is_my_addr(&NET_IPV4_HDR(pkt)->dst))) { struct in_addr addr; /* Swap the addresses so that in receiving side * the packet is accepted. */ net_ipaddr_copy(&addr, &NET_IPV4_HDR(pkt)->src); net_ipaddr_copy(&NET_IPV4_HDR(pkt)->src, &NET_IPV4_HDR(pkt)->dst); net_ipaddr_copy(&NET_IPV4_HDR(pkt)->dst, &addr); return 1; } /* The source check must be done after the destination check * as having src 127.0.0.0/8 is perfectly ok if dst is in * localhost subnet too. */ if (net_ipv4_is_addr_loopback(&NET_IPV4_HDR(pkt)->src)) { NET_DBG("IPv4 loopback src address"); return -EADDRNOTAVAIL; } } else #endif /* CONFIG_NET_IPV4 */ { ; } return 0; } #else #define check_ip_addr(pkt) 0 #endif /* Called when data needs to be sent to network */ int net_send_data(struct net_pkt *pkt) { int status; if (!pkt || !pkt->frags) { return -ENODATA; } if (!net_pkt_iface(pkt)) { return -EINVAL; } #if defined(CONFIG_NET_STATISTICS) switch (net_pkt_family(pkt)) { case AF_INET: net_stats_update_ipv4_sent(net_pkt_iface(pkt)); break; case AF_INET6: net_stats_update_ipv6_sent(net_pkt_iface(pkt)); break; } #endif net_pkt_trim_buffer(pkt); net_pkt_cursor_init(pkt); status = check_ip_addr(pkt); if (status < 0) { return status; } else if (status > 0) { /* Packet is destined back to us so send it directly * to RX processing. */ NET_DBG("Loopback pkt %p back to us", pkt); processing_data(pkt, true); return 0; } if (net_if_send_data(net_pkt_iface(pkt), pkt) == NET_DROP) { return -EIO; } return 0; } static void net_rx(struct net_if *iface, struct net_pkt *pkt) { bool is_loopback = false; size_t pkt_len; pkt_len = net_pkt_get_len(pkt); NET_DBG("Received pkt %p len %zu", pkt, pkt_len); net_stats_update_bytes_recv(iface, pkt_len); if (IS_ENABLED(CONFIG_NET_LOOPBACK)) { #ifdef CONFIG_NET_L2_DUMMY if (net_if_l2(iface) == &NET_L2_GET_NAME(DUMMY)) { is_loopback = true; } #endif } processing_data(pkt, is_loopback); net_print_statistics(); net_pkt_print(); } static void process_rx_packet(struct k_work *work) { struct net_pkt *pkt; pkt = CONTAINER_OF(work, struct net_pkt, work); net_rx(net_pkt_iface(pkt), pkt); } static void net_queue_rx(struct net_if *iface, struct net_pkt *pkt) { u8_t prio = net_pkt_priority(pkt); u8_t tc = net_rx_priority2tc(prio); k_work_init(net_pkt_work(pkt), process_rx_packet); #if defined(CONFIG_NET_STATISTICS) net_stats_update_tc_recv_pkt(iface, tc); net_stats_update_tc_recv_bytes(iface, tc, net_pkt_get_len(pkt)); net_stats_update_tc_recv_priority(iface, tc, prio); #endif #if NET_TC_RX_COUNT > 1 NET_DBG("TC %d with prio %d pkt %p", tc, prio, pkt); #endif net_tc_submit_to_rx_queue(tc, pkt); } /* Called by driver when an IP packet has been received */ int net_recv_data(struct net_if *iface, struct net_pkt *pkt) { if (!pkt || !iface) { return -EINVAL; } if (!pkt->frags) { return -ENODATA; } if (!net_if_flag_is_set(iface, NET_IF_UP)) { return -ENETDOWN; } net_pkt_set_overwrite(pkt, true); net_pkt_cursor_init(pkt); NET_DBG("prio %d iface %p pkt %p len %zu", net_pkt_priority(pkt), iface, pkt, net_pkt_get_len(pkt)); if (IS_ENABLED(CONFIG_NET_ROUTING)) { net_pkt_set_orig_iface(pkt, iface); } net_pkt_set_iface(pkt, iface); net_queue_rx(iface, pkt); return 0; } static inline void l3_init(void) { net_icmpv4_init(); net_icmpv6_init(); net_ipv6_init(); net_ipv4_autoconf_init(); if (IS_ENABLED(CONFIG_NET_UDP) || IS_ENABLED(CONFIG_NET_TCP) || IS_ENABLED(CONFIG_NET_SOCKETS_PACKET) || IS_ENABLED(CONFIG_NET_SOCKETS_CAN)) { net_conn_init(); } net_tcp_init(); net_route_init(); NET_DBG("Network L3 init done"); } static inline int services_init(void) { int status; status = net_dhcpv4_init(); if (status) { return status; } dns_init_resolver(); websocket_init(); net_coap_init(); net_shell_init(); return status; } static int net_init(struct device *unused) { net_hostname_init(); NET_DBG("Priority %d", CONFIG_NET_INIT_PRIO); net_pkt_init(); net_context_init(); l3_init(); net_mgmt_event_init(); init_rx_queues(); return services_init(); } SYS_INIT(net_init, POST_KERNEL, CONFIG_NET_INIT_PRIO); |