Zephyr Project API  3.2.0
A Scalable Open Source RTOS
net_if.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 Intel Corporation.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_INCLUDE_NET_NET_IF_H_
13#define ZEPHYR_INCLUDE_NET_NET_IF_H_
14
22#include <zephyr/device.h>
23#include <zephyr/sys/slist.h>
24
25#include <zephyr/net/net_core.h>
26#include <zephyr/net/hostname.h>
28#include <zephyr/net/net_ip.h>
29#include <zephyr/net/net_l2.h>
32
33#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
34#include <zephyr/net/dhcpv4.h>
35#endif
36#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
38#endif
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
51 struct net_addr address;
52
53#if defined(CONFIG_NET_NATIVE_IPV6)
54 struct net_timeout lifetime;
55#endif
56
57#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
59 sys_snode_t dad_node;
60 uint32_t dad_start;
61#endif
64
67
68#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
70 uint8_t dad_count;
71#endif
72
75
78
81
82 uint8_t _unused : 5;
83};
84
92 struct net_addr address;
93
96
99
100 uint8_t _unused : 6;
101};
102
111
114
116 struct net_if *iface;
117
120
123
126
127 uint8_t _unused : 6;
128};
129
138
140 struct net_addr address;
141
143 struct net_if *iface;
144
147
150
153
156
159
160 uint8_t _unused : 5;
161};
162
166
169
172
180
183
189
192
195
197 /* Total number of flags - must be at the end of the enum */
198 NET_IF_NUM_FLAGS
200};
201
202#if defined(CONFIG_NET_OFFLOAD)
203struct net_offload;
204#endif /* CONFIG_NET_OFFLOAD */
205
207#if defined(CONFIG_NET_NATIVE_IPV6)
208#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
209#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
210#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
211#else
212#define NET_IF_MAX_IPV6_ADDR 0
213#define NET_IF_MAX_IPV6_MADDR 0
214#define NET_IF_MAX_IPV6_PREFIX 0
215#endif
216/* @endcond */
217
220 struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
221
223 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR];
224
226 struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX];
227
230
233
236#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
238 sys_snode_t rs_node;
239
240 /* RS start time */
241 uint32_t rs_start;
242
244 uint8_t rs_count;
245#endif
246
249};
250
252#if defined(CONFIG_NET_NATIVE_IPV4)
253#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
254#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
255#else
256#define NET_IF_MAX_IPV4_ADDR 0
257#define NET_IF_MAX_IPV4_MADDR 0
258#endif
263 struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
264
266 struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR];
267
269 struct in_addr gw;
270
273
276};
277
278#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
279struct net_if_dhcpv4 {
281 sys_snode_t node;
282
284 int64_t timer_start;
285
287 uint32_t request_time;
288
289 uint32_t xid;
290
292 uint32_t lease_time;
293
295 uint32_t renewal_time;
296
298 uint32_t rebinding_time;
299
301 struct in_addr server_id;
302
304 struct in_addr requested_ip;
305
310 enum net_dhcpv4_state state;
311
313 uint8_t attempts;
314};
315#endif /* CONFIG_NET_DHCPV4 */
316
317#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
318struct net_if_ipv4_autoconf {
320 sys_snode_t node;
321
323 struct net_if *iface;
324
326 int64_t timer_start;
327
329 uint32_t timer_timeout;
330
332 struct in_addr current_ip;
333
335 struct in_addr requested_ip;
336
340
342 uint8_t probe_cnt;
343
345 uint8_t announce_cnt;
346
348 uint8_t conflict_cnt;
349};
350#endif /* CONFIG_NET_IPV4_AUTO */
351
353/* We always need to have at least one IP config */
354#define NET_IF_MAX_CONFIGS 1
360struct net_if_ip {
361#if defined(CONFIG_NET_NATIVE_IPV6)
362 struct net_if_ipv6 *ipv6;
363#endif /* CONFIG_NET_IPV6 */
364
365#if defined(CONFIG_NET_NATIVE_IPV4)
366 struct net_if_ipv4 *ipv4;
367#endif /* CONFIG_NET_IPV4 */
368};
369
374#if defined(CONFIG_NET_IP)
376 struct net_if_ip ip;
377#endif
378
379#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
380 struct net_if_dhcpv4 dhcpv4;
381#endif /* CONFIG_NET_DHCPV4 */
382
383#if defined(CONFIG_NET_IPV4_AUTO) && defined(CONFIG_NET_NATIVE_IPV4)
384 struct net_if_ipv4_autoconf ipv4auto;
385#endif /* CONFIG_NET_IPV4_AUTO */
386
387#if defined(CONFIG_NET_L2_VIRTUAL)
392 sys_slist_t virtual_interfaces;
393#endif /* CONFIG_NET_L2_VIRTUAL */
394};
395
407 struct k_fifo fifo;
408
411
414};
415
422typedef int (*net_socket_create_t)(int, int, int);
423
439 const struct device *dev;
440
442 const struct net_l2 * const l2;
443
445 void *l2_data;
446
447 /* For internal use */
448 ATOMIC_DEFINE(flags, NET_IF_NUM_FLAGS);
449
452
453#if defined(CONFIG_NET_OFFLOAD)
459 struct net_offload *offload;
460#endif /* CONFIG_NET_OFFLOAD */
461
464
465#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
469 net_socket_create_t socket_offload;
470#endif /* CONFIG_NET_SOCKETS_OFFLOAD */
471};
472
480struct net_if {
483
484#if defined(CONFIG_NET_STATISTICS_PER_INTERFACE)
486 struct net_stats stats;
487#endif /* CONFIG_NET_STATISTICS_PER_INTERFACE */
488
491
492#if defined(CONFIG_NET_POWER_MANAGEMENT)
497 int tx_pending;
498#endif
499};
500
507static inline void net_if_flag_set(struct net_if *iface,
508 enum net_if_flag value)
509{
510 NET_ASSERT(iface);
511
512 atomic_set_bit(iface->if_dev->flags, value);
513}
514
523static inline bool net_if_flag_test_and_set(struct net_if *iface,
524 enum net_if_flag value)
525{
526 NET_ASSERT(iface);
527
528 return atomic_test_and_set_bit(iface->if_dev->flags, value);
529}
530
537static inline void net_if_flag_clear(struct net_if *iface,
538 enum net_if_flag value)
539{
540 NET_ASSERT(iface);
541
542 atomic_clear_bit(iface->if_dev->flags, value);
543}
544
553static inline bool net_if_flag_is_set(struct net_if *iface,
554 enum net_if_flag value)
555{
556 if (iface == NULL) {
557 return false;
558 }
559
560 return atomic_test_bit(iface->if_dev->flags, value);
561}
562
571enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt);
572
580static inline const struct net_l2 * const net_if_l2(struct net_if *iface)
581{
582 if (!iface || !iface->if_dev) {
583 return NULL;
584 }
585
586 return iface->if_dev->l2;
587}
588
597enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt);
598
606static inline void *net_if_l2_data(struct net_if *iface)
607{
608 return iface->if_dev->l2_data;
609}
610
618static inline const struct device *net_if_get_device(struct net_if *iface)
619{
620 return iface->if_dev->dev;
621}
622
629void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt);
630
638static inline bool net_if_is_ip_offloaded(struct net_if *iface)
639{
640#if defined(CONFIG_NET_OFFLOAD)
641 return (iface->if_dev->offload != NULL);
642#else
643 ARG_UNUSED(iface);
644
645 return false;
646#endif
647}
648
656static inline struct net_offload *net_if_offload(struct net_if *iface)
657{
658#if defined(CONFIG_NET_OFFLOAD)
659 return iface->if_dev->offload;
660#else
661 ARG_UNUSED(iface);
662
663 return NULL;
664#endif
665}
666
674static inline bool net_if_is_socket_offloaded(struct net_if *iface)
675{
676#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
677 return (iface->if_dev->socket_offload != NULL);
678#else
679 ARG_UNUSED(iface);
680
681 return false;
682#endif
683}
684
691static inline void net_if_socket_offload_set(
692 struct net_if *iface, net_socket_create_t socket_offload)
693{
694#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
695 iface->if_dev->socket_offload = socket_offload;
696#else
697 ARG_UNUSED(iface);
698 ARG_UNUSED(socket_offload);
699#endif
700}
701
710{
711#if defined(CONFIG_NET_SOCKETS_OFFLOAD)
712 return iface->if_dev->socket_offload;
713#else
714 ARG_UNUSED(iface);
715
716 return NULL;
717#endif
718}
719
727static inline struct net_linkaddr *net_if_get_link_addr(struct net_if *iface)
728{
729 return &iface->if_dev->link_addr;
730}
731
739static inline struct net_if_config *net_if_get_config(struct net_if *iface)
740{
741 return &iface->config;
742}
743
749#if defined(CONFIG_NET_IPV6_DAD) && defined(CONFIG_NET_NATIVE_IPV6)
750void net_if_start_dad(struct net_if *iface);
751#else
752static inline void net_if_start_dad(struct net_if *iface)
753{
754 ARG_UNUSED(iface);
755}
756#endif
757
763void net_if_start_rs(struct net_if *iface);
764
765
771#if defined(CONFIG_NET_IPV6_ND) && defined(CONFIG_NET_NATIVE_IPV6)
772void net_if_stop_rs(struct net_if *iface);
773#else
774static inline void net_if_stop_rs(struct net_if *iface)
775{
776 ARG_UNUSED(iface);
777}
778#endif /* CONFIG_NET_IPV6_ND */
779
782static inline int net_if_set_link_addr_unlocked(struct net_if *iface,
783 uint8_t *addr, uint8_t len,
784 enum net_link_type type)
785{
786 if (net_if_flag_is_set(iface, NET_IF_UP)) {
787 return -EPERM;
788 }
789
790 net_if_get_link_addr(iface)->addr = addr;
791 net_if_get_link_addr(iface)->len = len;
792 net_if_get_link_addr(iface)->type = type;
793
794 net_hostname_set_postfix(addr, len);
795
796 return 0;
797}
798
799int net_if_set_link_addr_locked(struct net_if *iface,
800 uint8_t *addr, uint8_t len,
801 enum net_link_type type);
815static inline int net_if_set_link_addr(struct net_if *iface,
816 uint8_t *addr, uint8_t len,
817 enum net_link_type type)
818{
819#if defined(CONFIG_NET_RAW_MODE)
820 return net_if_set_link_addr_unlocked(iface, addr, len, type);
821#else
822 return net_if_set_link_addr_locked(iface, addr, len, type);
823#endif
824}
825
833static inline uint16_t net_if_get_mtu(struct net_if *iface)
834{
835 if (iface == NULL) {
836 return 0U;
837 }
838
839 return iface->if_dev->mtu;
840}
841
848static inline void net_if_set_mtu(struct net_if *iface,
849 uint16_t mtu)
850{
851 if (iface == NULL) {
852 return;
853 }
854
855 iface->if_dev->mtu = mtu;
856}
857
864static inline void net_if_addr_set_lf(struct net_if_addr *ifaddr,
865 bool is_infinite)
866{
867 ifaddr->is_infinite = is_infinite;
868}
869
878
886struct net_if *net_if_lookup_by_dev(const struct device *dev);
887
895static inline struct net_if_config *net_if_config_get(struct net_if *iface)
896{
897 return &iface->config;
898}
899
905void net_if_router_rm(struct net_if_router *router);
906
912void net_if_set_default(struct net_if *iface);
913
920
929struct net_if *net_if_get_first_by_type(const struct net_l2 *l2);
930
938
939#if defined(CONFIG_NET_L2_IEEE802154)
946static inline struct net_if *net_if_get_ieee802154(void)
947{
948 return net_if_get_first_by_type(&NET_L2_GET_NAME(IEEE802154));
949}
950#endif /* CONFIG_NET_L2_IEEE802154 */
951
963 struct net_if_ipv6 **ipv6);
964
973
983 struct net_if **iface);
984
994 struct in6_addr *addr);
995
1004__syscall int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr);
1005
1017 struct in6_addr *addr,
1019 uint32_t vlifetime);
1020
1032 struct in6_addr *addr,
1034 uint32_t vlifetime);
1035
1043 uint32_t vlifetime);
1044
1053bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr);
1054
1064 const struct in6_addr *addr);
1065
1075 const struct in6_addr *addr);
1076
1085bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr);
1086
1098 struct net_if **iface);
1099
1111typedef void (*net_if_mcast_callback_t)(struct net_if *iface,
1112 const struct net_addr *addr,
1113 bool is_joined);
1114
1126
1128 struct net_if *iface;
1129
1132};
1133
1143 struct net_if *iface,
1145
1152
1160void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr,
1161 bool is_joined);
1162
1169
1177static inline bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
1178{
1179 NET_ASSERT(addr);
1180
1181 return addr->is_joined;
1182}
1183
1190
1200 struct in6_addr *addr);
1201
1212 struct in6_addr *addr,
1213 uint8_t len);
1214
1226 struct in6_addr *prefix,
1227 uint8_t len,
1229
1239bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr,
1240 uint8_t len);
1241
1249 bool is_infinite)
1250{
1251 prefix->is_infinite = is_infinite;
1252}
1253
1262
1269
1280bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr);
1281
1288#if defined(CONFIG_NET_NATIVE_IPV6)
1289static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1290{
1291 return &router->address.in6_addr;
1292}
1293#else
1294static inline struct in6_addr *net_if_router_ipv6(struct net_if_router *router)
1295{
1296 static struct in6_addr addr;
1297
1298 ARG_UNUSED(router);
1299
1300 return &addr;
1301}
1302#endif
1303
1314 struct in6_addr *addr);
1315
1326 struct in6_addr *addr);
1327
1336
1347 struct in6_addr *addr,
1348 uint16_t router_lifetime);
1349
1358
1368
1376
1384 uint32_t reachable_time)
1385{
1386#if defined(CONFIG_NET_NATIVE_IPV6)
1387 if (!iface->config.ip.ipv6) {
1388 return;
1389 }
1390
1391 iface->config.ip.ipv6->base_reachable_time = reachable_time;
1392#endif
1393}
1394
1403{
1404#if defined(CONFIG_NET_NATIVE_IPV6)
1405 if (!iface->config.ip.ipv6) {
1406 return 0;
1407 }
1408
1409 return iface->config.ip.ipv6->reachable_time;
1410#else
1411 return 0;
1412#endif
1413}
1414
1423
1430static inline void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
1431{
1432#if defined(CONFIG_NET_NATIVE_IPV6)
1434#endif
1435}
1436
1443static inline void net_if_ipv6_set_retrans_timer(struct net_if *iface,
1444 uint32_t retrans_timer)
1445{
1446#if defined(CONFIG_NET_NATIVE_IPV6)
1447 if (!iface->config.ip.ipv6) {
1448 return;
1449 }
1450
1451 iface->config.ip.ipv6->retrans_timer = retrans_timer;
1452#endif
1453}
1454
1463{
1464#if defined(CONFIG_NET_NATIVE_IPV6)
1465 if (!iface->config.ip.ipv6) {
1466 return 0;
1467 }
1468
1469 return iface->config.ip.ipv6->retrans_timer;
1470#else
1471 return 0;
1472#endif
1473}
1474
1486#if defined(CONFIG_NET_NATIVE_IPV6)
1487const struct in6_addr *net_if_ipv6_select_src_addr(struct net_if *iface,
1488 const struct in6_addr *dst);
1489#else
1490static inline const struct in6_addr *net_if_ipv6_select_src_addr(
1491 struct net_if *iface, const struct in6_addr *dst)
1492{
1493 ARG_UNUSED(iface);
1494 ARG_UNUSED(dst);
1495
1496 return NULL;
1497}
1498#endif
1499
1509#if defined(CONFIG_NET_NATIVE_IPV6)
1510struct net_if *net_if_ipv6_select_src_iface(const struct in6_addr *dst);
1511#else
1513 const struct in6_addr *dst)
1514{
1515 ARG_UNUSED(dst);
1516
1517 return NULL;
1518}
1519#endif
1520
1530struct in6_addr *net_if_ipv6_get_ll(struct net_if *iface,
1531 enum net_addr_state addr_state);
1532
1543 struct net_if **iface);
1544
1552void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr);
1553
1566 struct net_if **iface);
1567
1579 struct net_if_ipv4 **ipv4);
1580
1589
1598
1605void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl);
1606
1616 struct net_if **iface);
1617
1629 struct in_addr *addr,
1631 uint32_t vlifetime);
1632
1641bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr);
1642
1651__syscall int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr);
1652
1664 struct in_addr *addr,
1666 uint32_t vlifetime);
1667
1677 const struct in_addr *addr);
1678
1688 const struct in_addr *addr);
1689
1698bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr);
1699
1711 struct net_if **iface);
1712
1719
1727static inline bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
1728{
1729 NET_ASSERT(addr);
1730
1731 return addr->is_joined;
1732}
1733
1740
1747#if defined(CONFIG_NET_NATIVE_IPV4)
1748static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1749{
1750 return &router->address.in_addr;
1751}
1752#else
1753static inline struct in_addr *net_if_router_ipv4(struct net_if_router *router)
1754{
1755 static struct in_addr addr;
1756
1757 ARG_UNUSED(router);
1758
1759 return &addr;
1760}
1761#endif
1762
1773 struct in_addr *addr);
1774
1785 struct in_addr *addr);
1797 struct in_addr *addr,
1798 bool is_default,
1799 uint16_t router_lifetime);
1800
1809
1819 const struct in_addr *addr);
1820
1830 const struct in_addr *addr);
1831
1841#if defined(CONFIG_NET_NATIVE_IPV4)
1842struct net_if *net_if_ipv4_select_src_iface(const struct in_addr *dst);
1843#else
1845 const struct in_addr *dst)
1846{
1847 ARG_UNUSED(dst);
1848
1849 return NULL;
1850}
1851#endif
1852
1864#if defined(CONFIG_NET_NATIVE_IPV4)
1865const struct in_addr *net_if_ipv4_select_src_addr(struct net_if *iface,
1866 const struct in_addr *dst);
1867#else
1868static inline const struct in_addr *net_if_ipv4_select_src_addr(
1869 struct net_if *iface, const struct in_addr *dst)
1870{
1871 ARG_UNUSED(iface);
1872 ARG_UNUSED(dst);
1873
1874 return NULL;
1875}
1876#endif
1877
1887struct in_addr *net_if_ipv4_get_ll(struct net_if *iface,
1888 enum net_addr_state addr_state);
1889
1900 enum net_addr_state addr_state);
1901
1909 const struct in_addr *netmask);
1910
1920 const struct in_addr *netmask);
1921
1928void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw);
1929
1938__syscall bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw);
1939
1950struct net_if *net_if_select_src_iface(const struct sockaddr *dst);
1951
1960typedef void (*net_if_link_callback_t)(struct net_if *iface,
1961 struct net_linkaddr *dst,
1962 int status);
1963
1975
1978};
1979
1988
1995
2003void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr,
2004 int status);
2005
2016
2028
2039__syscall struct net_if *net_if_get_by_index(int index);
2040
2048int net_if_get_by_iface(struct net_if *iface);
2049
2057typedef void (*net_if_cb_t)(struct net_if *iface, void *user_data);
2058
2067
2075int net_if_up(struct net_if *iface);
2076
2084static inline bool net_if_is_up(struct net_if *iface)
2085{
2086 NET_ASSERT(iface);
2087
2088 return net_if_flag_is_set(iface, NET_IF_UP);
2089}
2090
2098int net_if_down(struct net_if *iface);
2099
2100#if defined(CONFIG_NET_PKT_TIMESTAMP) && defined(CONFIG_NET_NATIVE)
2108typedef void (*net_if_timestamp_callback_t)(struct net_pkt *pkt);
2109
2118struct net_if_timestamp_cb {
2120 sys_snode_t node;
2121
2125 struct net_pkt *pkt;
2126
2130 struct net_if *iface;
2131
2133 net_if_timestamp_callback_t cb;
2134};
2135
2146void net_if_register_timestamp_cb(struct net_if_timestamp_cb *handle,
2147 struct net_pkt *pkt,
2148 struct net_if *iface,
2149 net_if_timestamp_callback_t cb);
2150
2156void net_if_unregister_timestamp_cb(struct net_if_timestamp_cb *handle);
2157
2163void net_if_call_timestamp_cb(struct net_pkt *pkt);
2164
2165/*
2166 * @brief Add timestamped TX buffer to be handled
2167 *
2168 * @param pkt Timestamped buffer
2169 */
2170void net_if_add_tx_timestamp(struct net_pkt *pkt);
2171#endif /* CONFIG_NET_PKT_TIMESTAMP */
2172
2182int net_if_set_promisc(struct net_if *iface);
2183
2189void net_if_unset_promisc(struct net_if *iface);
2190
2199bool net_if_is_promisc(struct net_if *iface);
2200
2210static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
2211{
2212#if defined(CONFIG_NET_POWER_MANAGEMENT)
2213 return !!iface->tx_pending;
2214#else
2215 ARG_UNUSED(iface);
2216
2217 return false;
2218#endif
2219}
2220
2221#ifdef CONFIG_NET_POWER_MANAGEMENT
2229int net_if_suspend(struct net_if *iface);
2230
2238int net_if_resume(struct net_if *iface);
2239
2247bool net_if_is_suspended(struct net_if *iface);
2248#endif /* CONFIG_NET_POWER_MANAGEMENT */
2249
2251struct net_if_api {
2252 void (*init)(struct net_if *iface);
2253};
2254
2255#if defined(CONFIG_NET_IP)
2256#define NET_IF_IP_INIT .ip = {},
2257#else
2258#define NET_IF_IP_INIT
2259#endif
2260
2261#if defined(CONFIG_NET_DHCPV4) && defined(CONFIG_NET_NATIVE_IPV4)
2262#define NET_IF_DHCPV4_INIT .dhcpv4.state = NET_DHCPV4_DISABLED,
2263#else
2264#define NET_IF_DHCPV4_INIT
2265#endif
2266
2267#define NET_IF_CONFIG_INIT \
2268 .config = { \
2269 NET_IF_IP_INIT \
2270 NET_IF_DHCPV4_INIT \
2271 }
2272
2273#define NET_IF_GET_NAME(dev_name, sfx) __net_if_##dev_name##_##sfx
2274#define NET_IF_DEV_GET_NAME(dev_name, sfx) __net_if_dev_##dev_name##_##sfx
2275
2276#define NET_IF_GET(dev_name, sfx) \
2277 ((struct net_if *)&NET_IF_GET_NAME(dev_name, sfx))
2278
2279#define NET_IF_INIT(dev_name, sfx, _l2, _mtu, _num_configs) \
2280 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2281 NET_IF_DEV_GET_NAME(dev_name, sfx)) = { \
2282 .dev = &(DEVICE_NAME_GET(dev_name)), \
2283 .l2 = &(NET_L2_GET_NAME(_l2)), \
2284 .l2_data = &(NET_L2_GET_DATA(dev_name, sfx)), \
2285 .mtu = _mtu, \
2286 }; \
2287 static Z_DECL_ALIGN(struct net_if) \
2288 NET_IF_GET_NAME(dev_name, sfx)[_num_configs] \
2289 __used __in_section(_net_if, static, \
2290 dev_name) = { \
2291 [0 ... (_num_configs - 1)] = { \
2292 .if_dev = &(NET_IF_DEV_GET_NAME(dev_name, sfx)), \
2293 NET_IF_CONFIG_INIT \
2294 } \
2295 }
2296
2297#define NET_IF_OFFLOAD_INIT(dev_name, sfx, _mtu) \
2298 static STRUCT_SECTION_ITERABLE(net_if_dev, \
2299 NET_IF_DEV_GET_NAME(dev_name, sfx)) = { \
2300 .dev = &(DEVICE_NAME_GET(dev_name)), \
2301 .mtu = _mtu, \
2302 }; \
2303 static Z_DECL_ALIGN(struct net_if) \
2304 NET_IF_GET_NAME(dev_name, sfx)[NET_IF_MAX_CONFIGS] \
2305 __used __in_section(_net_if, static, \
2306 dev_name) = { \
2307 [0 ... (NET_IF_MAX_CONFIGS - 1)] = { \
2308 .if_dev = &(NET_IF_DEV_GET_NAME(dev_name, sfx)), \
2309 NET_IF_CONFIG_INIT \
2310 } \
2311 }
2312
2315/* Network device initialization macros */
2316
2317#define Z_NET_DEVICE_INIT(node_id, dev_name, drv_name, init_fn, \
2318 pm_action_cb, data, cfg, prio, api, l2, \
2319 l2_ctx_type, mtu) \
2320 Z_DEVICE_STATE_DEFINE(node_id, dev_name) \
2321 Z_DEVICE_DEFINE(node_id, dev_name, drv_name, init_fn, \
2322 pm_action_cb, data, \
2323 cfg, POST_KERNEL, prio, api, \
2324 &Z_DEVICE_STATE_NAME(dev_name)); \
2325 NET_L2_DATA_INIT(dev_name, 0, l2_ctx_type); \
2326 NET_IF_INIT(dev_name, 0, l2, mtu, NET_IF_MAX_CONFIGS)
2327
2347#define NET_DEVICE_INIT(dev_name, drv_name, init_fn, pm_action_cb, \
2348 data, cfg, prio, api, l2, \
2349 l2_ctx_type, mtu) \
2350 Z_NET_DEVICE_INIT(DT_INVALID_NODE, dev_name, drv_name, init_fn, \
2351 pm_action_cb, data, cfg, prio, api, l2, \
2352 l2_ctx_type, mtu)
2353
2372#define NET_DEVICE_DT_DEFINE(node_id, init_fn, pm_action_cb, data, cfg, \
2373 prio, api, l2, l2_ctx_type, mtu) \
2374 Z_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_NAME(node_id), \
2375 DEVICE_DT_NAME(node_id), init_fn, \
2376 pm_action_cb, data, cfg, prio, api, l2, \
2377 l2_ctx_type, mtu)
2378
2387#define NET_DEVICE_DT_INST_DEFINE(inst, ...) \
2388 NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2389
2390#define Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_name, drv_name, \
2391 instance, init_fn, pm_action_cb, \
2392 data, cfg, prio, api, l2, \
2393 l2_ctx_type, mtu) \
2394 Z_DEVICE_STATE_DEFINE(node_id, dev_name) \
2395 Z_DEVICE_DEFINE(node_id, dev_name, drv_name, init_fn, \
2396 pm_action_cb, data, cfg, POST_KERNEL, \
2397 prio, api, &Z_DEVICE_STATE_NAME(dev_name)); \
2398 NET_L2_DATA_INIT(dev_name, instance, l2_ctx_type); \
2399 NET_IF_INIT(dev_name, instance, l2, mtu, NET_IF_MAX_CONFIGS)
2400
2424#define NET_DEVICE_INIT_INSTANCE(dev_name, drv_name, instance, init_fn, \
2425 pm_action_cb, data, cfg, prio, \
2426 api, l2, l2_ctx_type, mtu) \
2427 Z_NET_DEVICE_INIT_INSTANCE(DT_INVALID_NODE, dev_name, drv_name, \
2428 instance, init_fn, pm_action_cb, \
2429 data, cfg, prio, api, l2, \
2430 l2_ctx_type, mtu)
2431
2454#define NET_DEVICE_DT_DEFINE_INSTANCE(node_id, instance, init_fn, \
2455 pm_action_cb, data, cfg, prio, \
2456 api, l2, l2_ctx_type, mtu) \
2457 Z_NET_DEVICE_INIT_INSTANCE(node_id, \
2458 Z_DEVICE_DT_DEV_NAME(node_id), \
2459 DEVICE_DT_NAME(node_id), \
2460 instance, init_fn, \
2461 pm_action_cb, data, cfg, prio, api, \
2462 l2, l2_ctx_type, mtu)
2463
2473#define NET_DEVICE_DT_INST_DEFINE_INSTANCE(inst, ...) \
2474 NET_DEVICE_DT_DEFINE_INSTANCE(DT_DRV_INST(inst), __VA_ARGS__)
2475
2476#define Z_NET_DEVICE_OFFLOAD_INIT(node_id, dev_name, drv_name, init_fn, \
2477 pm_action_cb, data, cfg, prio, \
2478 api, mtu) \
2479 Z_DEVICE_STATE_DEFINE(node_id, dev_name) \
2480 Z_DEVICE_DEFINE(node_id, dev_name, drv_name, init_fn, \
2481 pm_action_cb, data, cfg, POST_KERNEL, prio, api, \
2482 &Z_DEVICE_STATE_NAME(dev_name)); \
2483 NET_IF_OFFLOAD_INIT(dev_name, 0, mtu)
2484
2504#define NET_DEVICE_OFFLOAD_INIT(dev_name, drv_name, init_fn, \
2505 pm_action_cb, data, cfg, prio, api, mtu)\
2506 Z_NET_DEVICE_OFFLOAD_INIT(DT_INVALID_NODE, dev_name, drv_name, \
2507 init_fn, pm_action_cb, data, cfg, prio,\
2508 api, mtu)
2509
2528#define NET_DEVICE_DT_OFFLOAD_DEFINE(node_id, init_fn, pm_action_cb, \
2529 data, cfg, prio, api, mtu) \
2530 Z_NET_DEVICE_OFFLOAD_INIT(node_id, Z_DEVICE_DT_DEV_NAME(node_id), \
2531 DEVICE_DT_NAME(node_id), \
2532 init_fn, pm_action_cb, data, cfg, \
2533 prio, api, mtu)
2534
2544#define NET_DEVICE_DT_INST_OFFLOAD_DEFINE(inst, ...) \
2545 NET_DEVICE_DT_OFFLOAD_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
2546
2547#ifdef __cplusplus
2548}
2549#endif
2550
2551#include <syscalls/net_if.h>
2552
2557#endif /* ZEPHYR_INCLUDE_NET_NET_IF_H_ */
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition: arch_interface.h:44
ZTEST_BMEM int index[(3)]
Definition: main.c:32
DHCPv4 Client Handler.
static void atomic_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition: atomic.h:217
static bool atomic_test_bit(const atomic_t *target, int bit)
Atomically test a bit.
Definition: atomic.h:131
static void atomic_clear_bit(atomic_t *target, int bit)
Atomically clear a bit.
Definition: atomic.h:198
#define ATOMIC_DEFINE(name, num_bits)
Define an array of atomic variables.
Definition: atomic.h:114
static bool atomic_test_and_set_bit(atomic_t *target, int bit)
Atomically set a bit.
Definition: atomic.h:176
net_addr_state
Definition: net_ip.h:442
net_addr_type
Definition: net_ip.h:450
net_verdict
Net Verdict.
Definition: net_core.h:97
static int net_hostname_set_postfix(const uint8_t *hostname_postfix, int postfix_len)
Set the device hostname postfix.
Definition: hostname.h:74
struct net_if * net_if_select_src_iface(const struct sockaddr *dst)
Get a network interface that should be used when sending IPv6 or IPv4 network data to destination.
struct net_if_router * net_if_ipv4_router_lookup(struct net_if *iface, struct in_addr *addr)
Check if IPv4 address is one of the routers configured in the system.
int net_if_get_by_iface(struct net_if *iface)
Get interface index according to pointer.
int net_if_up(struct net_if *iface)
Bring interface up.
struct net_if * net_if_get_first_up(void)
Get the first network interface which is up.
struct net_if_addr * net_if_ipv4_addr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 address belongs to one of the interfaces.
void net_if_set_default(struct net_if *iface)
Set the default network interface.
int net_if_ipv4_addr_lookup_by_index(const struct in_addr *addr)
Check if this IPv4 address belongs to one of the interface indices.
int(* net_socket_create_t)(int, int, int)
A function prototype to create an offloaded socket. The prototype is compatible with socket() functio...
Definition: net_if.h:422
struct net_if_addr * net_if_ipv6_addr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 address belongs to one of the interfaces.
int net_if_ipv6_addr_lookup_by_index(const struct in6_addr *addr)
Check if this IPv6 address belongs to one of the interface indices.
struct net_if * net_if_get_by_link_addr(struct net_linkaddr *ll_addr)
Get an interface according to link layer address.
bool net_if_ipv6_router_rm(struct net_if_router *router)
Remove IPv6 router from the system.
bool net_if_ipv4_maddr_rm(struct net_if *iface, const struct in_addr *addr)
Remove an IPv4 multicast address from an interface.
void net_if_ipv6_dad_failed(struct net_if *iface, const struct in6_addr *addr)
Stop IPv6 Duplicate Address Detection (DAD) procedure if we find out that our IPv6 address is already...
int net_if_down(struct net_if *iface)
Bring interface down.
void net_if_unset_promisc(struct net_if *iface)
Set network interface into normal mode.
bool net_if_need_calc_tx_checksum(struct net_if *iface)
Check if network packet checksum calculation can be avoided or not when sending the packet....
struct net_if_router * net_if_ipv4_router_find_default(struct net_if *iface, struct in_addr *addr)
Find default router for this IPv4 address.
bool net_if_ipv6_addr_onlink(struct net_if **iface, struct in6_addr *addr)
Check if this IPv6 address is part of the subnet of our network interface.
static struct in_addr * net_if_router_ipv4(struct net_if_router *router)
Get the IPv4 address of the given router.
Definition: net_if.h:1753
void net_if_ipv6_prefix_unset_timer(struct net_if_ipv6_prefix *prefix)
Unset the prefix lifetime timer.
void net_if_ipv4_maddr_leave(struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_add(struct net_if *iface, struct in6_addr *prefix, uint8_t len, uint32_t lifetime)
Add a IPv6 prefix to an network interface.
void net_if_ipv4_set_gw(struct net_if *iface, const struct in_addr *gw)
Set IPv4 gateway for an interface.
int net_if_config_ipv4_get(struct net_if *iface, struct net_if_ipv4 **ipv4)
Allocate network interface IPv4 config.
static const struct net_l2 *const net_if_l2(struct net_if *iface)
Get a pointer to the interface L2.
Definition: net_if.h:580
struct net_if_router * net_if_ipv6_router_find_default(struct net_if *iface, struct in6_addr *addr)
Find default router for this IPv6 address.
bool net_if_ipv6_prefix_rm(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Remove an IPv6 prefix from an interface.
void net_if_mcast_monitor(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Call registered multicast monitors.
void(* net_if_link_callback_t)(struct net_if *iface, struct net_linkaddr *dst, int status)
Define callback that is called after a network packet has been sent.
Definition: net_if.h:1960
static void * net_if_l2_data(struct net_if *iface)
Get a pointer to the interface L2 private data.
Definition: net_if.h:606
static bool net_if_are_pending_tx_packets(struct net_if *iface)
Check if there are any pending TX network data for a given network interface.
Definition: net_if.h:2210
static bool net_if_flag_test_and_set(struct net_if *iface, enum net_if_flag value)
Test and set a value in network interface flags.
Definition: net_if.h:523
bool net_if_ipv4_addr_rm(struct net_if *iface, const struct in_addr *addr)
Remove a IPv4 address from an interface.
struct net_if_router * net_if_ipv4_router_add(struct net_if *iface, struct in_addr *addr, bool is_default, uint16_t router_lifetime)
Add IPv4 router to the system.
static struct net_linkaddr * net_if_get_link_addr(struct net_if *iface)
Get an network interface's link address.
Definition: net_if.h:727
static const struct in6_addr * net_if_ipv6_select_src_addr(struct net_if *iface, const struct in6_addr *dst)
Get a IPv6 source address that should be used when sending network data to destination.
Definition: net_if.h:1490
static struct net_offload * net_if_offload(struct net_if *iface)
Return the IP offload plugin.
Definition: net_if.h:656
static int net_if_set_link_addr(struct net_if *iface, uint8_t *addr, uint8_t len, enum net_link_type type)
Set a network interface's link address.
Definition: net_if.h:815
static void net_if_flag_set(struct net_if *iface, enum net_if_flag value)
Set a value in network interface flags.
Definition: net_if.h:507
uint8_t net_if_ipv6_get_hop_limit(struct net_if *iface)
Get IPv6 hop limit specified for a given interface. This is the default value but can be overridden b...
struct net_if * net_if_get_default(void)
Get the default network interface.
void net_if_ipv4_set_ttl(struct net_if *iface, uint8_t ttl)
Set IPv4 time-to-live value specified to a given interface.
bool net_if_ipv4_addr_mask_cmp(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address belongs to local subnet.
void net_if_queue_tx(struct net_if *iface, struct net_pkt *pkt)
Queue a packet to the net interface TX queue.
int net_if_config_ipv6_get(struct net_if *iface, struct net_if_ipv6 **ipv6)
Allocate network interface IPv6 config.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_get(struct net_if *iface, struct in6_addr *addr)
Return prefix that corresponds to this IPv6 address.
bool net_if_ipv6_addr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 address from an interface.
void net_if_ipv6_prefix_set_timer(struct net_if_ipv6_prefix *prefix, uint32_t lifetime)
Set the prefix lifetime timer.
void net_if_unregister_link_cb(struct net_if_link_cb *link)
Unregister a link callback.
bool net_if_ipv4_router_rm(struct net_if_router *router)
Remove IPv4 router from the system.
static bool net_if_is_ip_offloaded(struct net_if *iface)
Return the IP offload status.
Definition: net_if.h:638
struct net_if_addr * net_if_ipv4_addr_add(struct net_if *iface, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface.
struct net_if * net_if_get_by_index(int index)
Get interface according to index.
enum net_verdict net_if_recv_data(struct net_if *iface, struct net_pkt *pkt)
Input a packet through a net iface.
void(* net_if_mcast_callback_t)(struct net_if *iface, const struct net_addr *addr, bool is_joined)
Define callback that is called whenever IPv6 multicast address group is joined or left.
Definition: net_if.h:1111
struct net_if * net_if_get_first_by_type(const struct net_l2 *l2)
Get the first network interface according to its type.
static void net_if_set_mtu(struct net_if *iface, uint16_t mtu)
Set an network interface's MTU.
Definition: net_if.h:848
bool net_if_need_calc_rx_checksum(struct net_if *iface)
Check if received network packet checksum calculation can be avoided or not. For example many etherne...
struct net_if_mcast_addr * net_if_ipv6_maddr_add(struct net_if *iface, const struct in6_addr *addr)
Add a IPv6 multicast address to an interface.
uint8_t net_if_ipv4_get_ttl(struct net_if *iface)
Get IPv4 time-to-live value specified for a given interface.
static bool net_if_is_up(struct net_if *iface)
Check if interface is up.
Definition: net_if.h:2084
static void net_if_ipv6_set_reachable_time(struct net_if_ipv6 *ipv6)
Set IPv6 reachable time for a given interface. This requires that base reachable time is set for the ...
Definition: net_if.h:1430
struct in6_addr * net_if_ipv6_get_ll_addr(enum net_addr_state state, struct net_if **iface)
Return link local IPv6 address from the first interface that has a link local address matching give s...
int net_if_config_ipv4_put(struct net_if *iface)
Release network interface IPv4 config.
int net_if_config_ipv6_put(struct net_if *iface)
Release network interface IPv6 config.
bool net_if_ipv4_is_addr_bcast(struct net_if *iface, const struct in_addr *addr)
Check if the given IPv4 address is a broadcast address.
void net_if_mcast_mon_register(struct net_if_mcast_monitor *mon, struct net_if *iface, net_if_mcast_callback_t cb)
Register a multicast monitor.
void net_if_ipv6_maddr_join(struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
bool net_if_ipv4_set_netmask_by_index(int index, const struct in_addr *netmask)
Set IPv4 netmask for an interface index.
static void net_if_start_dad(struct net_if *iface)
Start duplicate address detection procedure.
Definition: net_if.h:752
void net_if_foreach(net_if_cb_t cb, void *user_data)
Go through all the network interfaces and call callback for each interface.
bool net_if_ipv6_addr_add_by_index(int index, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface by index.
struct net_if_router * net_if_ipv6_router_add(struct net_if *iface, struct in6_addr *addr, uint16_t router_lifetime)
Add IPv6 router to the system.
static void net_if_socket_offload_set(struct net_if *iface, net_socket_create_t socket_offload)
Set the function to create an offloaded socket.
Definition: net_if.h:691
static uint32_t net_if_ipv6_get_reachable_time(struct net_if *iface)
Get IPv6 reachable timeout specified for a given interface.
Definition: net_if.h:1402
static bool net_if_ipv4_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition: net_if.h:1727
static void net_if_ipv6_prefix_set_lf(struct net_if_ipv6_prefix *prefix, bool is_infinite)
Set the infinite status of the prefix.
Definition: net_if.h:1248
struct net_if_mcast_addr * net_if_ipv4_maddr_add(struct net_if *iface, const struct in_addr *addr)
Add a IPv4 multicast address to an interface.
void net_if_register_link_cb(struct net_if_link_cb *link, net_if_link_callback_t cb)
Register a link callback.
void net_if_call_link_cb(struct net_if *iface, struct net_linkaddr *lladdr, int status)
Call a link callback function.
void net_if_ipv6_router_update_lifetime(struct net_if_router *router, uint16_t lifetime)
Update validity lifetime time of a router.
struct net_if_ipv6_prefix * net_if_ipv6_prefix_lookup(struct net_if *iface, struct in6_addr *addr, uint8_t len)
Check if this IPv6 prefix belongs to this interface.
static void net_if_stop_rs(struct net_if *iface)
Stop neighbor discovery.
Definition: net_if.h:774
uint32_t net_if_ipv6_calc_reachable_time(struct net_if_ipv6 *ipv6)
Calculate next reachable time value for IPv6 reachable time.
static void net_if_ipv6_set_base_reachable_time(struct net_if *iface, uint32_t reachable_time)
Set IPv6 reachable time for a given interface.
Definition: net_if.h:1383
struct net_if_addr * net_if_ipv6_addr_lookup_by_iface(struct net_if *iface, struct in6_addr *addr)
Check if this IPv6 address belongs to this specific interfaces.
int net_if_set_promisc(struct net_if *iface)
Set network interface into promiscuous mode.
void net_if_start_rs(struct net_if *iface)
Start neighbor discovery and send router solicitation message.
static bool net_if_ipv6_maddr_is_joined(struct net_if_mcast_addr *addr)
Check if given multicast address is joined or not.
Definition: net_if.h:1177
bool net_if_is_promisc(struct net_if *iface)
Check if promiscuous mode is set or not.
bool net_if_ipv6_addr_rm_by_index(int index, const struct in6_addr *addr)
Remove an IPv6 address from an interface by index.
bool net_if_ipv4_addr_rm_by_index(int index, const struct in_addr *addr)
Remove a IPv4 address from an interface by interface index.
void net_ipv6_set_hop_limit(struct net_if *iface, uint8_t hop_limit)
Set the default IPv6 hop limit of a given interface.
struct in6_addr * net_if_ipv6_get_global_addr(enum net_addr_state state, struct net_if **iface)
Return global IPv6 address from the first interface that has a global IPv6 address matching the given...
static uint16_t net_if_get_mtu(struct net_if *iface)
Get an network interface's MTU.
Definition: net_if.h:833
struct net_if_router * net_if_ipv6_router_lookup(struct net_if *iface, struct in6_addr *addr)
Check if IPv6 address is one of the routers configured in the system.
bool net_if_ipv4_addr_add_by_index(int index, struct in_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv4 address to an interface by network interface index.
struct in_addr * net_if_ipv4_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 link local address in a given state.
void net_if_mcast_mon_unregister(struct net_if_mcast_monitor *mon)
Unregister a multicast monitor.
void net_if_ipv6_maddr_leave(struct net_if_mcast_addr *addr)
Mark a given multicast address to be left.
void net_if_ipv4_set_netmask(struct net_if *iface, const struct in_addr *netmask)
Set IPv4 netmask for an interface.
static const struct in_addr * net_if_ipv4_select_src_addr(struct net_if *iface, const struct in_addr *dst)
Get a IPv4 source address that should be used when sending network data to destination.
Definition: net_if.h:1868
struct in6_addr * net_if_ipv6_get_ll(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv6 link local address in a given state.
static void net_if_ipv6_set_retrans_timer(struct net_if *iface, uint32_t retrans_timer)
Set IPv6 retransmit timer for a given interface.
Definition: net_if.h:1443
struct in_addr * net_if_ipv4_get_global_addr(struct net_if *iface, enum net_addr_state addr_state)
Get a IPv4 global address in a given state.
enum net_verdict net_if_send_data(struct net_if *iface, struct net_pkt *pkt)
Send a packet through a net iface.
struct net_if_mcast_addr * net_if_ipv6_maddr_lookup(const struct in6_addr *addr, struct net_if **iface)
Check if this IPv6 multicast address belongs to a specific interface or one of the interfaces.
struct net_if * net_if_lookup_by_dev(const struct device *dev)
Find an interface from it's related device.
static struct in6_addr * net_if_router_ipv6(struct net_if_router *router)
Get the IPv6 address of the given router.
Definition: net_if.h:1294
struct net_if_mcast_addr * net_if_ipv4_maddr_lookup(const struct in_addr *addr, struct net_if **iface)
Check if this IPv4 multicast address belongs to a specific interface or one of the interfaces.
void net_if_router_rm(struct net_if_router *router)
Remove a router from the system.
static uint32_t net_if_ipv6_get_retrans_timer(struct net_if *iface)
Get IPv6 retransmit timer specified for a given interface.
Definition: net_if.h:1462
bool net_if_ipv4_set_gw_by_index(int index, const struct in_addr *gw)
Set IPv4 gateway for an interface index.
struct net_if_addr * net_if_ipv6_addr_add(struct net_if *iface, struct in6_addr *addr, enum net_addr_type addr_type, uint32_t vlifetime)
Add a IPv6 address to an interface.
static struct net_if * net_if_ipv6_select_src_iface(const struct in6_addr *dst)
Get a network interface that should be used when sending IPv6 network data to destination.
Definition: net_if.h:1512
static bool net_if_flag_is_set(struct net_if *iface, enum net_if_flag value)
Check if a value in network interface flags is set.
Definition: net_if.h:553
static struct net_if_config * net_if_config_get(struct net_if *iface)
Get network interface IP config.
Definition: net_if.h:895
static struct net_if_config * net_if_get_config(struct net_if *iface)
Return network configuration for this network interface.
Definition: net_if.h:739
static void net_if_addr_set_lf(struct net_if_addr *ifaddr, bool is_infinite)
Set the infinite status of the network interface address.
Definition: net_if.h:864
net_if_flag
Definition: net_if.h:163
static const struct device * net_if_get_device(struct net_if *iface)
Get an network interface's device.
Definition: net_if.h:618
void(* net_if_cb_t)(struct net_if *iface, void *user_data)
Callback used while iterating over network interfaces.
Definition: net_if.h:2057
void net_if_ipv6_addr_update_lifetime(struct net_if_addr *ifaddr, uint32_t vlifetime)
Update validity lifetime time of an IPv6 address.
bool net_if_ipv6_maddr_rm(struct net_if *iface, const struct in6_addr *addr)
Remove an IPv6 multicast address from an interface.
static bool net_if_is_socket_offloaded(struct net_if *iface)
Return the socket offload status.
Definition: net_if.h:674
void net_if_ipv4_maddr_join(struct net_if_mcast_addr *addr)
Mark a given multicast address to be joined.
static net_socket_create_t net_if_socket_offload(struct net_if *iface)
Return the function to create an offloaded socket.
Definition: net_if.h:709
static struct net_if * net_if_ipv4_select_src_iface(const struct in_addr *dst)
Get a network interface that should be used when sending IPv4 network data to destination.
Definition: net_if.h:1844
static void net_if_flag_clear(struct net_if *iface, enum net_if_flag value)
Clear a value in network interface flags.
Definition: net_if.h:537
@ NET_IF_NO_AUTO_START
Definition: net_if.h:179
@ NET_IF_POINTOPOINT
Definition: net_if.h:168
@ NET_IF_FORWARD_MULTICASTS
Definition: net_if.h:188
@ NET_IF_IPV4
Definition: net_if.h:191
@ NET_IF_PROMISC
Definition: net_if.h:171
@ NET_IF_SUSPENDED
Definition: net_if.h:182
@ NET_IF_IPV6
Definition: net_if.h:194
@ NET_IF_UP
Definition: net_if.h:165
net_link_type
Definition: net_linkaddr.h:47
#define EPERM
Definition: errno.h:40
Hostname configuration definitions.
flags
Definition: http_parser.h:131
state
Definition: http_parser_state.h:29
IPv4 Autoconfiguration.
net_ipv4_autoconf_state
Definition: ipv4_autoconf.h:15
Network core definitions.
IPv6 and IPv4 definitions.
Public API for network L2 interface.
Public API for network link address.
Network statistics.
Network timer with wrap around.
Single-linked list implementation.
struct _slist sys_slist_t
Definition: slist.h:40
struct _snode sys_snode_t
Definition: slist.h:33
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
__INT64_TYPE__ int64_t
Definition: stdint.h:75
Runtime device structure (in ROM) per driver instance.
Definition: device.h:435
Definition: net_ip.h:139
Definition: net_ip.h:151
Definition: kernel.h:2209
Definition: thread.h:245
Network Interface unicast IP addresses.
Definition: net_if.h:49
struct net_addr address
Definition: net_if.h:51
uint8_t is_mesh_local
Definition: net_if.h:80
enum net_addr_state addr_state
Definition: net_if.h:66
uint8_t is_infinite
Definition: net_if.h:74
enum net_addr_type addr_type
Definition: net_if.h:63
uint8_t is_used
Definition: net_if.h:77
IP and other configuration related data for network interface.
Definition: net_if.h:373
Network Interface Device structure.
Definition: net_if.h:437
const struct net_l2 *const l2
Definition: net_if.h:442
void * l2_data
Definition: net_if.h:445
uint16_t mtu
Definition: net_if.h:463
const struct device * dev
Definition: net_if.h:439
struct net_linkaddr link_addr
Definition: net_if.h:451
atomic_t flags[ATOMIC_BITMAP_SIZE(NET_IF_NUM_FLAGS)]
Definition: net_if.h:448
Network interface IP address configuration.
Definition: net_if.h:360
Definition: net_if.h:261
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR]
Definition: net_if.h:263
struct in_addr netmask
Definition: net_if.h:272
struct in_addr gw
Definition: net_if.h:269
uint8_t ttl
Definition: net_if.h:275
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV4_MADDR]
Definition: net_if.h:266
Network Interface IPv6 prefixes.
Definition: net_if.h:108
struct net_if * iface
Definition: net_if.h:116
uint8_t is_infinite
Definition: net_if.h:122
uint8_t len
Definition: net_if.h:119
struct in6_addr prefix
Definition: net_if.h:113
uint8_t is_used
Definition: net_if.h:125
struct net_timeout lifetime
Definition: net_if.h:110
Definition: net_if.h:218
struct net_if_ipv6_prefix prefix[NET_IF_MAX_IPV6_PREFIX]
Definition: net_if.h:226
uint32_t base_reachable_time
Definition: net_if.h:229
uint8_t hop_limit
Definition: net_if.h:248
struct net_if_mcast_addr mcast[NET_IF_MAX_IPV6_MADDR]
Definition: net_if.h:223
uint32_t retrans_timer
Definition: net_if.h:235
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR]
Definition: net_if.h:220
uint32_t reachable_time
Definition: net_if.h:232
Network Interface multicast IP addresses.
Definition: net_if.h:90
struct net_addr address
Definition: net_if.h:92
uint8_t is_joined
Definition: net_if.h:98
uint8_t is_used
Definition: net_if.h:95
Multicast monitor handler struct.
Definition: net_if.h:1123
sys_snode_t node
Definition: net_if.h:1125
net_if_mcast_callback_t cb
Definition: net_if.h:1131
struct net_if * iface
Definition: net_if.h:1128
Information about routers in the system.
Definition: net_if.h:135
struct net_if * iface
Definition: net_if.h:143
uint8_t is_default
Definition: net_if.h:155
uint16_t lifetime
Definition: net_if.h:149
uint8_t is_infinite
Definition: net_if.h:158
uint8_t is_used
Definition: net_if.h:152
struct net_addr address
Definition: net_if.h:140
sys_snode_t node
Definition: net_if.h:137
uint32_t life_start
Definition: net_if.h:146
Network Interface structure.
Definition: net_if.h:480
struct net_if_dev * if_dev
Definition: net_if.h:482
struct net_if_config config
Definition: net_if.h:490
Network L2 structure.
Definition: net_l2.h:54
Hardware link address structure.
Definition: net_linkaddr.h:67
uint8_t * addr
Definition: net_linkaddr.h:69
uint8_t type
Definition: net_linkaddr.h:75
uint8_t len
Definition: net_linkaddr.h:72
Network packet.
Definition: net_pkt.h:59
All network statistics in one struct.
Definition: net_stats.h:292
Definition: net_timeout.h:55
Network traffic class.
Definition: net_if.h:405
k_thread_stack_t * stack
Definition: net_if.h:413
struct k_thread handler
Definition: net_if.h:410
struct k_fifo fifo
Definition: net_if.h:407
Definition: net_ip.h:344
static const intptr_t user_data[5]
Definition: main.c:588